[solved] 500 Errors

More
12 years 11 months ago - 12 years 11 months ago #25912 by iamrobert
Hi,

I have to:
+ FLEXIContent - 2.0 - RC5 r1338
+ Joomla! 2.5.4

Since, then the site is continuously giving me 500 errors:

Server error
The website encountered an error while retrieving http://localhost/taisen/index.php/tw/pr ... iron-stove. It may be down for maintenance or configured incorrectly.
Here are some suggestions:
Reload this webpage later.
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.

I have tried disabling SEF - but it doesn't seem to work - and wondering if its because its bilingual.

It throws up this non SEF error:
http://localhost/taisen/index.php?optio ... 43&lang=tw

any ideas?
Last edit: 12 years 11 months ago by iamrobert.

Please Log in or Create an account to join the conversation.

More
12 years 11 months ago #25918 by ggppdk
Replied by ggppdk on topic [solved] 500 Errors
Please check you apache server log file:
e.g. if you use xampp in your local installation
check file:
xampp\apache\logs\error.log


-- Flexicontent is Free but involves a big effort on our part.
Like the our support? (for a bug-free FC, despite having a long list of functions) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing with a 5-star...

Please Log in or Create an account to join the conversation.

More
12 years 11 months ago #25930 by iamrobert
Replied by iamrobert on topic [solved] 500 Errors
Hi,

Here is the errors:
Code:
[Wed Jun 13 17:45:07 2012] [error] [client 127.0.0.1] PHP Notice: Undefined index: title in C:\\orion-7-1\\UniServer\\www\\taisen\\plugins\\flexicontent_fields\\hugegallery\\hugegallery.php on line 429, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&task=items.edit&cid[]=2 [Wed Jun 13 17:45:07 2012] [error] [client 127.0.0.1] PHP Notice: Undefined index: desc in C:\\orion-7-1\\UniServer\\www\\taisen\\plugins\\flexicontent_fields\\hugegallery\\hugegallery.php on line 430, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&task=items.edit&cid[]=2 [Wed Jun 13 17:45:07 2012] [error] [client 127.0.0.1] PHP Notice: Undefined index: title in C:\\orion-7-1\\UniServer\\www\\taisen\\plugins\\flexicontent_fields\\hugegallery\\hugegallery.php on line 429, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&task=items.edit&cid[]=2 [Wed Jun 13 17:45:07 2012] [error] [client 127.0.0.1] PHP Notice: Undefined index: desc in C:\\orion-7-1\\UniServer\\www\\taisen\\plugins\\flexicontent_fields\\hugegallery\\hugegallery.php on line 430, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&task=items.edit&cid[]=2 [Wed Jun 13 17:45:07 2012] [error] [client 127.0.0.1] PHP Notice: Undefined index: title in C:\\orion-7-1\\UniServer\\www\\taisen\\plugins\\flexicontent_fields\\hugegallery\\hugegallery.php on line 429, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&task=items.edit&cid[]=2 [Wed Jun 13 17:45:07 2012] [error] [client 127.0.0.1] PHP Notice: Undefined index: desc in C:\\orion-7-1\\UniServer\\www\\taisen\\plugins\\flexicontent_fields\\hugegallery\\hugegallery.php on line 430, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&task=items.edit&cid[]=2 [Wed Jun 13 17:45:07 2012] [error] [client 127.0.0.1] PHP Notice: Undefined index: gallery_name_list in C:\\orion-7-1\\UniServer\\www\\taisen\\plugins\\flexicontent_fields\\hugegallery\\hugegallery.php on line 457, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&task=items.edit&cid[]=2 [Wed Jun 13 17:48:49 2012] [notice] Apache/2.2.19 (Win32) PHP/5.3.8 DAV/2 configured -- resuming normal operations [Wed Jun 13 17:48:49 2012] [notice] Server built: May 20 2011 21:39:40 [Wed Jun 13 17:48:49 2012] [notice] Parent: Created child process 6508 [Wed Jun 13 17:48:49 2012] [notice] Child 6508: Child process is running [Wed Jun 13 17:48:49 2012] [notice] Child 6508: Acquired the start mutex. [Wed Jun 13 17:48:49 2012] [notice] Child 6508: Starting 250 worker threads. [Wed Jun 13 17:48:49 2012] [notice] Child 6508: Starting thread to listen on port 80. [Wed Jun 13 17:48:49 2012] [notice] Child 6508: Starting thread to listen on port 80. [Wed Jun 13 17:50:11 2012] [error] [client 127.0.0.1] PHP Notice: Undefined variable: prev in C:\\orion-7-1\\UniServer\\www\\taisen\\administrator\\components\\com_config\\models\\application.php on line 267, referer: http://localhost/taisen/administrator/index.php?option=com_config [Wed Jun 13 17:57:01 2012] [error] [client 127.0.0.1] PHP Notice: Undefined variable: prev in C:\\orion-7-1\\UniServer\\www\\taisen\\administrator\\components\\com_config\\models\\application.php on line 267, referer: http://localhost/taisen/administrator/index.php?option=com_config

Please Log in or Create an account to join the conversation.

More
12 years 11 months ago #25936 by ggppdk
Replied by ggppdk on topic [solved] 500 Errors
OK, for your error is this:
you localhost HTTP server has PHP NOTICE-errors enabled by default.

The problem is that there are PHP notice-errors by hugegallery plugin BEFORE the code sends HTTP HEADERS, so you get this apache server error

You either edit your php.ini to suppress printing of PHP NOTICEs
or edit hugegallery.php to add @ in front of the problematic variables
BETTER contact author with the error

the problem is probably these line
Code:
$searchindex .= $v['title']; $searchindex .= ' '; $searchindex .= $v['desc']; $searchindex .= ' ';
should be changed to:
Code:
$searchindex .= @$v['title']; $searchindex .= ' '; $searchindex .= @$v['desc']; $searchindex .= ' ';

Regards


-- Flexicontent is Free but involves a big effort on our part.
Like the our support? (for a bug-free FC, despite having a long list of functions) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing with a 5-star...

Please Log in or Create an account to join the conversation.

More
12 years 11 months ago #25945 by iamrobert
Replied by iamrobert on topic [solved] 500 Errors
I have tried that and unpublishing Huge Gallery. I will contact the author as well.

Now it throws out the following errors:
Code:
[Thu Jun 14 15:03:23 2012] [error] [client 127.0.0.1] File does not exist: C:/orion-7-1/UniServer/www/taisen/administrator/components/com_flexicontent/assets/js/silveripe.js, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&view=templates [Thu Jun 14 15:03:27 2012] [error] [client 127.0.0.1] File does not exist: C:/orion-7-1/UniServer/www/taisen/components/com_flexicontent/templates/iamrobert/item.png, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&view=template&type=items&folder=iamrobert [Thu Jun 14 15:03:34 2012] [error] [client 127.0.0.1] File does not exist: C:/orion-7-1/UniServer/www/taisen/administrator/components/com_flexicontent/assets/js/silveripe.js, referer: http://localhost/taisen/administrator/index.php?option=com_flexicontent&view=templates

Please Log in or Create an account to join the conversation.

More
12 years 11 months ago #25966 by ggppdk
Replied by ggppdk on topic [solved] 500 Errors
Do you still get 500 error?
in which FLEXIcontent pages?
Frontend/backend? which view?


-- Flexicontent is Free but involves a big effort on our part.
Like the our support? (for a bug-free FC, despite having a long list of functions) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing with a 5-star...

Please Log in or Create an account to join the conversation.

Moderators: vistamediajoomlacornerggppdk
Time to create page: 0.847 seconds
Cookies user preferences
We use cookies to ensure you to get the best experience on our website. If you decline the use of cookies, this website may not function as expected.
Accept all
Decline all
Essential
These cookies are needed to make the website work correctly. You can not disable them.
Display
Accept
Analytics
Tools used to analyze the data to measure the effectiveness of a website and to understand how it works.
Google Analytics
Accept
Decline
Save