hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: Data and parameters in vanilla popup form
You are looking to use the Gdn_Controller::jsonTarget() method. E.g. $this->jsonTarget('#DOM_Selector', '<markup>Will be appended</markup>', 'Append'); The other methods available are … (View Post)7 -
Re: Send user email when your comment has been quoted.
Add the following to your /conf/config.php file: $Configuration['Preferences']['Email']['Mention'] = '1';$Configuration['Preferences']['Popup']['Mention'] = '1'; (View Post)1 -
Re: Change banner's language
You could hook into the app startup, check the local and change the config option in memory. public function gdn_locale_afterSet_handler($sender) { switch ($sender->Locale) { case 'en': saveToConf… (View Post)2 -
Re: SMTP Error: Could not connect to SMTP after transfer my forum to new web hosting
Were you using an external SMTP server? Did you update your SMTP credentials? Does your new host allow accessing remote SMTP servers? (View Post)1 -
Re: Cannot go through Vanilla Installer (Access denied for user)
Is your DB server on the same host as your php server? If so, try using localhost instead of an IP address. (View Post)1
