Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,171
  • Joined

  • Last visited

  • Days Won

    851

Everything posted by Krydos

  1. Have you tried these settings in Filezilla? host: tommy.heliohost.org port: 1342 protocol: SFTP logon type: normal user: lgpchelp password: <same as cPanel password> If that doesn't connect are there any error messages?
  2. Yeah, ssl is working for me too https://www.sslshopper.com/ssl-checker.html#hostname=sosiaku.gq
  3. So I installed django-debug-toolbar on python 3.6 on Tommy At least it's not a worthess 500 error now http://edsby.drte.ch/
  4. [Sat Jun 10 21:15:58.236674 2017] [wsgi:error] [pid 19289] [client krydos:31885] ModuleNotFoundError: No module named 'debug_toolbar', referer: http://edsby.drte.ch/
  5. I read through the logs some more and found this as well [Sat Jun 10 04:43:48.904414 2017] [wsgi:error] [pid 6587] [client krydos:10808] ModuleNotFoundError: No module named 'django_jinja', referer: http://edsby.drte.ch/
  6. Yep, you've got a new error now: [Sat Jun 10 04:18:38.747773 2017] [wsgi:error] [pid 26724] [client krydos:10325] RuntimeError: populate() isn't reentrant, referer: http://edsby.drte.ch/
  7. Yeah, it probably should be. The way I debug things is start really small and simple, and make sure that works. Then just keep adding small parts and making sure they all work as you add them. When I was experimenting I remember having trouble with this line os.environ.setdefault("DJANGO_SETTINGS_MODULE", "drEdsby.settings") which is the way startproject command writes it. I changed it to something more like os.environ['DJANGO_SETTINGS_MODULE'] = 'drEdsby.settings' and had better success. Does that work?
  8. Same error. It still can't find the drEdsby module.
  9. Deployed. http://vaninf.heliohost.org/1/
  10. Here's your error [Fri Jun 09 20:20:12.124673 2017] [wsgi:error] [pid 1213] [client <krydos>:25350] ModuleNotFoundError: No module named 'drEdsby', referer: http://edsby.drte.ch/ Here's the sample dispatch.wsgi from the wiki import os, sys # edit your username below sys.path.append("/home/username_on_heliohost/public_html") from django.core.wsgi import get_wsgi_application os.environ['DJANGO_SETTINGS_MODULE'] = 'hello.settings' application = get_wsgi_application() You don't add your django app to the path so it's not going to be able to find your modules, such as drEdsby.
  11. What is the path to the django project on Tommy?
  12. Have you read http://wiki.helionet.org/Django#Getting_started_with_Django_1.10 ?
  13. Escalating this to myself as a reminder to look into it. Also, this request is for Tommy server since it isn't stated in the post.
  14. It looks like sosiaku.gq is working. It's putting up a forbidden message for me at least.
  15. That account is not suspended. What do you see when you go to https://krydos.heliohost.org/ip.php ?
  16. You need to change all the links like this <link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> To https links or remove them for that error to go away.
  17. Ahh, are you talking about the "Firefox has blocked the portions of this site that are not secure." error?
  18. I renamed your forum account so that the username rafasan would be available to create a new account. Let us know once you have your new hosting account created and we can rename you back. The domain rafasantoni.heliohost.org is available.
  19. According to https://www.sslshopper.com/ssl-checker.html#hostname=tabellainterrogati.ga that ssl certificate is good for all browsers. Also, I don't get any errors in Chrome when I view it. What browser are you using?
  20. And now it works. https://www.mkgamers.ml/ I don't see an error on https://tabellainterrogati.ga/
  21. It's hard to tell because you're using cloudflare, but it might be working now.
  22. Ok, I already explained this once, but I obviously didn't explain it well enough. Here is the error: 8:10:20 AM WARN The domain “mkgamers.ml” failed domain control validation: The system failed to fetch the <abbr title="Domain Control Validation">DCV</abbr> file at “<a href="http://mkgamers.ml/84B7B689C89D20849E99168BC2AA2BE5.txt">http://mkgamers.ml/84B7B689C89D20849E99168BC2AA2BE5.txt</a>” because of an error: The system failed to send an <abbr title="Hypertext Transfer Protocol">HTTP</abbr> “GET” request to “http://mkgamers.ml/84B7B689C89D20849E99168BC2AA2BE5.txt” because of an error: Timed out while waiting for socket to become ready for reading . What that means is the system created a file called 84B7B689C89D20849E99168BC2AA2BE5.txt and then tried to access it externally by going to mkgamers.ml/84B7B689C89D20849E99168BC2AA2BE5.txt and failed. Obviously, that file gets deleted again as soon as the check has finished, but to see what is happening let's create it again and try to access it. root@tommy [/home/maicol07/public_html/mkgamers.ml]# echo "hello world!" > 84B7B689C89D20849E99168BC2AA2BE5.txt Now, when we try to go to http://mkgamers.ml/84B7B689C89D20849E99168BC2AA2BE5.txt we get an error saying that the ssl certificate is invalid rather than displaying "hello world!". Now if we take a look at your .htaccess we see: RewriteEngine On RewriteCond %{HTTPS} !=on RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Nice, there is a rule for /<random 32 characters>.txt, but it's not going to work for the addon domain so we need to add a line to prevent it from forcing https on mkgamers.ml. So add this line RewriteCond %{REQUEST_URI} !^/mkgamers\.ml/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ Now, there is an exception for mkgamers.ml/84B7B689C89D20849E99168BC2AA2BE5.txt so it doesn't force https if someone requests it. Check it in the browser and instead of an ssl certificate error we see "hello world!" Each time you create an addon domain or any kind of domain for that matter test it out to make sure those text files can be read without any errors, and autossl will work. If you have any .htaccess rules preventing it from being accessed then ssl won't automatically get installed on that domain. Does that explain it a little better?
  23. All of the domains on your Tommy account already have SSL installed. See http://www.helionet.org/index/topic/28286-ssl-error-sec-error-revoked-certificate/
×
×
  • Create New...