Jump to content

HELP: Please CHMOD to 0777


GodsDsipl

Recommended Posts

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
Share on other sites

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
Share on other sites

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 installing
make a [size=10pt][b]copy[/b][/size] of you're install.php file
erase everything in it
and 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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.