There have been servers where even the 444 does not remove the error as if the server is not reporting the settings properly ...
If you are absolutely sure that your settings are 444 ...
You can remove the warnings manually for your site ... but we do caution you before doing this to really make sure that everything has been tried before hand before doing this ...
You can edit the code in:
/includes/init_includes/init_header.php
To comment out the message for the warning:
PHP Code:
// check if the configure.php file is writeable
if (WARN_CONFIG_WRITEABLE == 'true') {
if ( (file_exists(dirname($_SERVER['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($_SERVER['SCRIPT_FILENAME']) . '/includes/configure.php')) ) {
$messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning');
}
}
to read:
PHP Code:
// check if the configure.php file is writeable
if (WARN_CONFIG_WRITEABLE == 'true') {
if ( (file_exists(dirname($_SERVER['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($_SERVER['SCRIPT_FILENAME']) . '/includes/configure.php')) ) {
// $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning');
}
}