Jump to content

Sn1F3rt

Moderators
  • Posts

    1,412
  • Joined

  • Last visited

  • Days Won

    43

Everything posted by Sn1F3rt

  1. Hmm flazepe....I was too suggesting him that....HSTS can be set up manually too, you don't need Cloudflare for that.
  2. U mean disabling Cloudflare?
  3. No. As I posted in a previous post check what wolstech said. EDIT: Also can you temporarily disable Cloudflare totally on your site.
  4. Check my this post.
  5. Do something rename your.htaccess file to htaccess.txt once.
  6. No...for HSTS add this to .htaccess : Header set Strict-Transport-Security "max-age=31536000" env=HTTPS
  7. Yes...they will break AutoSSL as wolstech said in : https://www.helionet.org/index/topic/36270-getting-error-while-opening-my-domain/
  8. For https redirect: For HTML: (Add a meta tag) < meta http-equiv="Refresh" content="0;URL=https://www.example.com" /> For PHP: < ?php function redirectTohttps() { if($_SERVER['HTTPS']!=”on”) { $redirect= “https://”.$_SERVER['HTTP_HOST].$_SERVER['REQUEST_URI'];header(“Location:$redirect”); } } ?>
  9. Yep it will...you will need to wait for an Apache restart on Tommy(max 24 hours).
  10. Then either remove Cloudflare association or ask an administrator to disable AutoSSL on your account. SInce Cloudflare SSL will be breaking AutoSSL so both can't exist together. Which one do you want to keep?
  11. Which server are you on?
  12. You need to wait for an APache restart on Tommy...It will set everything alright.
  13. Oh I see! Then this might help: For HTML: (Add a meta tag) < meta http-equiv="Refresh" content="0;URL=https://www.example.com" /> For PHP: < ?php function redirectTohttps() { if($_SERVER['HTTPS']!=”on”) { $redirect= “https://”.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];header(“Location:$redirect”); } } ?>
  14. Probably coz of this: https://van51.ml/index_.jsp It's generating the error both over http and https
  15. And here goes the code: (Assuming you have existing code in .htaccess file) RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L] And if you don't have (that is you are creating a new file) then: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://yourdomain.com/$1 [R,L] </IfModule>
  16. Should have said that...I thought the HelioForums.
  17. Gmail problems in other forums? Where....I don't find them anywhere?
  18. With your present question no one except Krydos can help u now. So everyone's quiet.;-)
  19. Yep... Now working for me too.
  20. You need to wait until Apache on Johnny restarts... It will solve everything. EDIT: Congratulations, your domain has started working.
  21. Wait until Apache restarts, it will solve everything
  22. Which server are you on?
  23. Krydos can set that up for you.
  24. U need to wait u know... HelioHost isn't the job of the administrators. They have their jobs and personal lives too, which engulfs most of their time. Everytime they can't be there to assist you.
×
×
  • Create New...