x00
MVPx00 MVP
Reactions
-
Re: How to link Outgoing Mail
the email server doesn’t have to be hosted by you. https://www.zoho.com/mail/help/zoho-smtp.html "fake mail" these day pretty much get instantly rejected by spam filters. Check Zoho Mail po… (View Post)1 -
Re: How to add notification after submitted the "Post Discussion", "Post Comment" buttons
also don’t do things like $Tag = $_REQUEST['Tag']; There is was ways of checking to post if you, need to get the post value(s). Work with the framework. (View Post)1 -
Re: How can I use class MySqlDrivers method EscapeSql?
you should be initialising these driver directly anyway. What if they switch from MySQL to Postgres or SQL Light? Use Gdn::SQL->EscapeSql(); However I question why you are using this directly what… (View Post)6 -
Re: Vanilla vs Flarum
what does this even mean? (View Post)1 -
Re: From SMF to Vanilla 2.1 - how to clean up BBC code?
regular expression \[quote\ ([^ ]+) link=[^\]]+\] replace [quote="\1"] or [quote="$1"] myslq doesn’t have an internal regex replace. by you can create a function or do text replac… (View Post)1