Homebrew PHP 7.1 (macOS Sierra) Apache Syntax Error

Viewed 20685

So I've been following along with This Tutorial, which helps configure Apache 2.4 with multiple versions of PHP. Everything was going quite smoothly, and all of my PHP versions worked, except for 7.1. When attempting to start the Apache server to receive the phpinfo of 7.1, I received the following error message:

httpd: Syntax error on line 178 of 
/usr/local/etc/apache2/2.4/httpd.conf: 
Cannot load /usr/local/opt/php71/libexec/apache2/libphp7.so into server: 
dlopen(/usr/local/opt/php71/libexec/apache2/libphp7.so, 10): image not found

This is the code that exists on line 178:

LoadModule php7_module  /usr/local/opt/php71/libexec/apache2/libphp7.so

I tried running

brew reinstall php71 --with-httpd24

and restarted the Apache server. Still receiving the same error message. Any idea what went wrong? I appreciate any responses! Many thanks!

7 Answers

I'm getting this error with the brew install php. then apachectl -t to test syntax

httpd: Syntax error on line 180 of /private/etc/apache2/httpd.conf: Cannot load /usr/local/Cellar/php/7.3.2/lib/httpd/modules/libphp7.so into server: dlopen(/usr/local/Cellar/php/7.3.2/lib/httpd/modules/libphp7.so, 10): Symbol not found: _sqlite3_enable_load_extension\n  Referenced from: /usr/local/Cellar/php/7.3.2/lib/httpd/modules/libphp7.so\n  Expected in: /usr/lib/libsqlite3.dylib\n in /usr/local/Cellar/php/7.3.2/lib/httpd/modules/libphp7.so

For some reason??? I found the libphp7.so here

LoadModule php7_module /usr/libexec/apache2/libphp7.so

Plugged it in and it works. However - I'm no clearer as to why the first one is failing.

Homebrew instructed to add this to my httpd.conf file:

LoadModule php7_module /usr/local/opt/php@7.1/lib/httpd/modules/libphp7.so

I tried stopping and restarting only to get the same error. After updating several times with different options, this one finally worked for me.

LoadModule php7_module /usr/libexec/apache2/libphp7.so

I had a PHP update, the file path has been changed. I changed the module path in httpd.conf.

Before:

LoadModule php7_module /usr/local/opt/php@7.4/lib/httpd/modules/libphp7.so

After:

LoadModule php7_module /usr/local/Cellar/php/7.4.12/lib/httpd/modules/libphp7.so

I had the same issue but with php 7.2.

Running brew linkage php showed that there were some broken dependencies.

So running brew update && brew upgrade resolved it for me.

in usr/local/opt there was an folder(alias) php only

`Just duplicate the php Alias-Folder and rename it to php@7.4`

after that sudo apache graceful I was done

I've changed the path of php7.4 on httpd.conf

Related