Drupal 4.5.5
Any attempt to use the configure tab in admin/themes or click configure on any individual theme locks browser (IE 6). No related entries in log.

Any help appreciated!
Bob

Comments

goggie’s picture

You do not specify if you know linux or not and if you use a virtual host on apache or not. So I will asume the worst!

In any event it is a good thing to specify a custom error log process and result file for your site.

Open the apache config file httpd.conf in your editor.
Insert the following two lines just above the <Directory> line in your host description section or in your virtual host description section (obviously replacing the your_web_url with your web's url:

ErrorLog /var/log/your_web_url-error_log
CustomLog /var/log/your_web_url-access_log common

create these two files as follows:

touch /var/log/your_web_url-error_log
touch /var/log/your_web_url-access_log

change permissions on these two files (777 is OK for now for you)

chmod 777 /var/log/your_web_url-error_log
chmod 777 /var/log/your_web_url-access_log

Now stop and start your apache server: something like
/your/path/to/rc.d/apachexx.sh stop
/your/path/to/rc.d/apachexx.sh start

Now try your web browser stint again and report back with the log entries in these two files.