Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. Also ensure that cookies are enabled in your browser.

I was getting below error while accessing phpMyAdmin -

Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. Also ensure that cookies are enabled in your browser.

Solution :-

Check the inode usage. If inode limit get exceeded then you'll face this error.
Below is the Linux command for checking detailed inode Usage -

echo "Detailed Inode usage for: $(pwd)" ; for d in `find -maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d |wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "Total: \t\t$(find $(pwd) | wc -l)\n"

You can follow below steps to reduce the inode usage of your service -

1. Remove all files/folders you don’t need.

2. Check the number of cache files you have, applications such as Joomla can generate a lot of cache files; you should regularly check your cache folder and reduce the number of cached files you keep.

3. Make sure you check the mailbox regularly and delete all mails you don't need.

4. Check your cPanel's main email account regularly, the mails for it are kept in:
/home/username/mail/cur
/home/username/mail/new
where username is your cPanel username. You can manually delete the messages in these folders using cPanel's File Manager.

4. You should also check your email accounts regularly and delete any spam messages from them.

5. If you have email accounts you don't need or use, it would be best to remove them.


Note - Make sure to check the disk quota. It should not be exceeded.
  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

This webpage is not found - Cannot export database

While exporting the database zip file from cPanel >> phpMyAdmin as well from SSH, I was...

sendmail cannot be called directly from a shell with the current user id

While sending email using sendmail scirpt, I was getting the error message as - sendmail:...

Authentication Failed - Email password is not working in desktop application

I tried accessing the email account from one of the email client on my desktop. It was generating...

MySQL Error 28 - WordPress Error

While accessing the WordPress site and dashboard, I was getting the error as 'MySQL Error 28'....

Powered by WHMCompleteSolution