Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>For me the problem was bad/missing config values for the Plesk server running the whole thing. I just followed the directions here: <a href="http://davidseah.com/blog/2007/04/separate-php-error-logs-for-multiple-domains-with-plesk/">http://davidseah.com/blog/2007/04/separate-php-error-logs-for-multiple-domains-with-plesk/</a></p> <p>You can configure PHP to have a separate error log file for each VirtualHost definition. The trick is knowing exactly how to set it up, because you can’t touch the configuration directly without breaking Plesk. Every domain name on your (dv) has its own directory in /var/www/vhosts. A typical directory has the following top level directories:</p> <pre><code>cgi-bin/ conf/ error_docs/ httpdocs/ httpsdocs/ ...and so on </code></pre> <p>You’ll want to create a vhost.conf file in the domain directory’s conf/ folder with the following lines:</p> <pre><code>php_value error_log /path/to/error_log php_flag display_errors off php_value error_reporting 6143 php_flag log_errors on </code></pre> <p>Change the first value to match your actual installation (I used /tmp/phperrors.log). After you’re done editing the vhost.conf file, test the configuration from the console with:</p> <pre><code>apachectl configtest …or if you don’t have apachectl (as Plesk 8.6 doesn’t seem to)… /etc/init.d/httpd configtest </code></pre> <p>And finally tell Plesk that you’ve made this change.</p> <pre><code>/usr/local/psa/admin/bin/websrvmng -a </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload