The following error was getting generated while compiling PHP on the server checking for LDAP support… yes, shared checking for LDAP Cyrus SASL support… yes configure: error: Cannot find ldap.h Fix yum install openldap-devel
Month: August 2018
Default FTP account showing incorrect login even though cPanel can be accessed.
Fix This was fixed by using following cPanel script. /scripts/ftpupdate
To check who has deleted the email account in a cPanel server
This can be easily understood from the cPanel access logs. grep domain.com /usr/local/cpanel/logs/access_log | grep delpop
for default php PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/local/lib/php/extensions/no-debug-non-zts-20131226/htscanner.so’ – /usr/local/lib/php/extensions/no-debug-non-zts-20131226/htscanner.so: cannot open shared object file: No such file or directory in Unknown on line 0
This can be corrected by installing htscanner. Fix pecl install htscanner
Update Failed: Could not create directory. During plugin update.
The issue was caused due to the disk quota of the account was full. This seems to cause also the failure of the modsecurity rules being processing on the plugin while updating the plugin and the error getting generated in the apache logs. I have temporarily increased the quota to fix the issue.
Modsecurity /opt/lua/lib/liblua.a: could not read symbols: Bad value
The following error was getting generated while installing modsecurity. /opt/lua/lib/liblua.a: could not read symbols: Bad value Fix yum install lua lua-devel libsmi-devel.x86_64
Nagios virtfs warning
When you see the following error in the nagios, do the step below. DISK CRITICAL - /home/virtfs/bunny/lib is not accessible: Permission denied Fix Login to the vps main node and issue the following command. for i in `cat /proc/mounts | grep virtfs | awk {'print $2'}`; do echo "Umounting $i"; umount $i; done Also use … Continue reading Nagios virtfs warning
Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!
The following error was generated while configuring PHP Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found! Fix # yum install unixODBC-devel
Configure: error: Cannot find pspell
While configuring PHP following error was getting generated Configure: error: Cannot find pspell Fix # yum install pspell-devel
configure: error: SNMP sanity check failed. Please check config.log for more information.
The following error was getting generated while PHP compilation. checking whether to enable UCD SNMP hack… yes checking for default_store.h… no checking for kstat_read in -lkstat… no checking for snmp_parse_oid in -lsnmp… no checking for init_snmp in -lsnmp… no configure: error: SNMP sanity check failed. Please check config.log for more information. Fix yum install net-snmp-devel