PHP won't process on new install
On Centos 7 I have installed HTTPD and PHP5.4 (I know it's old, but a package I am using needs PHP 5.4)
[root@devserver sites-enabled]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
[root@devserver sites-enabled]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Jun 27 2018 13:48:59
[root@devserver sites-enabled]# php -v
PHP 5.4.16 (cli) (built: Apr 12 2018 19:02:01)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
Apache runs fine and shows that php5 is loaded:
[root@devserver sites-enabled]# httpd -M | grep php
php5_module (shared)
I have httpd.conf set up to load the module via the 10-php.conf
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
LoadModule php5_module modules/libphp5.so
</IfModule>
[root@devserver modules]# ls /etc/httpd/modules/ |grep php
libphp5.so
However, when I try to load a basic phpinfo page, I only see
<?php
phpinfo();
?>
Instead of http processing the php. /var/www/html/error.log and /etc/httpd/logs/error.log are both clean. Actually, they're totally empty.
Anybody have any ideas what could be going on?
php apache centos
|
show 1 more comment
On Centos 7 I have installed HTTPD and PHP5.4 (I know it's old, but a package I am using needs PHP 5.4)
[root@devserver sites-enabled]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
[root@devserver sites-enabled]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Jun 27 2018 13:48:59
[root@devserver sites-enabled]# php -v
PHP 5.4.16 (cli) (built: Apr 12 2018 19:02:01)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
Apache runs fine and shows that php5 is loaded:
[root@devserver sites-enabled]# httpd -M | grep php
php5_module (shared)
I have httpd.conf set up to load the module via the 10-php.conf
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
LoadModule php5_module modules/libphp5.so
</IfModule>
[root@devserver modules]# ls /etc/httpd/modules/ |grep php
libphp5.so
However, when I try to load a basic phpinfo page, I only see
<?php
phpinfo();
?>
Instead of http processing the php. /var/www/html/error.log and /etc/httpd/logs/error.log are both clean. Actually, they're totally empty.
Anybody have any ideas what could be going on?
php apache centos
2
As well as loading the module, your web server configuration needs to specify that .php files should be handled with PHP. You could check that that's done
– Don't Panic
Nov 15 '18 at 18:23
"a package I am using needs PHP 5.4" I bet it doesn't...
– miken32
Nov 15 '18 at 18:43
1
Possible duplicate of PHP code is not being executed, instead code shows on the page
– miken32
Nov 15 '18 at 18:46
@Don'tPanic, what further configuration is needed to accomplish that?
– Paul Toone
Nov 15 '18 at 18:49
@miken32, unfortunately, it does need that version of PHP. It is a testrail install of a specific version that requires php 5.4
– Paul Toone
Nov 15 '18 at 18:49
|
show 1 more comment
On Centos 7 I have installed HTTPD and PHP5.4 (I know it's old, but a package I am using needs PHP 5.4)
[root@devserver sites-enabled]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
[root@devserver sites-enabled]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Jun 27 2018 13:48:59
[root@devserver sites-enabled]# php -v
PHP 5.4.16 (cli) (built: Apr 12 2018 19:02:01)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
Apache runs fine and shows that php5 is loaded:
[root@devserver sites-enabled]# httpd -M | grep php
php5_module (shared)
I have httpd.conf set up to load the module via the 10-php.conf
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
LoadModule php5_module modules/libphp5.so
</IfModule>
[root@devserver modules]# ls /etc/httpd/modules/ |grep php
libphp5.so
However, when I try to load a basic phpinfo page, I only see
<?php
phpinfo();
?>
Instead of http processing the php. /var/www/html/error.log and /etc/httpd/logs/error.log are both clean. Actually, they're totally empty.
Anybody have any ideas what could be going on?
php apache centos
On Centos 7 I have installed HTTPD and PHP5.4 (I know it's old, but a package I am using needs PHP 5.4)
[root@devserver sites-enabled]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
[root@devserver sites-enabled]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Jun 27 2018 13:48:59
[root@devserver sites-enabled]# php -v
PHP 5.4.16 (cli) (built: Apr 12 2018 19:02:01)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
Apache runs fine and shows that php5 is loaded:
[root@devserver sites-enabled]# httpd -M | grep php
php5_module (shared)
I have httpd.conf set up to load the module via the 10-php.conf
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
LoadModule php5_module modules/libphp5.so
</IfModule>
[root@devserver modules]# ls /etc/httpd/modules/ |grep php
libphp5.so
However, when I try to load a basic phpinfo page, I only see
<?php
phpinfo();
?>
Instead of http processing the php. /var/www/html/error.log and /etc/httpd/logs/error.log are both clean. Actually, they're totally empty.
Anybody have any ideas what could be going on?
php apache centos
php apache centos
asked Nov 15 '18 at 18:15
Paul ToonePaul Toone
3119
3119
2
As well as loading the module, your web server configuration needs to specify that .php files should be handled with PHP. You could check that that's done
– Don't Panic
Nov 15 '18 at 18:23
"a package I am using needs PHP 5.4" I bet it doesn't...
– miken32
Nov 15 '18 at 18:43
1
Possible duplicate of PHP code is not being executed, instead code shows on the page
– miken32
Nov 15 '18 at 18:46
@Don'tPanic, what further configuration is needed to accomplish that?
– Paul Toone
Nov 15 '18 at 18:49
@miken32, unfortunately, it does need that version of PHP. It is a testrail install of a specific version that requires php 5.4
– Paul Toone
Nov 15 '18 at 18:49
|
show 1 more comment
2
As well as loading the module, your web server configuration needs to specify that .php files should be handled with PHP. You could check that that's done
– Don't Panic
Nov 15 '18 at 18:23
"a package I am using needs PHP 5.4" I bet it doesn't...
– miken32
Nov 15 '18 at 18:43
1
Possible duplicate of PHP code is not being executed, instead code shows on the page
– miken32
Nov 15 '18 at 18:46
@Don'tPanic, what further configuration is needed to accomplish that?
– Paul Toone
Nov 15 '18 at 18:49
@miken32, unfortunately, it does need that version of PHP. It is a testrail install of a specific version that requires php 5.4
– Paul Toone
Nov 15 '18 at 18:49
2
2
As well as loading the module, your web server configuration needs to specify that .php files should be handled with PHP. You could check that that's done
– Don't Panic
Nov 15 '18 at 18:23
As well as loading the module, your web server configuration needs to specify that .php files should be handled with PHP. You could check that that's done
– Don't Panic
Nov 15 '18 at 18:23
"a package I am using needs PHP 5.4" I bet it doesn't...
– miken32
Nov 15 '18 at 18:43
"a package I am using needs PHP 5.4" I bet it doesn't...
– miken32
Nov 15 '18 at 18:43
1
1
Possible duplicate of PHP code is not being executed, instead code shows on the page
– miken32
Nov 15 '18 at 18:46
Possible duplicate of PHP code is not being executed, instead code shows on the page
– miken32
Nov 15 '18 at 18:46
@Don'tPanic, what further configuration is needed to accomplish that?
– Paul Toone
Nov 15 '18 at 18:49
@Don'tPanic, what further configuration is needed to accomplish that?
– Paul Toone
Nov 15 '18 at 18:49
@miken32, unfortunately, it does need that version of PHP. It is a testrail install of a specific version that requires php 5.4
– Paul Toone
Nov 15 '18 at 18:49
@miken32, unfortunately, it does need that version of PHP. It is a testrail install of a specific version that requires php 5.4
– Paul Toone
Nov 15 '18 at 18:49
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53325595%2fphp-wont-process-on-new-install%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53325595%2fphp-wont-process-on-new-install%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
As well as loading the module, your web server configuration needs to specify that .php files should be handled with PHP. You could check that that's done
– Don't Panic
Nov 15 '18 at 18:23
"a package I am using needs PHP 5.4" I bet it doesn't...
– miken32
Nov 15 '18 at 18:43
1
Possible duplicate of PHP code is not being executed, instead code shows on the page
– miken32
Nov 15 '18 at 18:46
@Don'tPanic, what further configuration is needed to accomplish that?
– Paul Toone
Nov 15 '18 at 18:49
@miken32, unfortunately, it does need that version of PHP. It is a testrail install of a specific version that requires php 5.4
– Paul Toone
Nov 15 '18 at 18:49