Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: Internal error: Can Not find registry for Application ID  (Read 4389 times)

0 Members and 1 Guest are viewing this topic.

dustin

  • Guest
Internal error: Can Not find registry for Application ID
« 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.

====