Fixed: FS#1934 - CentOS 6.1: cgi-bin: wrong folder permissions
- Set error reporting level in app inc.
| | |
| | | |
| | | //* Set error reporting level when we are not on a developer system |
| | | if(DEVSYSTEM == 0) { |
| | | @ini_set('error_reporting', E_ALL & ~E_NOTICE); |
| | | @ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_DEPRECATED); |
| | | } |
| | | |
| | | /* |
| | |
| | | //* add the Apache user to the client group |
| | | $app->system->add_user_to_group($groupname, escapeshellcmd($web_config['user'])); |
| | | |
| | | $this->_exec('chown '.$username.':'.$groupname.' '.escapeshellcmd($data['new']['document_root'])); |
| | | $this->_exec('chown -R '.$username.':'.$groupname.' '.escapeshellcmd($data['new']['document_root'])); |
| | | |
| | | /* |
| | | * Workaround for jailkit: If jailkit is enabled for the site, the |