hey guys, i'm currently trying to do a little upload-feature for some of my clients, so that they can easily upload larger files onto my server. therefore i did a subdomain uploads.mywebsite.com (which links to /uploads)
inside of this /uploads i have an .htaccess file which asks for a userpasswd
AuthType Basic
AuthName "Uploads to mysite"
AuthUserFile /home/.sites/74/site484/web/.htpasswd
Require valid-user
that works fine, however now i want to add another line in this htaccess file.
suPHP_ConfigPath /home/.sites/74/site484/web/stf/uploads/
as soon as i add this i get an INTERNAL SERVER ERROR.
just so you know i want to add this line to link to a custom php.ini file inside of my /uploads folder to ensure max_filesize etc. is set to a higher value.
any ideas what i'm doing wrong? or why i can't add this line to the htaccess file without causing an error?
regards matt