If you add to the PATH but it doesn’t take you can add the path items manually in index.php: ini_set(‘include_path’, ini_get(‘include_path’). ‘;C:\Zend\library;’);

{ 0 comments }

To debug a Zend framework project set to run on a virtual host, use these settings: Web Server (Apache or another) used for development is located on this machine Document root: C:\zs\quickstart\public (i.e., the PUBLIC directory of your project) URL: http://quickstart.local/ (i.e, the virtual URL of your project) Project root directory: C:\zs\quickstart\public (i.e., the PUBLIC [...]

{ 0 comments }

http://framework.zend.com/manual/en/learning.quickstart.intro.html With many thanks to commenter alstanto on: 2010-04-07 22:04:18 Download Zend Framework 1.10.5 from: http://downloads.zend.com/framework/1.10.5/ZendFramework-1.10.5.zip Pre-Tutorial Extract to c:\ZendFramework-1.10.5 Rename directory to c:\Zend Add to Environment Path: ;C:\Zend\bin;C:\Zend\library;C:\xampp\php Uncomment C:\xampp\apache\conf\httpd.conf Include conf/extra/httpd-vhosts.conf In C:\xampp\apache\conf\extra\httpd-vhosts.conf add: <VirtualHost *:80> DocumentRoot “c:\zs\quickstart\public” ServerName quickstart.local SetEnv APPLICATION_ENV “development” <Directory c:\zs\quickstart\public> DirectoryIndex index.php AllowOverride All Order allow,deny Allow from [...]

{ 0 comments }

To override the production environment default in Zend framework, add this to .htaccess: SetEnv APPLICATION_ENV development “development” enables the application to display debugging errors even when the .ini only has a [production] section.

{ 0 comments }