Forum Replies Created

Viewing 15 replies - 76 through 90 (of 199 total)
  • Kimberly

    (@kellogg9)

    Hi ya!

    From looking at the code way back i notice this plugin requires you do one of two things:

    1. Give the full path to the file. If its a directory then the full path to the directory, postfixed with a “*”. e.g. /home/hosting-username/blog/wp-content/uploads/wpcf7_captcha/*

    OR

    2. Add a “*” wildcard at the very beginning of each relative path. But if the path is for a directory you will also need to postfix another “*”. e.g. */wp-content/uploads/wpcf7_captcha/*

    Notice the use of “*” wildcard at the beginning and end above. For directories you want to make sure to use the “*” at the very end. However, to ALSO use relative paths you would also need to use a “*” at the very beginning too.

    This is why your first full path didn’t work — you didn’t include a “*” at the end. And the other two paths (relative) were missing “*” at the beginning.

    So in summation either of the following would now work:

    /home/hosting-username/blog/wp-content/uploads/wpcf7_captcha/*
    */wp-content/uploads/wpcf7_captcha/*

    Kimberly

    (@kellogg9)

    I began looking into the code to see what the problem is but then i paused to ask:

    1. I wonder if “/index.php” is being file locked by someone else (e.g. your site is very popular and visitors are accessing it at the moment) when this plugin attempts its check. If it is then maybe that is why it is giving you the false positive.

    2. Have you considered adding “index.php” into its exception list so it ignores this file?

    3. What happens when you change the index.php file attribute (e.g. open the file, add a space, remove the space, and save the file — this will adjust the modified date). When this plugin sends you the email it shold show the “New Modified” date but i wonder when it runs a 2nd time will the “Old Modified” be this New modified date or will it remain as the Old (April 17, @7:37)? If it remains as the old after 2nd, 3rd,… times this could mean the plugin has some issues with its temp file.

    One thing u have to be careful though is wordpress and plugins 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 false positiving 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.

    you could have it ignore the folder.

    Unless i am misunderstanding you, you could just set this plugin (via its Options page) to use “Other Cron” from the “Cron Method” dropdown box.

    That is what i’ve done. And from there i just add the recommended cron line to my cron list. Actually, i changed his recommendation to something else but it still works fine.

    Curious, does this imply your php config is enforcing strict? I doubt most people have their config set in this way. I’ve never had this problem. I guess the author then should do a config setting check or just make it “static” and be done with it.

    Some of us have been using a forked version of this which still works in v3.8.1 perfectly.

    likely this means a css cache issue (i assume the border and shadow wwere done via css). Did u try to refresh the browser? Its possible the minify left some of its .css minify files in its folder.

    Use the following:

    <!– WP-Minify JS –>
    <!– WP-Minify CSS –>

    In the “css exclude” box type the following:

    admin-bar.min.css
    dashicons.min.css

    Enjoy

    Thread Starter Kimberly

    (@kellogg9)

    Yea i looked a the entire code (quite small) and i understand what is going on and so i was confident that the error was only a minor one.

    I get the sense you are more about promoting your site than you are about getting this plugin working because you arent giving enough info about the problem. When the plugin is active and you arent seeing it active you still will get feedback that should help give us info.

    yup we in the forums noticed that too a few years back and so several of us here made a forked version of wp-minify to implemented patches that resolved this and a few other problems.

    Oh no no i mean you may need to modify the permission for the directory itself or maybe “logs” is a file based on what the errors are saying. It seems your /logs may need to update its permissions to the wordpress preferred defaults of 755 (for directories) or if its a file then 644.

    But as a heads up the check root should be set to your home directory (where your wordpress is located). For example lets say ive installed wordpress site at: /home/kimberly (so that means my /wp-content would located at /home/kimberly/wp-conent). Then i would set this plugin’s check root field to be: /home/kimberly.

    Maybe the best solution is to just have this plugin ignore that file/directory entirely by adding it to your exclusion list.

    Let me know how things go. I am intrigued by your problem

    there are ways to resolve it and id love to help but experience says it wont be long before my efforts to help will soon go ignored.

Viewing 15 replies - 76 through 90 (of 199 total)