Re: [PHP] MySQL Appeal from Monty

2009-12-13 Thread Lester Caine
Lenin wrote: You might also like this: Come on Monty - Lukas Smith http://bit.ly/5lmwwD I've been watching some of this debate with interest, but I'll stay with a database that has none of the baggage that MySQL has always had, and IS currently replacing Oracle in many large sites :) -- Les

Re: [PHP] MySQL Appeal from Monty

2009-12-13 Thread Lenin
You might also like this: Come on Monty - Lukas Smith http://bit.ly/5lmwwD

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-13 Thread René Fournier
PHP Version 5.3.0 Directive Local Value Master Value allow_call_time_pass_reference Off Off allow_url_fopen On On 2009-12-14, at 12:26 AM, Gaurav Kumar wrote: > What is the value for "allow_url_fopen" in your php.ini? It should be 1. > > > > > > 2009/12/13 René Fournier

[PHP] Re: Learning PHP

2009-12-13 Thread Robert H
On 12/13/09 8:50 AM, tedd wrote: As such, the best book I've read lately has been "PHP, MySQL & Javascript" by Nixon published by O'Reilly. You can buy it on Amazon for less than $27.00 and it's well worth the price. Cheers, tedd Thanks Tedd, Bob -- PHP General Mailing List (http://www.ph

Re: [PHP] Why does CURLOPT_FOLLOWLOCATION require open_basedir to be turned off?

2009-12-13 Thread Alex S Kurilo
I can't see any conceivable benefit to this restriction when using open_basedir, as I thought that related to the local file system - unless CURL can use file:// URLs to access the local system? That's the problem. I always use open_basedir (not all the sites on my servers are safe enough). An

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-13 Thread Gaurav Kumar
What is the value for "allow_url_fopen" in your php.ini? It should be 1. 2009/12/13 René Fournier > CURL works (remote and local) > file_get_contents() doesn't work (remote or local). > > > > On 2009-12-13, at 4:3

Re: [PHP] Why does CURLOPT_FOLLOWLOCATION require open_basedir to be turned off?

2009-12-13 Thread Andy Shellam (Mailing Lists)
Hi, > I was wondering why CURLOPT_FOLLOWLOCATION requires open_basedir and > safe_mode to be turned off. > > The following was found in the changelog(http://www.php.net/ChangeLog-5.php): > > Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or safe_mode are > enabled. (Stefan E., Ilia)

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-13 Thread René Fournier
CURL works (remote and local) file_get_contents() doesn't work (remote or local). On 2009-12-13, at 4:39 PM, Gaurav Kumar wrote: > Ok Agreed. > > Lets do one last chance to ensure that your system is allowing external > connections or connection to other systems in the network- > > Use Curl

Re: [PHP] Learning PHP

2009-12-13 Thread tedd
At 12:27 PM -0500 12/12/09, Robert H wrote: What is a good beginners programming book for PHP? I like "dead trees" more than reading stuff on my screen, so I am looking for a book. Thanks! Bob Bob: I've purchased and read literally scores of programming books and all have value. In fact,

[PHP] Why does CURLOPT_FOLLOWLOCATION require open_basedir to be turned off?

2009-12-13 Thread Alex S Kurilo
I was wondering why CURLOPT_FOLLOWLOCATION requires open_basedir and safe_mode to be turned off. The following was found in the changelog(http://www.php.net/ChangeLog-5.php): Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or safe_mode are enabled. (Stefan E., Ilia) Also I read s

Re: [PHP] MySQL Appeal from Monty

2009-12-13 Thread metastable
rich...@rgraph.net wrote: > Hi, > > You might have already seen this, however if you haven't this may interest > you: > > http://monty-says.blogspot.com/2009/12/help-saving-mysql.html > > Sent my appeal to comp-merger-regis...@ec.europa.eu and I would suggest everyone on this list does the same

[PHP] MySQL Appeal from Monty

2009-12-13 Thread richard
Hi, You might have already seen this, however if you haven't this may interest you: http://monty-says.blogspot.com/2009/12/help-saving-mysql.html -- Richard Heyes HTML5 canvas graphing: RGraph - www.rgraph.net (updated 12th December - now with IE support!) Lots of PHP and Javascript code - http

Re: [PHP] file_get_contents ($file) works -- file_get_contents ($url) returns false

2009-12-13 Thread Gaurav Kumar
Ok Agreed. Lets do one last chance to ensure that your system is allowing external connections or connection to other systems in the network- Use Curl to get in the file contents. Check your PHP that Curl is enabled. Through phpinfo(); If the script output the google page then this means that th