Welcome Guest, Not a member yet? Register   Sign In
Server in Safemode
#2

[eluser]TheFuzzy0ne[/eluser]
I wouldn't have thought safemode would affect making directories.

The problem is your last two lines of code.
Code:
mkdir("/var/www/html/dotproject/$root.'/'.$date_dir", 0777", 0777);
mkdir("/var/www/html/dotproject/$root.'/'.$date_dir.'/'.$city_dir", 0777);

They should work if they were written like this:
Code:
mkdir("/var/www/html/dotproject/$root/$date_dir", 0777, 0777);
mkdir("/var/www/html/dotproject/$root/$date_dir/$city_dir", 0777);
The code above is untested

You are using concatenation, but in such a way that nothing is actually concatenated, because the concatenation code is within quotes.

Hope this helps.


Messages In This Thread
Server in Safemode - by El Forum - 02-16-2009, 01:03 AM
Server in Safemode - by El Forum - 02-16-2009, 03:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB