Saturday, October 10, 2009

segmentation fault

in ubuntu, when i installed php5-curl, the next day when I executed a cli script, i got the error "segmentation fault"...

this post helped me get over it: from http://bugs.php.net/bug.php?id=43823


...
I'm having the same problem on 3 diferent Linux distributions Ubuntu,
Debian and Centos. The last one is a 64bits OS.

On Ubuntu and Debian it was solved changing the order of the extensions
on the ini files. In my case I had to load Postgres extension before
CURL.

No comments:

Post a Comment

cancel script completely on ctrl-c

I found this question interesting: basically how to cancel completely a script and all child processes : You do this by creating a subro...