GodsDsipl Posted September 1, 2006 Share Posted September 1, 2006 I am trying to install IPB 2.1 on my server but I get the following error...Warning! The following errors must be rectified before continuing! ·Cannot write to the file '../conf_global.php'. Please CHMOD to 0777.·Cannot write to the file '../cache'. Please CHMOD to 0777.·Cannot write to the file '../cache/lang_cache/'. Please CHMOD to 0777.·Cannot write to the file '../cache/skin_cache/'. Please CHMOD to 0777. [b]How do I CHMOD ??? [/b] ??? Link to comment https://forums.phpfreaks.com/topic/19328-help-please-chmod-to-0777/ Share on other sites More sharing options...
bob2006 Posted September 1, 2006 Share Posted September 1, 2006 u need to go in to yr control panel and Cannot write to the file '../conf_global.php'. Please CHMOD to 0777. change permission on this file·Cannot write to the file '../cache'. Please CHMOD to 0777.this folder·Cannot write to the file '../cache/lang_cache/'. Please CHMOD to 0777.this folder·Cannot write to the file '../cache/skin_cache/'. Please CHMOD to 0777 and this folder Link to comment https://forums.phpfreaks.com/topic/19328-help-please-chmod-to-0777/#findComment-83870 Share on other sites More sharing options...
mclard Posted September 1, 2006 Share Posted September 1, 2006 are you hosting the webserver locally? Link to comment https://forums.phpfreaks.com/topic/19328-help-please-chmod-to-0777/#findComment-83888 Share on other sites More sharing options...
GodsDsipl Posted September 1, 2006 Author Share Posted September 1, 2006 Change it to what? Right now it is set to rw-r-r ... and no I use a hosting company Link to comment https://forums.phpfreaks.com/topic/19328-help-please-chmod-to-0777/#findComment-84088 Share on other sites More sharing options...
Zane Posted September 1, 2006 Share Posted September 1, 2006 Go to the top of you're install file and put this[code]$permit = 0777;chmod("../conf_global.php", $permit);chmod("../cache", $permit);chmod("../cache/lang_cache/", $permit);chmod("../cache/skin_cache/", $permit);[/code]when you're done installingmake a [size=10pt][b]copy[/b][/size] of you're install.php fileerase everything in itand replace with this[code]$permit = 0644;chmod("../conf_global.php", $permit);chmod("../cache", $permit);chmod("../cache/lang_cache/", $permit);chmod("../cache/skin_cache/", $permit);echo "Permissions Changed Back to " . $permit;[/code]and then of course open that copy in your browser Link to comment https://forums.phpfreaks.com/topic/19328-help-please-chmod-to-0777/#findComment-84166 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.