iprogress
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] WSOD on IISHi,
This is a windows IIS server so doesn’t have .htaccess
It uses IIS and web.config file which I understood did not get affected by W3TC
Forum: Plugins
In reply to: [W3 Total Cache] WSOD on IISHi,
Yes I’ve already removed
define('WP_CACHE',true);
from wp-config.phpI’ve added
define('WP_DEBUG_LOG',true);
and ‘define('WP_DEBUG', true);
But as the site isnt even loading, no log files are created.
I’ve uploaded a text.html file which loads fine. However a test.php file with
phpinfo();
will not load.Thanks for your help
Forum: Plugins
In reply to: [W3 Total Cache] WSOD on IISHi,
Yes I removed all those files apart from object-cache.php which didn’t exist. I also removed db.php which I believe is for DB caching?
Console log shows nothing and I’m trying to get access to the error logs now.
Thanks
Forum: Plugins
In reply to: [WooCommerce Weight Based Shipping] incremental after fixed weight?Hi,
I figured it out.
By adding min max weight and naming the 2 shipping methods exactly the same you can have 0kg – 20 kg as $10. Then 20kg – INF kg as $10 + $1 per kg.
The system calculates correctly.
Fantastic plugin thanks.
Forum: Reviews
In reply to: [W3 Total Cache] Support Us Nag ScreenSame here just cant get rid of it, have tried everything…
Dont know if this will help but we found that by commenting out
<meta name=”viewport” content=”width=device-width” />
On line 26 in header.php in the theme folder fixed all the iphone/ipad problems and just renders the site out as a normal web page.
Forum: Fixing WordPress
In reply to: change link "rel" in search depending on _wp_page_templateThanks esmi but because I’m trying to find out the template used by a result in the search, I think its just checking the result page template? Here is my code:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" <?php if ( is_page_template('video.php') ) { echo 'rel="#overlay'; } else { echo 'rel="bookmark"'; } ?> ><?php the_title(); ?></a> </h1> <?php the_excerpt(__('Read more'));?> <div style="clear:both;"></div> <?php trackback_rdf(); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> <?php posts_nav_link(' — ', __('« go back'), __('keep looking »')); ?>
Forum: Fixing WordPress
In reply to: change link "rel" in search depending on _wp_page_templateYes these are all pages.