• 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

That is really awesome! Although, my users would be too mad if I changed the forum cuz their post count would be lost, lol.

anyway, great release :) One step closer of that we will be hosting the realtibia soon, lol ^.-
 
It's an awesome idea and I really belive you pushed yourself hard to do this, but its kind of filled with XSS and FPD vulns :S
 
I have error :[
Code:
Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\xampp\htdocs\forum\forum.php on line 77

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\xampp\htdocs\forum\forum.php on line 77

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\forum\forum.php on line 78
 
I think that it isn't safe :)

Because theres no htaccess?

Btw, i dont find how to post.. lol
paxton%202.jpg
 
Code:
<?
//Host of your database
$dbhost = "localhost";
//Login yo your database
$dblogin = "root";
//Password to your database
$dbpass = "* * *";
//Name of your dataabse
$dbname = "* * *";
//Set to true when you configure everything, the forum will start working.
$install = true;

//Max amount of threads per page
$max_threads = 10;
//Max amount of posts per page
$max_posts = 10;
//Name of the server
$world_name = "Florensia";
//Login to admin
$admin_login = "paxton";
//Password to admin
$admin_password = "mypassword";

//Dont touch
    mysql_connect($dbhost, $dblogin, $dbpass);
    mysql_select_db($dbname);
?>
My config.
 
when i log as admin and click Go to admin nobody happen ? only site refresh
 
Code:
<?
//Host of your database
$dbhost = "localhost";
//Login yo your database
$dblogin = "root";
//Password to your database
$dbpass = "* * *";
//Name of your dataabse
$dbname = "* * *";
//Set to true when you configure everything, the forum will start working.
$install = true;

//Max amount of threads per page
$max_threads = 10;
//Max amount of posts per page
$max_posts = 10;
//Name of the server
$world_name = "Florensia";
//Login to admin
$admin_login = "paxton";
//Password to admin
$admin_password = "mypassword";

//Dont touch
    mysql_connect($dbhost, $dblogin, $dbpass);
    mysql_select_db($dbname);
?>
My config.

Set $install to false.
 
i read whole thread and still i dont know why when i log in as admin and click Go to admin im at localhost/index.php?subtopic=forum&action=1 but i dont see any admin panel :/
 

Similar threads

Back
Top