menu_sitePerf.php
6.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
$w = new wfConfig();
?>
<div class="wordfenceModeElem" id="wordfenceMode_caching"></div>
<div class="wrap">
<?php require('menuHeader.php'); ?>
<?php $pageTitle = "Your Site Performance"; $helpLink="http://docs.wordfence.com/en/Falcon_Cache"; $helpLabel="Learn more about Wordfence Caching"; include('pageTitle.php'); ?>
<?php
$rightRail = new wfView('marketing/rightrail');
echo $rightRail;
?>
<div class="wordfenceWrap" style="margin: 20px 20px 20px 30px; max-width: 800px;">
<?php if (wfConfig::get('cacheType') == 'php' || wfConfig::get('cacheType') == 'falcon') { ?>
<div id="wordfenceFalconDeprecationWarning" class="wf-notice"><p><strong>Support for the Falcon and Basic cache will be removed.</strong> This site currently has the <?php echo (wfConfig::get('cacheType') == 'php' ? 'Basic' : 'Falcon'); ?> cache enabled, and it is scheduled to be removed in an upcoming release. Please investigate other caching options and then manually disable it below. It will be disabled automatically when support is removed. <a href="http://docs.wordfence.com/en/Falcon_Cache" target="_blank">More information.</a></p></div>
<?php } else { ?>
<div id="wordfenceFalconDeprecationWarning" class="wf-notice"><p><strong>Support for the Falcon and Basic cache will be removed.</strong> It is scheduled to be removed in an upcoming release and should not be enabled. If enabled, it will be disabled automatically when support is removed. <a href="http://docs.wordfence.com/en/Falcon_Cache" target="_blank">More information.</a></p></div>
<?php } ?>
<h2>Caching</h2>
<table border="0">
<tr><td>Disable all performance enhancements:</td><td><input type="radio" name="cacheType" id="cacheType_disable" value="disable" <?php if(! wfConfig::get('cacheType')){ echo 'checked="checked"'; } ?> /></td><td>No performance improvement</td></tr>
<tr><td>Enable Basic Caching:</td><td><input type="radio" name="cacheType" id="cacheType_php" value="php" <?php if(wfConfig::get('cacheType') == 'php'){ echo 'checked="checked"'; } ?> /></td><td>2 to 3 Times speed increase</td></tr>
<tr><td>Enable Wordfence Falcon Engine:<div class="wfSmallFalcon"></div></td><td><input type="radio" name="cacheType" id="cacheType_falcon" value="falcon" <?php if(wfConfig::get('cacheType') == 'falcon'){ echo 'checked="checked"'; } ?> /></td><td>30 to 50 Times speed increase</td></tr>
</table>
<br />
<input type="button" id="button1" name="button1" class="button-primary" value="Save Changes to the type of caching enabled above" onclick="WFAD.saveCacheConfig();" />
<h2>Cache Options</h2>
<table border="0">
<tr><td>Allow SSL (secure HTTPS pages) to be cached:</td><td><input type="checkbox" id="wfallowHTTPSCaching" value="1" <?php $w->cb('allowHTTPSCaching'); ?> />We recommend you leave this disabled unless your<br />site uses HTTPS but does not receive/send sensitive user info.</td></tr>
<tr><td>Add hidden debugging data to the bottom of the HTML source of cached pages:</td><td><input type="checkbox" id="wfaddCacheComment" value="1" <?php $w->cb('addCacheComment'); ?> />Message appears as an HTML comment below the closing HTML tag.</td></tr>
<tr><td>Clear cache when a scheduled post is published</td><td><input type="checkbox" id="wfclearCacheSched" value="1" <?php $w->cb('clearCacheSched'); ?> />The entire Falcon cache will be cleared when WordPress publishes a post you've scheduled to be published in future.</td></tr>
</table>
<br />
<input type="button" id="button1" name="button1" class="button-primary" value="Save Changes to the the caching options above" onclick="WFAD.saveCacheOptions();" />
<br /><br />
<h2>Cache Management</h2>
<p style="width: 500px;">
<input type="button" id="button1" name="button1" class="button-primary" value="Clear the Cache" onclick="WFAD.clearPageCache();" />
<input type="button" id="button1" name="button1" class="button-primary" value="Get Cache Stats" onclick="WFAD.getCacheStats();" />
<br />
Note that the cache is automatically cleared when administrators make any site updates. Some
of the actions that will automatically clear the cache are:<br />
Publishing a post, creating a new page, updating general settings, creating a new category, updating menus, updating widgets and installing a new plugin.
</p>
<h2>You can add items like URLs, cookies and browsers (user-agents) to exclude from caching</h2>
<p style="width: 500px; white-space:nowrap;">
If a
<select id="wfPatternType">
<option value="s">URL Starts with</option>
<option value="e">URL Ends with</option>
<option value="c">URL Contains</option>
<option value="eq">URL Exactly Matches</option>
<option value="uac">User-Agent Contains</option>
<option value="uaeq">User-Agent Exactly Matches</option>
<option value="cc">Cookie Name Contains</option>
</select>
this value<br>then don't cache it:
<input type="text" id="wfPattern" value="" size="20" maxlength="1000" />e.g. /my/dynamic/page/
<input type="button" class="button-primary" value="Add exclusion" onclick="WFAD.addCacheExclusion(jQuery('#wfPatternType').val(), jQuery('#wfPattern').val()); return false;" />
</p>
<div id="wfCacheExclusions">
</div>
</div>
</div>
<script type="text/x-jquery-template" id="wfCacheExclusionTmpl">
<div>
If the
<strong style="color: #0A0;">
{{if pt == 's'}}
URL starts with
{{else pt == 'e'}}
URL ends with
{{else pt =='c'}}
URL contains
{{else pt == 'eq'}}
URL equals
{{else pt == 'uac'}}
User-Agent contains
{{else pt == 'uaeq'}}
User-Agent equals
{{else pt == 'cc'}}
Cookie Name contains
{{else pt == 'ceq'}}
Cookie Name equals
{{else pt == 'ipeq'}}
IP Address equals
{{/if}}
</strong>
(without quotes):
<strong style="color: #F00;">
"${p}"
</strong>
then don't cache it. [<a href="#" onclick="WFAD.removeCacheExclusion('${id}'); return false;">remove exclusion</a>]
</div>
</script>
<script type="text/x-jquery-template" id="wfWelcomeContentCaching">
<div>
<h3>How to speed up your site by up to 50 times</h3>
<strong><p>Wordfence includes Falcon Engine, the fastest WordPress caching system available.</p></strong>
<p>
Having a fast site is important for several reasons. Firstly it will cause google to rank you higher in the search results. Google have publicly stated
that site speed is an important factor in search engine ranking. Secondly, it protects you from a denial of service attack. If a hacker is accessing your site at
20 pages per second and your site can't keep up, your site will appear to be unavailable to all other visitors. But if your site
can easily handle up to 800 requests per second, a hacker consuming 20 pages per second won't affect everyone else. That is why Wordfence
includes Falcon Engine, the fastest WordPress caching engine available.
</p>
<p>
You can enable Falcon Engine on this page. If for some reason your site is not compatible with Falcon, you can still enable our basic caching which will also
give you a significant performance boost.
</p>
</div>
</script>