Trying to make Zend_Loader work in xampp to get Gdata info

Howdy. also posted in stack but hope you folks can help.

Am just starting out trying get info off the google analyitcs api and finished configuring the php.ini and requiring the Loader.php. while i got no error messages and all seemed well once i got to the loadClass it failed. this is what i have in the php.ini

include_path=".;C:\xampp\php\PEAR:.;C:\xampp\htdocs\gaDataGather\ZendGdata\library"

this is what i tested w/no issues or error messages:

require_once('ZendGdata/library/Zend/Loader.php');

Now am at this stage:

 require_once 'ZendGdata/library/Zend/Loader.php';
Zend_Loader::loadClass('Zend_Gdata');
Zend_Loader::loadClass('Zend_Gdata_Query');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');

At which point it fails and the error msgs are:

Warning: include_once(Zend\Gdata.php): failed to open stream: No such file or directory in C:\xampp\htdocs\gaDataGather\ZendGdata\library\Zend\Loader.php on line 134

Warning: include_once(): Failed opening 'Zend\Gdata.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\gaDataGather\ZendGdata\library\Zend\Loader.php on line 134

Warning: require_once(Zend/Exception.php): failed to open stream: No such file or directory in C:\xampp\htdocs\gaDataGather\ZendGdata\library\Zend\Loader.php on line 86

Fatal error: require_once(): Failed opening required 'Zend/Exception.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\gaDataGather\ZendGdata\library\Zend\Loader.php on line 86

I have my .php files & my ZenDGdata folder in the same dir. Been reading up on it and it seems Zend might have some issues w/xampp. Has anyone here some experience w/this & how to fix it.
Thx
D

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.