2007-06-28 Esteban Sanchez <estebans@artica.es>

* install.php: Change file permissions of config.php when it is
        created.

        * general/error_perms.php: Added a blank space.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@548 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
esanchezm 2007-06-28 14:17:25 +00:00
parent 4d6bff4821
commit 03ac47b70f
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2007-06-28 Esteban Sanchez <estebans@artica.es>
* install.php: Change file permissions of config.php when it is
created.
* general/error_perms.php: Added a blank space.
2007-06-27 Raul Mateos <raulofpandora@gmail.com>
* include/sytles/*.css: Updated "gif" references to the "png" refs.

View File

@ -49,8 +49,8 @@ if (file_exists("include/languages/language_".$language_code.".php")) {
<?php echo $pandora_version; ?>
</font>
</div>
<div class="msg"><br><br>For security reasons, <i>config.php</i> must have restrictive permissions, and "other" users cannot read or write to it. It could be writed only for owner (usually www-data or http daemon user), normal operation is not possible until you change permissions for <i>include/config.php</i>file. Please do it, it's for your security.</div>
<div class="msg"><br><br>For security reasons, <i>config.php</i> must have restrictive permissions, and "other" users cannot read or write to it. It could be writed only for owner (usually www-data or http daemon user), normal operation is not possible until you change permissions for <i>include/config.php</i> file. Please do it, it's for your security.</div>
</div>
</div>
</body>
</html>
</html>

View File

@ -362,6 +362,7 @@ $BASE_URL="'.$url.'"; // Base URL
$step7 = 1;
fclose ($cfgin);
fclose ($cfgout);
chmod ($pandora_config, 0600);
check_generic ($step7, "Created new config file at '".$pandora_config."'");
}
}