host issues and errors
Have had issues with my host with image uploading, as I have commented on in other theads. The following is the change that has resulted in these issues, so don't know if this can help to source a longer term solution to the problem:
------------------
suPHP adds more security to the server. It makes all php scripts run under your specific user account, instead of the Apache user account. For example, the installation documentation of some php scripts will state that you should set the owner of the scripts as "nobody:nobody" or "apache:apache." On our server, with suPHP anebled, this is not the case. All files contained within your account should be left as owned by your main account user.
Also all PHP settings must not be added through the .htaccess file but through php.ini.
Thus in conlusion, what you should be aware of is the following:
Files:
- Must be owned by the user account
- Must have mode set as 644
Folders:
- Must be owned by the user account
- Must have mode set as 755
PHP custom settings:
- suPHP does not support .htaccess php_value/php_admin_value directives to
parse configuration options.
- suPHP does support configuration options via local php.ini, but it scope
starts and ends at it current directory.