How to reset the mysql root password from mysql safe?

Steps to reset mysql root password from mysql safe: # service mysqld stop # mysqld_safe –skip-grant-tables & That should start up mysql without the need for a root password. Once in, type >use mysql >UPDATE user SET password=PASSWORD(‘newpass’) WHERE user=’root’; >FLUSH PRIVILEGES; >quit That will reset the root password for you. Kill all old processes […]

How to upload the bulk files under the document root with the help of file manager?

Most of the times its hard to upload the multiple files by selecting single file…To upload a lot of files to the server at the same time, zip your files on your PC into a single zip, then choose the ‘Upload files’ option in your cPanel File manager. Upload the ZIP file into the location […]

How to Fix the 502 Bad Gateway Error in WordPress

502 Bad Gateway Error is the most irritating and it’s like a headache for the website owner. The most frustrating parameter is running a website and troubleshooting an error when you are unaware of what is happening. This indicates that you must carry out various solutions before landing on the right one. Fortunately, the 502 […]