Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-18 Thread Momeas Interactive
Nicholas, With all due respect, if you "wrote the docs on form_with," I would refer you to my previous thread in which I am complaining about Turbolinks being default (I think it shouldn't be). You will also note that the only place local: true appears on the form_with documentation is in a

Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-16 Thread Nicholas Schwaderer
Fugee, Did that solution work for you? Sent from my iPhone > On 14 Feb 2020, at 10:52 pm, fugee ohu wrote: > > > >> On Friday, February 14, 2020 at 12:04:55 PM UTC-5, Walter Lee Davis wrote: >> Is your form set to the default of an Ajax submission, or did you add the >> configuration flag

Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-14 Thread Nicholas Schwaderer
Fugee, Replace: “remote: false” with “local: true” and tell me if that works for you. Source: I wrote the docs on form_with. -Schwad Sent from my iPhone > On 14 Feb 2020, at 10:52 pm, fugee ohu wrote: > > > >> On Friday, February 14, 2020 at 12:04:55 PM UTC-5, Walter Lee Davis wrote: >>

Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-14 Thread fugee ohu
On Friday, February 14, 2020 at 12:04:55 PM UTC-5, Walter Lee Davis wrote: > > Is your form set to the default of an Ajax submission, or did you add the > configuration flag to the form_with method call that makes it actually > redirect? If this was a redirect, the header would be 301, not

Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-14 Thread fugee ohu
On Friday, February 14, 2020 at 12:04:55 PM UTC-5, Walter Lee Davis wrote: > > Is your form set to the default of an Ajax submission, or did you add the > configuration flag to the form_with method call that makes it actually > redirect? If this was a redirect, the header would be 301, not

Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-14 Thread fugee ohu
On Friday, February 14, 2020 at 12:04:55 PM UTC-5, Walter Lee Davis wrote: > > Is your form set to the default of an Ajax submission, or did you add the > configuration flag to the form_with method call that makes it actually > redirect? If this was a redirect, the header would be 301, not

Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-14 Thread fugee ohu
On Friday, February 14, 2020 at 12:04:55 PM UTC-5, Walter Lee Davis wrote: > > Is your form set to the default of an Ajax submission, or did you add the > configuration flag to the form_with method call that makes it actually > redirect? If this was a redirect, the header would be 301, not

Re: [Rails] redirect shown in log, but browser not redirecting

2020-02-14 Thread Walter Lee Davis
Is your form set to the default of an Ajax submission, or did you add the configuration flag to the form_with method call that makes it actually redirect? If this was a redirect, the header would be 301, not 200. Walter > On Feb 14, 2020, at 9:59 AM, fugee ohu wrote: > >  > This is a

[Rails] redirect shown in log, but browser not redirecting

2020-02-14 Thread fugee ohu
This is a redirect from my log, but page doesn't change I'm still on the same page containing the form I submitted 127.0.0.1 - - [14/Feb/2020:11:55:46 EST] "GET /artists/72/press_releases HTTP/1.1" 200 2542 http://localhost:3000/artists/72/tours/1 -> /artists/72/press_releases -- You received