SSH to your server as root and remove the restrictions, which are stored in the 'psa' database:
#Connect to your mysql server's Plesk admin database:
mysql -uadmin -p`cat /etc/psa/.psa.shadow ` psa
#List the IPs which are allowed to access the Plesk control panel
mysql> select * from cp_access;
#Check the default access policy
mysql> select * from misc where param="access_policy";
#To remove all the IPs from 'cp_access' table:
mysql> delete from cp_access;
#To change the default access policy to "allow":
mysql> update misc set val="allow" where param="access_policy";
Lemon squeezy.
|