Admin-Ahead Community

Windows => General Windows => Topic started by: dustin on February 01, 2014, 11:00:50 am

Title: Internal error: Can Not find registry for Application ID
Post by: dustin on February 01, 2014, 11:00:50 am
We tried to install wordpress in our plesk panel and we are getting the following error.
 
=======
Internal error: Can not find registry resource for Application ID C50082c7-1bc4-….
 
Message: Can not find registry resource for Application ID C50082c7-1bc4-….
File: Registry.php
Line 152
Type Apspp_Exception
=======
 
The following trick will fix the issue. Login to the windows server and access the mysql. Once you logged, execute the following commands.
 
====
mysql>use psa
mysql>select * from apsContextsApplications where registryApplicationId like ‘c50082c7%’;
====
 
You will get the output similar as below.
 
—–
id   apsContextId   registryApplicationId
688   385   c50082c7-1bc4-4c59-a7c7-1e0a68e48fcd
—–
 
Note down the ID and execute the below command in the mysql prompt.
 
====
mysql >delete * from apsContextsApplications where id = 688
====
Once you executed the command, you will able to install wordpress or anyother application.

====