mouschi
Forum Replies Created
-
That’s not the actual problem – it was just something I noticed where the current day is not showing up, which is fine (no one applying was born on the same day lol!) The main problem is the caching error.
One thing I found interesting is that a lot of times (not all the times I don’t think?) is when it gives that error, the calendar for date of birth on my form will show the previous day, and not the current. Is there anything else we can check?
The htaccess file was actually generated by wordpress. i think that code in specific was generated by wp rocket.
htaccess talks about caching ... does any of this have anything to do with it?
ExpiresActive on
ExpiresDefault "access plus 1 month"
# cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
ExpiresByType text/cache-manifest "access plus 0 seconds"
# Your document html
ExpiresByType text/html "access plus 0 seconds"
# Data
ExpiresByType text/xml "access plus 0 seconds"
ExpiresByType application/xml "access plus 0 seconds"
ExpiresByType application/json "access plus 0 seconds"
# Feed
ExpiresByType application/rss+xml "access plus 1 hour"
ExpiresByType application/atom+xml "access plus 1 hour"
# Favicon (cannot be renamed)
ExpiresByType image/x-icon "access plus 1 week"
# Media: images, video, audio
ExpiresByType image/gif "access plus 4 months"
ExpiresByType image/png "access plus 4 months"
ExpiresByType image/jpeg "access plus 4 months"
ExpiresByType image/webp "access plus 4 months"
ExpiresByType video/ogg "access plus 4 months"
ExpiresByType audio/ogg "access plus 4 months"
ExpiresByType video/mp4 "access plus 4 months"
ExpiresByType video/webm "access plus 4 months"
ExpiresByType image/avif "access plus 4 months"
ExpiresByType image/avif-sequence "access plus 4 months"
# HTC files (css3pie)
ExpiresByType text/x-component "access plus 1 month"
# Webfonts
ExpiresByType font/ttf "access plus 4 months"
ExpiresByType font/otf "access plus 4 months"
ExpiresByType font/woff "access plus 4 months"
ExpiresByType font/woff2 "access plus 4 months"
ExpiresByType image/svg+xml "access plus 4 months"
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
# CSS and JavaScript
ExpiresByType text/css "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"Peter, thank you for your response! I’m not sure I really have access to blocking anything beyond what wordfence offers. What would you suggest I do if there are tons of offending ip addresses? I’ve seen in the past where one ip address will attempt various files every 2-3 minutes for hours, but then a different ip address from a different country will try something similar … then another ip address, and another. It would be great if I could just be able to block 1 ip address, but it doesn’t seem it will work. Tons of 403/503 errors pop up in the wordfence traffic section. what would you suggest I do in this instance specifically to keep down the compute cycles?
Thank you Kima! I’ve written – I truly hope you all can get back with me soon so we can get it fixed up.
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] Submission Limit Not UpdatingThank you! When do you expect the next version to be available?
Thanks you @apmwebdev for your help! Unfortunately, it looks like neither will work for the woocommerce booking system since I’m using the persons type as quantity per woocommerce. any other help would be greatly appreciated from you or anyone else!
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import isn’t workingWOW – majorly bizarre here. In the settings of WP, the urls displayed properly, but in the db in wp_options, they did NOT. I am not sure how that happened, as I thought those details were pulling from mysql? Either way, I *think* things are good now. Thank you for your help!
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import isn’t workingYes it shows perfect in both spots.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import isn’t workingThis is interesting … here it is ….
I actually have the site setup on a temp url and “.php56-4.dfw3-2.websitetestlink.com” should be shown right after .com – there is nowhere in the code that I’m aware of that the url is referenced incorrectly except for in the screen shot above.
- This reply was modified 7 years, 7 months ago by mouschi.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import isn’t workingAbsolutely – where do I go to click View? I don’t see anything anywhere in the wordpress admin for this.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import isn’t workingAbsolutely – here you go – :
@epwcsysh I checked out the link you posted, and it looks like that solution works as well … and is probably better suited for what I need ?? My solution above may work best for folks who have several fields, but just to re-iterate what is needed: If you want to only have an exact match show up, simply crack open sds-main.php, and remove the % sign from lines 1441 and 1527.
@epwcsysh thank you for the response! I don’t think that is what I was looking for, however, I Have modified the code myself to get the desired results. Here is how to do it, in case someone stumbles on this plugin, loves it, but is disappointed that support is dead.
The situation is this: I have a database lookup system. I want people to be able to pull up exactly one result, based upon the serial number they pull up. I wanted ONLY ONE result each time someone searches something, so here goes:
Open up sds-main.php and on line 1441, change
$results_sql = “SELECT id,field_id,field_input FROM ” . $table . ” WHERE field_input COLLATE UTF8_GENERAL_CI LIKE ‘” . $_POST[‘sds-search-data’] . “%’ ORDER BY id ASC”;
to
$results_sql = “SELECT id,field_id,field_input FROM ” . $table . ” WHERE field_input COLLATE UTF8_GENERAL_CI LIKE ‘” . $_POST[‘sds-search-data’] . “%’ ORDER BY id ASC limit 1”;
That limits it just fine for me, and the desired results are achieved. I hope this helps someone here.