Errors in STDERR logs, how can i solve?

#1
Hi, I have two problems in STDERR logs.

I use CPANEL integration


First error:

PHP Warning: Cannot open 'extra/browscap.ini' for reading in Unknown on line 0

Second:

PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20090626/apc.so' - /usr/local/lib/extensions/no-debug-non-zts-20090626/apc.so: cannot open shared object file: No such file or directory in Unknown on line 0
 

NiteWave

Administrator
#2
put an phpinfo page under a domain's document root,
access it the-domain.com/phpinfo.php

get value of
Loaded Configuration File
Scan this dir for additional .ini files
Additional .ini files parsed

the 2nd issue can be fixed by edit one of above php.ini files, comment out
extension=apc.so

apc is not supported in shared hosting environment.
 
Top