Just use chmod() after your upload functions..
Official documentation:
http://php.net/manual/en/function.umask.php [1]
states:
"It is better to change the file permissions with chmod() after
creating the file."
The documentation refers to the um...
If your user doesn't have a PHP.INI file you may have to create one.
This will go in the public_html folder for that user.
display_error = off
log_errors = On
error_log = "error.log"
or
Advance PHP Error handling via .HTACCESS
# SUPRESS PHP...
It is possible to configure individual account php limits via a
.htaccess. To do so the following setups will have to be done:
1) Create a php.ini file with the desired php values.
2) Add 'suPHP_ConfigPath /home/username/path/to/php.ini' to your
.htac...