ArcadeBB
Forum Replies Created
-
Forum: Plugins
In reply to: [bbPress Post Toolbar] tool bar is blankHi master501,
I installed the latest version 0.6.0 but the toolbar disappeared.
The installed plugin list only has “bbPress Post Toolbar” on the list. I tried deactivate, delete, reinstall but face the same problem.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Works with dynamic content?W3TC is an awesome plugin but I need to get pass this bug before I used W3TC for all my blogs.
mclude and mfunc still do not work on the latest W3TC Developement Version Page Cache Disk(Basic) Mode.
The file that is “mclude” needs an echo statement, else site will go blank. The same file works on WP Super Cache.
W3TC shows the same time for mfunc code below.
<!–mfunc echo ‘real time = ‘.date(‘H i s’,time()); –>
<?php echo ‘real time = ‘.date(‘H i s’,time()); ?>
<!–/mfunc–><?php echo ‘ | cached time = ‘.date(‘H i s’,time());?>
WP Super Cache show different time using Half Cache Mode.Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Works with dynamic content?Cool, I am going to download and test it out.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Works with dynamic content?it works if I echo something instead of <?php ?>
<?php
echo “hello”;
?>So there is hope.
W3TC : Development Version 0.9
WordPress: 3.0
Page Cache: Enabled
Page Cache Method: Disk (basic)Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Works with dynamic content?No, it is still a blank page.
I am using W3TC Development Version 0.9
WordPress: 3.0
Page Cache: Enabled
Page Cache Method: Disk (basic)Even a in.php with just <?php ?> also show a blank site
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Works with dynamic content?WP functions such as $post->ID ?
Basically I am tracking the incoming traffic using a file called in.php. I used the W3TC Development version and in the first line of the theme header.php, I use
<!–mclude in.php–>
<?php include_once(ABSPATH.’in.php’);?>
<!–/mclude–>I did call for $post->ID in the in.php file which according to your reason could be the reason that the site went blank.
I will tried to remove the $post->ID and see if it works.