Have ever face followiing phpmyadmin error for apache cpanel .
This error occurs mostly because of improper permission or ownership of a usr’s tmp folder . Because everytime you login to phpmyadmin user session is created in tmp folder . If your tmp folder located under username directory having wrong permission or ownership phpmyadmin can not create session and throw the above message.
How to solve the issue
if you have shell access to your webhost or server, it’s quite easy to solve it .
Login to your ssh. and run The Following two code to solve this error ,But remember to change the word ‘$user ‘ with your respective username .
1 2 3 |
<strong># chown $user. /home/$user/tmp </strong>The proper folder permisson for tmp folder is 755, so run the follwing command |
1 |
<strong>#chmod 755 /home/$user/tmp</strong> |
1 |
<strong> </strong> |
Leave a Reply