[Answer]-Django endless pagination not working in production but works in development

0👍

I have re-installed django-endless-pagination using pip rather than easy-install and it works fine now. Looks like the issue is because i installed with easy-install before without -Z before.

👤Dev

1👍

When you turn off debug mode, Django stops handling your static files for you. On your remote host, you’ll want to set your STATIC_ROOT path in settings and manage.py collectstatic. You can also take a look at this question.

Leave a comment