Error
  • The most recent request was denied because it contained an invalid security token. Please refresh the page and try again.
  • The most recent request was denied because it contained an invalid security token. Please refresh the page and try again.
  • The most recent request was denied because it contained an invalid security token. Please refresh the page and try again.

Fri

02

May

2008

Bug Squad Blog

Welcome to the Joomla! Bug Squad Blog! Members may share procedures for reporting bugs or highlight important fixes coming out in a new release. From time to time squad members might also share tips with the community given issues they observe in the Joomla! forums. The Joomla! Bug Squad manages the tracker, hunts down the bugs, and make patches with fixes, 24 hours a day, 7 days a week. These are some of the hardest working members of our community. So, keep an eye on this spot - the Joomla! Bug Squad has a unique perspective worth considering.

 

 

25 Votes

7 Comments

Feed
  1. when front page loading time some php notice shown in bottom..how can solve this problem..
    PHP Notice: Constant _JEXEC already defined in C:\Domains\moneykhan.com\wwwroot\modules\mod_joomlawatch.php on line 14 PHP Notice: Constant DS already defined in C:\Domains\moneykhan.com\wwwroot\modules\mod_joomlawatch.php on line 28
  2. Ali,
    That looks like a problem with a module you have installed. So, I'd suggest that you go to the home page of the developer and ask for help or else ask for help in the joomla.org forums.
  3. I've had a problem logging in. One problem I discovered was that the captcha box was too small (on my browser) to see all of the letters or numbers. Another problem was the use of zero or the letter "O" in the captcha box. Who knows which is which? :P

    I did register on the Joomla site. After I clicked on the verification link in my email, it took me to a site much similar to a wikipedia page. I assumed I was logged in everywhere, but this was not the case. And, when I did try to log in, I got all kinds of error messages, including wrong password, wrong verification code and so forth.

    Thanks
  4. In Joomla 1.5.6:

    It seems that the CODE_MEDIA_BASE constant should not terminate with a "/", as in some places another "/" is added to the end of CODE_MEDIA_BASE, resulting in an an formatted path (terminating with "//").

    I altered my administrator\components\com_media\media.php in lines 33-35 which are:

    if(substr(strtolower($view),0,6) == "images" || $popup_upload == 1) $path = "image_path";
    define('COM_MEDIA_BASE', JPATH_ROOT.DS.$params->get($path, 'images/stories'));
    define('COM_MEDIA_BASEURL', JURI::root().$params->get($path, 'images/stories'));

    to the next few lines:

    if(substr(strtolower($view),0,6) == "images" || $popup_upload == 1) $path = "image_path";
    $tmpPath = $params->get($path, 'images/stories');
    if(substr($tmpPath, -1) == '/') $tmpPath = substr($tmpPath, 0, -1);
    define('COM_MEDIA_BASE', JPATH_ROOT.DS.$tmpPath);
    define('COM_MEDIA_BASEURL', JURI::root().$tmpPath);

    Hope this will help other who had the same problem as I did.

    Eyal
  5. In Joomla 1.5.6:

    I had a problem on libraries\joomla\filesystem\folder.php which I had to alter "strpos(" to "stripos(" on line 204:

    if (stripos($path, $test) === 0) {

    in some cases, an error message appeared saying that the path was not in the "open_basedir" because the path was written in a mixture of upper and lower case.

    Eyal
  6. Hi,
    My website was hacked and I can't log in. I had the support team with godday to find what the problem was. Well, the problem was found but I because the application was installed manually, I needed to speak with someone from Joomal. Can you help?
  7. these personal problems in the comments are best vented in the forums are they not?

Add Comment


    • >:o
    • :-[
    • :'(
    • :-(
    • :-D
    • :-*
    • :-)
    • :P
    • :\
    • 8-)
    • ;-)