Hi cartographer .
Maybe directions at the belove solve your problem.
1) write this to your .htaccess file
# BEGIN GzipWpFastestCache
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
</IfModule>
# END GzipWpFastestCache
# BEGIN WpFastestCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
RewriteBase /
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\"]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\"]+ [NC]
RewriteCond %{HTTPS} !on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/all/$1/index.html -f
RewriteRule ^(.*) "/wp-content/cache/all/$1/index.html" [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WpFastestCache
2) change checkInternal function with belowe code in css-utilites.php.
public function checkInternal($link){
$contentUrl = str_replace(array("https://www.", "https://", "https://", "https://www."), "", content_url());
$httpHost = str_replace("www.", "", $_SERVER["HTTP_HOST"]);
if(preg_match("/href=[\"\'](.*?)[\"\']/", $link, $href)){
if(strpos($href[1], $httpHost)){
if(strpos($href[1], $contentUrl."/themes") || strpos($href[1], $contentUrl."/plugins"))
{
return $href[1];
}
}
}
return false;
}
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
After this point i want to continue with turkish. make it easy.
Emre program?n ?ok güzel ger?ekten. 7.8.8 sürümünü kullan?yorum ve css konusunda s?k?nt?lar? vard? biraz. Css urleleri ve pathlar? ile ilgili s?k?nt?lar? yeniden yazarak ??zdüm. Ama as?l sorun css-utilities.php deki s?k??t?rma i?levlerinin kulland???m versiyonda i?e yaramamas?. Bu son sürümde ??züldümü.Ayr?ca bu s?k??t?rlan css dosyalar?n? e?er <!– [if IE]–> gibi etiketler i?inde de?ilse tek bir dosya halinde tutmak ?ok daha yararl? olacakt?r.htaccess dosyas?nda yap?lacak de?i?iklikler kullan?clar?n sistemine ba?l? oldu?u i?in, rewritebase gibi, y?netim panelinde bu tarz ?eyleri parametrik olarak istemek yararl? olacakt?r.
Eline sa?l?k kolay gelsin.