Jump to content

Recommended Posts

Posted

Alright, I would love to see a plugin the would be made for blesta that would make the cron thingy run on a X amount of minutes. Im sure you guys can do this easily.

Posted

You should setup a cron job on your web server to automatically run the cron every 5 minutes so you do not have to hit the button in Blesta to run it manually. See here.

Posted

Well i would would that but everytime i uncomment 

#RewriteCond %{HTTPS} !=on

#RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=307,NE,L]

 

That it just then breaks, then not only that my apache service wont allow .htaccess

 

You can use HSTS, which is done via the apache file, or you can use other force Https://

 

You could try for example:

  RewriteCond %{HTTPS} off
  RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
RewriteEngine On 
RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC]
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://yourdomain.com/$1 [R,L]

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...