php - Zend Framework 2 deployment problems -
php - Zend Framework 2 deployment problems -
i created little web application (from zend skeleton application) able manage registration , login operations. i've used xampp develop , test application locally works fine. uploaded application files online on free hosting server 'byehost.com', next indications given in discussion:
deploy zf2 site shared host
when access homepage of application works fine, if navigation ends on page form included error:
fatal error: class 'authorization\form\loginform' not found in /home/vol7_6/byethost8.com/b8_15007573/htdocs/module/authorization/src/authorization/controller/logincontroller.php on line 23
forms class included in folder called "form" @ path module\authorization\src\authorization\form, 'authorization' name chosen module.
is necessary add together specific instructions .htacces file, or problem depends on else?
thanks
typically these sorts of problems caused developing on case-insensitive file scheme (windows). path you've given looks correct, check filename of form class indeed loginform.php (case sensitive).
php .htaccess zend-framework zend-framework2 web-hosting
Comments
Post a Comment