-
Posts
26434 -
Joined
-
Last visited
-
Days Won
944
Everything posted by Krydos
-
[Hh#78790] Cannot Read Property 'slice' Of Undefined
Krydos replied to HelioHost's topic in Email Support
What problem are you encountering? I don't know what "cannot read property 'slice' Of undefined" means. Is that an error message you're getting somewhere? -
What do you mean by that? Can't see our homepage at heliohost.org because of the ssl? Can't log in to cpanel with ssl? Can't view your website with ssl? Also, what is your username or domain?
-
It looks like mysql on Johnny restarted itself right around the exact time that you posted this thread. It didn't crash it doesn't look like. During a restart there can be a little downtime. If you want better mysql uptime and stability I recommend transferring your account to Tommy. Mysql on Tommy hasn't restarted in 20 days, and I think I manually restarted it anyways.
-
Deployed. http://hkaldane.heliohost.org/Website/
-
There you go http://esp-diego.mg/
-
Yep, here's the link https://filezilla-project.org/download.php?platform=osx
-
Did you read the link? Apparently there is some bug. The stackexchange page recommends changing your password or using Filezilla (which doesn't have that bug.)
-
You don't happen to be using MacOS and you don't happen to have an @ symbol in your cpanel password do you? https://apple.stackexchange.com/questions/110965/connect-to-ftp-server-in-finder-not-working
-
Error Softaculous Upgrading Phpmyadmin To 4.7.1
Krydos replied to bdistler's topic in Customer Service
Maybe try deleting the whole thing and installing it again instead of upgrading? I just installed phpmyadmin on Tommy and didn't get any errors, but I didn't have an old version to try updating. -
What error do you get?
-
Try these settings host: tommy.heliohost.org port: 1342 protocol: SFTP logon type: normal user: dejaunw1 password: same as cPanel password
-
What is your username or server that your account is located on?
-
Alright! Create a folder in public_html called flask /home/username/public_html/flask/ In that folder create a .htaccess file: /home/username/public_html/flask/.htaccess RewriteEngine On RewriteBase / RewriteRule ^(media/.*)$ - [L] RewriteRule ^(admin_media/.*)$ - [L] RewriteRule ^(flask\.wsgi/.*)$ - [L] RewriteRule ^(.*)$ flask/flask.wsgi/$1 [QSA,PT,L] Create a file named flask.wsgi import os, sys # edit your username below sys.path.append("/home/username/public_html/flask"); sys.path.insert(0, os.path.dirname(__file__)) from myapp import app as application # make the secret code a little better application.secret_key = 'secret' Create a python script named myapp.py import sys from flask import Flask, __version__ app = Flask(__name__) application = app @app.route("/") def hello(): return """ HelioHost rules!<br><br> <a href="/flask/python/version/">Python version</a><br> <a href="/flask/flask/version/">Flask version</a> """ @app.route("/python/version/") def p_version(): return "Python version %s" % sys.version @app.route("/flask/version/") def f_version(): return "Flask version %s" % __version__ if __name__ == "__main__": app.run() Here is the working example: https://krydos.heliohost.org/flask/ This will only work on Tommy at the moment. Feel free to play around with it and let me know if you have any issues. If everything is working I'll see about writing up a wiki and making a news post about HelioHost now supporting flask.
-
There you go https://www.studentgovernmentorgatchhs.cu.cc/ All domains created on Tommy or Ricky automatically have SSL certificates installed and updated when they get close to expiring. When you create a new account it takes about 30 mins for the certificate to get installed. If you change your domain the system will check all the domains on the server once a day so you could have to wait up to 24 hours for the SSL to be reinstalled. I forced the system to scan and install the certificate for you. It should now continue to update when the certificate gets close to expiring too.
-
There you go http://quickpaydayloansrjnsh.com/
-
It looks like your domain studentgovernmentorgatchhs.cu.cc isn't working and appears to be using cloudflare. Try turning off the cloudflare so we can see what is going on with it.
-
[Hh#15034] Ricky Is Not Working-Cannot Access My Server
Krydos replied to HelioHost's topic in Email Support
Can you connect now? -
Thanks a lot! I'm sure this post will help a lot of people.
-
You have to select the database first otherwise it tells you "No database selected".
-
To import a .sql file go to https://ricky.heliohost.org:2083/frontend/paper_lantern/sql/PhpMyAdmin.html Select the database, and click import.
-
You choose the Johnny server which is our experimental server. This means he can be rather unstable quite a lot of the time because of high load. When Johnny is experiencing high load adding a domain can sometimes break or fail halfway through. Our stable production servers, Tommy and Ricky, don't experience these kinds of problems.
-
...this one should be pretty self explanatory... The table settings doesn't exist: mysql> use exploit_database; Database changed mysql> show tables; Empty set (0.00 sec) Do you have a .sql file you meant to import perhaps?
-
The postgresql user cthieme_admin should now be able to remotely access the postgresql database cthieme_tales from any IP.
