Kimberly
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress File Monitor Plus] Plugin stopped working…Same problem as you…Identical! I have 3 sites but the 2 that it doesnt work on are ones with a lot more plugins. And like you the scan says it did run but yet when i change files to test i never get an email. I hate to use a real cron but it seems taht may be the only choice. I thikn i will set it in the cpanel instead of the way you have it though
Forum: Plugins
In reply to: [Mute Screamer] how to unblock myself :-)One thing u have to be careful though is plguins like to use special ids for their POST/REQUEST and so this could be picked up by Screamer and flag it as bad and potentially get your self banned from the Admin page (and entire site) accidentally. So u want to make sure when u enable the Ban feature to be aware that you may need to do some adjusting by including post/get ids in its Exception field.
For me, i kept getting confused why i kept getting locked out when i attempted to edit preferences for another plugin. Took me a while to notice it was screamer creating a false positive on my navigating/saving attempts in Admin page…yikes.
I was forced to go into the database, search for my ip to locate which tables it was in and remove the rows (with my ip) that were related to screamer and that fixed the problem. I also took note of the “REQUEST.xxx” and “POST.xxx” columns to include them into Screamer’s exception list. With that done it fixed the problem perfectly.
So this isnt a flaw of Screamer it is just being very sensitive to what is going on and it doesnt know who is an intruder or not — the maker of this plugin could have included a more detailed exception list that included not just the field name but values in the field since intruders could use the same fields but the data could be different; ip address exclusions would be nice too..
Forum: Plugins
In reply to: [Mute Screamer] Failed opening required 'mscr/Utils.php'It looks like the set_include_path() line isnt appending the correct location for this plugin on your end. I assume the /mscr/libraries directory exists inside this plugins directory? Its like your word press is configuered differently. You can always go into the file and just hard code the location of Utils.php and that will solve it instantly
Forum: Plugins
In reply to: [Mute Screamer] Incompatibility with Formidable 1.07.01What is the problem exactly?
Forum: Plugins
In reply to: [Ultimate Security Checker] You don't have sufficient permissions (again)use ftp and/or make sure you dont have the DISALLOW_FILE_EDIT flag set to true in your wp-config.php file
Forum: Plugins
In reply to: [WP Minify] Doesn't seem to workguess im too late to give my 2cents
Forum: Plugins
In reply to: [WP Minify] Certain JS & CSS files not includedAbout a year or so back we had several users like myself here start to address these problems and we came up with fixes to things like your problem. You may want to look back in the archive for related discussion for the answer. I’ve been away from this plugin for so long so i dont remember much of the code. If the plugin stops working which it hasnt yet (still works for me in 3.8 due to my several patches a year ago) i will dust off the code and have a look again.
Forum: Plugins
In reply to: [WP Minify] Doesn't play nice with WordPress 3.8For me WP MInify works for 3.8 but then i am using a customized version where i personally fixed its bugs back in wordpress 2.8 and ever since its been working for every subsequent version. I finally ugpraded to v3.8 only a few days ago and was happily suprrised WP Minify is still working perfectly. Yay for me!
Forum: Plugins
In reply to: [WP Minify] [Plugin: WP Minify] Removing ?m= from the cache urlIt won’t affect wp-minify’s caching ability at all (files are recached based on the generated file’s modified time — recall that these packed files are made up of individual files so if any of them are modified this packed file gets updated — as determined by the file system). But the removing of the “?m=” does affect how proxies cache.
From my poking around with its code wp-minify also makes use of ?m= when formulating a pretty url name which is actually quite silly since under conditions will lead to bigger problems which i think the author never realized.
Forum: Plugins
In reply to: [WP Minify] Plugin looking up for old .js cached filesYup i noticed that problem too which is why i rewrote some of this plugins internal code.
I assume yyour html page has a cache time (or is a cached file made by a quick cache type plugin). When that time expires it should go making updates, triggering this plugin to reevaluate its minified .js file to a new name (if necessary).
I noticed internally his method for naming these files (md5) is a bit improper and under conditions can cause problems. I rewrote my forked version of this plugin to resolve most of his problems, and by extension my problems.
Hey another fellow Canadian here! Yay! If you are still having troubles with this i’d be happy to take a look. Nice photos on your site btw! I’m a native of Uplands in Victoria (Vancouver Island).
Unless i am misunderstanding couldnt you just have enable the Quick Cache option to cache Get queries? Since JSON queries include the “?” symbol (akin to Get queries) this would automatically cache each and every JSON query request individually.
However, you will run into problems if you don’t want it to cache all queries that include “?” and so you would have to use wildcard statements to exclude all queries you don’t want cached — another avail Quick Cache field.
Forum: Plugins
In reply to: [Quick Cache (Speed Without Compromise)] Slimstat and Wassup PluginsWassup worked for me.
1. Could be your Server overriding your cache control settings
2. You can set cache settings via PHP (via header() function calls) and/or through your .htaccess file
Not sure if you are a coder too but you can use this in Quick Cache’s condition box. If the following condition is true then its a mobile visitor:
[Code moderated – please use a pastebin.]
Hope that helps!