Page not found (404)

Request Method: GET
Request URL: http://cutxy.com/stores/showimg.php?id=41

Using the URLconf defined in server.urls, Django tried these URL patterns, in this order:

  1. admin/
  2. [name='order_dash']
  3. edit/<int:id> [name='edit_item']
  4. saving/<int:id> [name='save_item']
  5. delete/<int:id> [name='delete_item']
  6. submit-data [name='submit_data']
  7. clear-items [name='clear_items']
  8. add-custname [name='add_custname']
  9. order/get [name='get_orders']
  10. users/
  11. users/
  12. quote/
  13. ^media/(?P<path>.*)$
  14. ^static/(?P<path>.*)$

The current path, stores/showimg.php, didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.