Jump to content

Krydos

Chief Executive Officer
  • Posts

    23,799
  • Joined

  • Last visited

  • Days Won

    828

Everything posted by Krydos

  1. My opinion is to just use cron and a scripting language, such as php, to execute your postgresql queries.
  2. Which version(s) of php were OP and Wolstech using when trying to upgrade joomla?
  3. Postgis is now enabled on that database.
  4. Postgis has been enabled on those databases.
  5. Postgresql on Johnny currently supports 100 connections. We may need to limit that down to a lower number in the future if we notice people abusing it though.
  6. I must just be lucky then. I've done like 50 VPS via email and not a single one has had any issues receiving email from my @heliohost.org address.
  7. Perhaps you could send people their Lily credentials via email instead of the broken PM system?
  8. Granted, but now you fear nothing and do dumb things like fall off cliffs. I wish no more criminals would try to use HelioHost for their phishing.
  9. You seem to be really struggling with this, and I agree setting up Django can be rather complicated. I went ahead and set up a functional test django site at http://apitunion.com/ for you. Feel free to familiarize yourself with the files and their contents. Then make small changes and test frequently. If you break something revert your last change, and figure out what went wrong. Let us know if you need any help.
  10. You have all your files in the wrong directory. Your files look like this $ tree ../hello/ ../hello/ ├── asgi.py ├── dispatch.wsgi ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── settings.py └── urls.py and according to the guide they're supposed to look like this $ tree ../hello/ ../hello/ ├── db.sqlite3 ├── hello/ │ ├── __init__.py │ ├── __pycache__/ │ │ ├── ... │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py
×
×
  • Create New...