Jump to content
php.lv forumi

atļaut lietot tikai ar paroli


sandrulis

Recommended Posts

Man ir vajadzīga šāda lieta:

Lietotājs ienākot lāpā nevar lejuplādēt zip failu, jo tikā nepastāv, bet kad adresē ievada savu Lietotājvārdu un Paroli, tad viss notiek. Adreses piemērs: h t t p://adrese/lietotājvārds-parole

 

Mana doma ir kkāda šāda:

 

.htaccess

RewriteEngine on
RewriteRule ^(.*)-(.*)$ test.php?user=$1&pass=$2

deny from all

 

test.php

$user = $_GET['user'];
$pass = $_GET['pass'];

if ($user == 'test' && $pass == 'pass') {
echo file_get_contents('fails.zip');
} else {
echo 'Pieeja liegta!';
}

 

Bet kāut kā visu laiku rāda Pieeja liegta!

Link to comment
Share on other sites

Labākais, ka nākošais lietotājs varēs izvēlēties adresi no adrešu vēstures un "kačāt" zipus uz vella paraušanu.

 

Katram lietotājam ir sava parole un savs niks, kā kāds varēs zināt to adresi? ja vienigi vairāki lietotāji nav vienā mājā/dzīvoklī.

 

Bet šis skripts neatiecas tieši uz tiešā interneta lietošanu, tas ir vajadzīgs uz citām ierīcēm, bet var labi pārbaudīt uz webu.

Link to comment
Share on other sites

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.   Paste as plain text instead

  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.

Loading...
×
×
  • Create New...