Library Folder Detection Error in Zend Studio

I just had to re-clone the .git repository for one of my projects in Zend Studio 11, and now every time I switch branches in the repository I get an error in Zend telling me "An internal error occurred during: Detecting Library Folders".

It seems that one of the Zend settings files has been deleted or something else.

Any idea how to recover this file, or fix this error?

 An internal error occurred during: "Detecting library folders". Preference node "org.eclipse.wst.validation" has been removed. 

enter image description here

+6
source share
2 answers

I understood the solution. As it turned out, I was on the right track. Zend creates a hidden folder called .settings when creating the project.

For some reason, although it was included in the .gitignore file, it was deleted when switching between branches and resetting the database at a time.

I tried deleting the whole database and re-cloning earlier, but this did not work. The reason was that the .project file (also created by the Zend project file) was transferred to the repository, and upon repeated cloning, Zend saw this file and assumed that it was an existing project.

I also had to completely remove the .project file.

+5
source

I finished deleting the project from zend and recreated it. He solved the problem.

+1
source

Source: https://habr.com/ru/post/975573/


All Articles