Happy belated Thanksgiving!
I have followed the installation guide on:
http://code.google.com/p/phpdays/wiki/EnInstall
What is the starting page (for example, with PHP, I know it works when typed in <?php phpinfo(); ?>, and with Apache, “It works!”)?
Even though I know beta version is not a stable one, but what is the latest working version of phpdays I can work on?
I am using “phpdays-1.1beta3”, and encountered some roadblocks. To name a few:
1. Lib\Days\Engine.php, line 126: Days_Event::run('engine.start');
-There is no observers added to the $_observers array in Days_Events yet.
2. Lib\Days\Engine.php, line 132: Days_Event::run('controller.start');
-There is no observers added to the $_observers array in Days_Events yet.
3. Lib\Days\Engine.php, line 137: $controllerClass = "{$brand}_Controller_" . ucfirst($controller);
-Echo $controllerClass returns “Myblog_Controller_Myblog”.
-The function autoload tries to load “document_root/myblog/app/Controller/Myblog.php”, but it does not exist.
Any comments? Thank you.