cole20444
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Prevent output from certain plugin from being cached?unfortunately the coremtrics plugin is used for web analytics and is included on every page.
Sorry still the same for me. Had the same issues with the dev version as the others and then i updated to the latest when bradenmikael said it was working, but it still deletes the files right after they’re created
So reverting to the previous version fixed the issue. I also reinstalled the newest version and used the default settings and tried again just to see if my settings were whack and the problem still persisted. There must be some garbage collection bug in the newest version.
Thanks for you help
Yeah that’s what i’m baffled about. I’m not understanding why the garbage collection runs every time these files are created. Here’s links to images of my advanced and preload settings. Also, i believe there was an update to the Super Cache plugin recently (i’m thinking in the past couple days), and i don’t remember this issue ever occurring before. Not sure if it’s relevant but i thought i would mention it. Is there a link to the previous build so i could test with that version?
https://preview.glg.com/advanced.png
https://preview.glg.com/preload.pngHey,
Thanks for the quick response. I did use the debug tool beforehand to see if i could identify the problem. Unfortunately i didn’t see anything alarming. Below is a link to the debug file.https://preview.glg.com/wpsupercache-debug.txt
Thanks
Forum: Themes and Templates
In reply to: Include jQuery in header.php… PLEASE HELP ?!I have created a website using wordpress and I wanted to include JQuery like I have in many websites to provide more functionality. After failing initially and then figuring out that I had to use the wp_enqueue_script I thought I had figured it out. Well I still can’t get JQuery to work. Here’s my steps:
In my functions.php file I put these lines to include Jquery and a test script that calls the alert function:
<?
wp_enqueue_script(‘jquery’);
wp_enqueue_script(‘jquery-ui-core’);
wp_enqueue_script(‘init’, ‘/wp-content/themes/starkers2.2-WP2.6.2/starkers/init.js’, array( ‘jquery’ ) );
?>My header.php just has
<? wp_head();?>
My init.js file looks like this
jQuery(document).ready(function(){
alert(“HELLO”);
});I have tried everything that I can think of and still nothing works.
Thank you in advance for any help. I have really struggled with this and am not getting anywhere.