To increase the PHPMyAdmin upload limitation in Cpanel servers you can edit the php.ini file mentioned below : /usr/local/cpanel/3rdparty/etc/phpmyadmin/php.ini. upload_max_filesize = 100M post_max_size = 100M Even if you edit the main php.ini file it won’t work in this case. Cpanel >> PHPMyAdmin may not reflect the change. If so log in to your WHM as […]
Prestashop: HTTP 500 Internal Server Error
Although,this error is extremely unexplained, But you still have methods to find more details. Webservers are almost always configured to hide particular error details. If your PrestaShop shop is affected by this devastating error, you can turn on PrestaShop’s Error reporting from FTP or your hosting’s CPanel to get more details. […]
Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (2) [2002]
Sometime get the following error on MySQL sites and also when trying to access MySQL from server: Solution is very simple: /etc/my.cnf skip-innodb Try to restart MySQL and if it don’t start then use: killall -9 mysqld Assign appropriate permissions to your /tmp directory. # chmod 1777 /tmp After that restart MySQL: service mysql restart Cheers. […]
How to reset MySQL root password in linux centos
To Reset your MySQL root password: /etc/init.d/mysqld stop mysql -u root Use mysql; update user set password=(“YOUR_ROOT_PW”) where User=’root’; or /usr/bin/mysqladmin -u root password ‘yourmysqlpassword’ Above command can be used to reset plesk admin password as well. flush privileges; quit /etc/init.d/mysqld stop /etc/init.d/mysqld start mysql -u root -p Done. If you want to reset MySQL […]
How to reset mysql user password in linux through command prompt
Login to MySQL. mysql -u root -p In mysql prompt use mysql> use mysql; Now change the password for user “seemab” to “bird.123″ as below : [mysql> update user set password=PASSWORD(“bird.123”) where User=’seemab’;] […]
How to Import Blogger data into WordPress
Clients that originally designed their websites with Google Blogger (Blogspot) can have the blog details imported into their WordPress application by using the “Import” function in the WordPress dashboard. WordPress has a built in “Import” function that allows you to transfer different blogs like Blogspot,LiveJournal, and even WordPress. The transfer procedure is the same for […]
How to Enable https (SSL) for WordPress
In this article, we will explain you how to enable https in WordPress, so you can connect to your website securely over SSL. Login to your WordPress dashboard. […]
Automatic wordpress upgrade fails
If you’ve encountered issues trying to update WordPress, you can simply follow the steps below to resolve them. Open your wp-config.php file with the cPanel file manager and increase your WordPress memory limit. Include the following line in the “define” section: […]
problem with ClamAV
We have installed ClamAV from the WHM/Cpanel plugin manager; the installation process was successful but when we try to launch a scan we see that the process hangs; it seems that the clamd daemon is not started. The web interface displays the message: […]
Moving WordPress from a sub-folder to main domain in cPanel
If you have set up WordPress on a sub directory and you need to shift it to the primary domain, then you can follow the actions described below, Login to the cPanel of the domain. […]