-
Posts
24,159 -
Joined
-
Last visited
-
Days Won
849
Everything posted by Krydos
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
What I'm suggesting is break your script into parts to test each function individually rather than just trying the whole thing at once. It's a common troubleshooting technique. For instance, if sending email from localhost works, then you could try sending email from gmail. Then if that works you can try having the script just display the data on the screen, and if that works maybe put the whole thing together to send the email, etc. Breaking it into smaller parts allows you to find which part isn't working rather than just seeing that the whole script doesn't work and you have no idea why. -
That domain is currently hosted on webs.com instead of us. If you want to host hotclublinks.com with us set your nameservers to ns1.heliohost.org and ns2.heliohost.org.
-
I renamed your forum account so you can create an account with the username robev. Let us know when your Tommy account is created and we can change your forum name back.
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
Have you tried using the local smtp server instead of gmail? Something like #!/usr/bin/python # Import modules for CGI handling import cgi, cgitb # set header for cgi print "Content-Type: text/html\n\n" # Import smtplib for the actual sending function import smtplib sender = 'admin@domain.heliohost.org' receiver = 'email@gmail.com' message = """From: Krydos <{f}> To: Krydos <{t}> Subject: SMTP e-mail test This is a test e-mail message. """.format(f=sender, t=receiver) try: smtpObj = smtplib.SMTP('localhost') smtpObj.sendmail(sender, receiver, message) print "Successfully sent email" except SMTPException: print "Error: unable to send email" -
See http://www.helionet.org/index/topic/26726-stevie-didnt-boot/ and http://www.helionet.org/index/topic/26860-stevie-progress/ etc.
-
Which website?
-
We've been having trouble with the Johnny server over the past couple weeks. We plan to fix him in February when we have an admin going to California to work on the servers. In the meantime we recommend creating an account on Tommy.
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
-
[Solved] Imagick Installation In The Server
Krydos replied to codename25's topic in Escalated Requests
Oh, I just assumed you wanted .png since your example was a .png. -
[Solved] Https Pages Are Not Supporting Any Of The Settings
Krydos replied to giteshss2's topic in Escalated Requests
Yes.- 8 replies
-
- java error
- asp.net error
-
(and 2 more)
Tagged with:
-
[Solved] Https Pages Are Not Supporting Any Of The Settings
Krydos replied to giteshss2's topic in Escalated Requests
Because you hadn't asked for Java or .NET to be installed over https yet.- 8 replies
-
- java error
- asp.net error
-
(and 2 more)
Tagged with:
-
[Solved] Imagick Installation In The Server
Krydos replied to codename25's topic in Escalated Requests
PHP Version: http://krydos.heliohost.org/54/phpinfo.php Input: http://krydos.heliohost.org/54/pdf-sample.pdf Code: <?php $myurl = "pdf-sample.pdf"; $image = new Imagick($myurl); $image->setResolution(300, 300); $image->setImageFormat("png"); $image->writeImage("pdf-sample.png"); Output:http://krydos.heliohost.org/54/pdf-sample.png I shrank the pdf a bit to make the image and it still looks pretty sharp to me. -
[Solved] Https Pages Are Not Supporting Any Of The Settings
Krydos replied to giteshss2's topic in Escalated Requests
There you go https://giteshsshroti.heliohost.org/test.jsp and https://giteshsshroti.heliohost.org/test.aspx- 8 replies
-
- 1
-
- java error
- asp.net error
-
(and 2 more)
Tagged with:
-
The one or two people who kept data in folders other than public_html lost information because I assumed (and for the sake of speed on the backup script) everyone would keep everything of importance in public_html. Actually, the only people I've seen keep websites anywhere other than public_html other than Nyten are phishers who are trying (and failing) to hide their scam sites...
-
Done. I really don't understand why it matters though, and why you keep making such a big deal about it.
-
The username amdc, and the domain amdc.heliohost.org are now available to create a new account.
-
If you want a dedicated ip you may buy one for $12 per year.
-
You have to create the subdomains individually. Creating a subdomain sub.example.com does not create sub.other.com unless you create sub.other.com separately. To create an email address on a subdomain go to https://tommy.heliohost.org:2083/frontend/paper_lantern/mail/pops.html and click the Domain dropdown. Select the domain you want to use and create the email address.
-
If you create an addon domain it will be separate from the rest of your domains. You can even create email addresses for them, and ftp accounts that can only access their addon domain.
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
Here is the error your script is encountering (censoring the email address): # ./send.py Traceback (most recent call last): File "./send.py", line 21, in <module> text = "From: me\n" + "To: Contact <email@gmail.com>\n" + "Subject: " + subject + "\nFrom: " + name + " <" + email + ">\n" + message + "\n" TypeError: cannot concatenate 'str' and 'NoneType' objects Which, upon closer inspection seems to be because those variable aren't being passed in from the form if it's run on the command line... Adding the lines name = "Krydos" email = "email@gmail.com" subject = "Test email" message = "Does this work?" makes it execute without an error though since those variables now have values. Did you get the email? -
[Solved] Settings Are Not Working On Subdomains
Krydos replied to giteshss2's topic in Escalated Requests
Neither of these domains even work. Are you sure you created them? It looks like you misspelled them http://projectpizza.giteshsshroti.heliohost.org/test.aspx and http://projectmedycare.giteshsshroti.heliohost.org/test.aspx Here are your subdomains java http://projectpizza.giteshsshroti.heliohost.org/test.jsp and http://projectmedycare.giteshsshroti.heliohost.org/test.jsp It looks like ASP.NET should now work for any new domains you create, but java has to be added to each domain individually. Do you really need Java on every single domain? -
That is a WHM plugin not a cpanel plugin and the way it works is every single site that is created on a server gets a certificate whether they want it or not. This works great for most hosting, but Heliohost creates more accounts per day than the people who create cPanel recommend you have total on a server. The problem with this plugin is that we would hit the Let's Encrypt extremely low limits constantly, and the plugin wouldn't work most of the time. It would also likely prevent people from manually installing Let's Encrypt certificates as well since the rate limit would constantly be exceeded. Not everyone needs or wants SSL on their site. What would work better for us is a cPanel plugin (not a WHM plugin) that would allow users to easily set up and renew a Let's Encrypt certificates if they want it. Unless you can find something like that we'll probably just have to write it ourselves.
- 23 replies
-
- letsencrypt
- ssl
-
(and 2 more)
Tagged with: