Jump to content

help with using preg_match


apw

Recommended Posts

Hello

 

How do i use preg_match to keep people from directly accesssing

files?

 

I have this so far but it comes up to blank screen with no error:

 

If (preg_match("/test.php/i", $PHP_SELF)) {

print "you cannot view this file directly";

die();

 

}

 

Thanks again

Link to comment
Share on other sites

Personally, I would put scripts that you don't want accessed directly either above the docroot, or in a directory protected by .htaccess.

 

For the .htaccess, all you need is:

order deny,allow
deny from all

 

In either case, scripts can still be used by other scripts (include() or require()), but cannot be accessed directly by URL.

Link to comment
Share on other sites

A completely white page tends to mean a PHP fatal error, and error_reporting turned off. You should be able to find the reason in your HTTP server's (error) log.

 

Also, scootstah suggestion is the best. If that's not possible for you, then you could always check for a defined constant at the top:

<?php
if (!is_defined ("SEC_CONST") || SEC_CONST !== true) {
    die ("No access");
}

/* Regular code */

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.