Jump to content

Truely secure


denoteone

Recommended Posts

I am not using a database as of now but I  am using a simple Javascript and PHP Sessions scripts to create a  semi-secure site for document downloads.

 

the thing is if you remember the download URL you can type that in at anytime and the file will start downloading to the users machine....is there anyway with to prevent this from happening..so the user has to be login in to download files?

 

 

 

Link to comment
Share on other sites

<?php
session_start();
if (!isset($_SESSION['loggedin'])){
die("you must be logged in");
}
?>

 

Then you have to create a session when the user logs in,

 

session_start(); //this line must be at the top of your page

$_SESSION['loggedin'] = 'yes'; //this line needs to be executed when the user logs in

It think this is what you want,

Link to comment
Share on other sites

for example

 

when they log in, i use this:

 

$_SESSION['id']=$id;

 

and the $id is their user id.

then to verify they have logged in, you can do this:

 

(this is if they are not logged in)

 

if(strlen($_SESSION['id']) == 0){

echo "<meta http-equiv='refresh' content='0;url=login.php'>";

die();

}

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.