You are not logged in.
Hello,
This is my first post, so apologies if I have done anything incorrectly or have omitted important logs/info.
I want to install wordpress on my local machine. I've installed php, mariadb (including user with full permissions on the to-be wordpress db), and apache successfully, but when I go through the steps on the wiki to manually install wordpress, I cannot access any of the files inside the "wordpress" directory, and on localhost I am greeted with this error:
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster.
Error 404From what I've found online it looks like this error means that apache can't find my files. I've made sure to have the proper permissions enabled for sym links and all that in the httpd-wordpress.conf and httpd.conf files, I made sure that the http user could access my files (located in /srv/http/, that's the default document root) through chown/chmod.
Here is my httpd-wordpress.conf file:
Alias /wordpress "/srv/http/wordpress"
<Directory "/srv/http/wordpress">
AllowOverride All
Options FollowSymLinks
Require all granted
</Directory>Here is my httpd.conf (sans email): https://pastebin.com/0NmLn66n
Httpd error log: https://pastebin.com/pEYhajPA
Httpd access log: https://pastebin.com/QZP7R8Kq
Thanks for your help!
Offline