From:
gradyfausta
Date:
Sep 01 10:09 UTC
Short link
Has anybody ever deployed PA on XAMPP? I got this error
Warning: require_once(HTTP/Client.php) [function.require-once]: failed to open
stream: No such file or directory in C:\xampp\htdocs\fz-2\web\config\common.php
on line 21
Fatal error: require_once() [function.require]: Failed opening required
'HTTP/Client.php' (include_path='.;C:\xampp\php\pear\:../../ext') in
C:\xampp\htdocs\fz-2\web\config\common.php on line 21
and it says on the wiki that I need to install PEAR. I'm not sure if PEAR is
installed or not, but I could find PEAR folder in the PHP folder
C:\xampp\php\PEAR
However, I'm unable to execute pear list on that folder, so I'm confused..
Anyone has ideas?
From:
Martin Spernau
Date:
Sep 01 12:04 UTC
Short link
This is quite similar to the situation I have with OS X and MAMP. The
tricj is to use the pear and php binaries that come with the
distribution. If you try to execute 'php' or 'pear' in Terminal you'd
notmally get the OS X own versions. You can check which is being used by
doing 'php -V' (captiat V)
If you execute these command using the full path to the ones that come
with XAMPP or MAMP you can do all the required installs.
From the errors you posted it looks like you do have PEAR, but not all
the modules that are required. You'd install these in the usual PEAR
manner - with the above trick iof using the full path thos the XAMPP
binaries.
Hope this helps,
-Martin
gradyfausta schrieb:
> Has anybody ever deployed PA on XAMPP? I got this error
>
> Warning: require_once(HTTP/Client.php) [function.require-once]: failed to
open stream: No such file or directory in
C:\xampp\htdocs\fz-2\web\config\common.php on line 21
>
> Fatal error: require_once() [function.require]: Failed opening required
'HTTP/Client.php' (include_path='.;C:\xampp\php\pear\:../../ext') in
C:\xampp\htdocs\fz-2\web\config\common.php on line 21
>
> and it says on the wiki that I need to install PEAR. I'm not sure if PEAR is
installed or not, but I could find PEAR folder in the PHP folder
>
> C:\xampp\php\PEAR
>
> However, I'm unable to execute pear list on that folder, so I'm confused..
Anyone has ideas?
From:
gradyfausta
Date:
Sep 01 19:07 UTC
Short link
Sorry, I don't understand on what am I suppose to do:
"If you execute these command using the full path to the ones that come
with XAMPP or MAMP you can do all the required installs."
What command are you talking about? php -V just give me a list of flags for
php command. I'm still unable to do pear though. Also, what are the required
PEAR modules that needs to be installed? How to install them?
Thanks,
Grady
On Mon, Sep 1, 2008 at 5:04 AM, Martin Spernau <martin@traumwind.de> wrote:
> This is quite similar to the situation I have with OS X and MAMP. The
> tricj is to use the pear and php binaries that come with the
> distribution. If you try to execute 'php' or 'pear' in Terminal you'd
> notmally get the OS X own versions. You can check which is being used by
> doing 'php -V' (captiat V)
>
> If you execute these command using the full path to the ones that come
> with XAMPP or MAMP you can do all the required installs.
>
> From the errors you posted it looks like you do have PEAR, but not all
> the modules that are required. You'd install these in the usual PEAR
> manner - with the above trick iof using the full path thos the XAMPP
> binaries.
>
> Hope this helps,
>
> -Martin
>
> gradyfausta schrieb:
> > Has anybody ever deployed PA on XAMPP? I got this error
> >
> > Warning: require_once(HTTP/Client.php) [function.require-once]: failed to
> open stream: No such file or directory in
> C:\xampp\htdocs\fz-2\web\config\common.php on line 21
> >
> > Fatal error: require_once() [function.require]: Failed opening required
> 'HTTP/Client.php' (include_path='.;C:\xampp\php\pear\:../../ext') in
> C:\xampp\htdocs\fz-2\web\config\common.php on line 21
> >
> > and it says on the wiki that I need to install PEAR. I'm not sure if PEAR
> is installed or not, but I could find PEAR folder in the PHP folder
> >
> > C:\xampp\php\PEAR
> >
> > However, I'm unable to execute pear list on that folder, so I'm
> confused.. Anyone has ideas?
> >
> > Thanks,
> > Grady
> >
> >
> > -----------------------------------------
> > Full text of this topic in pa-users:
> > http://lists.peopleaggregator.org/r/topic/2XlU90unaY9U7mVXKyDwxk
> >
> > To leave pa-users, email
> > mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
> >
> > Start your own free groups and site with
> > OnlineGroups.Net http://onlinegroups.net
> >
> >
>
> -----------------------------------------
> Full text of this topic in pa-users:
> http://lists.peopleaggregator.org/r/topic/7khTRgoQUq6pLJ87hpWtdv
>
> To leave pa-users, email
> mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
>
> Start your own free groups and site with
> OnlineGroups.Net http://onlinegroups.net
>
From:
Martin Spernau
Date:
Sep 01 20:07 UTC
Short link
I'm not sure how XAMPP does it, but the MAMP distribution has it's own
php and pear binaries
This what it looks like on my machine (Serenity)
Serenity:/Applications/MAMP/bin/php5/bin martin$ ls
pear pecl php-config phpunit
peardev php phpize
In that folder I can excecute the MAMP's own 'pear' binary:
Serenity:/Applications/MAMP/bin/php5/bin martin$ ./pear help
(this gives a list of 'helpful' messages)
To learn how to use PEAR and the pear binary, please refer to the
http://pear.php.net/
website
-Martin
Grady Laksmono schrieb:
> Sorry, I don't understand on what am I suppose to do:
>
> "If you execute these command using the full path to the ones that come
> with XAMPP or MAMP you can do all the required installs."
>
> What command are you talking about? php -V just give me a list of flags for
> php command. I'm still unable to do pear though. Also, what are the required
> PEAR modules that needs to be installed? How to install them?
>
> Thanks,
> Grady
>
> On Mon, Sep 1, 2008 at 5:04 AM, Martin Spernau <martin@traumwind.de> wrote:
>
>
>> This is quite similar to the situation I have with OS X and MAMP. The
>> tricj is to use the pear and php binaries that come with the
>> distribution. If you try to execute 'php' or 'pear' in Terminal you'd
>> notmally get the OS X own versions. You can check which is being used by
>> doing 'php -V' (captiat V)
>>
>> If you execute these command using the full path to the ones that come
>> with XAMPP or MAMP you can do all the required installs.
>>
>> From the errors you posted it looks like you do have PEAR, but not all
>> the modules that are required. You'd install these in the usual PEAR
>> manner - with the above trick iof using the full path thos the XAMPP
>> binaries.
>>
>> Hope this helps,
>>
>> -Martin
>>
>> gradyfausta schrieb:
>>
>>> Has anybody ever deployed PA on XAMPP? I got this error
>>>
>>> Warning: require_once(HTTP/Client.php) [function.require-once]: failed to
>>>
>> open stream: No such file or directory in
>> C:\xampp\htdocs\fz-2\web\config\common.php on line 21
>>
>>> Fatal error: require_once() [function.require]: Failed opening required
>>>
>> 'HTTP/Client.php' (include_path='.;C:\xampp\php\pear\:../../ext') in
>> C:\xampp\htdocs\fz-2\web\config\common.php on line 21
>>
>>> and it says on the wiki that I need to install PEAR. I'm not sure if PEAR
>>>
>> is installed or not, but I could find PEAR folder in the PHP folder
>>
>>> C:\xampp\php\PEAR
>>>
>>> However, I'm unable to execute pear list on that folder, so I'm
>>>
>> confused.. Anyone has ideas?
>>
>>> Thanks,
>>> Grady
>>>
>>>
>>> -----------------------------------------
>>> Full text of this topic in pa-users:
>>> http://lists.peopleaggregator.org/r/topic/2XlU90unaY9U7mVXKyDwxk
>>>
>>> To leave pa-users, email
>>> mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
>>>
>>> Start your own free groups and site with
>>> OnlineGroups.Net http://onlinegroups.net
>>>
>>>
>>>
>> -----------------------------------------
>> Full text of this topic in pa-users:
>> http://lists.peopleaggregator.org/r/topic/7khTRgoQUq6pLJ87hpWtdv
>>
>> To leave pa-users, email
>> mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
>>
>> Start your own free groups and site with
>> OnlineGroups.Net http://onlinegroups.net
>>
>>
>
> -----------------------------------------
> Full text of this topic in pa-users:
> http://lists.peopleaggregator.org/r/topic/2QbZm4RZtVI6UYcpclgKMS
>
> To leave pa-users, email
> mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
>
> Start your own free groups and site with
> OnlineGroups.Net http://onlinegroups.net
>
>
From:
gradyfausta
Date:
Sep 01 20:26 UTC
Short link
I can't find that path on XAMPP. I'm really confused in the sense that it
doesn't even have PEAR binary on the PEAR folder that is located in the PHP
folder on XAMPP. I'm not sure where else to find it, I've tried to go around
but out of luck.
C:\xampp\php\PEAR
it has PEAR.php though, but I don't even know if that's useful.
- Grady
On Mon, Sep 1, 2008 at 1:06 PM, Martin Spernau <martin@traumwind.de> wrote:
> I'm not sure how XAMPP does it, but the MAMP distribution has it's own
> php and pear binaries
> This what it looks like on my machine (Serenity)
>
> Serenity:/Applications/MAMP/bin/php5/bin martin$ ls
> pear pecl php-config phpunit
> peardev php phpize
>
> In that folder I can excecute the MAMP's own 'pear' binary:
> Serenity:/Applications/MAMP/bin/php5/bin martin$ ./pear help
> (this gives a list of 'helpful' messages)
>
> To learn how to use PEAR and the pear binary, please refer to the
> http://pear.php.net/
> website
>
> -Martin
>
> Grady Laksmono schrieb:
> > Sorry, I don't understand on what am I suppose to do:
> >
> > "If you execute these command using the full path to the ones that come
> > with XAMPP or MAMP you can do all the required installs."
> >
> > What command are you talking about? php -V just give me a list of flags
> for
> > php command. I'm still unable to do pear though. Also, what are the
> required
> > PEAR modules that needs to be installed? How to install them?
> >
> > Thanks,
> > Grady
> >
> > On Mon, Sep 1, 2008 at 5:04 AM, Martin Spernau <martin@traumwind.de>
> wrote:
> >
> >
> >> This is quite similar to the situation I have with OS X and MAMP. The
> >> tricj is to use the pear and php binaries that come with the
> >> distribution. If you try to execute 'php' or 'pear' in Terminal you'd
> >> notmally get the OS X own versions. You can check which is being used by
> >> doing 'php -V' (captiat V)
> >>
> >> If you execute these command using the full path to the ones that come
> >> with XAMPP or MAMP you can do all the required installs.
> >>
> >> From the errors you posted it looks like you do have PEAR, but not all
> >> the modules that are required. You'd install these in the usual PEAR
> >> manner - with the above trick iof using the full path thos the XAMPP
> >> binaries.
> >>
> >> Hope this helps,
> >>
> >> -Martin
> >>
> >> gradyfausta schrieb:
> >>
> >>> Has anybody ever deployed PA on XAMPP? I got this error
> >>>
> >>> Warning: require_once(HTTP/Client.php) [function.require-once]: failed
> to
> >>>
> >> open stream: No such file or directory in
> >> C:\xampp\htdocs\fz-2\web\config\common.php on line 21
> >>
> >>> Fatal error: require_once() [function.require]: Failed opening required
> >>>
> >> 'HTTP/Client.php' (include_path='.;C:\xampp\php\pear\:../../ext') in
> >> C:\xampp\htdocs\fz-2\web\config\common.php on line 21
> >>
> >>> and it says on the wiki that I need to install PEAR. I'm not sure if
> PEAR
> >>>
> >> is installed or not, but I could find PEAR folder in the PHP folder
> >>
> >>> C:\xampp\php\PEAR
> >>>
> >>> However, I'm unable to execute pear list on that folder, so I'm
> >>>
> >> confused.. Anyone has ideas?
> >>
> >>> Thanks,
> >>> Grady
> >>>
> >>>
> >>> -----------------------------------------
> >>> Full text of this topic in pa-users:
> >>> http://lists.peopleaggregator.org/r/topic/2XlU90unaY9U7mVXKyDwxk
> >>>
> >>> To leave pa-users, email
> >>> mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
> >>>
> >>> Start your own free groups and site with
> >>> OnlineGroups.Net http://onlinegroups.net
> >>>
> >>>
> >>>
> >> -----------------------------------------
> >> Full text of this topic in pa-users:
> >> http://lists.peopleaggregator.org/r/topic/7khTRgoQUq6pLJ87hpWtdv
> >>
> >> To leave pa-users, email
> >> mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
> >>
> >> Start your own free groups and site with
> >> OnlineGroups.Net http://onlinegroups.net
> >>
> >>
> >
> > -----------------------------------------
> > Full text of this topic in pa-users:
> > http://lists.peopleaggregator.org/r/topic/2QbZm4RZtVI6UYcpclgKMS
> >
> > To leave pa-users, email
> > mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
> >
> > Start your own free groups and site with
> > OnlineGroups.Net http://onlinegroups.net
> >
> >
>
> -----------------------------------------
> Full text of this topic in pa-users:
> http://lists.peopleaggregator.org/r/topic/1Wdc829ZgbDiBHHbD9wpO6
>
> To leave pa-users, email
> mailto:pa-users@lists.peopleaggregator.org?Subject=unsubscribe
>
> Start your own free groups and site with
> OnlineGroups.Net http://onlinegroups.net
>
From:
Martin Spernau
Date:
Sep 01 20:39 UTC
Short link
Grady Laksmono schrieb:
> C:\xampp\php\PEAR
>
Ow... how did I miss this: you are on WINDOWS!
In that case, I'm afraid you are out of luck regarding PeopleAggregator.
For various reasons, PA only runs on UNIX type systems.
As to where to find the php and/or pear binaries... I'm assuming they'd
be somewhere like
C:\xampp\bin
or similar. Also on windows they'd be php.exe and I'm not sure what pear
equivalent would be, as on UNIX it is a bash script...
Add to the topic
PEAR problem on XAMPP
[?]
You cannot post because you are not logged in.
If you are a member
pa-users,
login to post to this topic.
Otherwise
sign up,
become a member of
pa-users,
and post to this topic.