Page 1 of 2 12 LastLast
Results 1 to 10 of 16

Thread: Forum php script

  1. #1
    I want to download a full forum script in php and maybe another in asp and host it in a free web host and put the forum work at 100% on that host, so I can made some changes after that. I want to execute it on my pc too. I already have the latest php,apache and mysql in my machine. just need the steps to config the mysql with the form databases etc. Need someone who write some steps I have to follow. Thanks.

  2. Internet, Programming and Graphics   -   #2
    tesco's Avatar woowoo
    Join Date
    Aug 2003
    Location
    Canadia
    Posts
    21,669
    What forum script do you want to use?
    phpbb is free and very good for a free forum software: http://www.phpbb.com/downloads/

    vbulletin isn't free. It's what this forum uses.

  3. Internet, Programming and Graphics   -   #3
    Quote Originally Posted by rossco View Post
    What forum script do you want to use?
    phpbb is free and very good for a free forum software: http://www.phpbb.com/downloads/

    vbulletin isn't free. It's what this forum uses.
    I downloaded the phpbb. I´m having problems with the sql. for example when I try to test the forum on my pc . I have the php, apache and mysql intsalled, but when I execute the script he try to install the forum but some sql problems because I didn´t created the db. How I do it? on msdos? and give me some help on put the forum working on a web host. ty

  4. Internet, Programming and Graphics   -   #4
    tesco's Avatar woowoo
    Join Date
    Aug 2003
    Location
    Canadia
    Posts
    21,669
    get phpmyadmin, and use it to create a new database.

  5. Internet, Programming and Graphics   -   #5
    Quote Originally Posted by rossco View Post
    get phpmyadmin, and use it to create a new database.
    for example. I´m trying to test is a free host and they already create a database_name and username. when I upload the site to the ftp. what I´ll have to do? I have to go to the phpmyadmin and create alll the tables,fields etc of the database?
    if I want to test the forum on my computer on the virtual server what I have to do? create a bd on mysql? how I do this

  6. Internet, Programming and Graphics   -   #6
    rexton85's Avatar Poster
    Join Date
    Jul 2007
    Location
    France
    Age
    44
    Posts
    33
    Quote Originally Posted by TorrentMaster9 View Post
    if I want to test the forum on my computer on the virtual server what I have to do? create a bd on mysql? how I do this

    * shell commands are red
    * mysql commands are green
    * mysql infos are orange


    This is how you create a DB with MySQL:
    $ mysqladmin -u root -p create db1
    Comment: with mysqladmin, you create with user "root" a table with the name "db1". If you just installed your mysql, root already exists and has no password.

    Then, you have to administrate your newly created table with following commands:
    $ mysql -u root -p mysql (Comment: you get on your mysql configuration)
    mysql> GRANT CREATE,SELECT,INSERT,UPDATE,DELETE
    -> ON db1.*
    -> TO torrentmaster@localhost
    -> IDENTIFIED BY 'password';
    Query OK, 0 rows affected (0.02 sec)
    (Comment: this sets the good ownerships for you database)
    More informations about "GRANT" here:
    http://dev.mysql.com/doc/refman/5.0/en/grant.html
    With this command, we have allocated the rights for user "torrentmaster" the rights to CREATE, SELECT, INSERT, UPDATE and DELETE everything on table db1 with the password "password" from localhost.

    mysql> FLUSH PRIVILEGES;
    Query OK, 0 rows affected (0.00 sec)

    mysql> quit

    Don't hesitate to ask if you have questions ;-)

    rexton85





  7. Internet, Programming and Graphics   -   #7
    4play's Avatar knob jockey
    Join Date
    Jan 2003
    Location
    London
    Age
    41
    Posts
    3,824
    the fact your trying to get a forum up and running on a free host instantly rings alarm bells. chances are you wont be able to do it.

    who is the free host ?

  8. Internet, Programming and Graphics   -   #8
    Member
    Join Date
    Jul 2007
    Posts
    17
    I prefer SMF over phpBB.
    http://www.simplemachines.org/
    Check it out.

  9. Internet, Programming and Graphics   -   #9
    Quote Originally Posted by 4play View Post
    the fact your trying to get a forum up and running on a free host instantly rings alarm bells. chances are you wont be able to do it.

    who is the free host ?
    I just want to check how it works. http://www.zendurl.com

    Quote Originally Posted by Mud View Post
    I prefer SMF over phpBB.
    http://www.simplemachines.org/
    Check it out.
    thanks

    I´m a noob on this don´t laught if I make stupid questions, hehe. I think the forum have to already have defined the the structure of the db(tables, fields, etc) and you just have to create a database(just the database name, user and pass) on mysql(of the webhost or of the one installed on your pc) and then make some changes on the code of the forum so it can work with that database created. it´s this right?
    Last edited by TorrentMaster9; 07-23-2007 at 12:11 PM. Reason: Automerged Doublepost

  10. Internet, Programming and Graphics   -   #10
    4play's Avatar knob jockey
    Join Date
    Jan 2003
    Location
    London
    Age
    41
    Posts
    3,824
    quickstart guide tells you how to install it.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •