Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. I am using the new free domain service: DigitalPlat Domain. I would like to send steelsandgaming.us.kg to my SteelSand account can you set that up and tell me the DNS Server names I need to use? Thanks, Steve
  3. It looks like you already excluded the web firewall rule. Did you wait 2 hours after disabling it for Apache to restart and test it again?
  4. Today
  5. Crappy free hosts disable it as a lazy way to avoid people sending spam. I've never known a paid host that blocked it, and we don't block mail() here even on our free plans. Rather ironically, our experience is that very few legitimate apps actually use phpmailer...most apps use mail(), SimpleMail (which is ultimately a wrapper for mail() ), or some SMTP implementation instead. Mail vs PHPMailer has nothing to do with mail landing in spam, as the resulting emails are identical from both methods. Content, DNS configuration, and domain reputation are the major factors. Mail() doesn't support authentication or encryption because they aren't applicable. It uses the server-wide mail settings in php.ini and doesn't even accept a mail server name. Also, is this AI generated nonsense? We don't appreciate AI generated posts here...they're often inaccurate and could get you banned from the forum for spam.
  6. I think this has happened before...Krydos can exclude it. Escalating.
  7. Honestly, you should avoid using PHP's mail(). - Many shared hosts disable it. - Even if it works, emails often land in spam. - It doesn’t support authentication or encryption. PHPMailer (with SMTP) is much more reliable and is considered the best practice for sending emails in PHP today.
  8. PHPMailer is more reliable than PHP's mail(), and works well on shared hosting without Composer. Steps: 1. Download PHPMailer ZIP here 2. Upload the folder to your host (e.g. /phpmailer/) 3. Use this sample code: <?php use PHPMailer\PHPMailer\PHPMailer; require 'phpmailer/src/PHPMailer.php'; require 'phpmailer/src/SMTP.php'; $mail = new PHPMailer(); $mail->isSMTP(); $mail->Host = 'your_email_server'; $mail->SMTPAuth = true; $mail->Username = 'your_email@example.com'; $mail->Password = 'your_app_password'; $mail->SMTPSecure = 'tls'; $mail->Port = 587; $mail->setFrom('your_email@example.com', 'Your Name'); $mail->addAddress('recipient@example.com'); $mail->Subject = 'Test Email'; $mail->Body = 'Hello, this is a test email sent via PHPMailer on shared hosting.'; echo $mail->send() ? "Sent!" : "Error: ".$mail->ErrorInfo; ?> PHPMailer + SMTP ensures better deliverability, supports HTML emails and attachments
  9. I am working with google oauth. The URL that is called by google seems to be blocked by heliohost. In the Web Application Firewall I added the security rule ID 210580, but that didn't help. From this forum post it seems like you need to adjust the rule on your side: https://helionet.org/index/topic/63233-solved-google-login-not-working-calling-a-403-error/ Would you be able to do that? My domain is https://knowledgebase.heliohost.us Here is the error [client 2a02:21b4:1a35:d800:7573:34c7:4ad9:cef7] ModSecurity: Access denied with code 403 (phase 2). Matched phrase ".profile" at ARGS:scope. [file "/etc/httpd/conf/modsecurity.d/rules/comodo_free/08_Global_Other.conf"] [line "57"] [id "210580"] [rev "2"] [msg "COMODO WAF: OS File Access Attempt||knowledgebase.heliohost.us|F|2"] [data "Matched Data: .profile found within ARGS:scope: email profile https:/www.googleapis.com/auth/userinfo.email openid https:/www.googleapis.com/auth/userinfo.profile"] [severity "CRITICAL"] [tag "CWAF"] [tag "Other"] [hostname "knowledgebase.heliohost.us"] [uri "/api/auth/callback/google"] [unique_id "aK7wBxk6NpbxASBBcBFsRQAAAU8"]
  10. Do you think your site has a configuration error (eg. Php,...)🤔
  11. It causes high traffic 🗿(or not)
  12. Hmm... I think a bad robot is using brute-force to crack the password
  13. Change both the outgoing and incoming mail sever settings to johnny.heliohost.org as above and try again. Many programs don't like when you use your domain in the mail server fields because the server identifies itself as johnny.heliohost.org when you connect. Also, (while not the case here) some people use Cloudflare, which can't pass mail connections.
  14. That feature is only available for Morty users.
  15. Your account has been reset, check your email for a new invite to recreate it.
  16. pls reset my account for me
  17. Pls i want to reset my account, and start over, new start, new domain, new building
  18. im on johnny the username is cfcatboy and i want it on cfcatboy.heliohost.us/lightbulb please
  19. can i please have WSGI Control Access my domain is cfcatboy.heliohost.us
  20. Domain added. it can take up to 2 hours to start working.
  21. Hello, I would like to add the domain: evigroup.org to my profile. My username is chapmjs. Thank you!
  22. The email that I'm trying to setup with Hubspot is for yieldandco.com. I have been able to access all the email accounts from webmail just fine. For some reason the IMAP/SMTP is not syncing up correctly. Here's the server settings: Outgoing mail server (requires authentication) yieldandco.com Incoming mail server yieldandco.com
  23. Have you tried using johnny.heliohost.org as the hostname?
  24. My username is joyusecommerce. I'm trying to connect Hubspot CRM to my email via IMAP/SMTP. Hubspot is getting an error that it can't set up the email with a server side error. I have triple checked the information, performed it twice, the third attempt I tried mail in front of the domain and it didn't work either. Please help, since I don't see a log for the actual error that is occurring. The settings that I have are 993 for IMAP and 465 for SMTP.
  25. Account has been reset, and a new invite was sent to your email address.
  26. Yesterday
  27. I already fixed like 10 errors and they kept leading to exponentially more and more errors. I'm not going to waste 6+ hours screwing around with it, and even then may not be able to fix everything. We're all volunteers and we don't get paid to work on your VPS. There are more important things like setting up the new Ricky server that would benefit the community more. You're welcome to hire a third party to fix the issues for you, but you're probably looking at $100+ per hour to fix issues like this. You're also welcome to start reading the error logs and fixing the issues yourself, but depending on your skill you may make things worse. It's really not difficult to backup your data and restore it after the rebuild. I rebuild my VPS every 6 to 12 months anyways just to keep them running at top performance.
  1. Load more activity
×
×
  • Create New...