Page 4 of 9
Re: Video #1
Posted: Mon Aug 10, 2009 7:37 pm
by SpiritWebb
did u rename the tutorial folder to something different? If you did, then make sure in the connect.php that you change "tutorial" to whatever u named it.
Re: Video #1
Posted: Mon Aug 10, 2009 7:42 pm
by DorianC
no i didnt change the name.
Re: Video #1
Posted: Mon Aug 10, 2009 7:45 pm
by hallsofvallhalla
try the wamp boards or troubleshooting to see if there is an answer there. I can't think of any reason why it wouldn't work if you followed the tut.
Re: Video #1
Posted: Mon Aug 10, 2009 7:49 pm
by DorianC
ok

Re: Video #1
Posted: Fri Sep 25, 2009 8:40 pm
by freak
Yeeha i must be the biggest faliure so far
when i press "Put online" in WAMP
i get a error
Aestan tray Menu
Could not execute menu item (internal error)
[exception] could not preform service action
Couldent start
Re: Video #1
Posted: Sat Sep 26, 2009 3:08 pm
by hallsofvallhalla
wow thats a new one one me. TO be honest I would ask this in the wamp forums. This sounds like a wamp issue and I would hate to give you the wrong answer

Re: Video #1
Posted: Thu Oct 01, 2009 12:56 am
by catsudon
fantastic first video, works like a charm.

Re: Video #1
Posted: Sun Nov 08, 2009 10:47 pm
by ZeroComp
very nice

Re: Video #1
Posted: Tue Dec 01, 2009 12:21 am
by princezane
Just FYI, if you have any other servers running you might want to disable them if you are having problems.
The PC I'm running this on also has a VNC server set up on it so that I can hop into it while I work and that was giving me hassles getting wamp to start correctly. Disabled it, restarted wamp, works like a charm now
Haven't experimented to see if you can just change ports or something to make them play nicely as logmein works just fine until I need to get multiple users going on this box again (since logmein free version is only one remote session at a time)

Re: Video #1
Posted: Sat Dec 12, 2009 12:17 am
by phq
Hi, I made a better one!
test.php
Code: Select all
<?php
include 'connect.php';
?>
<?php
$player=$_POST['player'];
$password=$_POST['password'];
$pass2=$_POST['pass2'];
$player=strip_tags($player);
$email=$_POST['email'];
$email=strip_tags($email);
$playerinfo = "select * from players where name = '$player'";
$playerinfo2 = mysql_query($playerinfo) or die ("Could not select players.");
$playerinfo3 = mysql_fetch_array($playerinfo2);
echo "Checking - <b>", $playerinfo3['name'], "</b><br><br>";
echo "<b>", $playerinfo3['name'], "'s</b> ID is <u>" . $playerinfo3['id'], "</u><br>";
echo "<b>", $playerinfo3['name'], "'s</b> email is <u>" . $playerinfo3['email'], "</u><br>";
echo "<b>", $playerinfo3['name'], "'s</b> level is <u>" . $platerinfo3['level'], "</u><br>";
echo "<b>", $playerinfo3['name'], "'s</b> XP is <u>" . $platerinfo3['exper'], "</u><br>";
echo "<b>", $playerinfo3['name'], "'s</b> passowrd is <u>" . $platerinfo3['password'], "</u><br><br><br><br>";
echo " <A href='usertest.php'>Check again</a><br>";
exit;
?>
usertest.php
Code: Select all
<form method = "post" action = "test.php">
Username: <input type="text" name="player" size="21" maxlength="21"><br>
<br>
<input type="submit" value="Submit">
</form>
You have to go to usertest.php, enter the username you want to look up click Submit, and all the info should pop up
And thanks to your tutorials
hallsofvallhalla !