Errors on the Admin Interface
Errors on the Admin Interface
Hi,
it's a never ending story. My blog still doesn't run without errors. Now i found a possibility to log errors with a php-include in the script, that causes the errors (my hosting-provider don't logs any errors...).
Already when i log in i got these errors:
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Notice) Undefined index: charset"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Notice) Undefined index: lang"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Warning) main(/_path_to_my_webspace_/htdocs/blog_cmat/lang/serendipity_lang_.inc.php): failed to open stream: No such file or directory"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Warning) main(): Failed opening '/homepages/28/d164195609/htdocs/blog_cmat/lang/serendipity_lang_.inc.php' for inclusion (include_path='.:/usr/local/lib/php')"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/serendipity_config.inc.php: 121","(Notice) Use of undefined constant CHARSET_NATIVE - assumed 'CHARSET_NATIVE'"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/functions_config.inc.php: 725","(Notice) Undefined index: lang_selected"
There seems to be a problem with the selectedt language, but in the config-table "de" is set?
Has anyone an idea?
Thanks,
Mat
it's a never ending story. My blog still doesn't run without errors. Now i found a possibility to log errors with a php-include in the script, that causes the errors (my hosting-provider don't logs any errors...).
Already when i log in i got these errors:
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Notice) Undefined index: charset"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Notice) Undefined index: lang"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Warning) main(/_path_to_my_webspace_/htdocs/blog_cmat/lang/serendipity_lang_.inc.php): failed to open stream: No such file or directory"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/lang.inc.php: 7","(Warning) main(): Failed opening '/homepages/28/d164195609/htdocs/blog_cmat/lang/serendipity_lang_.inc.php' for inclusion (include_path='.:/usr/local/lib/php')"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/serendipity_config.inc.php: 121","(Notice) Use of undefined constant CHARSET_NATIVE - assumed 'CHARSET_NATIVE'"
"09 Jun 2006 10:19:12","/_path_to_my_webspace_/htdocs/blog_cmat/include/functions_config.inc.php: 725","(Notice) Undefined index: lang_selected"
There seems to be a problem with the selectedt language, but in the config-table "de" is set?
Has anyone an idea?
Thanks,
Mat
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Errors on the Admin Interface
Hi!
Which version of Serendipity are you using?
Actually the errors there are non-critical. The "NOTICES" don't cause any trouble, and are happening because for performance s9y doesn't check each index for existance when using it. They will then be returned empty, which is no problem.
The warning happens because also for performance reasons we do not first make a "file_exists" check but straight try to include the file. But we use the "@" operator to suppress PHP warnings, and thus this shouldn't affect your performance.
What errors do you face?
Best regards,
Garvin
Which version of Serendipity are you using?
Actually the errors there are non-critical. The "NOTICES" don't cause any trouble, and are happening because for performance s9y doesn't check each index for existance when using it. They will then be returned empty, which is no problem.
The warning happens because also for performance reasons we do not first make a "file_exists" check but straight try to include the file. But we use the "@" operator to suppress PHP warnings, and thus this shouldn't affect your performance.
What errors do you face?
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
I get server errors in the iframe, when i save an entry. The iframe that shows normally the trackback and ping messages, then shows the error message. i tried to log those errors, but that doesn't work.
The new/edited entry will be saved anyway, but only without tags.
I've tried a local php.ini with all errorlogging-parameters on, but the error seems to get thrown befor the php-interpreter could log anything.
I don't know what's going wrong, i get an Server Error.
In my local php.ini i have this parameters configured:
display_startup_errors = on
display_errors = on
log_errors = on
report_memleaks = on
error_reporting = E_ALL
error_log = ./error.log
register_globals = off
upload_max_filesize = 40M
memory_limit = 40M
When i comment out the memory_limit variable, i geht no error and the normal trackback-messages to the links in the entry (but they are not formatted) and no ping messages.
i've deleted the tag and the announce plugin, but that makes no difference.
The new/edited entry will be saved anyway, but only without tags.
I've tried a local php.ini with all errorlogging-parameters on, but the error seems to get thrown befor the php-interpreter could log anything.
I don't know what's going wrong, i get an Server Error.
In my local php.ini i have this parameters configured:
display_startup_errors = on
display_errors = on
log_errors = on
report_memleaks = on
error_reporting = E_ALL
error_log = ./error.log
register_globals = off
upload_max_filesize = 40M
memory_limit = 40M
When i comment out the memory_limit variable, i geht no error and the normal trackback-messages to the links in the entry (but they are not formatted) and no ping messages.
i've deleted the tag and the announce plugin, but that makes no difference.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Which error message does the iframe show? Which Serendipity are you using?
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Can you post the output of your phpinfo() on that server?
Which event plugins are you using?
Regards,
Garvin
Can you post the output of your phpinfo() on that server?
Which event plugins are you using?
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
I hope you don't mind, that i post the plugins in german, that i only have to copy them:
Lange Einträge aufteilen
Textformatierung: Serendipity
Textformatierung: NL2BR
Konvertiert Zeilenumbrüche zu HTML
Browser-Kompatibilität
Sonderzeichen/Erweiterte Buttons für Non-WYSIWYG
Trackbacks kontrollieren
Spartacus
Erweiterte Optionen für Bildauswahl
Nächster/Voriger Artikel
Statistiken
Spamschutz (SURBL)
Spamschutz (RBL)
Spamschutz
Freie Artikel-Tags
Einträge ankündigen
Could i send an url to the phpinfo() output on my server per mail?
Lange Einträge aufteilen
Textformatierung: Serendipity
Textformatierung: NL2BR
Konvertiert Zeilenumbrüche zu HTML
Browser-Kompatibilität
Sonderzeichen/Erweiterte Buttons für Non-WYSIWYG
Trackbacks kontrollieren
Spartacus
Erweiterte Optionen für Bildauswahl
Nächster/Voriger Artikel
Statistiken
Spamschutz (SURBL)
Spamschutz (RBL)
Spamschutz
Freie Artikel-Tags
Einträge ankündigen
Could i send an url to the phpinfo() output on my server per mail?
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Some ideas:
1. Try to remove iframe posting. For this, edit your serendipity_config.inc.php and set
2. Try to remove sending trackbacks. Edit your serendipity_config.inc.php and set
3. Also try removing the "manual trackback" and the "announce entries" plugins.
Regards,
Garvin
Some ideas:
1. Try to remove iframe posting. For this, edit your serendipity_config.inc.php and set
Code: Select all
$serendipity['use_iframe'] = false;
Code: Select all
$serendipity['noautodiscovery'] = true;
Sure, send it to me via PM on this board.Could i send an url to the phpinfo() output on my server per mail?
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Ok, i disabled iframe posting:
Now, i don't get no errors anymore, but after saving i see nothing, except of the navigation on the left.
But that parameter "noautodiscovery" doesn't exist in the serendipity_config.inc.php, onnly in serendipity_event_aggregator.php and serendipity_event_trackback. Should i disable it in both files?
I sent the phpinfo-output per PM.
Code: Select all
$serendipity['use_iframe'] = false;But that parameter "noautodiscovery" doesn't exist in the serendipity_config.inc.php, onnly in serendipity_event_aggregator.php and serendipity_event_trackback. Should i disable it in both files?
I sent the phpinfo-output per PM.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
If you then see nothing, did you view the HTML sourcecode of your page? Where does it stop?
About noautodiscovery: That one does not exist, so you need to insert it just somewhere there.
Regards,
Garvin
If you then see nothing, did you view the HTML sourcecode of your page? Where does it stop?
About noautodiscovery: That one does not exist, so you need to insert it just somewhere there.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
It seems your server is then blocking outgoing HTTP connections in a bad way. You might want to ask your system provider about firewalling of your server.
Aboutwrong colours and fontsizes -a screenshot of this would be nioce.
Regards,
Garvin
It seems your server is then blocking outgoing HTTP connections in a bad way. You might want to ask your system provider about firewalling of your server.
Aboutwrong colours and fontsizes -a screenshot of this would be nioce.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Ok, i have to ask the support about the firewall.
A Screenshot of my admin-interface, can you find here:
http://cyberm.at/images/serendipity_admin.png
A Screenshot of my admin-interface, can you find here:
http://cyberm.at/images/serendipity_admin.png
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Apart frmo the red color, it all looks okay? Have a look at the CSS stylesheet that is loaded in your admin panel, did you maybe modify it for red colors?
Regards
Garvin
Apart frmo the red color, it all looks okay? Have a look at the CSS stylesheet that is loaded in your admin panel, did you maybe modify it for red colors?
Regards
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
No, i don't modified any color of the css. The colors are not the same, the fontsize is smaller as bevor saving the entry and the categories-pulldown is no pulldown anymore, as it was befor saving.
Can i check the firewall from the commandline? i have ssh access, when i try a wget, i have no problems.
Can i check the firewall from the commandline? i have ssh access, when i try a wget, i have no problems.