Hi! How are you?
I'm having problems with php + apache, I believe.
I have a user and whenever I try to access the index.php this user appears 500 internal server error.
For days I'm trying to solve this problem, I'm a beginner in this universe so be gentle haha
I have seen many solutions here in the forum and on other sites, but none of them worked for me.
Pages .html work normally, only php pages do not open (500 internal server error).
As I said, I've tried several things, but now I've done a new installation of CentOS 7 with CWP.
For now I just created the user and put an index.php page in /home/user/public_html
For the panel I corrected the permissions for this user.
In php.ini I increased the memory to 256M.
I'm not using .haccess ...
Apache version: Apache/2.4.34
PHP version: 5.6.37
If you want to see some log, please inform the way, as I said I'm a beginner and I really want to learn.
My vHost looks like this:
<VirtualHost IP:80>
DocumentRoot "/home/maqtal/public_html"
ServerName maqtal.com.br
ServerAlias www.maqtal.com.br
</ VirtualHost>
<Directory /home/maqtal/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride Options
Order allow, deny
allow from all
Require all granted
suPHP_UserGroup maqtal maqtal
</ Directory>
Some options in Directory I do not quite understand, I put it as I have seen elsewhere. If anyone can help, I'll be very grateful.
The content of index.php is:
<?php echo 'hi' ?>