Re: [modwsgi] RHEL 7 mod_wsgi s.bind Permission denied errors

2019-08-16 Thread Jay Rat
The alias in the Apache config I'll have to look at monday. Think its /online but cant recall of there is at the end or not On Fri, Aug 16, 2019, 18:40 Graham Dumpleton wrote: > You didn't answer my other questions. > > What does the Location header in responses say? > > How do you have WSGIScri

Re: [modwsgi] RHEL 7 mod_wsgi s.bind Permission denied errors

2019-08-16 Thread Graham Dumpleton
You didn't answer my other questions. What does the Location header in responses say? How do you have WSGIScriptAlias set in the Apache config? > On 17 Aug 2019, at 8:01 am, Jay Rat wrote: > > The http response is 302. > > Using blueprints. For the posts the end point is admin/faculty/ > I

Re: [modwsgi] RHEL 7 mod_wsgi s.bind Permission denied errors

2019-08-16 Thread Jay Rat
The http response is 302. Using blueprints. For the posts the end point is admin/faculty/ I added a logger into that method and the logger statement at the front of the method runs bit the statements in the form processing sections never run On Fri, Aug 16, 2019, 16:24 Graham Dumpleton wrote: >

Re: [modwsgi] RHEL 7 mod_wsgi s.bind Permission denied errors

2019-08-16 Thread Graham Dumpleton
At what sub path to the site are the post requests being targeted? Sounds more like you have an issue where handler is at /subpath/, but you are using /subpath, and so trailing slash redirection is being tripped. What does the Location header in responses say? How do you have WSGIScriptAlias se

Re: [modwsgi] RHEL 7 mod_wsgi s.bind Permission denied errors

2019-08-16 Thread Jeremy Hawkins
Thank you. Removing the app.run() and changing the app to application (using a factory so changed app = create_app() --> application = create_app()) Now when running the site via apache the post requests don't seem to be running. They all return the http code of 302 (found) instead of 200 lik