-
Posts
24,534 -
Joined
-
Last visited
-
Days Won
867
Everything posted by Krydos
-
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. -
[Solved] Smtp To Send Registration Confirmation
Krydos replied to bobspar's topic in Escalated Requests
Merging threads. Have you tried my code? I can't tell from your log file if you're using port 25 or port 465 with ssl? -
[Solved] Smtp To Send Registration Confirmation
Krydos replied to bobspar's topic in Escalated Requests
I would use Pear mail to send emails with smtp through yahoo's servers. The default php mail() command is pretty basic and fine for sending email from our servers, but to connect to an external smtp server with ssl you're going to need more. Go to https://tommy.heliohost.org:2083/frontend/paper_lantern/module_installers/search.html?searchterm=mail&lang=php-pear&searchtype=1 and install pear mail. Then use the line require_once("/home/bobspar1/php/Mail.php"); to load the pear mail into your script. Then you can use something like this to connect to yahoo <?php require_once("/home/bobspar1/php/Mail.php"); $from = "Bob Spar <diybookie@yahoo.com>"; $to = "Some User <whatever@example.com>"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "ssl://smtp.mail.yahoo.com"; $port = "465"; $username = "diybookie@yahoo.com"; $password = "smtp_password"; $headers = array ('From' => $from, 'To' => $to, 'Subject' => $subject); $smtp = Mail::factory('smtp', array ('host' => $host, 'port' => $port, 'auth' => true, 'username' => $username, 'password' => $password)); $mail = $smtp->send($to, $headers, $body); if (PEAR::isError($mail)) { echo("<p>" . $mail->getMessage() . "</p>"); } else { echo("<p>Message successfully sent!</p>"); } I haven't tested the code above, but it should be close to what you could use. I tested the connection to smtp.mail.yahoo.com and it's not blocked. -
Your account has been unarchived. You should not be able to log in to your account at https://www.heliohost.org/login/ Your domain should start working again in a few hours.
-
Well, technically it's possible. Anything is possible right? You would have to curl in to cpanel, and get a session token, and then use that session token to automate going to the mysql page and submitting a new database. It would be pretty complicated to do.
-
Yeah, it crashed. I've restarted it.
-
Deployed. http://wilgil.heliohost.org/MyHelioServlet/
-
The postgresql database bobspar1_diybook has been dropped.
-
Problems With An Alias: The Domain Point To The Main Host, No To My Syte
Krydos replied to seb's topic in Customer Service
You got blocked because you tried to log in to FTP with the wrong password too many times. You have been unblocked.