Re: [PHP] Failed to open stream

2006-03-01 Thread John Nichel
tedd wrote: > Please review (this works): http://www.webbytedd.com/examples/rank.php > However, this doesn't: http://www.xn--ovg.com/rank.php > Any idea as to what is wrong? Yes. You're violating google's terms of service. Okay, so one is violating google's terms of service and

Re: [PHP] Failed to open stream

2006-03-01 Thread Robin Vickery
On 01/03/06, tedd <[EMAIL PROTECTED]> wrote: > > In any event, considering the Google Police here, I've removed the > offending code. > Google Police? Aye, right! You asked why your script was failing. It's failing because they detected you were breaking their terms. Couldn't care less myself; it

Re: [PHP] Failed to open stream

2006-03-01 Thread tedd
> Please review (this works): http://www.webbytedd.com/examples/rank.php > However, this doesn't: http://www.xn--ovg.com/rank.php > Any idea as to what is wrong? Yes. You're violating google's terms of service. Okay, so one is violating google's terms of service and failing while

Re: [PHP] Failed to open stream

2006-03-01 Thread Robin Vickery
On 01/03/06, tedd <[EMAIL PROTECTED]> wrote: > Hi gang: > > I have two *identical*l routines residing on two difference hosts -- > one works and the other doesn't. > > Please review (this works): > > http://www.webbytedd.com/examples/rank.php > > However, this doesn't: > > http://www.xn--ovg.com/ra

RE: [PHP] Failed to open stream

2006-03-01 Thread jblanchard
[snip] I have two *identical*l routines residing on two difference hosts -- one works and the other doesn't. [/snip] Is safe mode 'on' on one and not the other? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] failed to open stream warning

2006-01-04 Thread Michael Hulse
On Jan 4, 2006, at 4:28 PM, zedleon wrote: $fp = fopen("home/path/temp "w+"); You only got 3 quotes in the above code... try this: $fp = fopen("home/path/temp", "w+"); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] failed to open stream?!? - SOLVED!

2005-03-28 Thread [EMAIL PROTECTED]
The problem was that uploaded images already were there and didn't want to overwrite. -afan [EMAIL PROTECTED] wrote: Hi to all. I'm uploading file and use this copy($_FILES['NewImage']['tmp_name'], 'temp/'.$item_number.'.jpg') or die (mysql_error());* *I have this Warning:* Warning*: copy(temp/

Re: [PHP] failed to open stream: No such file or directory in

2004-03-15 Thread Seba
Il lun, 2004-03-15 alle 18:43, Mike Mapsnac ha scritto: > Hello > I know that problem is related how I include library file (lib_main.php). > I just don't understand what I do wrong: > lib_main.php is located at /var/www/html/lib/lib_main.php > > When I include in the index.phplocated at /var/www

Re: [PHP] failed to open stream: No such file or directory in

2004-03-15 Thread Mike Mapsnac
thanks for explanation Is it possible in php.ini declare $basedir(for libraries)? From: Richard Davey <[EMAIL PROTECTED]> Reply-To: Richard Davey <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [PHP] failed to open stream: No such file or directory in Date: Mon, 15 Mar 2

Re: [PHP] failed to open stream: No such file or directory in

2004-03-15 Thread Richard Davey
Hello Mike, Monday, March 15, 2004, 5:43:14 PM, you wrote: MM> But When I try to declare the library in /var/ww/html/account/ MM> include('lib/account/lib_main.php'); lib_main.php = /var/www/html/lib/lib_main.php index.php= /var/www/html You are including files RELATIVE to the location of