Skip to main content

OnlineSupport4u

[AuthFailure] Either the username was not recognised, or the password was incorrect)

By Prasad Naik
April 11, 2016

Getting error on XVNC for password authentication I could see below error in logs [AuthFailure] Either the username was not recognised, or the password was incorrect) After googling I found vnc server will need to be restarted once password is reset root@online [~]# /etc/init.d/vncserver-virtuald restart root@online [~]# /etc/init.d/vncserver-x11-serviced restart Now VNC work fine

Read More

Apache Issue

By Prasad Naik
March 25, 2016

“Secure Connection Failed An error occurred during a connection to realtrafficsource.com. The OCSP server suggests trying again later. Error code: SEC_ERROR_OCSP_TRY_SERVER_LATER The page you are trying to view cannot be shown because the authenticity of the received data could not be verified. Please contact the website owners to inform them of this problem.” Solution: Login […]

Read More

Find GPU or Graphical processing Unit in Linux

By Prasad Naik
February 20, 2016

While working on one of the issue we need to check if GPU is installed We got it using below command which shows type of CPU installed in cli mode [root@localhost ~]# lspci -vnn | grep VGA -A 12 07:0b.0 VGA compatible controller [0300]: ASPEED Technology, Inc. ASPEED Graphics Family [1a03:2000] (rev 10) (prog-if 00 […]

Read More

Find the Model Number of Network Card in Linux

By Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 12 13 14 19