Hey I have this code in a php file to test to see if zend is working:
<?php
include 'Zend.php';
Zend::loadClass('Zend_Controller_Front');
?>
I am using eclipse as my editor, and I have the file placed in the folder for docs in my xampp folder.
My php.ini file looks like this:
; Windows: "\path1;\path2"
include_path = ".;C:\xampp\php\pear\;C:\Source_Code\ZendFramework-1.0.3\library\Zend"
In eclipse I get an warning message saying that:
Include filename: 'Zend.php' doesn't exist in project: C:/xampp/htdocs/xampp/Nuke
I thought for the Zend framework all you have to do is include the path to where Zend is located on my computer?