iGuest
Members-
Content Count
72,093 -
Joined
-
Last visited
-
Days Won
5
Everything posted by iGuest
-
Logo (possibly!) Need your opinions..
iGuest replied to iGuest's topic in Websites and Web Designing
I'm sorry, I have absolutely no idea of what you were trying to say.. I'm sure it would have been a good suggestion if I could have understood what it was you were talking about. Hopefully you or someone else can put it into words that I can understand... Btw: Thanks for the 7 ket... Later, -- J. -
Did you know that the pentagram is upside down. If you did, did you know that an upside down pentagram is the symbol for satanists? I was just wondering if it was intentional or a mistake... Later, -- J.
-
Hey all, it's me again! I've been working on a logo for my website for a bit now and I think I'm close to finishing. Still needs a bit of work. But before I go any further with this graphic, I would like your opinion on how it looks. Please, keep in mind that this image isn't completely finished yet and that you are seeing a larger verion of the image than I would actually have on my site. Any suggestions, comments and/or advice would be appreciated... Or you can just rate it on a 1-10 scale. Thanks! Here's the image [Edit: Image removed to save bandwidth and due to the fact that I have decided not to use this as my logo and have recently begun a new project for my web design. Further details will be posted in the future. Thanks for all the help...] Later, -- J.
-
Best Php Nuke Theme? Opinions... most configurable...
iGuest replied to googlue's topic in Web Hosting Support
mtechnik do so have free themes, addons and modules, you have to goto the community and register to acces them. -
I would have to say that the biggest characteristic change between where I was born and where I grew up is that there is a very big seperation between religions here. The Mormons are well-known to everyone and almost everyone hates them. I couldn't care less one way or the other. They leave me alone, I leave them alone. Another big change from where I was born and where I currently live is that it snows. In the part of AZ I lived in, it didn't snow.. I had never seen actual snow until we moved here. Let me tell you, it was very odd to people around here that in the middle of summer I was the only person walking around with a rather large coat on... The temperature difference is amazing between the two states. Later, -- J.
-
Let's do this but using HTML, PHP and MySQL. The improvements that you could make is that you create pages to help you manage your database which means you would have a registration page, a forgotten password page and a login page and whatever else you think you would require, concept behind it is a full feature membership login procedure. But for this I will only show you the basics and may provide the complete package in the HOWTO and TUTORIAL section. So lets begin with setting up our database, hopefully you have a database already created, our one will be named MyDB for this example. Next we will pass some MySQL query inside phpmyadmin to create the table and entries we require. Since it's only for a simple login, what would we require? We need the username and password. We should have some security features behind this, but for this simple login, we won't be needing that. CREATE TABLE users ( userid int(25) NOT NULL auto_increment, username varchar(30) NOT NULL default '', passwd varchar(255) NOT NULL default '', PRIMARY KEY (userid), UNIQUE KEY (username)) TYPE = MyISAM COMMENT = 'MyDB Users';That create our table we will use to store our username/password, We then create our first user, using phpmyadmin once again to execute this query. INSERT INTO `users` (`userid`, `username`, `passwd`)VALUES ( '', 'myUserName', PASSWORD('myPassWord'));What this does is add a user named myUserName and a password that is myPassWord as well as doing the auto_increment used for userid, which should get set to 1. Next we write our connection to database file, this is the user that has permissions on the database to be able to access the required information we need, this file we will include in our login script to connect to our database and perform the required tasks. We will call this dbcon.inc.php <?php$dbhost = 'localhost';$dbusername = 'MyDB_username';$dbpassword = 'MyDB_password';$database = 'MyDB';$connection = mysql_connect("$dbhost", "$dbusername", "$dbpassword") or die('Error: Connection to Server failed');$db = mysql_select_db("$database", $connection) or die('Error: Database selection failed');?>We then create our simple login.html form, not set up nicely, but I'll leave that up to you. <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict //EN" "http://forums.xisto.com/no_longer_exists/; <html xmlns="http://www.w3.org/1999/xhtml/; xml:lang="en-NZ" lang="en-NZ"> <head> <title> Login Page </title> </head> <body> <form action="/php-bin/login.php" method="post" id="loginform"> <table summary="login information"> <tr> <td>Username</td> <td><input id="username" type="text" name="username" /></td> </tr> <tr> <td>Password</td> <td><input id="password" type="password" name="password" /></td> </tr> <tr> <td> </td> <td><input type="submit" id="submit" value="Submit" name="submit" /></td> </tr> </table> </form> </body> </html> Now all we need to do is create our login.php script <?phpinclude '../includes/db.inc.php';$username = $_POST['username'];$password = $_POST['password'];if((!$username) || (!$password)) exit();$sql = mysql_query("SELECT * FROM users WHERE userid = '1' AND username = '$username' AND passwd = PASSWORD('$password')");$login_check = mysql_num_rows($sql);if($login_check > 0){ echo '<' . '?xml version=1.0" encoding="iso-8859-1"?' . '>';?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict //EN" "http://forums.xisto.com/no_longer_exists/ xmlns="http://forums.xisto.com/no_longer_exists/; xml:lang="en-NZ" lang="en-NZ"> <head> <title> Secret Page </title> </head> <body> <p>blah blah blah blah blah SECRET PAGE blah blah blah</p> </body></html><?php}else echo "Your login was invalid, Either username or password were incorrect<br />";?>And that's it, You just have to make sure that you have a folder called includes (new folder created) for all your included files to go and that the path is correct, that the login.php exists in your php-bin (new folder created). There have been issues with using the word password in MySQL as I believe it's a reserved word, so you might want to change from using password to passwd as I have done in MySQL. To login you would use myUserName and myPassWord. This has been tested and verified that it works. Cheers, MC
-
Many Gmail Invites Available Here! I hav 36 gmails to give away
iGuest replied to iGuest's topic in The Internet
No problem err, a shame you can't get your desired name, damn. Oh weel I still hav approx 30 gmails left lol. I don't want them any one else wanna first or second one?Just post your email or pm me -
Send a file up to 1 Gb free
iGuest replied to deivid1405241470's topic in Websites and Web Designing
I checked the website. It's very simple and easy to use. One week deletion is not too bad. But I am only on a 56K connection right now. I just hope I can get a broadband ASAP.BTW, I'm waiting until juiceboosted.com comes out on October 1, 2004. I signed-up already last month. I hope it's not a scam because they said the technology was used by the US military in the battlefield. The only way to know is wait. -
Hey everyone,I just wanted to get you opinion and possibly your registration for my site. I know it is just an adaptation of phpnuke, but I would like to point out it has and is still being modified, instead of the default phpbb forums that goes with phpnuke I have intergrated ipb caus its definetely better. Improvements such as those set my site more difrerent then the default phpnuke n00b.By the way I am currently designing a proper them for my site to chuck out the temp one thats on at the moment
-
Best Php Nuke Theme? Opinions... most configurable...
iGuest replied to googlue's topic in Web Hosting Support
Any theme deign by mtechnik. Go and see Their site (note: you must register to be able to access their downloads and gallery). -
Yeh we can be affiliates, please don't stuff up anything in that phpnuke I installed lol
-
Yeh outof all the free templates at the site you got that template from it was a good choice, gud stuff buddy lol
-
Thats the beauty of it. It works anywhere just for every number you must type your countries code in before the cellphone number.
-
Thats not the story any more dee james, man i am awesome at fixing nuke problems. Lol I should be a mod. Dee james remember what you agreed to give me.
-
Php-nuke Reset Button :p People must think im so stupid......
iGuest replied to X3r0X's topic in Web Hosting Support
Thorugh phpmyadmin select all the entries by selcting your database (check all at the bootom, then slect drop). This drops all rows and tables then you must goto the sql tab and reload the sql file you originally did. So don't delette any files, its all to do with the database. If there was an error line for this error you are talking about please post it. And tell us what version of phpnuke you are using and where you got it from.If it occurs again. -
Thats just an exact copy of template at gnext.vz.com, (sigh). You need to customize it to make it your own killahg
-
Man thankx for that its awesome and it really works thanks again. I hav tried many txt programs that are supposed to work but don't, no problem wit this 1 tho.
-
Hey everyone,Since everyone has been discussing about phpnuke so much lateley I suggest a forum or sub forum is made for php-nuke. It should also be made because it is the most popular content management systems around and people can discuss in general about phpnuke and/or problem they are experiencing.
-
First off, welcome to Xisto. I'm sure you will love it here and enjoy everyone's company. Hope to hear more from you in the future and see what you can do with the services that Xisto provides. Second, just delete one of the double topics... Not really a big deal. Later, -- J.
-
yeh you could probably close this topic now caus I will help deejames resolve his issues with phpnuke.
-
By the way X3roX for the following there is no need to change prefix and user_prefix, you can leave them as nuke in the future. But since you hav still correctly typed these in there is no problem
-
Who here liked robotech battle cry? I personally liked that game cause as it progresses and you get into space, the battles become very fast-paced and it took alot of skill to just not be destroyed let alone win battles
-
Yes I have played handball and it is pretty fun.
-
I've come here to good reviews that been written about this site, is this free hosting plus can you have polls on your webpage, At the moment i'm with Freewebs which won't let me and i have to upgrade to use polls, i think it form submission. So I just don't know what to do, my website is new at the moment so i have low traffic at the moment.