Skip to main content

OnlineSupport4u

Find the Model Number of Network Card in Linux

By PrasadNaik
February 20, 2016

To find the model number of Network Interface Card installed in your Machine, you can use the lspci command. lspci command will list all detected PCI or PCIe hardware devices installed on your machine. So in order to find only network cards, you can run following command: We got it using below command on our […]

Read More

Installing lspci on CentOS

By PrasadNaik
February 20, 2016

lspci module is not installed on linux os by default you need to use below steps to install it [root@localhost ~]# yum install pciutils Loaded plugins: fastestmirror Setting up Install Process Loading mirror speeds from cached hostfile * base: yum.tamu.edu * extras: mirrors.cmich.edu * openvz-kernel-rhel6: openvz.jetfire.io * openvz-utils: openvz.jetfire.io * updates: centos.mia.host-engine.com Resolving Dependencies –> […]

Read More

Fixed: Strict Standards: Non-static method JLoader::import()

By PrasadNaik
January 12, 2016

Code: Strict Standards: Non-static method JLoader::import() should not be called statically in /var/www/vhosts/marylynnmurray/yalestationspaandsalon.com/libraries/joomla/import.php on line 38Strict Standards: Non-static method JLoader::register() should not be called statically in /var/www/vhosts/marylynnmurray/yalestationspaandsalon.com/libraries/loader.php on line 71 Strict Standards: Non-static method JLoader::import() should not be called statically in /var/www/vhosts/marylynnmurray/yalestationspaandsalon.com/libraries/joomla/import.php on line 39 Strict Standards: Non-static method JLoader::register() should not be called statically […]

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

enable PPP Module to a VPS on OpenVZ

By PrasadNaik
November 23, 2015

To enable PPP on a Openvz VM First you need to check for modules in main node # lsmod | grep ppp [root@hostonline ~]# lsmod | grep ppp pppoatm 4677 0 atm 48487 1 pppoatm zlib_deflate 21629 1 ppp_deflate ppp_mppe 6182 0 ppp_generic 25763 4 pppoatm,ppp_async,ppp_deflate,ppp_mppe slhc 5813 1 ppp_generic We see below modules missing […]

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
1 16 17 18 25