dewey_witt Posted November 29, 2007 Share Posted November 29, 2007 OK so i ran the go-pear.bat file set up local etc.....And it just wont do it....... when i go to test the instalation its giving me the error: Fatal error: Class 'PEAR' not found in C:\webs\test\test pear.php on line 4 Any help in the mater will be gratly appriciated Thanx Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/ Share on other sites More sharing options...
dewey_witt Posted November 29, 2007 Author Share Posted November 29, 2007 OK I wasnt clear before...... the pear seemed to set up fine... yet I still get the above error...... am I in the wrong place for this? Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-401813 Share on other sites More sharing options...
dewey_witt Posted November 29, 2007 Author Share Posted November 29, 2007 Noone can help still huh? Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402016 Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 There is no class called PEAR within pear. Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402018 Share on other sites More sharing options...
dewey_witt Posted November 29, 2007 Author Share Posted November 29, 2007 OK so look I installed right I used this as a test script <?php require_once 'DB.php'; PEAR::setErrorHandling(PEAR_ERROR_DIE); $db_host = 'localhost'; $db_user = 'root'; $db_pass = 'password'; $db_name = 'dataBase_name'; $dsn = "mysql://$db_user:$db_pass@unix+$db_host/$db_name"; $db = DB::connect($dsn); $db->setFetchMode(DB_FETCHMODE_OBJECT); ?> Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402024 Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 And, the results are? Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402026 Share on other sites More sharing options...
dewey_witt Posted November 29, 2007 Author Share Posted November 29, 2007 The error I received. Fatal error: Class 'PEAR' not found in C:\webs\test\test pear.php on line 4 Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402032 Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 What does.... <?php echo get_include_path(); ?> produce? Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402033 Share on other sites More sharing options...
dewey_witt Posted November 29, 2007 Author Share Posted November 29, 2007 .;c:\PHP\includes;C:\PHP\PEAR Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402036 Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 You don't include the pear file. <?php require_once 'PEAR.php'; ?> Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402037 Share on other sites More sharing options...
dewey_witt Posted November 29, 2007 Author Share Posted November 29, 2007 Whole new error now. Fatal error: Class 'DB' not found in C:\webs\test\test pear.php on line 12 Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402042 Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 Sorry, Ive never used pear. Is there a file called PEAR in C:\PHP\PEAR? Does it contain a class called PEAR? Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402045 Share on other sites More sharing options...
dewey_witt Posted November 29, 2007 Author Share Posted November 29, 2007 Well yeah theres a folder there.... but pear is a big extention...... I dunno Im tryna figure it out. Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402047 Share on other sites More sharing options...
trq Posted November 29, 2007 Share Posted November 29, 2007 Pear is not an extension. Link to comment https://forums.phpfreaks.com/topic/79369-installing-pear-on-xp-woos/#findComment-402050 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.