Re: [users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-09-29 Thread Frank Gingras
As for the "filter_var" error, you're missing a php extension/module. On Sat, Sep 29, 2018 at 10:57 PM Frank Gingras wrote: > "Primary Script Unknown" means that you're mapping to a non-existent > resource on the fpm backend - remember that when using ProxyPassMatch, the > request uri path is ap

Re: [users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-09-29 Thread Frank Gingras
"Primary Script Unknown" means that you're mapping to a non-existent resource on the fpm backend - remember that when using ProxyPassMatch, the request uri path is appended to the last path provided. On Sat, Sep 29, 2018 at 5:06 PM @lbutlr wrote: > On 29 Sep 2018, at 05:59, Frank Gingras wrote:

Re: [users@httpd] 403 error upon upgrade

2018-09-29 Thread Frank Gingras
What does the error log say now? On Sat, Sep 29, 2018 at 5:01 PM Jack M. Nilles wrote: > I have found another DirectoryIndex directive in > /etc/apache2/conf.d/gitweb.conf. Since this is higher up the chain than the > vhosts.d directory that might be what's producing the file download > behavior

[users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-09-29 Thread @lbutlr
On 29 Sep 2018, at 05:59, Frank Gingras wrote: > "Everything breaks" isn't really a useful statement. Be more specific if you > want more precise feedback. I mentioned a couple of the issues in the original post, which are either fcgi cannot find the scripts to run, or there is an error with fi

[users@httpd] Redirect vhost, with Wordpress

2018-09-29 Thread Labs Ocozzi
Hi,  i need a help. I depoy a wordpress website in my httpd enviroment lab, and this website redirect my request for default website, i change this website name, from tiblog.domain to blog.domain. I change database(wordpress) but my website not work. When i acess this website from ip:port[192.

Re: [users@httpd] 403 error upon upgrade

2018-09-29 Thread Jack M. Nilles
I have found another DirectoryIndex directive in /etc/apache2/conf.d/gitweb.conf. Since this is higher up the chain than the vhosts.d directory that might be what's producing the file download behavior. If I omit the DirectoryIndex line and restart apache then I at least just get the 403 error

Re: [users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-09-29 Thread Frank Gingras
"Everything breaks" isn't really a useful statement. Be more specific if you want more precise feedback. On Sat, Sep 29, 2018 at 7:37 AM @lbutlr wrote: > On 28 Sep 2018, at 16:15, Frank Gingras wrote: > > Consider the wiki article: > > > > http://wiki.apache.org/httpd/php > > That's not helpful

[users@httpd] Re: Updating to php 7.0 and having apache still work?

2018-09-29 Thread @lbutlr
On 28 Sep 2018, at 16:15, Frank Gingras wrote: > Consider the wiki article: > > http://wiki.apache.org/httpd/php That's not helpful. I already have proxy_fcgi working with php56. The issue is that everything breaks whenever I try to update to php70 -- The "H" in Jesus H Christ comes from "H

Re: [users@httpd] 403 error upon upgrade

2018-09-29 Thread Frank Gingras
You still need to set AllowOverride none in the block to prevent .htaccess files from interfering. As for the index file being downloaded, if it's static content, see: http://httpd.apache.org/docs/current/mod/mod_mime.html#addtype If it's a php file, see: http://wiki.apache.org/httpd/php Last