Dear All,
Recently i'm installing coppermine photo gallery in centos stream 9 from following below site, and i want to put the cpg1.5.44 from /var/www/html to /root/FileServer, and rename the cpg1.5.44 to coppermine, but i received below problem, any help would be appreicated
https://www.linuxcloudvps.com/blog/how-to-install-coppermine-photo-gallery-on-a-centos-7-vps/
i modify below conf file to change the apache location, and access http://192.168.1.99/coppermine , but i received "Not Found The requested URL was not found on this server"
nano /etc/httpd/vhosts.d/abc.com.conf
<VirtualHost 192.168.1.99:80>
ServerAdmin webmaster@yourdomain.com
DocumentRoot "/root/FileServer/coppermine/"
ServerName lichingtung.com
ServerAlias www.lichingtung.com
ErrorLog "/var/log/httpd/abc.com-error_log"
CustomLog "/var/log/httpd/abc.com-access_log" combined
<Directory "/root/FileServer/coppermine/">
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
keith