lking57
Forum Replies Created
-
Yes. On our production site, in the Advanced Excerpt settings we disabled AE on the home page and it looks fine. See https://steeplechasers.org/
Looking forward to when FSE is fully supported. As it turns out after I enabled the block editor via Events Settings I was able to edit / update future events to show the metadata. This worked for non-recurring events but didn’t work for recurring events.
Forum: Plugins
In reply to: [Hero Banner Ultimate] malwarebytes doesn’t like demo sitePlease see https://share.getcloudapp.com/7KuWolZB
Regarding the original post, my bug is 49243 and I did get a response when I asked for status. I think they had some questions on my bug report, so that is how I know the bug number.
“We believe this is an issue on our end and our developers are looking into what could be causing it. It has happened on several of our customers sites, they just aren’t sure what it may be at this point but we do have an issue open for it and they are currently working on it. Hopefully it will be resolved quickly!”
I agree about the need for a gravityscan forum.
Thanks for pointing this out. I had the scan succeed once but I just retried and had the same problem. Logging out and logging in didn’t seem to help.
FWIW, and I know this doesn’t really help and maybe I shouldn’t butt in, but I was able to export successfully from godaddy deluxe hosting (Linux, but not a cPanel account).
I did have one issue where some stuff wasn’t getting imported. This was related to the version of All-in-One WP Migration I was using for the export, so I suggest you verify you are at the latest version.
- This reply was modified 8 years, 8 months ago by lking57. Reason: clarification on issue I had
thanks, done
Actually after writing this I realized the “last backup” was the only automated backup which ran successfully. The manual backup was run 7/27.
Thanks
Actually I want to prevent any changes from being made from the time I start the backup until the time the new site is running and I’m sure that the DNS points to the new site for all my users. Otherwise I could lose changes made to the old site after I’ve made the export.
So I won’t remove .maintenance from the old site ever. The new site doesn’t need to be in .maintenance mode I think.
I will lose the ability to view the site during this process, but to me it’s more important that we don’t lose any changes.
In any case, I am inferring that the .maintenance file will not interrupt the export.
Forum: Plugins
In reply to: [The Events Calendar] Next doesn’t work from month viewmoving this to theeventscalendar.com tec pro forum https://theeventscalendar.com/support/forums/topic/month-navigation-doesnt-seem-to-work/
All was taken care of by the restore. I ended up using the backup restore feature rather than import as I did have issues during the import. I think the backup restore should probably be considered the primary way to use this if at all possible to ftp the exported file by the user.
wonderful – thanks for your quick replies
I was thinking of an alternate solution, please tell me if this would work in a single step:
In export find/replace find https://www.example.com replace to https://example.com
I would think this ends up changing everything in the database to match the siteurl variable, so that the import would make the modification to the new database siteurl.
But in the end I will go with your best guidance.
I saw this today as well. I am trying to code a loop in my theme which retrieves all pages of posts for a category, and I’m not sure the best way to end the loop. I thought looking for the error would do it but there’s an exception in wordfence and it looks like this one.
my javascript code is similar to the following but doesn’t reach the fail method because of the exception
var factoids = []; var $ = jQuery; var page = 1; var PER_PAGE = 10; var category = 7; // retrieved earlier function get_factoids() { $.getJSON( '/wp-json/wp/v2/posts?page=' + page + '&per_page=' + PER_PAGE +'&categories=' + category ) .done( function( data ) { // collect title renderings from steeps-factoid posts for (var i=0; i<data.length; i++) { thisfactoid = data[i]; factoids.push( thisfactoid.title.rendered ); }; // if we found some steeps-factoids, try to retrieve the next page if ( data.length>0 ) { page += 1; get_factoids(); } }) .fail(function( jqxhr, textStatus, error ) { // we reached the end of the list }); }