Reputation: 865
the questions that i going to ask may sound very silly for ZF developer but i really need help on this. I just start ZF2 recently and followed the tutorial http://framework.zend.com/manual/2.0/en/user-guide/overview.html to create skeleton application.
Now i trying to put the skeleton application to my hosting server(FYI, i'm using hostgator shared hosting). However, I have no idea on how do this and i heard that hostgator's shared hosting do not allow installation for zend framework.
I oso do heard that zend framework do not need installation but only copy the Zend library folder(Installing Zend Framework 2 Without Root Access?). My questions are as following:
Sorry for the silly questions but i really have no experience on zend framework. Thank you in advance.
Upvotes: 0
Views: 3280
Reputation: 16455
Since you've followed the user-manual, all the files that ZF2 needs are within your $projectDir
.
This means, all you have to do is to copy all files of your $projectDir
onto your hosting Server and you're almost done. The only thing that really needs to be done after that point is to set up your domain / subdomain to route into the /public
-folder of your $projectDir
.
Upvotes: 1