Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,183
  • Joined

  • Last visited

  • Days Won

    853

Everything posted by Krydos

  1. 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?
  2. 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.
  3. 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.
  4. 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.
  5. Yeah, it crashed. I've restarted it.
  6. Deployed. http://wilgil.heliohost.org/MyHelioServlet/
  7. The postgresql database bobspar1_diybook has been dropped.
  8. You got blocked because you tried to log in to FTP with the wrong password too many times. You have been unblocked.
  9. Are you able to connect to Tommy through another internet connection or a proxy?
  10. You've been unsuspended for about an hour and you're already 4th highest load, and 6th highest memory on Johnny. The way our high load suspensions work is CPU usage and memory usage is unlimited until the server starts to get overloaded. When you start to cause poor performance or downtime for the other users of your server the 1st cpu usage or 1st memory usage account will be automatically suspended to bring the overall server load to a more reasonable level. The leeway on Johnny is pretty high because we aren't as strict on the performance expectations on an experimental server. Just because you're #1 load doesn't mean you will for sure get suspended, but it definitely increases the chance. For instance the #1 memory usage account on Tommy over the last 11 hours is using 928% more memory than #2, but they are unlikely to get suspended because overall Tommy is at a very reasonable load level.
  11. Just put your .do files in your servlet. Everything inside the servlet is processed by Tomcat. The extension .do isn't anything special. The struts framework uses that extension, but it could be anything like .whatever.
  12. Unsuspended. Please feel free to check in with us regarding your load. Just make a post asking what your load is, and I'll check the logs. This is much preferable than getting suspended again.
  13. What is your target .NET framework? I see you have an account on Johnny already. Johnny support up to .NET 3.5 automatically on all accounts that are created. Tommy support up to .NET 4.6 by request only. Anyone with a Tommy account can request ASP.NET access by posting on these forums.
  14. The only way to reset your entire account is to delete it http://www.heliohost.org/classic/support/scripts/delete and recreate it https://www.heliohost.org/signup/
  15. Why not just install CentOS (or any linux distro) at home, and try to replicate your mediawiki install as accurately as possible? If you have any questions about how things are set up on Tommy I can help you out with that. I'm not going to install random stuff that isn't going to benefit a large number of people. There are over 1000 other accounts on Tommy of which maybe single digits would actually use tideways, and installing anything like that is just that much more cpu time used. So, it would actually decrease performance for 99% of people on Tommy.
  16. If you're going for speed, and your software supports it, stick with 7.1. It beats 5.x by a ton, and edges out 7.0 by a little across the board too https://symfony.fi/entry/php-7-1-vs-7-0-benchmarks-symfony Correct me if I'm wrong, but tideways appears to be a paid service that starts at 39 euros per month, and requires being compiled from source. No one is going to pay 39 euros per month to test their php speed on a free host, and compiling things from source has a really high likelihood of breaking everything else on a production server like Tommy.
  17. Source: https://github.com/tideways/php-profiler-extension Opcache has been enabled for php 7.1 http://krydos.heliohost.org/71/phpinfo.php
  18. So, you had 2 errors public_html was 777. It needs to be 750. All of the folders inside public_html need to be 755, but public_html itself is special and needs to be 750..htaccess seems to have a syntax error of some sort. I didn't actually look at it. I just renamed it to .htaccess-old and the 500 error went away. So there is something in there it doesn't like. You can debug it by commenting out one line at a time or whatever.
  19. The only way you're going to be able to use seb.tiflojuegos.com on your Johnny account is if you change your main domain to it. The reason why is you won't be able to add it to cpanel because cpanel will complain about tiflojuegos.com not using our nameservers. If you want to use both seb.tiflojuegos.com and your cartridgesoft.tk domain at the same time you may do so by changing you main domain to seb.tiflojuegos.com at http://www.heliohost.org/classic/support/scripts/domain Then check to make sure it worked in cpanel. On the right side there is an information panel and it should immediately reflect the new main domain. Once you have that step completed and verified go to https://johnny.heliohost.org:2083/frontend/paper_lantern/park/index.html and add cartridgesoft.tk back as an alias domain. Then once you have all of that done it can take up to 24 hours for both domains to start working. Let us know if you have any questions or need any help with any of this.
  20. Don't worry about it. That is probably the case. Let us know if you have any questions. The best advice we can probably give is to ditch wordpress though. It's incredible how filled with vulnerabilities it is, and since it's so popular it's frequently targeted. There were actually two wordpress databases. I backed them both up and emailed you the link at your quantarp account's contact email address. You're going to have to be a little more specific. I don't see any js files at all. It's a possibility that the hacker deleted them.
  21. I see a wordpress install that was set up in early May, and I see phishing files that were uploaded today. My guess is someone hacked your wordpress install and took over your account. If you don't have a recent backup and would like a copy of your databases let us know and it can be provided. If you would like to create a new account to continue hosting with us let us know and we can free up your domain(s) from this hacked account for use in your new account. We won't be able to free up the username quantarp though, and we can't unsuspend this account as it's being held as evidence for law enforcement.
  22. That's a really odd error because the host ::1 is already allowed for everyone in pg_hba.conf... I added another entry for ::1 for your specific database, and your error has changed. Don't know why you got that error while everyone else can connect without problem though.
  23. Responsive design makes your website look good on different sized screens, but by itself you won't get an performance increases. The main thing that slows a website loading time down is the images. You can use javascript to detect the size of the screen and then serve various scaled down images which are smaller for mobile internet connections.
  24. galeriagranpoder.com has been readded to your account. It should start working in a few hours.
×
×
  • Create New...