Log in

View Full Version : code optimize


mohammad6006
06-30-2012, 10:01 AM
this code is for show last active posts for non-vb page can you help me for optimize this code?
<?php
## CUSTOMIZE SETTINGS FOR YOUR SITE ##
$db_host = "xxxx"; // Change this if your MySQL database host is different.
$db_name = 'xxxx'; // Change this to the name of your database.
$db_user = 'xxxxx'; // Change this to your database username.
$db_pw = 'xxxxx'; // Change this to your database password.
$db_pre = ""; // Tables prefix
$forum_url = "http://forum.xxxx.com/"; // Change this to reflect to your forum's URL.
$forum_id = "";
$limit = "20"; // Number of posts displayed.
$txtlimit = "120"; // This is the character limit.
#######################################

// Connecting to your database

mysql_connect($db_host, $db_user, $db_pw)
OR die ("Cannot connect to your database user");
mysql_select_db($db_name) OR die("Cannot connect to your database");

if ($forum_id) {
$forumid = "AND forumid=$forum_id";
}

if ($limit) {
$limited = "LIMIT $limit";
}


$thread_sql = mysql_query("SELECT threadid, lastpost, lastposter, title FROM thread WHERE visible=1 AND open=1 AND forumid<>32 ORDER BY lastpost DESC LIMIT 0,5");
for($i = 0; $i<5; $i++)
{
$tid = @mysql_result($thread_sql,$i,0);
$lastpost = @mysql_result($thread_sql,$i,1);
$lastposter = @mysql_result($thread_sql,$i,2);
// $replaycount = @mysql_result($thread_sql,$i,9);
// $views = @mysql_result($thread_sql,$i,17);
$psql = mysql_query("SELECT postid FROM post WHERE threadid='$tid' ORDER BY postid DESC LIMIT 0,1");
$pid = @mysql_result($psql,0,0);
$title = @mysql_result($thread_sql,$i,3);
$title = substr($title,0,$txtlimit);
$sitename = "http://forum.xxxxx.com/";
$sitelink = "showthread.php?t=$tid&p=$pid#post$pid";

?>

i use top code in a non-vb page

i dont want use database user and password in this file and connect directly to database

Scanu
07-02-2012, 08:06 PM
This is possible if you are in the same directory of the vbulletin site for example
This is the forums page: http://yoursite.com/forum.php
This is the script page: http://yoursite.com/script.php
<?php
include 'includes/config.php';

## CUSTOMIZE SETTINGS FOR YOUR SITE ##
$db_host = $config['MasterServer']['servername'];
$db_name = $config['Database']['dbname'];
$db_user = $config['MasterServer']['username'] ;
$db_pw = $config['MasterServer']['password'];
$db_pre = $config['Database']['tableprefix'];
$forum_url = "http://forum.xxxx.com/"; // Change this to reflect to your forum's URL.
$forum_id = "";
$limit = "20"; // Number of posts displayed.
$txtlimit = "120"; // This is the character limit.

// Connecting to your database

mysql_connect($db_host, $db_user, $db_pw)
OR die ("Cannot connect to your database user");
mysql_select_db($db_name) OR die("Cannot connect to your database");

if ($forum_id) {
$forumid = "AND forumid=$forum_id";
}

if ($limit) {
$limited = "LIMIT $limit";
}


$thread_sql = mysql_query("SELECT threadid, lastpost, lastposter, title FROM thread WHERE visible=1 AND open=1 AND forumid<>32 ORDER BY lastpost DESC LIMIT 0,5");
for($i = 0; $i<5; $i++)
{
$tid = @mysql_result($thread_sql,$i,0);
$lastpost = @mysql_result($thread_sql,$i,1);
$lastposter = @mysql_result($thread_sql,$i,2);
// $replaycount = @mysql_result($thread_sql,$i,9);
// $views = @mysql_result($thread_sql,$i,17);
$psql = mysql_query("SELECT postid FROM post WHERE threadid='$tid' ORDER BY postid DESC LIMIT 0,1");
$pid = @mysql_result($psql,0,0);
$title = @mysql_result($thread_sql,$i,3);
$title = substr($title,0,$txtlimit);
$sitename = "http://forum.xxxxx.com/";
$sitelink = "showthread.php?t=$tid&p=$pid#post$pid";

?>
This should work, for the forum url i don't know what you can do :/