Hi,
I just finished a new webjail bases on sysutils/iocage with lang/php70 but I have a small problem.
If I set opcache, I simple cannot load my php website.
the /usr/local/www/httpdocs/mydoamin.com/.opcache where created runing
If I Disable opcache, then the site is alive again..
I looked at the /var/log/php-fpm.log and /var/log/php_errors.log but I haven't got any clues..
The web error log has
Could anyone please help me
Thank you
I just finished a new webjail bases on sysutils/iocage with lang/php70 but I have a small problem.
If I set opcache, I simple cannot load my php website.
Code:
opcache.enable=1;
opcache.memory_consumption=32;
opcache.interned_strings_buffer=8;
opcache.max_accelerated_files=3000;
opcache.revalidate_freq=180;
opcache.fast_shutdown=0;
opcache.enable_cli=0;
opcache.revalidate_path=0;
opcache.validate_timestamps=2;
opcache.max_file_size=0;
opcache.file_cache= /usr/local/www/httpdocs/mydoamin.com/.opcache;
opcache.file_cache_only=1;
mkdir -p /usr/local/www/httpdocs/mydoamin.com/.opcache
If I Disable opcache, then the site is alive again..
Code:
opcache.enable=1;
The web error log has
Code:
66.239.xx.xx|Thu 17 Nov 2016 17:33:04 +0000|/usr/local/www/httpdocs/mydoamin.com/index.php|no output
Thank you