-
Posts
25,416 -
Joined
-
Last visited
-
Days Won
910
Everything posted by Krydos
-
[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. -
[Solved] Request : Remote Access To Postgresql
Krydos replied to fluctus's topic in Escalated Requests
Yep, there was a typo. That'll teach me to cut corners by not actually copy/pasting. I had your username right in one place, but had fluxtus in the other spot. Haha. Does it work now? -
My guess is the second number is the free space available for databases. 428.74mb + 553.96mb = 982.7mb which is close to the quota of 1000mb
-
[Solved] Open Udp And Tcp Port Number 21725
Krydos replied to Luigi123's topic in Escalated Requests
Does it work now? -
Did you try resetting your password at https://www.heliohost.org/reset/ or at https://johnny.heliohost.org:2083/resetpass?start=1 ?
-
[Solved] Request : Remote Access To Postgresql
Krydos replied to fluctus's topic in Escalated Requests
The postgresql user fluctus_Flctus should now be able to access the database fluctus_myDb remotely from any IP. Let us know if you still can't connect or have any other issues. -
[Solved] Request : Remote Access To Postgresql
Krydos replied to fluctus's topic in Escalated Requests
Do you want access from any IP or more securely from just one IP? -
[Solved] Open Udp And Tcp Port Number 21725
Krydos replied to Luigi123's topic in Escalated Requests
Is this instead of your existing port 21715 to 158.69.57.87 or do you need both?
