Better secure your config files...
Posted: 05 Dec 2006, 08:04
I think, you should integrate a .htaccess with
in all your newer packages.
Why? Think a bit of security...
Now, the galery is safe, but what, if somebody will find a weak spot in your script? And this depends on settings in the INI-files?
You also can add:
for a bit more security...
Greets
Lonesome Walker
PS: Of course, the server should support this
Code
<Files>
Order allow,deny
Deny from all
Satisfy All
</Files>
Why? Think a bit of security...
Now, the galery is safe, but what, if somebody will find a weak spot in your script? And this depends on settings in the INI-files?
You also can add:
Code
#force the html files to be executed as php files
AddType application/x-httpd-php .html
AddType application/x-httpd-php .htm
Greets
Lonesome Walker
PS: Of course, the server should support this