8.2 admin page missing 'check and save' button?
-
Guest
8.2 admin page missing 'check and save' button?
While attempting an upgrade from 0.7.1 to 0.8.2, can't use admin plugin to change values in admin panel.
In IE and FireFox for 0.7.1 there is a submit form button labeled 'check and save'. Upgraded 0.7.1->0.8.2 doesn't have a check and save button in the admin configure page. A clean 0.8.2 install into a new directory, choosing advanced install, shows there is also no check and save button on the configure page.
Please advise.
Best regards,
epu
In IE and FireFox for 0.7.1 there is a submit form button labeled 'check and save'. Upgraded 0.7.1->0.8.2 doesn't have a check and save button in the admin configure page. A clean 0.8.2 install into a new directory, choosing advanced install, shows there is also no check and save button on the configure page.
Please advise.
Best regards,
epu
That was me.
Sorry, wasn't logged in.
Install is a windows install with apache 1.3.1 and php 5.03.
Install is a windows install with apache 1.3.1 and php 5.03.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: That was me.
I think I have heard of this bug with some strange browser versions. Can you try with IE?
And can you have a look at the HTML sourcecode and see if the output stops immediately? This points to a coredump of your webserver or a fatal PHP error, so please check your error logs.
Regards,
Garvin
And can you have a look at the HTML sourcecode and see if the output stops immediately? This points to a coredump of your webserver or a fatal PHP error, so please check your error logs.
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/
Doing the following steps in IE or FireFox 1.0.4 results in same error.I think I have heard of this bug with some strange browser versions. Can you try with IE?
- copy files over original working s9y distribution
browse to s9y page
upgrade notice
advance to upgrade page
advance to upgrade results (ok)
You're right about the end of the output. It looks like the file just stopped being written at the tail of the output, with an open tag just starting to be written (<)And can you have a look at the HTML sourcecode and see if the output stops immediately? This points to a coredump of your webserver or a fatal PHP error, so please check your error logs.
Looking at the apache error log, I see missing refs
Code: Select all
[Fri Jul 08 21:44:23 2005] [error] [client 127.0.0.1] File does not exist: g:/apache/htdocs/serendipity/0.7.1//serendipity_admin.css
[Fri Jul 08 21:50:51 2005] [error] [client 127.0.0.1] (22)Invalid argument: cannot read directory for multi: g:/apache/htdocs/serendipity/0.7.1//
[Fri Jul 08 21:54:38 2005] [error] [client 127.0.0.1] File does not exist: g:/apache/htdocs/serendipity/0.7.1//admin
Last edited by epu on Sat Jul 09, 2005 7:00 am, edited 1 time in total.
php.ini logging doesn't reveal anything
I checked via phpinfo() where my loaded ini was, modifed that to set error_log
touched the logfile into place, restarted just to be sure we're clean, and re-upgraded and reloaded the page. I still have the truncated output, but there's nothing in the error logfile.
Is there some variable I didn't check (ie, is logging actually off?)
Is my windows php.ini syntax ok?
Is this related to http://www.s9y.org/forums/viewtopic.php ... lash+error
Code: Select all
; - Show all errors
;
error_reporting = E_ALL
; error displaying on production web sites.
log_errors = On
; Log errors to specified file.
error_log = "G:\PHP\5.0.3\error.log"Is there some variable I didn't check (ie, is logging actually off?)
Is my windows php.ini syntax ok?
Is this related to http://www.s9y.org/forums/viewtopic.php ... lash+error
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: php.ini logging doesn't reveal anything
If the output stops at that "<" character this really sounds like a webserver problem.
In your serendipity configuration, are you using "/" forward slashes everywhere? It's better to use "C:/.../" instead of "C:\...\". Especially in your Apache configuration.
From your errorlog only the "Invalid argument: cannot read directory" error looks suspicious. I have never seen such an error, it might be related to path problems.
Can you create a "bug.php" file with some parse errors in it and see if your PHP errorlog gets filled?
Regards,
Garvin
In your serendipity configuration, are you using "/" forward slashes everywhere? It's better to use "C:/.../" instead of "C:\...\". Especially in your Apache configuration.
From your errorlog only the "Invalid argument: cannot read directory" error looks suspicious. I have never seen such an error, it might be related to path problems.
Can you create a "bug.php" file with some parse errors in it and see if your PHP errorlog gets filled?
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/
results of forward slashing s9y config and httpd.conf
Code: Select all
[Sat Jul 09 08:38:52 2005] [error] [client 127.0.0.1] File does not exist: g:/apache/htdocs/serendipity/0.7.1//entries
[Sat Jul 09 08:44:38 2005] [error] [client 127.0.0.1] File does not exist: g:/apache/htdocs/serendipity/0.7.1//serendipity_admin.css
[Sat Jul 09 08:45:00 2005] [error] [client 127.0.0.1] File does not exist: g:/apache/htdocs/serendipity/0.7.1//adminSlashing in apache config is already forward slashed
Code: Select all
Alias /blog "G:/apache/htdocs/serendipity/0.7.1/"
<Directory "G:/apache/htdocs/serendipity/0.7.1">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: results of forward slashing s9y config and httpd.conf
Did you try to make that /blog alias only poin tto "0.7.1" instead of "0.7.1/"? It seems that this is the error of the duplicate slash.
The "file does not exist" messages appear because you are using Apache Errorhandling URL Rewriting. This is normal, for each rewritten URL Apache writes this information.
About the debugger, I'm not really familiar with this stuff. APD and xdebug have proven helpful for most people wanting to do that.
Regards,
Garvin
The "file does not exist" messages appear because you are using Apache Errorhandling URL Rewriting. This is normal, for each rewritten URL Apache writes this information.
About the debugger, I'm not really familiar with this stuff. APD and xdebug have proven helpful for most people wanting to do that.
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/
That takes care of the apache log warnings/errors, but with or without the corrected slashes, corrected alias, and with either browser, my upgrade still has broken output.Did you try to make that /blog alias only poin tto "0.7.1" instead of "0.7.1/"? It seems that this is the error of the duplicate slash.
I also tried creating a straight up new install, and with the new empty non upgraded install, I am also missing this button/have broken admin page output.
What are the known stable/working apache/php versions on win32 for the 8.2 release?
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Did you try the trick with a PHP file that creates errors and looked at the log?
I know that the latest XAMPP release works with Serendipity.
Regards,
Garvin
I know that the latest XAMPP release works with Serendipity.
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/
-
Guest
distracted
Yes, from my saturday post, 5:27, I created a bug.php where I took my phpinfo.php and passed args to phpinfo() in order to generate errors. The error log works fine, but does not log any error when I upgrade to 8.2 or when I load the new install.Did you try the trick with a PHP file that creates errors and looked at the log?
After I convert, I am getting, on Mozilla Firefox, a popup window. It says 'document has no data'.http://www.eta.org/~shaggy/firefox-only-error.jpg
Regarding debugging, I installed dbg, eclipse, and phpeclipse package. I'm still working on configuring this right (http://www.plog4u.org/index.php/Using_P ... G_Debugger) The results seem promising so far.
Thanks for your help, the version info in XAMPP will be useful. I'll try mounting my files in a newer apache and see if that fixes anything. Then I'll move on through the other XAMPP versions.
Best regards,
-e
upgrade ok after upgrade to apache2
Upgrade works ok now, thanks for your help.
I checked out the XAMPP page for the current versions of software;
Apache HTTPD 2.0.54, MySQL 4.1.12, PHP 5.0.4.
Since you suggested web server was main problem, installed matching apache version (upgrade from 1.3.30->2.0.54) and this fixed the problem. Upgrade worked ok and buttons draw.
Best,
-e
I checked out the XAMPP page for the current versions of software;
Apache HTTPD 2.0.54, MySQL 4.1.12, PHP 5.0.4.
Since you suggested web server was main problem, installed matching apache version (upgrade from 1.3.30->2.0.54) and this fixed the problem. Upgrade worked ok and buttons draw.
Best,
-e