Re: [PHP] unable to load perl extension

2005-12-31 Thread dev lamp
On 12/31/05, Richard Lynch <[EMAIL PROTECTED]> wrote: > On Thu, December 29, 2005 9:17 am, dev lamp wrote: > > Scenario 2: > > the perl extension does not get loaded and the PHP script crashes. > > Define "crashes"... > > Does it literally crash the PHP/Apache process, or does it just print > out "

Re: [PHP] unable to load perl extension

2005-12-30 Thread Richard Lynch
On Thu, December 29, 2005 9:17 am, dev lamp wrote: > I am unable to call perl code from PHP, since the extension does not > get loaded ! > > Scenario 1: > use dl('perl.so'); in the php code and invoke the script from the > command line > The script works fine and the perl code gets executed as well

Re: [PHP] unable to load perl extension

2005-12-30 Thread Jochem Maas
dev lamp wrote: On 12/29/05, Jochem Maas <[EMAIL PROTECTED]> wrote: dev lamp wrote: Hi I am unable to call perl code from PHP, since the extension does not get loaded ! Scenario 1: use dl('perl.so'); in the php code and invoke the script from the command line The script works fine and the p

Re: [PHP] unable to load perl extension

2005-12-29 Thread dev lamp
On 12/29/05, Jochem Maas <[EMAIL PROTECTED]> wrote: > dev lamp wrote: > > Hi > > > > I am unable to call perl code from PHP, since the extension does not > > get loaded ! > > > > Scenario 1: > > use dl('perl.so'); in the php code and invoke the script from the command > > line > > The script works

Re: [PHP] unable to load perl extension

2005-12-29 Thread Jochem Maas
dev lamp wrote: Hi I am unable to call perl code from PHP, since the extension does not get loaded ! Scenario 1: use dl('perl.so'); in the php code and invoke the script from the command line The script works fine and the perl code gets executed as well. so the extension is not being loaded a

[PHP] unable to load perl extension

2005-12-29 Thread dev lamp
Hi I am unable to call perl code from PHP, since the extension does not get loaded ! Scenario 1: use dl('perl.so'); in the php code and invoke the script from the command line The script works fine and the perl code gets executed as well. Scenario 2: the perl extension does not get loaded and th