There’s some good info about common config options over here: Where Is php.ini, the PHP Configuration File?
The phpinfo()
function will tell you which php.ini file applies.
There’s some good info about common config options over here: Where Is php.ini, the PHP Configuration File?
The phpinfo()
function will tell you which php.ini file applies.
Some notes on how to configure Postfix: Postfix SMTP-AUTH 4 DUMMIES.
See my reference configuration for hardware selections which worked well for me when running Kubuntu 18.04 guests on Kubuntu 18.04 hosts.
After configuring your VM you might like to read about installing Kubuntu on it.
Found this:
<Location /jira> RequestHeader unset Authorization ProxyPreserveHost On ProxyPass http://jiraserver/jira ProxyPassReverse http://jiraserver/jira </Location>
Over here. Wanted to keep a note of those settings.
I ran into this bug using bzr_hookless_email, fortunately someone had published a patch which seems to have fixed the issue:
=== modified file 'bzr_hookless_email.py' --- bzr_hookless_email.py 2012-03-22 15:15:15 +0000 +++ bzr_hookless_email.py 2012-04-25 06:05:55 +0000 @@ -159,7 +159,7 @@ self._config = self._branch.get_config() def update(self): - smtp = SMTPConnection(self._config) + smtp = SMTPConnection(self._branch.get_config_stack()) smtp_from = None for revision in self._revisions_to_send(): msg = self._compose_email(revision)
I wanted to configure the “From” email address that WordPress uses when emailing password resets. The way to do this is with a WordPress hook, specifically a filter hook in this case. So, in wp-config.php I added the following code:
add_filter( 'wp_mail_from', 'pcblog_mail_from' ); add_filter( 'wp_mail_from_name', 'pcblog_mail_from_name' ); function pcblog_mail_from() { return 'pcblog@progclub.org'; } function pcblog_mail_from_name() { return 'ProgClub blog'; }