Hi,
I recently used the pre-built image on the DigitalOcean market place to create a server for hosting both OLS as well as a Django app. For whatever, reason, whenever I try and use GET parameters in any URL on my site, such as /login-error/?next=/index/ the parameter is completely ignored and nothing is sent. For example, my site has shops on it, and the URL /viewshop/?shop_id=1 returns these variables in Django:
Any suggestions on how to fix this issue? I'm guessing it might have something to do with the cache module, but I am not sure.
Thanks!
I recently used the pre-built image on the DigitalOcean market place to create a server for hosting both OLS as well as a Django app. For whatever, reason, whenever I try and use GET parameters in any URL on my site, such as /login-error/?next=/index/ the parameter is completely ignored and nothing is sent. For example, my site has shops on it, and the URL /viewshop/?shop_id=1 returns these variables in Django:
Code:
request <WSGIRequest: GET '/viewshop/'>
shop_id None
Thanks!