C3rd
Zend Framework: changing public to public_html for CPanel
Posted: 25 Apr 2012, 7:21am - WednesdayIn Zend Framework, the public files are located at public folder, but CPanel are located at public_html. What you will do is create a symlink.
ln -s public public_htmlthen this structure will work:
htdocs/ myvhost.com/ public/ application/ library/ public_html # this is actually a symlink pointing to publicThat's it... :) Reference: http://stackoverflow.com/questions/3903127/hosting-php-zend-framework-application-on-shared-cpanel-server Thanks to: prodigitalson