Re: [PHP] file_Exists() and case

2008-11-23 Thread Nathan Rixham
Stan wrote: The script is running on an UBUNTU v8.04 LAMP server. Case is supposed to matter, isn't it? out of interest try putting clearstatcache() before if(!file_Exists($basePicture)) ps.. sure it should be file_exists all lowercase - perhaps you're choosing to use call the function wit

Re: [PHP] file_Exists() and case

2008-11-23 Thread Ashley Sheridan
On Sun, 2008-11-23 at 12:24 -0500, Craige Leeder wrote: > Stan wrote: > > If $basePicture = "../pictures/2008 west coast trip/2008-06-10 first week at > > Chris'/DSC_0011.jpg" > > and the file actually is "../pictures/2008 west coast trip/2008-06-10 first > > week at Chris'/DSC_0011.JPG" > > (upper

Re: [PHP] file_Exists() and case

2008-11-23 Thread Craige Leeder
Stan wrote: If $basePicture = "../pictures/2008 west coast trip/2008-06-10 first week at Chris'/DSC_0011.jpg" and the file actually is "../pictures/2008 west coast trip/2008-06-10 first week at Chris'/DSC_0011.JPG" (uppercase extension) the following snippet of code --

[PHP] file_Exists() and case

2008-11-23 Thread Stan
If $basePicture = "../pictures/2008 west coast trip/2008-06-10 first week at Chris'/DSC_0011.jpg" and the file actually is "../pictures/2008 west coast trip/2008-06-10 first week at Chris'/DSC_0011.JPG" (uppercase extension) the following snippet of code