Re: Language code twice in url

2018-09-04 Thread RONAK JAIN
I am not getting direct error because more time you will get this type of error if you want to solve this one we can do connect on team viewer and then Maybe, I will solve your error. Thanks Ronak Jain On Tue, Sep 4, 2018 at 1:49 PM Kaelig wrote: > Debug is already set to True.. Even if I onl

Re: Language code twice in url

2018-09-04 Thread Kaelig
Why is it working with a GET and not a POST if my url mapping is wrong ?? Le mardi 4 septembre 2018 10:19:32 UTC+2, Kaelig a écrit : > > Debug is already set to True.. Even if I only put one url in urlpatterns, > I get this error. I don't think it's from a wrong url mapping. It looks > like the

Re: Language code twice in url

2018-09-04 Thread Kaelig
Debug is already set to True.. Even if I only put one url in urlpatterns, I get this error. I don't think it's from a wrong url mapping. It looks like the path is empty even if it should not (it should be /aves/ in this case) Le mardi 4 septembre 2018 10:13:59 UTC+2, RONAK JAIN a écrit : > > oka

Re: Language code twice in url

2018-09-04 Thread RONAK JAIN
okay one more thing you can do please go to settings and look there option DEBUG=False please do True. On Tue, Sep 4, 2018 at 1:41 PM Kaelig wrote: > [image: error_message.png] > > Here is the error message I get > > -- > You received this message because you are subscribed to the Google Groups

Re: Language code twice in url

2018-09-04 Thread RONAK JAIN
Please analyse your url mapping in django.. Thanks On Tue, Sep 4, 2018 at 1:40 PM Kaelig wrote: > [image: error_message.png] > > Here is the error message I got from debug > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Re: Language code twice in url

2018-09-04 Thread Kaelig
[image: error_message.png] Here is the error message I get -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post

Re: Language code twice in url

2018-09-04 Thread Kaelig
[image: error_message.png] Here is the error message I got from debug -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.c

Re: Language code twice in url

2018-08-31 Thread Kaelig
I think it has something to do with phusion passenger. It's skipping the first path item and merge it with the url. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Language code twice in url

2018-08-30 Thread Kaelig
Hi, I'm building a multi language website using i18n. I get the language in the url with i18n_patterns : urlpatterns = i18n_patterns(path('/contact/', views.contact, name='contact' ), ...) So I can access to my page with my-domain.com/en/contact/. But when I submit a form (or just try to aces