I've not used Zend's server, but this is an SVN error. Your working copy is tied to the repository of the UUID from which it was initially created. The error means the UUID has changed on the server since your WC was created.
This usually happens when a dump/load cycle has been done on the server and the UUID of the repository wasn't preserved.
There's two way to remedy this. On the client side:
svn switch --relocate
Will relocate your WC to the new repository (which I'm assuming should be the old one). I think Tortoise has a separate relocate
option, rather than just switch
.
Or, on the server:
svnadmin setuuid <repository path> <new uuid>
You can set the UUID of the repo to the old one and your existing WC should then start talking to it again. (svn info
inside your WC will show you the UUID it's expecting.)
The former option is what you need if you're not in control of the repo, the latter if you are in control of it. (Other clients would be seeing the same issue).
More detail on repository UUIDs here: http://svnbook.red-bean.com/en/1.5/svn.reposadmin.maint.html#svn.reposadmin.maint.uuids