Jump to content
xisto Community

peterspliid

Members
  • Content Count

    32
  • Joined

  • Last visited

Everything posted by peterspliid

  1. Hey, I'm Peter Spliid I'm webmaster of the website http://landianetwork.com/ I work a lot with websites in my free time. Don't know why, I just think it's interesting. I play a lot of samp (sa-mp.com) and CSS. 16 years old, live in Luxembourg. I'm looking forward to post more here
  2. Stunt Landia Many of you have probably heard of GTA San Andreas, but you didn't know you can play it ONLINE! You can download the online client at http://sa-mp.com/ (You need GTA installed on your computer) I have an online server with my team. It's going pretty well, and we're always getting new members. Maybe you should try it out? Our website is located at http://landianetwork.com/
  3. If anyone need a fast and free anti-virus, I recommend AVG. It is free and includes free updates. You can download the software here: http://www.avg.com/de-de/free-antivirus-download
  4. Thank you very much for this guide ^_^My computer is much faster than it used to be!!I have done this on all computers in my house, lol
  5. The quickest way to get a password protection system up and running is to use a Prompt box in JavaScript that has a title like "Enter your Email Address". Only you and the relevant users know what the password should be, could even be one each, that can be sorted out at the next page then pass the "input" directly through the url by changing the .href, like http://forums.xisto.com/no_longer_exists/= The page that then processes this should also check for the referring page, and three fails from an IP if you like the php (the next page): <?php// processdownloads.phpif (!isset($_POST['leTmeIn'])) {?><script language=JavaScript>location.href=document.referrer;</script><?php} else {?>put all your download stuff here<?php}?> the javascript (the first page): <a href="" onclick="return(doOpen());" >downloads</a><script language=JavaScript>function doOpen(){ pw = prompt('Enter your Email Address',''); if (pw){ location.href='processdownloads.php?'+pw+'=' return(false); } }else{ return(false); }</script> This is a cheats way of dealing with hackers, crackers or anyone else who shouldn't be where you dont want them to be. leTmeIn is the password here This is quick and simple, but leaves an ugly url and therefore would not be ideal for anywhere that someone could look over your shoulder, or go through you history, but can be hidden in frames a simple PHP only version would be: <?phpif (!isset($_POST['submit'])) {?><form action="" method="post"><input type="password" name="email"><input type="submit" name="submit" value="Submit"></form><?php} else { $pass = $_POST['email']; if ($pass!="leTmeIn") {?><script language=JavaScript>location.href=document.referrer;</script><?php }else {?>put the rest of the page here<?php }}?> I hope it helps someone. PS: This is my first post
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.