by (200 points)
Thankyou for quick response

Have created en empty error.log file and put it in /public_html

Here is amended .htaccess file

     RewriteEngine On
     php_flag log_errors on
     php_value error_log /home/derwent/public_html/error.log
     RewriteCond %{REQUEST_FILENAME} -s [OR]
     RewriteCond %{REQUEST_FILENAME} -l [OR]
     RewriteCond %{REQUEST_FILENAME} -d
     RewriteRule ^.*$ - [NC,L]
     RewriteRule ^.*$ index.php [NC,L]

Have refreshed page but there nothing in log file.

Also tried refresh without empty error.log but no log file created.

Thanks  Michael

1 Answer

by (4.1k points)
Hello Michael.

You need create error.log file with write permissions.

Thank you.
asked Aug 12, 2013 by (200 points) Cannot get /go to work continued
...