2012-12-09, 09:25:07
(This post was last modified: 2012-12-09, 10:12:55 by jason.dixon.email.)
(2012-12-09, 06:18:26)tazmandev Wrote: I use GS 3.12, with the following plugins:
I18N
I18N Gallery
I18N Search
I18N Special Pages
Imagizer
site: http://www.printuri.eu
Friendly URL activated,
When I install Simple Input Tabs, when I try to save a page , ( any page ) I get this error:
"Server error
The website encountered an error while retrieving http://printuri.eu/admin/changedata.php. 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 think your plugin is an excelent concept and may take GS3 to the next step.
Thanks for your kind words! Hmm... Would you be able to disable each plugin one by one on the plugin page just to see which one is causing problems?
One thing you could try if you're keen is to change a couple lines of code and see if it helps:
At around line 199 UNDER this code:
PHP Code:
$template_len = count($split_template);
Add in this code here:
PHP Code:
$template_lang = false;
Then changing this code, at around line 205 from:
PHP Code:
if(in_array($template_lang, $language_list)){// make sure the file is a language file.
to:
PHP Code:
if($template_lang && in_array($template_lang, $language_list)){// make sure the file is a language file.
If you try this let me know if anything changes?