Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,563
  • Joined

  • Last visited

  • Days Won

    869

Everything posted by Krydos

  1. I don't know if there's a wiki link because I just came up with it off the top of my head. Why don't you do some of your own research to see if anyone has done it before? Like wolstech said it's not an original idea. It also depends a lot on what language you're going to use to script it.
  2. It would be possible to do this without even using cpanel api. You could create a default email address in cpanel. What this does is ANYTHING that anyone emails to your domain ends up in this inbox. So even if you don't create krydos@example.com and someone sends an email it would end up in default@example.com if that was your default address. Then you could write a script in php or something to create accounts for people. Then when they log in to your script it looks through the default email address that has everyone's emails and only shows the ones that line up with their username.
  3. Yes, GMX is being very odd. I tested some emails to my gmx.com account and it looks like if the email is properly signed with a valid dkim signature they refuse the email... PM sent with both links. The reason your forum username has a 2 is because you won't be able to create an account named opieantc again if it's already taken. Once your account is created let us know and we can remove the 2.
  4. You can try whitelisting no-reply@heliohost.org if you want. That's where the backup and the signup emails come from.
  5. You'll probably need to contact GMX support and ask them why your emails aren't going to your inbox. The emails from Heliohost are fully authenticated in every way with spf, dkim, dmarc and everything else. There really isn't any reason why any mail provider would refuse emails from us. If GMX lets us know what they think is wrong with our emails I'd be happy to comply though. Would you rather us send the backup link and the email validation link manually to you or would you rather use another email address?
  6. Which page is giving the 500 error?
  7. Oh yeah, I forgot about that. For some reason that particular url doesn't work without the www. in front. I should look into that sometime.
  8. I've actually considered providing a free service like setcronjob that would run from Cody and hit scripts on people's hosting accounts at whatever frequency they wanted. There wasn't really a demand for it though since there were so many free options. The issue with cron jobs usually isn't load, but how powerful shell commands can be through cron. When you access a script remotely it has all the same load and access limitations of any php or cgi script. @kotha, if you can't find a free service let me know the url of the script you want accessed every half hour and I can set it up manually for you.
  9. +-----------+---------------+ | host | user | +-----------+---------------+ | % | dobmkawe | | % | dobmkawe_najm | | localhost | dobmkawe | | localhost | dobmkawe_najm | +-----------+---------------+ Your remote mysql is set up correctly, and remote mysql definitely works on Tommy. My best guess is that port 3306 is probably blocked on your computer.
  10. We'll need to delete the backups when Tommy's hard drive starts to get too full. We're not going to prevent people from creating accounts on Tommy simply because we have too much backed up data from old accounts. That's how Heliohost has always operated. We delete the oldest unused information as we need more space for new accounts.
  11. Do you want your invite sent to your Helionet contact email address or somewhere else?
  12. Heliohost users are allowed to run 2 cron jobs per day. I would recommend using a free service like https://www.setcronjob.com/ to execute your script every 30 minutes.
  13. Don't know exactly. I changed it and everything worked, and files uploaded at 644 correctly. Then I updated some software on Tommy and I think openssh was updated, and then SFTP stopped working for anyone without shell access, but as soon as I reverted my permissions mask edit in the configuration file everyone without shell access can connect again.
  14. Yeah, I had to remove the permission mask because no one could connect to SFTP anymore with it in place. Which would you rather have? Access to SFTP at all or have to right click and change all permissions once?
  15. I just rebooted the ftp server on Tommy. Let us know if this helps. Does it work now?
  16. We actually recommend https://www.heliohost.org/login/ or https://tommy.heliohost.org:2083/ because 2082 in the link above is insecure and unencrypted.
  17. Just let us know by making a public post if you send any of us PMs. I don't know about anyone else, but I never check PMs unless someone tells me they sent me one. Here at Heliohost we like to provide support in a publicly accessible way so anyone who has the same or a similar issue in the future can search. That reduces the work load for the admins considerably.
  18. Here's a good list https://en.wikipedia.org/wiki/List_of_free_and_open-source_software_packages
  19. Here is the documentation for webdisk https://documentation.cpanel.net/display/ALD/Web+Disk If you connect to it via ssl on port 2078 it is secure. However, you're responsible for securing your own devices.
  20. The first day after we started tracking how long signups were available for it filled in 6 seconds. Since then signups have been available for almost 3 minutes sometimes.
  21. https://cloud.google.com/appengine/docs/java/config/webxml What do you think you need to email to me?
  22. FTP and webdisk are two ways to upload files to the server.
  23. In Filezilla go to Edit >> Settings >> Debug and set the Debug information level to '3 - Verbose'. Then try connecting again and post the log. Also, could you try connecting to SFTP with some client other than Filezilla to see if that works?
  24. You only have to restart it if you add a new .jar file. Just changing the code will update on it's own. How often are you going to add new .jars? Right now you have any url being rewritten to giteshssroti.tk. Try this .htaccess code which should only redirect non-ssl http://giteshsshroti.tk/ to https://giteshsshroti.tk/ which is what I think you're trying to do, but it will leave http://giteshsshroti.heliohost.org/ alone: RewriteEngine On RewriteCond %{HTTP_HOST} ^giteshsshroti\.tk [NC] RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} Regarding aspx connection to mysql: Create a new file such as mysql.aspx with the contents: <%@ Page Language="C#" %> <%@ Assembly Name="MySql.Data" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="MySql.Data.MySqlClient" %> <script RunAt="server"> void Page_Load(object sender, EventArgs e) { MySql.Data.MySqlClient.MySqlConnection conn; conn = new MySqlConnection("Database=giteshss_db; Data Source=localhost; User Id=giteshss_user; Password=password123;"); conn.Open(); MySql.Data.MySqlClient.MySqlDataAdapter myDataAdapter; myDataAdapter = new MySqlDataAdapter("select * from aspx", conn); System.Data.DataSet myDataSet; myDataSet = new DataSet(); myDataAdapter.Fill(myDataSet, "aspx"); string text = myDataSet.Tables[0].Rows[0]["data"].ToString(); myLabel.Text = text; conn.Close(); } </script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url=http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]"> <html xmlns="[url=http://www.w3.org/1999/xhtml]http://www.w3.org/1999/xhtml[/url]" > <head RunAt="server"> <title>ASPX MySQL Test</title> </head> <body> <form id="form1" RunAt="server"> <div> <asp:Label id="myLabel" RunAt="server"/> </div> </form> </body> </html> Working example is located at https://krydos.heliohost.org/mysql.aspx
  25. Source: http://wiki.helionet.org/Java_Servlet#Upload_The_.war_File EDIT: Users can now deploy their own .war files through the cpanel Java button once you have requested java access and it has been enabled.
×
×
  • Create New...