У меня есть несколько ошибок php, которые появляются на странице как: Notice: Undefined index
У меня есть /etc/php/5.6/fpm/php.ini
с display_errors = Off
Когда я устанавливаю значение на On
, я обнаруживаю еще больше ошибок настраница.
Мой файл htaccess пуст, а vHost conf:
<VirtualHost *:80>
ServerName website1.tld
DocumentRoot /home/website1
ErrorLog /var/log/sites/ website1_error_log
CustomLog /var/log/sites/ website1_access_log combined
DirectoryIndex index.php index.html index.htm index.php4 index.php5
<Directory /home/website1>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/var/run/php/php5.6-fpm.sock|fcgi://localhost/"
</FilesMatch>
RewriteEngine on
</VirtualHost>
Спасибо