Page 1 of 1

File Permission problem:

PostPosted: 09. January 2006 13:09
by klane
I've installed Xampp but i'm having problems changing the file permissions to what i need them to (666 etc.) i've been connecting to my localhost via my ftp client but when it comes to changing them it will not do so what so ever, is there a reason? do i need to change something in a file somewhere to allow me to do so? any help would be greatful.

thanks, Klane.

PostPosted: 09. January 2006 17:10
by Vineman
Windows does not use permissions.

PostPosted: 09. January 2006 18:37
by klane
i know that, but i can't write to file unless its set to a certain thing, so how do i by pass that in windows?

PostPosted: 09. January 2006 20:10
by taustin
That's usually handled with account settings on the ftp server on Windows servers.

PostPosted: 10. January 2006 14:56
by Perkele
Right click on files you want to write to and un-select Read-only option ;)

PostPosted: 31. March 2006 08:08
by Buxellistip
Hi
i try to uncheck read only option (it is gray) but when i choose apply and go to propertie again it is gray again?
Please someone help
TY

PostPosted: 31. March 2006 09:15
by Wiedmann
i try to uncheck read only option (it is gray) but when i choose apply and go to propertie again it is gray again?

Than you have made this on a directory and not on files.

BTW:
There is no need to make special permissions on Windows like on *nix for scripts.

PostPosted: 31. March 2006 09:29
by Buxellistip
Files are unchecked which is fine but folders are not. Im trying to do this because it gives me:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\includes\application_top.php:275) in C:\xampp\htdocs\includes\application_top.php on line 275

PostPosted: 31. March 2006 09:32
by Wiedmann
Files are unchecked which is fine but folders are not.

Right, that's the normal and documented Windows behaviour.

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\includes\application_top.php:275)

Then you have an error in your script, like the error message told you.

Read the PHP-Manual about sessions and header:
You can not send a header (like a session cookie), if there was allready an output in your script.