Jump to content

alkastraverse

Members
  • Posts

    28
  • Joined

  • Last visited

About alkastraverse

  • Birthday 12/04/2006

Contact Methods

  • Website URL
    https://alk.helioho.st/

Profile Information

  • Gender
    Male
  • Location
    VietNam

Recent Profile Visitors

446 profile views

alkastraverse's Achievements

Contributor

Contributor (5/14)

  • One Year In Rare
  • Dedicated Rare
  • Collaborator Rare
  • One Month Later Rare
  • Week One Done Rare

Recent Badges

1

Reputation

  1. Wow, that's absolutely amazing, I just tested it on Mail-tester and got a perfect 10/10 score. Thank you so much, Krydos, for setting up everything including DMARC so quickly. You're a lifesaver! Love this community support.
  2. Hi Admins, I successfully generated the SSL certificate thanks to your help. However, when I try to send an email from contact.me@alk.helioho.st to Gmail, the messages are completely blocked with a 550-5.7.26 error because SPF and DKIM authentication failed (DKIM = did not pass, SPF = did not pass). Could you please add the standard SPF and DKIM TXT records to the DNS zone of alk.helioho.st so Gmail can authenticate my mail server? Domain: alk.helioho.st Server: Tommy Username: Alkastraverse Thank you very much!
  3. Hi Admins, I am using a free subdomain provided by HelioHost on the Tommy server. Since I do not have direct access to manage the root DNS records for this domain extension, I am unable to resolve some SSL issuance errors via Let's Encrypt in Plesk. When I try to secure my domain, I encounter the following issues: webmail.alk.helioho.st returns a 404 Not Found during the HTTP-01 challenge. mail.alk.helioho.st returns an NXDOMAIN error (missing A/AAAA records). Could you please help me check the DNS zone configuration or manually fix the aliases/routing for these mail subdomains so they can be successfully secured? Here are my account details: Main Domain: alk.helioho.st Server: Tommy Plesk Username: Alkastraverse Thank you so much for your amazing support!
  4. Hi My username is alkastraverse Please add new domain: archive.alk.xx.kg Thank you so much!
  5. username: alkastraverse please reset my account. thank you so much!
  6. Hi My username is alkastraverse Please add new domain: alk.helioho.st Thank you so much!
  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. Do you think your site has a configuration error (eg. Php,...)?
  10. It causes high traffic ?(or not)
  11. Hmm... I think a bad robot is using brute-force to crack the password
  12. No problem:3
  13. Full RAM or too much traffic on server ?
  14. You have traveled through time ?
×
×
  • Create New...