-
Posts
24,166 -
Joined
-
Last visited
-
Days Won
850
Everything posted by Krydos
-
The script that was causing heavy load is /home/kamu/public_html/fb.php Which appears to be a facebook bot liking script.
-
Tommy's smtp certificate is fine https://www.sslshopper.com/ssl-checker.html#hostname=tommy.heliohost.org:465 mail.abdu.io doesn't have an ssl certificate installed https://www.sslshopper.com/ssl-checker.html#hostname=mail.abdu.io See how it says nossl.heliohost.org? Go to https://mail.abdu.io/ and approve the incorrect certificate and there are instructions on how to install an ssl certificate.
-
It could be that you don't have reverse dns set up on your domain. Some email servers, most notably AOL, refuse all email from any domains that don't have a valid ptr record. It could also be that the inbox that you're sending to has a filter that any address that isn't in their contact list gets sent to spam. Since you use cloudflare you won't be able to use mail.abdu.io because cloudflare isn't proxying your mail connections correctly. You can either change the cloudflare settings or just use tommy.heliohost.org as your smtp/imap domain.
-
Request To Add Cloudflare's [ Mod_Cloudflare ] To Server Tommy
Krydos replied to bdistler's topic in Customer Service
Probably before since it's an apache module. Test it out and let us know. -
[Solved] Internal Server Error - Server Tommy
Krydos replied to bdistler's topic in Customer Service
When you include a php script into another php script as far as the server is concerned it just copy/pastes the code from the included file into the spot where the include/require command is and run the script with the permissions of the called php script. So what matter here is that the read flag was set. If you were to curl to another php script or use something silly like exec("script.php") then the permissions of that script would matter. Suphp cares a lot about permissions and if they're a little off it just shuts down with a 500 error. -
428.74 MB is the size of all of your databases summed.
-
The wait on Tommy for java is only a few hours.
-
[Solved] Internal Server Error - Server Tommy
Krydos replied to bdistler's topic in Customer Service
http://lillianday.com/thething.php works for me. -
Request To Add Cloudflare's [ Mod_Cloudflare ] To Server Tommy
Krydos replied to bdistler's topic in Customer Service
Nice googling skills. I was looking for that first link exactly. All I found was an EA3 module. I might be able to make it work without breaking things too bad if that link works. Alright, is mod_cloudflare working? -
Request To Add Cloudflare's [ Mod_Cloudflare ] To Server Tommy
Krydos replied to bdistler's topic in Customer Service
Well, I looked into it and it looks like it's going to be a massive pain to install and will likely break things due to easyapache. It's probably not worth the potential for downtime that it could cause on Tommy. -
Here's an absolutely amazing free tool I found while trying to figure out why official Heliohost emails were ending up in spam boxes so often: https://www.mail-tester.com/ They only allow 4 free tests per day though so use them wisely. I've actually been in contact with them for the purpose of making their tool even more accurate, and they thanked me for my changes. Haha. If the tool reports any problems let us know and we can help walk you through getting them fixed.
-
Yeah, it can be done. http://www.dnsstuff.com/tools#reverseDns|type=ipv4&&value=66.220.18.186
-
Request To Add Cloudflare's [ Mod_Cloudflare ] To Server Tommy
Krydos replied to bdistler's topic in Customer Service
Why not just look at the log files on cloudflare's servers? -
I.... don't understand. How about this? 14 lines of php/html <?php if (isset($_FILES['bmpimage'])) { move_uploaded_file($_FILES['bmpimage']['tmp_name'], "temp.bmp"); $image = new Imagick(); $image->readImage("temp.bmp"); $image->setImageFormat("jpg"); $image->writeImage("temp.jpeg"); echo "<img src='temp.jpeg'>"; } else { ?> <form action="convert.php" method="post" enctype="multipart/form-data"> <input type="file" name="bmpimage"> <input type="submit" value="Convert to Jpeg" name="submit"> </form> <?php } http://krydos.heliohost.org/70/convert.php
-
Deployed. http://brassatom.heliohost.org/SpringClient/
-
root@johnny [~]# ./deploy_java jayam SmartClubWeb User jayam found. Unable to find file: SmartClubWeb.war Usage: deploy_java <username> <.war file> Make sure you put your .war in /home/jayam/file.war like it explains in the wiki. Deployed. http://smartclub.heliohost.org/SmartClubWeb/
-
You can buy a wildcard ssl certificate to secure all of your subdomains with one certificate https://www.namecheap.com/security/ssl-certificates/comodo/positivessl-wildcard.aspx or you would need to get an ssl certificate for each subdomain.
-
That means an email sent from your account had an invalid address. Like you sent an email to bob@gmail.com and gmail is responding saying that account doesn't exist.
-
Your real problem is coppermine wants to use the convert executable instead of the php imagick. The way coppermine does this is by using the php exec() function Source: http://documentation.coppermine-gallery.net/en/upload_troubleshooting.htm Since this is shared hosting exec() cannot be enabled because it would allow malicious users to break the entire server. So, what you need to do is convert the .bmp files to anything else on your computer using photoshop, the gimp, ms paint, imagemagick, or whatever, and then upload them. Bmp files are terrible on the internet anyways. You can get the same quality picture with .png that takes up maybe an eighth the space. https://zoompf.com/blog/2012/04/unsuitable-image-formats-for-websites
-
The error that was encountered creating your hosting account was Did you mean to make it walterhost.heliohost.org or walterhost.com or walterhost.tk or what?
-
The confusion is probably coming from the fact that Tommy has 5 different versions of php installed that you can choose from. PHP 5.4 = https://krydos.heliohost.org/54/phpinfo.php has imagick PHP 5.5 = https://krydos.heliohost.org/55/phpinfo.php doesn't PHP 5.6 = https://krydos.heliohost.org/56/phpinfo.php doesn't PHP 7.0 = https://krydos.heliohost.org/70/phpinfo.php has imagick PHP 7.1 = https://krydos.heliohost.org/71/phpinfo.php doesn't Which version of php are you using? You can change it with https://tommy.heliohost.org:2083/frontend/paper_lantern/multiphp_manager/index.html ImageMagick 6.7.8-9 binary is located at /bin/convert
-
[Solved] Open Udp And Tcp Port Number 21725
Krydos replied to Luigi123's topic in Escalated Requests
Go to https://tommy.heliohost.org:2083/frontend/paper_lantern/sql/index.htmlScroll down to add new user.Enter a username (eg: luigi123_sb2), password, confirm password, and click create user.Scroll down to add user to database.Select the luigi123_sb2, select the database luigi123_sourcebanssb_bans, and click add.Check the appropriate permissions required, and click make changes. -
[Solved] Open Udp And Tcp Port Number 21725
Krydos replied to Luigi123's topic in Escalated Requests
I guess you have two options: 1) Edit whatever configuration or code that is running at 158.69.57.87 so it closes its connections. 2) Create another mysql user that has access to luigi123_sourcebanssb_bans, and run one gameserver on luigi123_sb and the other on luigi123_sb2. -
[Solved] Open Udp And Tcp Port Number 21725
Krydos replied to Luigi123's topic in Escalated Requests
Those are just rules that allow remote connections. What I mean is there are four incoming connections from your IP that are persistently open. -
[Solved] Open Udp And Tcp Port Number 21725
Krydos replied to Luigi123's topic in Escalated Requests
It looks like you have 4 remote persistent mysql connections open just sleeping and doing nothing. Is it possible to not have persistent connections, but rather just connect when they need and then close the connection? One has been sleeping for 1688+ seconds without doing anything other than wasting Tommy's total available mysql connections.