Quote:
Originally posted by TheMasterG
Ok, I see the "Validate New" link now, just appeared after a while.
And I fixed the unvalidated links problem:
In links.php, change :
PHP Code:
// #################### Top 10 Most Visited Links ####################
if ($action=="top10visited") {
$asb = $DB_site->query("SELECT * FROM gportal_weblinkslink ORDER BY hits DESC LIMIT 10");
to :
PHP Code:
// #################### Top 10 Most Visited Links ####################
if ($action=="top10visited") {
$asb = $DB_site->query("SELECT * FROM gportal_weblinkslink WHERE valid='1' ORDER BY hits DESC LIMIT 10");
Only thing left to do is how to place links.php outside my forum directory?
|
Alright move the links.php outside your forum dir and find:
PHP Code:
require("./global.php");
to:
PHP Code:
chdir("./forum/dir");
require("./global.php");
That should do it, replace forum/dir with the path to your forum dir.
-Arunan