elgeorge2k
Forum Replies Created
-
Forum: Plugins
In reply to: [GD Mail Queue] SMTP Error: Could not connect to SMTP hostIt was an error with the TLS validation of cert in server. There should be an option to disable SMTPAutoTLS I think.
Forum: Developing with WordPress
In reply to: HTTP error – Uploading large videosIt’s important for the debug of issues to know exactly what the response headers from the upload attempt are in order to determine the cause. You can find response headers using Chrome and Ctrl + Shift/Option + I to open Developer Tools, then attempt the upload and go to Network panel and click the upload request, which appears as a xhr request to /wp-admin/async-upload.php. The response you tipically get for a success upload is:
Request Method: POST
Status Code: 200
Then to the response tab you should see the json response to the upload like:
{“success”:true,”data”:{“id”:1353066,”title”:”flat,800×800,070,f”,”filename”:”flat800x800070f.jpg”,…
I removed the rest of the request for practical reasons, but here comes information about the error. If you dont have a response, at least you have a Status Code that’s what the web server responds.Forum: Plugins
In reply to: [Find and Replace All] Where are the backups stored?Hey same happened to me, there are no backups done by the plugin. You have to create the backup yourself before executing.
Personally I use wp cli tool: https://wp-cli.org/
wp search-replace ‘https://yoursite.com’ ‘https://yoursite.com’
https://wp-cli.org/commands/search-replace/
This plugin is outdated and I don’t think its maintained.
Same problem here, the times set are about 10 hours before the correct time, and the blog is PDT so no idea whats happening. I will have to debug and fix by myself :S