I want to deploy my project made in zend framework to my shared hosting. My project has such structure:
application docs library Obsolete public scripts tests
This is what I have done:
I copied Zend folder (all library files) into library folder
I copied all the structure above into public_html/projects/project (so if I type www.mydomain.com/projects/project/public I run the project
I tried to click on some link so that it redirected me to www.mydomain.com/projects/project/public/someController/someAction
Unfortunately all i see is a white, empty page. Locally (using Zend server CE) it worked perfectly Here it looks like Zend doesn't recognize that it should do anything with this url and redirecto to appropriate action.
What have I missed? Greetings!
application.inisettings for display exceptions and display errors so you can debug. Also, note these typical gotchas between Windows dev environments and Linux production environments: stackoverflow.com/questions/4634151/… - David Weinraub