Set Permissions Error

Permalink 1 user found helpful
Currently, I'm having problem with my concrete5, whenever I tried to set the page permissions from Full Sitemap, it showed error and can be seen in the attachment. I've added permissions to C:\Windows\Temp for IIS_Users with modify permission. I'm using IIS 8, and I have configured all settings needed to run phpmyadmin (php and mysql) in IIS 8. How to fix this problem?

Thanks in advance.

1 Attachment

 
DAkers replied on at Permalink Reply
Hey Jazzy,

open_basedir, that is stated in the error, is in the PHP configuration file on your server (i.e php.ini). It will basically deny concrete5 and PHP (within PHP files) from accessing files from outside defined file paths in the server. So either there is a file pathing error or that setting needs to be changed from my experience.

open_basedir can also be set in the web server configuration file as well, so if you dont find anything in php.ini check out that file as well.
jazzyhacker replied on at Permalink Reply
I set the open_basedir to C:\inetpub while my web site is in C:\inetpub\WebSite , How should I change it?
DAkers replied on at Permalink Best Answer Reply
Well the error says its trying to get to C:\Windows\Temp. So what you will want to set it to is "C:\inetpub:C:\Windows\Temp".

I don't see all of the errors in the image, but if there is more just add those folders as well. Open_basedir is more for a shared hosting platform, so if you have the only domain on the server and of course own the server, you could consider turning it off so you dont run into any more issues.
jazzyhacker replied on at Permalink Reply
Actually I owned the server, should I restart the IIS only or the server after changes? Isn't it ";" to separate the path from your first solution?
DAkers replied on at Permalink Reply
Sorry, I was thinking linux. Windows does use a semi-colon (;). Linux uses a colon.

You will need to restart your server for the changes to take effect.
jazzyhacker replied on at Permalink Reply
Actually thanks for your last solution, I don't need to use open_basedir after all, I just followedhttp://www.trainsignal.com/blog/install-phpmyadmin-on-iis7-and-serv... .