bunlarla alakalı değil WPFC. Memcache ram'de dosyayı tutup kullanıcıya sunar. WPFC ise dosya olarak harddiske kaydedip apache'i üzerinden yönlendirir.
Emre kardeşim sürekli şuna benzer mailler alıyorum.
Anlamı nedir bunun? Güncelleme mi demek oluyor?
Alıntı
Revision
1212799
Author
emrevona
Date
2015-08-04 19:05:15 +0000 (Tue, 04 Aug 2015)
Log Message
to combine css files if combined_link exists
Modified Paths
wp-fastest-cache/trunk/inc/css-utilities.php
Diff
Modified: wp-fastest-cache/trunk/inc/css-utilities.php (1212798 => 1212799)
--- wp-fastest-cache/trunk/inc/css-utilities.php 2015-08-04 19:03:11 UTC (rev 1212798)
+++ wp-fastest-cache/trunk/inc/css-utilities.php 2015-08-04 19:05:15 UTC (rev 1212799)
@@ -91,14 +91,16 @@
}
}
- foreach (array_reverse($group_value) as $tag_key => $tag_value) {
- $text = substr($this->html, $tag_value["start"], ($tag_value["end"]-$tag_value["start"] + 1));
+ if($combined_link){
+ foreach (array_reverse($group_value) as $tag_key => $tag_value) {
+ $text = substr($this->html, $tag_value["start"], ($tag_value["end"]-$tag_value["start"] + 1));
- if($tag_key > 0){
- $this->html = substr_replace($this->html, "<!-- ".$text." -->", $tag_value["start"], ($tag_value["end"] - $tag_value["start"] + 1));
- }else{
- $this->html = substr_replace($this->html, "<!-- ".$text." -->"."\n".$combined_link, $tag_value["start"], ($tag_value["end"] - $tag_value["start"] + 1));
+ if($tag_key > 0){
+ $this->html = substr_replace($this->html, "<!-- ".$text." -->", $tag_value["start"], ($tag_value["end"] - $tag_value["start"] + 1));
+ }else{
+ $this->html = substr_replace($this->html, "<!-- ".$text." -->"."\n".$combined_link, $tag_value["start"], ($tag_value["end"] - $tag_value["start"] + 1));
+ }
}
}
}