• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OTForum! 1.0 Beta

What? I don't understand what you are saying.

If you have done everything like I said then it has to work.
 
Hey i got problems with fonts , in my layout forum font is to BIG ! Look AruA - Forum , but when I choose layout "tibiacom" fonts is normal ... Please Help
 
Emma Watson said they are doing they own one, so I think there is no point.

But I'll think about it, and I would need to rewrite the hole code for better quality.

I'm in development of something else now :):thumbup:

He said you gonna continue developing of this forum, so he stopped his work ;D So? :)

btw, can someone reupload? It says I have no permission to download this archive xD
 
Paxton,
you add BBCode? or some way to create BBCode?

There is some basic BBCode, it works as emotes so you can create your own by this way.


In future relases everything will be included, but now I don't have time for it.
 
LoL! Check the error:

PHP:
//Host of your database
$dbhost = "localhost";
//Login yo your database
$dblogin = "root";
//Password to your database
$dbpass = "XXX";
//Name of your dataabse
$dbname = "XXX";
//Set to true when you configure everything, the forum will start working.
$install = true;
And no run, but if i put false in $install = true; it run.

Same here :<
 
my forum is blank.. i have already changed true to false in "install" but this doesn't work paxton
 
when i try to open the forum there comes:

Go to admin";} else $main_content .= "Wrong password or login."; } $action = (int) $_REQUEST['action']; if(!empty($action)){ if(!empty($_SESSION['admin'])){ $main_content .= "Create new board.
"; if($action == 2){ $id = (int)$_GET['id']; deleteBoard($id); $main_content .= "Board has been deleted.
"; } else if($action == 3){ if(isset($_POST['new_board'])){ $name = $_POST['name']; $desc = $_POST['desc']; $closed = $_POST['closed']; $access = $_POST['access']; mysql_query("INSERT INTO `forums` VALUES('', '$name', '$desc', '$closed', '$access');"); $main_content .= "$name has been made."; } $main_content .= "
"; $main_content .= "Board name:

"; $main_content .= "Description:

"; $main_content .= "Closed:

"; $main_content .= "Min. access to enter:

"; $main_content .= ""; $main_content .= "
"; } } else { $main_content .= "
Login:

Password:

"; } } if(!$logged) $main_content .= "You are not logged in. Log in to post on the forum.
"; $main_content .= "
Current time: $date
"; $main_content .= ""; $sql = mysql_query("SELECT * FROM `forums`"); $row = mysql_num_rows($sql); if($row == 0) $main_content .= "No specified forums yet."; else { while($cmd = mysql_fetch_array($sql)){ $name = $cmd['name']; $desc = $cmd['description']; $access = $cmd['access']; $closed = $cmd['closed']; $id = $cmd['id']; if($closed == 1)$close = ""; if(!$logged) $user_access = 0; else { $user = loadAccountById($account_logged); $user_access = $user['page_access']; } if($access > $user_access) continue; $posts = mysql_num_rows(mysql_query("SELECT * FROM `posts` WHERE `board` = '$id'")); $threads = mysql_num_rows(mysql_query("SELECT * FROM `threads` WHERE `board` = '$id'")); $last = mysql_query("SELECT * FROM `posts` WHERE `board` = '$id' ORDER BY `id` DESC LIMIT 1"); $row = mysql_num_rows($last); if($row == 0) $last = "None"; else { $cmd1 = mysql_fetch_array($last); $author = $cmd1['author']; $thread = $cmd1['thread']; $date = $cmd1['date']; $last = " $date
by $author"; } if(!empty($_SESSION['admin'])) $admin = "Delete this board"; $main_content .= ""; } } $main_content .= "

:( pls help
 
Read posts before you!

Open the file and at the first line find <? replace it with <?php
 

Similar threads

Back
Top