I've installed fresh install of XAMPP on a Mac. I've set up Virtual Hosts correctly but for some reason when I turn XAMPP on I get an error like so...
AH00112: Warning: DocumentRoot [/Applications/XAMPP/xamppfiles/\xe2\x80\x9c/Users/mac-user/Sites/domain/httpdocs\xe2\x80\x9d] does not exist (2)No such file or directory: AH02291: Cannot access directory '/Applications/XAMPP/xamppfiles/\xe2\x80\x9c/Users/mac-user/Sites/domain/' for error log of vhost defined at /Applications/XAMPP/xamppfiles/etc/extra/httpd-vhosts.conf:34 AH00014: Configuration check failed
Here's my VH config...
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot “/Users/mac-user/Sites/domain/httpdocs”
ServerName khemistry.dev
ServerAlias khemistry.dev
ErrorLog “/Users/mac-user/Sites/domain/error”
CustomLog “/Users/mac-user/Sites/domain/custom” common
<Directory “/Users/mac-user/Sites/domain/httpdocs”>
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
What I have noticed is for some reason Apache is prefixing this /Applications/XAMPP/xamppfiles/\xe2\x80\x9c
to the path and I don't know why.
Please help. It's driving me insane.
If you need any more information please ask.