Work through the Skeleton Application::Module section for ZF2. Application is displaying the default ZF2 landing page (module/Application/view/application/index/index.phtml).
And I've set up a test/ directory in my module then ran phpunit test. The test checks out and it returns OK (7 tests, 16 assertions).
As far as I can tell, the application through Database and Modules is setup correctly. However when I go to load the module page, I get a blank page with one line of text: missing.html.
Setup:
Module Name: Guestbook
App Path: octoberblue.net/guestbook
Virtual Host: guestbook.octoberblue.net
Directory(httpd-vhosts.conf): guestbook/public
mod_rewrite enabled .htaccess configured
Current file structure
My module name is Guestbook and I'm porting the ZF1 guestbook Skeleton project to ZF2.
Error_log when loading guestbook.october.net/guestbook (the suggested method)
File does not exist: /opt/local/apache2/htdocs/octoberblue/guestbook/public/guestbook
BTW, the framework is returning the error/text. If I try and load the module viewer (view/guestbook/guestbook/index.phtml) by entering the absolute real path in the browser address bar, I get a different error in the error_log, that error is:
.htaccess:
Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
Any thoughts appreciated. Thanks in advance.