سلام
اگه موقعی که تو سی پنل میخواستین به phpmyadmin وصل شین با خطای زیر مواجه بودین:
Access Denied Unable to establish a PHP session. If you believe that this is in error or inadvertent, contact your system administrator and ask them to review your server settings.”
بدونین فولدر tmp تو هاستتون حذف شده
جای نگرانی نیست با اقدامات زیر مشکل رفع میشه:
1. Login to the server via SSH as root.
2. Check the permission and ownership of tmp folder in the location /home/user , where ‘user’ is the cpanel username.
root@server [/home/user]# ls -la | grep tmp
drwx—— 8 root root 4096 Apr 1 2013 tmp/
3. سطح دسترسی پویشه tmp باید 755 باشد.
root@server [/home/user]# chmod 755 tmp
4. The ownership of tmp folder should be username.
root@server [/home/user]# chown user. tmp