Jump to content


Photo

Move to Hosted


  • Please log in to reply
30 replies to this topic

#1 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 17 November 2003 - 02:40 PM

Just a note, every MySQL on game-mod.net will look like this:

HOST: localhost
DB: gamemod_site
USER: gamemod_site
PASS: pass

#2 Stino

Stino

    AKA Stink_o

  • Hosted
  • 1,421 posts
  • Location:the Netherlands
  • Projects:Blitzkrieg II:The Finest Hour (BlitzII:TFH)
  •  Doer of Things

Posted 17 November 2003 - 02:51 PM

Detail did u already put the tables in the db?
Posted Image

#3 Mastermind

Mastermind

    Server Technician

  • Undead
  • 7,014 posts
  • Location:Cambridge, MA
  • Projects:MasterNews 3
  •  The Man Behind the Curtain

Posted 01 November 2003 - 09:17 PM

fred (acutal username), one of the people working on the TFH site, would like to be moved to hosted. If someone could take care of that, that would be great.
:lol:
Posted Image

Well, when it comes to writing an expository essay about counter-insurgent tactics, I'm of the old school. First you tell them how you're going to kill them. Then you kill them. Then you tell them how you just killed them.

Too cute! | Server Status: If you can read this, it's up |

#4 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 01 November 2003 - 09:48 PM

He's not hosted and he's not a moderator, so:
Any reason?
Whats his position?
What does he do?
Why does he know about this forum?

#5 Stino

Stino

    AKA Stink_o

  • Hosted
  • 1,421 posts
  • Location:the Netherlands
  • Projects:Blitzkrieg II:The Finest Hour (BlitzII:TFH)
  •  Doer of Things

Posted 01 November 2003 - 10:26 PM

He's makin our site! So he need some codes for banner, ads, bars etc!
Posted Image

#6 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 01 November 2003 - 10:43 PM

{like n00b, only diffrent}

Why you using "!"'s ?

#7 fred

fred
  • New Members
  • 9 posts

Posted 02 November 2003 - 05:08 PM

Hello,
I have a request for some database help.
I tried to create a table in the our (tfh) database. For some reason, it won't let me do it though php.
Could someone (i heard Detail could do this) insert two tables into the database so that we could make our site functional. I have the sql files and commands that would be needed to insert them.

thanks,
fred

#8 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 02 November 2003 - 06:51 PM

-_-

First:
Table name?
Number of fields?

and:
Field Type?
Length/Values?
Attributes?
Null?
Default?
Extra?
Primary?
Index?
Unique?
Fulltext?

then:
Table type?




I'd rather you just send an sql script that i can run in phpMyAdmin.
example:

CREATE TABLE conversationlog (
  id int(11) NOT NULL auto_increment,
  input text,
  response text,
  thatresponse text,
  uid varchar(255) default NULL,
  enteredtime timestamp(14) not null,
  PRIMARY KEY  (id)
) TYPE=MyISAM;



#9 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 02 November 2003 - 11:11 PM

All done.
Tables look fine.

#10 fred

fred
  • New Members
  • 9 posts

Posted 03 November 2003 - 02:22 AM

thanks

everything works now :lol:

#11 Daz

Daz

    title available

  • Hosted
  • 2,654 posts
  •  Revora Co-Founder

Posted 16 November 2003 - 04:11 PM

Detail, I think this will need setting up on game-mod.
I don't know how to do it so can you sort it please?

#12 fred

fred
  • New Members
  • 9 posts

Posted 16 November 2003 - 08:04 PM

if you make a new database for tfh, could you please use the following (some minor changes to the original):

CREATE TABLE news (
id int(25) NOT NULL AUTO_INCREMENT,
title varchar(100) NOT NULL default '',
date datetime NOT NULL default '0000-00-00 00:00:00',
username varchar(25) NOT NULL default '',
type varchar(25) NOT NULL default 'news',
body text NOT NULL,
PRIMARY KEY (id)
);

CREATE TABLE users (
id int(25) NOT NULL AUTO_INCREMENT,
email_address varchar(255) NOT NULL default '',
username varchar(25) NOT NULL default '',
password varchar(255) NOT NULL default '',
country varchar(255) NOT NULL,
work varchar(255) NOT NULL,
sides varchar(255) NOT NULL,
signup_date datetime NOT NULL default '0000-00-00 00:00:00',
activated enum('0','1') default '1',
decrypted_password varchar(255) NOT NULL default '',
PRIMARY KEY (id),
UNIQUE KEY username (username)
);

CREATE TABLE vars (
variable varchar(255) NOT NULL default '',
value varchar(255) NOT NULL default '',
UNIQUE KEY variable (variable)
);

INSERT INTO vars VALUES('newsid','0');
INSERT INTO vars VALUES('userid','0');
INSERT INTO vars VALUES('users','0');
INSERT INTO vars VALUES('visits','0');

thanks
fred

#13 Mastermind

Mastermind

    Server Technician

  • Undead
  • 7,014 posts
  • Location:Cambridge, MA
  • Projects:MasterNews 3
  •  The Man Behind the Curtain

Posted 16 November 2003 - 08:34 PM

I added the DB, but I can't seem to get to the phpMyAdmin. Detail, can you do that?
:)
Posted Image

Well, when it comes to writing an expository essay about counter-insurgent tactics, I'm of the old school. First you tell them how you're going to kill them. Then you kill them. Then you tell them how you just killed them.

Too cute! | Server Status: If you can read this, it's up |

#14 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 16 November 2003 - 11:04 PM

*looks* :) The DNS has updated, so i now can.

SQL done :)


Fred, i found a way to make the drop downs change without having to refresh the page (thanks to deviantART ;)2 ).

We can think about another one of those scripts on the list now.

#15 Stino

Stino

    AKA Stink_o

  • Hosted
  • 1,421 posts
  • Location:the Netherlands
  • Projects:Blitzkrieg II:The Finest Hour (BlitzII:TFH)
  •  Doer of Things

Posted 17 November 2003 - 08:21 AM

I still get an error: http://tfh.game-mod.net/test/
So did u make the db?
Posted Image

#16 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 17 November 2003 - 09:15 AM

The username and database name have changed.
I also wounder what Mastermind set the password as.


This server move has caused alot of mess, but it will all settel out soon.

#17 Mastermind

Mastermind

    Server Technician

  • Undead
  • 7,014 posts
  • Location:Cambridge, MA
  • Projects:MasterNews 3
  •  The Man Behind the Curtain

Posted 17 November 2003 - 02:26 PM

I told Fred, but I think I can still find it somewhere. I can PM it to whoever needs it. I don't think it needs to be posted here though.
:)
Posted Image

Well, when it comes to writing an expository essay about counter-insurgent tactics, I'm of the old school. First you tell them how you're going to kill them. Then you kill them. Then you tell them how you just killed them.

Too cute! | Server Status: If you can read this, it's up |

#18 Detail

Detail

    King Detail

  • Hosted
  • 7,767 posts
  • Location:Dayonic
  • Projects:Dayvi.com
  •  Blu Spy

Posted 17 November 2003 - 02:59 PM

Mastermind made the database and user yesterday.
I added the tables to the database yesterday.

If theres still a problem i'll have another look when i get home.

#19 Stino

Stino

    AKA Stink_o

  • Hosted
  • 1,421 posts
  • Location:the Netherlands
  • Projects:Blitzkrieg II:The Finest Hour (BlitzII:TFH)
  •  Doer of Things

Posted 17 November 2003 - 05:23 PM

I get still an error: http://tfh.game-mod.net/test/
Posted Image

#20 Mastermind

Mastermind

    Server Technician

  • Undead
  • 7,014 posts
  • Location:Cambridge, MA
  • Projects:MasterNews 3
  •  The Man Behind the Curtain

Posted 17 November 2003 - 05:34 PM

Fred probably hasn't updated the stuff yet to link to the new database. I don't know beyond that.
:)
Posted Image

Well, when it comes to writing an expository essay about counter-insurgent tactics, I'm of the old school. First you tell them how you're going to kill them. Then you kill them. Then you tell them how you just killed them.

Too cute! | Server Status: If you can read this, it's up |




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users