-
Posts
24,183 -
Joined
-
Last visited
-
Days Won
853
Everything posted by Krydos
-
If you want to sign up for free on Tommy create your account at midnight UTC. The free signups fill pretty quickly. If you want to create an account on Tommy at any time see https://www.heliohost.org/tommy/
-
How To Set Index.py/.cgi As Default Index
Krydos replied to poeka's topic in Website Management and Coding
The index.html way is really easy. Create public_html/index.html <meta http-equiv="refresh" content="0; url=cgi-bin/index.py" /> With this option people who go to domain.heliohost.org will end up at domain.heliohost.org/cgi-bin/index.py Making python scripts executable in public_html is a little more complicated. Create public_html/.htaccess # this line makes the python code execute instead of display the source AddHandler cgi-script .py # this line executes index.py if no file is specified DirectoryIndex index.py With this option people who do to domain.heliohost.org will see that in their browser url bar. -
Deployed. http://barcodenetbar.com/BarcodeNetBar/
-
[Solved] Locked Out And Suspended Please Help
Krydos replied to asanta13's topic in Customer Service
You were blocked for trying to log in to IMAP too many times with the wrong password. Be sure your email client settings are correct. I have removed the block and you should be able to connect again soon. -
[Solved] Enable Connection To Postgresql From Pgadmin
Krydos replied to iaconweb's topic in Customer Service
Enabled. -
The addon domain gataller.com has been created on your account.
-
Deployed. http://wilgil.heliohost.org/MyHelioServlet/
-
FAIL - Application at context path /shlomo31_Coupon_System could not be started
-
Redeployed. http://xsimo.heliohost.org/JavadocIndex/
-
To change your username go to http://www.heliohost.org/classic/support/scripts/delete to delete your account, and then once it's deleted go to https://www.heliohost.org/signup/ and recreate your account with the new username.
-
[Solved] Smtp To Send Registration Confirmation
Krydos replied to bobspar's topic in Escalated Requests
Oh, you're right. It's supposed to be there on Johnny, but it isn't. I have it enabled in WHM. Anyways, there's nothing special about pear module installer. Just download it manually from https://pear.php.net/package/Mail and include it in your script. Here's some discussion http://forums.devshed.com/php-development-5/php-mail-vs-pear-mail-module-520896.html Anything can be a background task if you code it right. Check out https://stackoverflow.com/questions/5905877/how-to-run-the-php-code-asynchronous -
Because it's deployed on http://afarias.heliohost.org/BarcodeNetBar/ not http://www.BarcodeNetBar.com/BarcodeNetBar/ If you want it deployed on something other than your main domain please specify it. This is the mysql settings that I use in java that work: setDataSource var="mysql_test" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/krydos_db?serverTimezone=UTC" user="krydos_user" password="bestpasswordever"
-
I'm just going to remind you again that if you moved to Tommy you wouldn't have any of these issues and SSL would be installed and renewed automatically for you. Your other option at this point is to go without SSL on Johnny. Johnny's got a lot of bugs like this.
-
Change Css While Screen Width Larger Than 1365
Krydos replied to dedekvaa's topic in Website Management and Coding
Yes, all <style></style> tags should go before </head>. When I'm having issues with css like this I make a simpler page with just a few of the elements and if it works I copy/paste a few more elements from the main page until I find out what is causing the issue. For instance I had an issue like this a couple weeks where the outside container wouldn't shrink in a responsive way like it was supposed to. It turns out there was an element within the outer container that wasn't scaling properly and would stay 600px wide or whatever when it was supposed to be 400px. Take it apart and put it together bit by bit. It's just good troubleshooting techniques. -
The addon domain airdeschoix.fr has been added again pointed to the wp directory. Can you add the SSL certificate now?
-
Yeah, we have to rename your forum account first if you want to use the exact same name. Addon or parked domain? If addon what subdirectory?
-
Change Css While Screen Width Larger Than 1365
Krydos replied to dedekvaa's topic in Website Management and Coding
Try something like this <style> @media only screen and (min-device-width: 1365) { .wrapper { width: 1000px !important; } } </style> -
I don't see that domain in the DNS cluster. Is it still giving that error? Perhaps you tried to add it too soon after deleting your other account. It can take some time to fully delete an account.
-
War files cannot have a space on our system. Perhaps replace it with an underscore?
-
Java is not enabled on that account. .war files can only be deployed on accounts that have java enabled. To request access to java please visit https://johnny.heliohost.org:2083/frontend/paper_lantern/java/index.live.php Keep in mind that the queue to receive java on Johnny is quite long. The queue to receive java on Tommy is only a couple hours.
- 1 reply
-
- 1
-
People keep finding new and novel ways to break my deployment scripts. It's hard to automate something like that. Deployed. http://afarias.heliohost.org/BarcodeNetBar/
-
That's almost 3 hours. Of course mysql is going to close your connection if you leave it open that long.
-
[Solved] I Can't Connect Remotely To My Database Postgresql
Krydos replied to easotokr's topic in Escalated Requests
You should now be able to connect to the postgresql database easotokr_KS_Pedidos from any IP address using the postgresql username easotokr_admin.