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
https://forums.phpfreaks.com/topic/94114-truely-secure/
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
https://forums.phpfreaks.com/topic/94114-truely-secure/#findComment-482110
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
https://forums.phpfreaks.com/topic/94114-truely-secure/#findComment-482114
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.