If you need to upload or download information to or from your FTP account, you need to set up connection to the ftp account. This can be done basically using your local windows or Linux system. […]
How to Set Website’s Timezone Using php.ini
If you notice the correct time is not showing in your PHP scripts, likely root cause is that the hosting server is in a different timezone. You can easily take care of this by including a line of rule to your php.ini file. The location you set in the rule will determine the time to […]
Setting your PHP Settings via Command Line
When you are operating a PHP file from command line, there may be times when you need to create changes to the PHP configurations. In this post we will explain you how to specify the php.ini file, and modify a PHP settings through command line. If you don’t know how to use command line, you […]
cPanel Internal Server Error open3: fork failed: Cannot allocate memory at cpsrvd-ssl
If you see the below error on your VPS or WHM: To fix the above error try increasing memory for cPanel from WHM >> “Tweak Settings” and see if the problem resolved. If sill facing error you may execute the following command to fix this. /scripts/upcp –force […]
Fantastico Error “You cannot install more than one script in the root directory of a domain”
Sometimes you may experience the following error while trying to set up applications through Fantastico in main public_html folder. […]
Increase max emails per hour for a single domain in cPanel
You can change the most of e-mails permitted for a specific domain to a different limit than the system default by using the following back end file. /var/cpanel/maxemails Just add the entries as follows: MAX_EMAIL_PER_HOUR=# MAX_EMAIL_PER_HOUR-domain.com=# You just make sure to replace domain.com with your domain name. The first MAX_EMAILS_PER_HOUR entry would cover the entire account, […]
MySQL ERROR 1372 (HY000): Password hash should be a 41-digit hexadecimal
If you are getting the following error while creating a user through MySQL Prompt: This is because MySQL expects you to enter password in an encrypted format. You can resolve this error by following the steps given below. mysql> select password(‘test345’); +———————+ | password(‘test345’) | +———————+ | 2ff898e158cd0311 | +———————+ +————————-+ 1 row in set […]
Use Of File Manager in cPanel
The File Manager in your cPanel can be used to view, change, add, and remove website information from your account. Login to your cPanel,then click the File Manager button in the Files section. A dialogue box will pop up, asking where you want to go. To go straight to your public_html directory which keeps your […]
WordPress-File is empty error –please uplaod something more substantial
Today,I set up the WordPress.org blog application on my website.The 5 minute install was exactly good. But whenever I tried to upload a media file I was encountered with the below Error. The concept on how to fix this issue is complex, yet the solution is easy. Go to your cPanel,Create a new file named […]
How to Import a MySQL Database using phpMyAdmin
In this article, we will show you how to import a MySQL Database using phpMyAdmin.We have assume that you have already created a new database that you’re importing into. […]