Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
General Tech Bugs & Fixes 2 years ago
Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
I've installed PHP 7.2.11 on my CentOS 7 VPS along with Apache; however, I can't seem to load the PHP module into Apache so that my server can serve PHP content.
PHP 7.2.11
Right now, if I go to a URL that should serve PHP content, it's just displays the plain PHP code.
My httpd.conf looks for modules under /etc/httpd/conf.modules.d. In that directory, 15-php.conf has the following statement to load the required PHP module for Apache:
httpd.conf
/etc/httpd/conf.modules.d
15-php.conf
LoadModule php7_module modules/libphp7.so
Naturally, I restarted httpd to have it acknowledge the changes but with no luck.
httpd
What am I seem to be missing?
The problem of LAMP showing PHP files on the clear, upon new installations, or when migrating Apache configurations is fairly known.
Apache often does not know the mime type of the php file(s)/script(s), and thinks they are pure text files, and handles them as such.
Apache has them to be told the mime type of the intended extension name is application/x-httpd-php php
application/x-httpd-php php
As for activating it, you might have the mime module for Apache; the configuration file usually is /etc/httpd/mods-available/mime.conf or /etc/httpd/conf.modules.d/mime.conf. (have not checked it out yet)
/etc/httpd/mods-available/mime.conf
/etc/httpd/conf.modules.d/mime.conf
Lacking that file/module, I would prefer to add it to httpd.conf.
I would prefer not to touch 15-php.conf as it might get updated with new versions of PHP.
So to get Apache to recognize .php files as scripts, it needs to be added:
AddType application/x-httpd-php php
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
General Tech 10 Answers
General Tech 7 Answers
General Tech 3 Answers
General Tech 9 Answers
General Tech 2 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.