Feature Requests item #655573, was opened at 2002-12-18 07:25
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=403614&aid=655573&group_id=31885
Category: Interface Improvements (example)
Group: Next Release (example)
Status: Open
Priority: 5
Submitted By: Prachait Saxena (prachait)
Assigned to: Nobody/Anonymous (nobody)
Summary: add .php at last in the extension
Initial Comment:
Hi
Some time we put the the phplib the web directory so
when we call the phplib folder .. file names are .inc
will show the contents.
Please change the extensions of the file as
file.inc -> file.inc.php
Hope you will consider this.
Prachait Saxena
----------------------------------------------------------------------
Comment By: Jan Ptacek (ptica)
Date: 2003-02-19 15:58
Message:
Logged In: YES
user_id=217316
yes, everybody can make this for himself alone
but the request was probably ment in way more like:
it would be nice to have .php suffix as of nature =
in the package you download, so even not configured server
will not show you your db passwords and so on
at least IMHO :)
----------------------------------------------------------------------
Comment By: Layne Weathers (layne_weathers)
Date: 2002-12-19 18:13
Message:
Logged In: YES
user_id=278685
You need to configure your web server a bit more securely.
Even if you put the PHPLib directory within a web directory,
the PHPLib directory should not be servable. Use a simple
.htaccess file to block all requests:
<Limit GET POST>
Order allow,deny
Deny from all
Satisfy All
</Limit>
In addition, you should have Apache configured to ignore all
requests for .inc files:
<Files ~"\.inc$">
Order allow,deny
Deny from all
Satisfy All
</Files>
----------------------------------------------------------------------
Comment By: Joe Stewart (joestewart)
Date: 2002-12-18 16:43
Message:
Logged In: YES
user_id=77269
If this is a problem for you see the linked script. It will
change all file extensions and references as you request:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpslash/phpslash-ft/contrib/extchg.sh
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=403614&aid=655573&group_id=31885
|