Quantcast
Channel: WordPress.org Forums » [Autoptimize] Support
Viewing all 14094 articles
Browse latest View live

[authz_core:error] client denied by server configuration

$
0
0

Replies: 5

Hi, we are using autoptimize plugin but on daily basis there are is a lot error in the log are coming as below:

[authz_core:error] AH01630: client denied by server configuration: /home/***/public_html/wp-content/cache/autoptimize/autoptimize_******40.php.

We checked to find some solution for this but no success. we are using godaddy share hosting with cpanel.


The plugin does nothing

$
0
0

Replies: 0

Hi, I’ve installed and enabled the plugin, trying both on my development environment and in the production one.

Nothing happens. The cache stays at 0 and the pages are identical to what they were before (same number of js/css files loaded).

I’ve read the faq, and the only thing I could try is to randomly disable other plugins. Before I go for that route, is there I way I can debug why it’s not working?

Thanks

Deferred CSS doesn’t load

$
0
0

Replies: 0

When I select ” Inline “above the fold CSS” while loading the main autoptimized CSS only after page load” — only the inlined CSS loads and the deferred stylesheet doesn’t load at all.

Could this be an issue with my footer? or any other ideas?

wildcard support for exclude – improvement idea

$
0
0

Replies: 1

Hello (@optimizingmatters) Frank 🙂

thank you for such a great plugin!

I would like to ask you, can you please add support for wildcard characters when excluding files

for example if I want to exclude jquery-3.3.0.min.js and after some time, due to update file is named jquery-3.3.1.min.js I have to chase it manually

if we could define for example jquery-*.min.js that would be great, since then I don’t have to run after every plugin update to check if everything still works

at the moment I have disabled JavaScript optimization, because I rather have working mobile menu, then website that is fast but not functional

I guess using wildcards would be a good option (? to replace single character, and * to replace everything else)

Best Regards,
Peter

  • This topic was modified 1 hour, 3 minutes ago by peraburek.

Debug Error: Undefined index

$
0
0

Replies: 1

Hi,

As soon as I activate Autoptimize, I get the error below in debug. This happens regardless of Autoptimize settings and with NO other plugins running. I’m using the latest version of WP with the default 2017 theme. Seems like a bug in Autoptimize.

Notice: Undefined index: host in /home/chicoautorepair/public_html/wp-content/plugins/autoptimize/classlesses/autoptimizeExtra.php on line 146

Browser caching for images

$
0
0

Replies: 0

When I compared caching plugins 1 or 2 years ago, Autoptimize ranked 2nd to another one, only because the other plugin was able to enable browser caching for images.

Giving Autoptimize another try today, it still isn’t able to enable browser cache for the images. Why aren’t you adding this crucial feature to the plugin? It’s working fine with the other plugin.

Change cache directory location?

$
0
0

Replies: 1

Hi,

We run on Pantheon, where production sites run on a read-only file system except for the media sub-directory (to support uploads). This helps reduce the attack surface and is a really good idea.

Unfortunately, Autoptimize assumes all of wp-content is writeable, which isn’t true on Pantheon and other hosters who follow the same pattern. There seems to be no way to relocate the cache folder to a different location that is writeable.

Can you let me know if the cache folder can be moved? We’d love to pay for your product but this is a showstopper.

Plugin limits image size


Optimizing jQuery

$
0
0

Replies: 1

Is there any way to have jQuery be optimized but not break scripts that use it? E.g make sure it loads before all other JavaScript?

Google cached html and hotjar heat maps look broken

$
0
0

Replies: 0

Because I am setting the cache to clear every 30 minutes… that means software like hotjar is useless, as it calls the css and js files that were used at the time of viewing.

Google cache is also useless for the same reason.

Any solution?

I note its not a problem with other caching plugins like wp-rocket eg https://webcache.googleusercontent.com/search?q=cache%3Ahttps%3A%2F%2Fwww.worldcolorstudio.com&oq=cache%3Ahttps%3A%2F%2Fwww.worldcolorstudio.com&aqs=chrome..69i57j69i58j69i60l2.1311j0j4&sourceid=chrome&ie=UTF-8

Unclickable Amazon Links

$
0
0

Replies: 3

This relates to the plugin Amazon Link Engine, and I think it’s an Autoptimize issue (or Async Javascript), but I’m not sure.

It uses this script:

` <script src=”//cdn.geni.us/snippet.min.js” defer></script>
<script type=”text/javascript”>
jQuery(document).ready(function( $ ) {
var ale_on_click_checkbox_is_checked=”1″;
if(ale_on_click_checkbox_is_checked) {
Georiot.amazon.addOnClickRedirect(37928, true);
}
else {
Georiot.amazon.convertToGeoRiotLinks(37928, true);
};
});
</script>`

It’s meant to forward to an https://buy.geni.us/Proxy… link but show the Amazon link on hover – it’s the hover process that’s failing.

I’ve excluded snippet.min.js in Autoptimize and Async but Amazon links aren’t clickable – even after clearing Autoptimize cache.

Autoptimize disabled, will not work anymore

$
0
0

Replies: 3

Hey there,
I have been using Autoptimize daily for some time now but suddenly it has stopped working entirely. I am up-to-date with v 2.3.4 but WordPress says it is “Disabled” and no matter what I do I cannot reactivate it, and it no longer shows under my Settings tab. My cache is getting large and I really need to get this working again. Any thoughts?

Matt

Webfont does not work anymore

$
0
0

Replies: 0

First of thank you so much for your great plugin. Works like a charm!

I have only one problem. Google webfont does not work anymore after using the plugin.
Chrome says “webfont not defined”.

Any idea how I can solve this?

Exclude yarpp thumbnails

$
0
0

Replies: 0

Hi Frank,

It’s probably not possible, but I am going to try it anyway…

I’ve a website that uses YARPP thumbnails. The code is

<?php
$args = array( 'posts_per_page' => 8, 'orderby' => 'rand', 'category' => 7 );
$rand_posts = get_posts( $args );

foreach ($rand_posts as $post) {
if ( has_post_thumbnail($post->ID)) {
	$pagetitlee = esc_attr( $post->post_title ); 
echo '<a class="yarpp-thumbnail" href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( $post->post_title ) . '" onClick="ga(\'send\', \'event\', \'yarpp\', \'Resep Buka Puasa Sahur thumb '. $pagetitlee .'\', \'Clicked\');">';
echo get_the_post_thumbnail($post->ID, 'thumbnail'); 
echo '<span class="yarpp-thumbnail-title">' . get_the_title() . '</span>';
echo '</a>';
}
}
?>

When I’m logged in I get random images every time I refresh the page, but when I’m not the thumbs stay the same.

Is there any way to exclude this piece of code?

Problems with css “inline” and “inline and defer”

$
0
0

Replies: 1

Hello support,

first of all: thanks for this great plugin! It helped us to make our website faster and solved a big problem we had with the Google Mobile Test. We could eliminate already most everything of render blocking js with “Async JavaScript”, but we have problems with the css-options of your plugin. We tried to inline and defer with a critacalcss.com-account. First it worked well, but after a while PageSpeed Insights shows on various pages a number of css above the fold (in some cases up to 17 – most of them twice or triple). After experimenting a lot without any success we changed to “inline all css”. Solved the problem with css above the fold but now PageSpeed Insight is criticizing the lack of prioritize visible content of course. In both cases, inline css or inline and defer css, we are reaching a pretty good PageSpeed of about 71/86 – 71/91, but we are afraid that with the result of rendering only 5% of the final above-the-fold content we’ll loose some ranking.

What can we do?

Thanks in advance for helping!


Why different CSS file for the same page?

$
0
0

Replies: 1

I am doing performance test on my site, and I found that the optimized CSS file for my homepage is different accessing from different locations:

Accessing from Dulles, VA, it returns

/wp-content/cache/autoptimize/css/autoptimize_8bc65d5431250254db0b72a68c5e05f4.css

Accessing from Mumbai, India, it returns

/wp-content/cache/autoptimize/css/autoptimize_626104be95dda2e545c0d4a87f0d6f74.css

Why is that?

Need Help

$
0
0

Replies: 0

hello there
this is not a complain
but just wan to know — after i updated yoast to the very recent version i lost my Thumbnail pic that shows when i share my website link on facebook or anything
does it really does that
please help – if so what am i to do
i have linked my webpage url
http://www.nepalpyramids.com/

Does not load pages when “CSS Options”

$
0
0

Replies: 0

Hello. When I turn on the “CSS Options” option, the site stops loading. There are no mistakes. tell me please what do I need to do?

adsense ads are not showing up

$
0
0

Replies: 2

hello,
my ads are not showing finely when i activate the autoptimize. as i deactivate plugin ads started showing up and on activating ads doesn’t work properly or show 2 or 1 or 3 ads while i’m using 5 ad code in a page.
so, tell me that How can i exclude ads caching from Autoptimize?

Page Cache Clearing

$
0
0

Replies: 3

Hey Frank,

I previously had an issue where the page cache would clear when publishing a post. I eventually tracked it down to some code in Monarch plugin and solved the issue.

I’ve noticed the same problem is happening again.

I tested on my local install with only Cache Enabler and Autoptimize, and page cache only gets cleared when publishing a new post when Autoptimize is active.

When Autoptimize is not active, page cache remains intact when new posts are published.

Has something changed in the last update for this to occur?

Viewing all 14094 articles
Browse latest View live