Skip to main content

OnlineSupport4u

Strict standard error in PHP

By PrasadNaik
July 4, 2016

While working on one of clients website after migration from PHP 5.3 to PHP 5.6 I would see the error on “[01-Jul-2016 02:18:54 America/Chicago] PHP Strict Standards:  Declaration of Countries::getAttribute() should be compatible with CActiveRecord” On googling around I could see the issue was fixed by making changing few settings in php.ini Add & ~E_STRICT […]

Read More

An installation already exists softacalous

By PrasadNaik
July 4, 2016

While working on one server with cpanel I was facing this error where I was getting “An installation already exists softacalous” while installing an application via softacalous Where as in Softacalous I could not see any application installed. While debugging I  found the error was occuring from  in file /home/username/ .softaculous/ installations.php I went ahead […]

Read More

How to install FFmpeg & PHP-FFmpeg on cPanel

By PrasadNaik
January 4, 2016

By Default ffmpeg rpms are not added in centos yum repositories a new repository will have to be added to install ffmpeg For centos6 64bit OS run below commands, wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm Once done # yum install ffmpeg ffmpeg-devel This will install ffmpeg on server Now once this is done you will need […]

Read More

W [FATAL] – Your RPM database appears unstable. It is not possible at the moment to install a simple RPM.

By PrasadNaik
November 19, 2015

While working on a cpanel server was getting below error “W [FATAL] – Your RPM database appears unstable. It is not possible at the moment to install a simple RPM” root@server1 [~]# /scripts/upcp –force —————————————————————————————————- => Log opened from cPanel Update (upcp) – Slave (20610) at Wed Nov 18 23:52:35 2015 [2015-11-18 23:52:35 -0500] Detected […]

Read More

HTTPS to HTTP redirect

By PrasadNaik
October 16, 2015

Redirect your Homepage from HTTPS to HTTP #Redirect your Homepage from HTTPS to HTTP RewriteCond %{HTTPS} on RewriteRule ^$ http://%{HTTP_HOST} [L,R] 1 2 3 #Redirect your Homepage from HTTPS to HTTP RewriteCond %{HTTPS} on RewriteRule ^$ http://%{HTTP_HOST} [L,R]

Read More

Exim Error :File size limit exceeded

By PrasadNaik
October 2, 2015

While working on one of the vps client issue we came across the  following error “Starting exim: /bin/bash: line 1: 28406 File size limit exceeded/usr/sbin/exim -bd -q1h -oP ” root@server [/]# /etc/init.d/exim restart Shutting down exim: [FAILED] Shutting down spamd: [ OK ] Starting exim: /bin/bash: line 1: 28406 File size limit exceeded/usr/sbin/exim -bd -q1h […]

Read More

Got error 28 from storage engine (1030) Mysql

By PrasadNaik
September 10, 2015

While working on clients server today I got the error on database while making backup of all the database using mysql dump The error was  ” Got error 28 from storage engine (1030)” root@hostonline [/tmp]# mysqldump –all-databases > all_databases.sql & [1] 19341 root@hostonline [/tmp]# mysqldump: Couldn’t execute ‘SHOW TRIGGERS LIKE ‘phpbb\_posts”: Got error 28 from […]

Read More

libMagickWand.so.2: cannot open shared object file

By PrasadNaik
August 27, 2015

While working on one cPanel server we could see below error in error_log file for one client libMagickWand.so.2: cannot open shared object file The error log were filled by such errors reinstalling imagemagick  using command  /scripts/installimagemagick  didnt work as error were still persisting . So renamed the php,ini file mv /usr/local/lib/php.ini /usr/local/lib/php.ini-old Now to regenerate […]

Read More

vzquota : (error) Quota on syscall for id 248: Device or resource busy

By PrasadNaik
August 24, 2015

While working on Virtualizor I could come across an error where vps was not starting I could get below error [root@hostonline lock]# vzctl start 248 Starting container… Warning: configuration file for distribution cpanel-Centos64 not found, using defaults from /etc/vz/dists/default vzquota : (error) Quota on syscall for id 248: Device or resource busy vzquota : (error) […]

Read More
1 3 4 5 7