Re: [PHP] explicit dot in open_basedir

2002-11-18 Thread Marc Delisle
My question was: what is supposed to happen if there is no dot in the open_basedir path, for example: open_basedir = /www Should I be able to open a file in ./tmp ? The way I understand the open_basedir doc, I should not be able. But another PHP user is telling me that he can open a file in ./t

Re: [PHP] explicit dot in open_basedir

2002-11-18 Thread BigDog
The explicit dot is to tell the system that you want the current working directory. So by saying "./tmp" you want the tmp (directory or file) that is located in the current working directory. If i understand what you are saying is that "./tmp" is a directory in the current working directory. If