BIP KB Tag: HTTP
Apache CentOS 6 Can Not Send eMail And Drupal Gets HTTP Request Status Fails
Pressflow Send Mail error
I’m installing a Pressflow 6 on a new machine running CentOS 6. I’m using Apache MPM Worker with FastCGI. Then I get the classical mail error:
Unable to send mail. Please contact the site administrator if the problem persists.
Then I try to use sendmail:
sendmail -v yourmail@example.com < testmail
Where testmail is a file containing these lines:
Subject: test mail Ozu
Yasujiro Oz...
By bobby, March 18, 2015
How To Redirect HTTP to HTTPS using an .htaccess file
The below code when added to an .htaccess file will automatically Redirect HTTP traffic to https:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
...
By salem, May 20, 2016