D
Asked
am trying to install the script locally but its giving me errors
httpd-vhosts.conf file
# WIMS
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName wimz.local
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/wms/public"
<Directory "/Applications/XAMPP/xamppfiles/htdocs/wms/public">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted
</Directory>
ErrorLog "logs/wims.local-error_log" common
</VirtualHost>
host file
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 wimz.local
when i launch using http://wimz.local/ XAMP Dashboard appears
when i launch using http://wimz.local/install
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404
httpd-vhosts.conf file
# WIMS
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName wimz.local
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/wms/public"
<Directory "/Applications/XAMPP/xamppfiles/htdocs/wms/public">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted
</Directory>
ErrorLog "logs/wims.local-error_log" common
</VirtualHost>
host file
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 wimz.local
when i launch using http://wimz.local/ XAMP Dashboard appears
when i launch using http://wimz.local/install
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404
- MSAnsweredHello,
Please copy/extract the files to `/Applications/XAMPP/xamppfiles/htdocs/wms/` folder then try to access the `http://wimz.local`
Please make sure that `mod_rewrite` is enabled too.
Thank you - DAnswereddid all that still redirects in XAMPP Dashboard
httpd.conf file
----------------
Alias /bitnami/ "/Applications/XAMPP/xamppfiles/apache2/htdocs/"
Alias /bitnami "/Applications/XAMPP/xamppfiles/apache2/htdocs"
<Directory "/Applications/XAMPP/xamppfiles/apache2/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
LoadModule rewrite_module modules/mod_rewrite.so - MSAnsweredHello,
I am not sure, looks like the virtual host issue. You can try access the folder with localhost. - Login to Reply