- Error
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.

2008-05-08 12:43:33
PHP Notice: Constant _JEXEC already defined in C
2008-05-10 16:21:21
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.
2008-08-18 14:37:03
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
2008-09-08 16:13:20
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
2008-09-08 16:16:54
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
2009-01-22 17:33:16
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?
2009-08-11 03:09:42