openmtl
Forum Replies Created
-
Forum: Plugins
In reply to: [Language Redirect] Adding cookie to make redirection once-only (have code)added code to a patch on github https://github.com/lincolnphipps/language-redirect Will be adding more pages to my subsites and if it all looks ok will do a pull request.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Cannot create jobSame here. I network activated 3.1.1 on a new 3.8 multisite but when I went to the network backupwp settings it did not save the job (a clean install so no existing jobs). Also when you checked the “save to folder” option the folder tab didn’t appear. I have wp_debug true but did not see any error messages. I used wireshark and just saw the post with the form data but it got a 302 reply I think.
I downloaded 3.0.13 (thanks Mike for that hint !) and 3.0.13 worked for me straight away.I’m not new to WP – I have an existing multisite with 6 subsites that I use backupwp and I have single sites too but this is first with wp 3.8/3.1.1 combo.
I have to get a client live so I’ll be using 3.0.13 for now but will retry 3.1.1 on my test bed to see if I can dig deeper.
Try to just add WP-Mail-SMTP if it suddenly stops working.
Mine was working and then WP 3.4 and got the red error message on send message. I had to add WP-Mail-SMTP (latest version Version 0.9.1 ) plugin and set SMTP to defaults of localhost and then form worked again.
https://www.openmutual.org/2012/06/needed-to-add-smtp-support-with-wordpress-3-4/
Forum: Plugins
In reply to: [Redirection] [Plugin: Redirection] Regex Syntax for case insensitivity?You can’t do that with the /i flag because of how the from URL is poked into the preg_match() in the redirector code but you must do it like this in the from URL…
^/+(C|c)(O|n)(T|t)(A|a)(C|c)(T|t)/*.*
as an example. That will match /Contact or /CONTACT//// or anythig in between e.g. /CoNtAcT/
Forum: Plugins
In reply to: [Redirection] Help with Regex in RedirectionMaybe a regex like this…
^/+[a-z,0-9]*\.\.
Well no one replied but I’ll log a trac on this as I see it as a bug in core code anyway.