I'm missing something
I have php 5 set up on my OS X system, and can perform basic PHP functions.
PHP lives in /usr/local/php5. The php.ini file include_path declaration is:
include_path=".:/lib/php:/Users/dramsey/ZendFramework-1.0.1/library/Zend"
...since I have the Zend library in my user directory.
The include path shows up correctly when I execute phpinfo.
However, I'm unable to run any of the Zend tests or samples. All result in a blank page (no HTML) with no indication of what the problem is.
For example, how would I run the amazon-search test? It includes the statement:
require_once 'Zend/Service/Amazon/Query.php';
Hm. Well, my search path is set to the Zend directory, so maybe if I edit it to:
require_once 'Service/Amazon/Query.php';
Nope. Still get a blank page. Any ideas?
|