Jump to content

Krydos

Chief Executive Officer
  • Posts

    23,799
  • Joined

  • Last visited

  • Days Won

    828

Everything posted by Krydos

  1. All of those modules are already installed (or default and don't show up on the page.)
  2. Thank you very much for the donation. Your storage space has been doubled.
  3. Autossl is working on vidon.phink.heliohost.org now, but there is something wrong with the vidon.net domain. Take a look at https://dnschecker.org/#NS/vidon.net The nameservers are only showing up right at like 50% of the checks. Once that gets to 100% then autossl should work on that domain as well. Maybe check with your registrar and ask why the nameservers aren't showing up for everyone?
  4. There you go https://krydos2.heliohost.org/cgi-bin/modules37.py Keep in mind that cronjobs are limited to 2 per day. So you can run one cronjob every 12 hours, or you can run two cronjobs each every 24 hours. Using python instead of cpanel to create the cronjob doesn't get around this limitation. If you exceed 2 cronjobs in a day all of your cronjobs will be deleted. If you continue trying to exceed the limit your account may be suspended. If you need more than 2 cron job runs per day we can set up an external cron job that can run as often as every 5 minutes if you wish.
  5. There you go https://krydos.heliohost.org/cgi-bin/modules37.py
  6. There you go https://krydos1.heliohost.org/cgi-bin/modules36.py
  7. Which version of python are you using?
  8. I recommend adding an exception for the .well-known directory to allow ssl to be renewed in the future: RewriteEngine On RewriteCond %{HTTPS} !=on RewriteCond %{REQUEST_URI} !^/.well-known/ [NC] RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  9. It's possible your password uses a character (like a space) that isn't supported by our website.
  10. Unarchived. Your username is chechi08 now.
  11. Iranian domains aren't allowed regardless of where you actually live. Personally I would love to have Iranian users, but our government and your government can't seem to get along. If we allow users to host Iranian domains we will first end up losing cPanel, and eventually face legal action from the US government as well. Not worth the risk. With most country specific domains you have to prove you live there before you can register it. I assume you proved you lived in Iran in order to purchase this domain. If that is not the case you're welcome to prove you live in Virginia by uploading a scan of your driver's license or your passport or some other government issued ID. Don't post it publicly. PM it to Wolstech or myself, and then post a note on this thread letting us know you sent the PM. I don't check my PMs ever unless someone reminds me that they sent one.
  12. For which user? geojoe or geojoe_geoffery? For the URLs If you do a link like this: href="/flask/flask.wsgi/python/version/" Then you end up at https://krydos.heliohost.org/flask/flask.wsgi/python/version/ But if you do the link like this: href="/flask/python/version/" Then you end up in the same place, but with a prettier url https://krydos.heliohost.org/flask/python/version/
  13. With ordinality was added in Postgres 9.4. The newest version available on the shared hosting plans is 9.2. If you need a version newer than 9.2 you'll need to get a VPS https://www.heliohost.org/vps/
  14. I tested flask (python 3.7) with postgresql and it's working just fine for me. Here is some example code #!/usr/bin/python3.7 import psycopg2 conn_string = "host=localhost port=5432 dbname=krydos_test user=krydos_user password=password123" conn = psycopg2.connect(conn_string) cur = conn.cursor() cur.execute("select stuff from things where this = 'that'") row = cur.fetchone() print(row) Neither your database, nor your user exist: Databases: geojoe_flask Users: geojoe geojoe_geoffery
  15. There you go https://krydos.heliohost.org/cgi-bin/modules37.py
×
×
  • Create New...