mistermobile
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Already fixed. I disabled W3TC before I install/configure phpbb_recent_topics.
Thanks.
Forum: Plugins
In reply to: [phpbb_recent_topics] [Plugin: phpbb_recent_topics] phpbb MySQL ServerAlready fixed. I disabled W3TC before I install/configure phpbb_recent_topics.
Thanks.
Forum: Plugins
In reply to: [phpbb_recent_topics] [Plugin: phpbb_recent_topics] phpbb MySQL ServerSorry, wrong code, here is the correct one,
<?php $connection = mysql_connect(localhost,"your_login","your password") or die("Service temporairly unavailable"); $db = mysql_select_db("your_db_name",$connection) or die("Service temporairly unavailable"); $sql = "select * from phpbb_topics order by topic_last_post_time desc limit 0,10"; $result = mysql_query($sql) or die("Service temporairly unavailable"); for($x=1;$x<=10;$x++){ $row = mysql_fetch_array($result); echo "<a href = \"https://www.yourforumdomain.com/viewtopic.php?f=$row[forum_id]&t=$row[topic_id]\" target = \"_blank\">$row[topic_title]</a><br>"; } ?>
I found it on this site,
Forum: Plugins
In reply to: [phpbb_recent_topics] [Plugin: phpbb_recent_topics] phpbb MySQL ServerI have been searching on the net the whole day and i found this code,
<?php $dbms = 'mysql'; $dbhost = '122.122.122.122'; $dbport = ''; $dbname = 'emanuele'; $dbuser = 'triqui'; $dbpasswd = 'banana'; $table_prefix = 'phpbb_'; $acm_type = 'file'; $load_extensions = ''; @define('PHPBB_INSTALLED', true); // @define('DEBUG', true); // @define('DEBUG_EXTRA', true); ?>
$dbhost is a database address, do have an idea where can I see the database address of my site?
Forum: Plugins
In reply to: [phpbb_recent_topics] [Plugin: phpbb_recent_topics] phpbb MySQL ServerI am using W3 Total Cache and cloudflare.
I didn’t exceeded my memory and cpu limits, the values are in normal condition.
Viewing 5 replies - 1 through 5 (of 5 total)