Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,534
  • Joined

  • Last visited

  • Days Won

    867

Everything posted by Krydos

  1. 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/
  2. 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/
  3. 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?
  4. Same error. It still can't find the drEdsby module.
  5. Deployed. http://vaninf.heliohost.org/1/
  6. 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.
  7. What is the path to the django project on Tommy?
  8. Have you read http://wiki.helionet.org/Django#Getting_started_with_Django_1.10 ?
  9. 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.
  10. It looks like sosiaku.gq is working. It's putting up a forbidden message for me at least.
  11. That account is not suspended. What do you see when you go to https://krydos.heliohost.org/ip.php ?
  12. 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.
  13. Ahh, are you talking about the "Firefox has blocked the portions of this site that are not secure." error?
  14. 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.
  15. 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?
  16. And now it works. https://www.mkgamers.ml/ I don't see an error on https://tabellainterrogati.ga/
  17. It's hard to tell because you're using cloudflare, but it might be working now.
  18. 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?
  19. 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/
  20. What domain/install are you trying to transfer? I can try doing it for you.
  21. Java is not enabled on that account. In order to deploy a .war java must first be enabled. If you're interested in transferring your account to Tommy to get java within a few hours we have two options for you. For a donation https://www.heliohost.org/donate/ of $1 or more we can move your account for you and it will only take a couple hours. If you'd rather move your own account for free here are the instructions http://wiki.helionet.org/Moving_your_account which could take several days. Your third option is just to stay on Johnny and for java to be installed on your Johnny account. You can find the estimated install date at https://johnny.heliohost.org:2083/frontend/paper_lantern/java/index.live.php
  22. Those long load times are during apache restarts. Since we offer instant domain activation apache has to restart a lot.
  23. It looks like your account was on Stevie, and the last time you logged in was 2016-03-15 so 451 days ago. In the time since you last logged on Stevie's hard drive went bad, we repaired his hardware, and reformatted and reinstalled the operating system on him and created a new server named Ricky. When we realized the hard drive was going bad we backed up as much as we could, but it looks like your files were already too damaged to save. You're welcome to create a new account if you wish https://www.heliohost.org/signup/ and we can help you get your website back online.
  24. Download the backup from /home/maicol07/.softaculous_backups/<filename>.tar.gz on Tommy and then upload it to /home/maicol01/.softaculous_backups/<filename>.tar.gz on Ricky. Then go to https://ricky.heliohost.org:2083/frontend/paper_lantern/softaculous/index.live.php and in the top right corner there is an icon that looks like a piece of paper with a zipper. Click that and you should be able to restore your backup from that screen.
×
×
  • Create New...