Help me correct my php include path on windows 7, i've hit a block

kuchi

New Member
i've been suggested to use the ZFDotrine from a post here but right now it turns out to be kind of headache where i don't know why zf can't see the zfdoctrine provider. I have a kind of shady environment on my \[code\]windows 7\[/code\].i have \[code\]xampp 1.7.3\[/code\] and \[code\]zend server5.0.2\[/code\] on my machine each with a different version of zf.so i downloaded zf 1.10.8 under drive c (\[code\]C:\ZendFramework\[/code\]) and referenced its bin in the \[code\]environment variable path\[/code\], and its library in \[code\]php.ini\[/code\]. i've removed \[code\]c:/xampp/php/PEAR/zend\[/code\] folder and \[code\]c:/xampp/php/zf.bar | zf.php\[/code\]. i also have netbeans 6.9 created the zf.ini for me.After some issue with NetBeansCommandsProvider i got everything working fine, from command line tool project create to tool from netbeans.xamp/php.ini\[quote\] include_path = ".;C:\xampp\php\PEAR;C:\ZendFramework\library;"\[/quote\]zendserver/php.ini\[quote\] include_path=".;C:\ZendFramework\library"\[/quote\]in zf.ini i have change php.includepath to php.include_path\[quote\] php.include_path = "C:\ZendFramework\library;.;C:\Users\sensei\ .netbeans\6.9\zend;C:\ZFDoctrine;" basicloader.classes.0 = "NetBeansCommandsProvider"\[/quote\]So with ZFDoctrine physically under C and referenced in zf.ini i thougth everything would work out but i'm having errors\[quote\] Failed opening 'ZFDoctrine\Tool\DoctrineProvider.php' for inclusion (include_path='.;C:\xampp\php\PEAR;C:\ZendFramework\library;C:\ZFDoctrine;') in C:\ZendFramework\library\Zend\Loader.php on line 147\[/quote\]for the command \[code\]zf enable config.provider ZFDoctrine_Tool_DoctrineProvider\[/code\]Apparently when i copy ZFDoctrine folder to C:\ZendFramework\library\zend\ it works.that makes me realize there is something wrong with the include_path.i'm thinking also about copying it to the PEAR folder but that too, i don't know if that's the best way to go.I just don't understand why it can't find the ZFDoctrine folder.I'm kinda stuck.Please has anyone successfully using this to share his experience with me?Can you point out what i'm not doing right? thanks for reading this.this is a kind of blocker to me
 
Back
Top