Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: Forum Script.

  1. #11
    Join Date
    May 2008
    Posts
    1,160
    Tokens
    11

    Latest Awards:

    Default

    Quote Originally Posted by JH View Post
    Ooohh crap the license system is still active...

    Let me download it and then tell you what to delete e.t.c. it's not hard then I will put the SQL online aswell.

    EDIT: Open init.php and then delete lines 9 - 22.
    Is that all?
    How do you install it?

    EDIT: Little confused.. where do we start to delete?
    Last edited by Cushioned; 30-11-2008 at 12:11 AM.
    Previously a Habbo fanatic, web designer/developer, fansite owner, & trusted member of the community.

  2. #12
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    ok got the liscence thing removed, just need the sql.

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  3. #13
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    Right okey folks.

    SQL: http://thatsmallforum.com/sql.sql

    Edit settings.php and replace it all with this

    $database_location = "localhost";
    $database_username = "YOURUSERNAME";
    $database_password = "YOURPASSWORD";
    $database_name = "YOURDATABASENAME";
    $serial_key = "";
    Save it, upload it all and you are done

    To login, username demo, password demo then you can add accounts e.t.c.

  4. #14
    Join Date
    May 2008
    Posts
    1,160
    Tokens
    11

    Latest Awards:

    Default

    Can you explain how to install it and what to delete etc?
    Don't know much about PHP :rolleyes:
    Previously a Habbo fanatic, web designer/developer, fansite owner, & trusted member of the community.

  5. #15
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    Invalid Template file, no matter what file i try to open
    Last edited by Colin-Roberts; 30-11-2008 at 12:27 AM.

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  6. #16
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    OK no problem

    Step 1: Download all the files.
    Step 2: Open init.php and look for the code:

    PHP Code:
    $server_ip $_SERVER['SERVER_ADDR'];
    $server_domain $_SERVER['HTTP_HOST'];
    $server_domain str_replace("www."""$server_domain);
    $checkpage "http://license.thatsmallforum.com/index.php?ip=$server_ip&domain=$server_domain&key=$serial_key";
    $licensecheck = @file_get_contents($checkpage);
    if(
    $licensecheck == "FALSE"){
        echo 
    "<font color=\"red\"><b>License Error: </b></font>INVALID LICENSE!";
        exit;
    }elseif(
    $licensecheck != "TRUE"){
        echo 
    "<font color=\"red\"><b>License Error: </b></font>";
        echo 
    $licensecheck;
        exit;

    (Starts at line 9)

    Remove all of that code. (It disables the license checker.)

    Step 3: Edit settings.php. Delete all the code in there and put in:

    PHP Code:
    <?php
    $database_location     
    "localhost";
    $database_username     "YOURUSERNAME";
    $database_password     "YOURPASSWORD";
    $database_name            "YOURDATABASENAME";
    $serial_key          "";
    ?>
    Replacing the values between the " " with your MySQL information.

    Step 4: Save all the changes, and upload.
    Step 5: Import the SQL into your database.



    EDIT:

    You will also need to download http://thatsmallforum.com/default.zip and unzip that to the /templates directory under a new folder called default.
    Last edited by Florx; 30-11-2008 at 12:33 AM.

  7. #17
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    did both of those.. still get's invalid template file..oh nvm thought that was a reply to me

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  8. #18
    Join Date
    May 2008
    Posts
    1,160
    Tokens
    11

    Latest Awards:

    Default

    Quote Originally Posted by JH View Post
    OK no problem

    Step 1: Download all the files.
    Step 2: Open init.php and look for the code:

    PHP Code:
    [b]$server_ip $_SERVER['SERVER_ADDR'];[/b]
    [
    b]$server_domain $_SERVER['HTTP_HOST'];[/b]
    [
    b]$server_domain str_replace("www."""$server_domain);[/b]
    [
    b]$checkpage "http://license.thatsmallforum.com/index.php?ip=$server_ip&domain=$server_domain&key=$serial_key";[/b]
    [
    b]$licensecheck = @file_get_contents($checkpage);[/b]
    [
    b]if($licensecheck == "FALSE"){[/b]
    [
    b]    echo "<font color=\"red\"><b>License Error: </b></font>INVALID LICENSE!";[/b]
    [
    b]    exit;[/b]
    [
    b]}elseif($licensecheck != "TRUE"){[/b]
    [
    b]    echo "<font color=\"red\"><b>License Error: </b></font>";[/b]
    [
    b]    echo $licensecheck;[/b]
    [
    b]    exit;[/b]
    [
    b]}[/b]
    [
    b][/b
    (Starts at line 9)

    Remove all of that code. (It disables the license checker.)

    Step 3: Edit settings.php. Delete all the code in there and put in:

    PHP Code:
    [b]<?php[/b]
    [
    b]$database_location     "localhost";[/b]
    [
    b]$database_username     "YOURUSERNAME";[/b]
    [
    b]$database_password     "YOURPASSWORD";[/b]
    [
    b]$database_name            "YOURDATABASENAME";[/b]
    [
    b]$serial_key          "";[/b]
    [
    b]?>[/b]
    [b][/b]
    Replacing the values between the " " with your MySQL information.

    Step 4: Save all the changes, and upload.
    Step 5: Import the SQL into your database.
    Thanks a bunch! +REP
    Previously a Habbo fanatic, web designer/developer, fansite owner, & trusted member of the community.

  9. #19
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    You will also need to download http://thatsmallforum.com/default.zip and unzip that to the /templates directory under a new folder called default.

    So it will look like this:

    http://www.yourdomain.com/forum/templates/default/ header.tpl

    e.t.c.

    Last edited by Florx; 30-11-2008 at 12:35 AM.

  10. #20
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    ok how do I add/change category's?

    The zip seems to be missing some files.. like memberlist.php and whats going on box..
    and part of the pm template from the looks of comparing the 2 demo's
    Last edited by Colin-Roberts; 30-11-2008 at 12:47 AM.

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


Page 2 of 3 FirstFirst 123 LastLast

Posting Permissions

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