Closed contactwajeeh closed 9 years ago
This is fixed, by editing the htaccess files. Please close the issue.
Thanks. Let me know if you come across any other issues.
same issue here, could you tell me how did you solved it?, thank´s in advance. (403 Access Forbidden , using xampp on windows)
Can you share your vhost and .htaccess files?
httpd-vhosts.conf:
.htaccess:
Make sure permission for your document root and public folder is at least 755
Running on Windows 10 with Xampp 3.2.2. I cannot resolve this issue.
This is my httpd-vhosts.conf
<VirtualHost phalcon.local:80>
ServerAdmin webmaster@phalcon.local
DocumentRoot "C:/xampp/htdocs/phalcon"
ServerName phalcon.local
ServerAlias www.phalcon.local
ErrorLog "logs/phalcon.local-error.log"
CustomLog "logs/phalcon.local-access.log" common
<Directory "C:/xampp/htdocs/phalcon/">
Require all granted
</Directory>
</VirtualHost>
Apache/2.4.17
I am able to set up the app, but I am getting only signin page, all the rest of the links are throwing the 403 error. can you please help me, as to what I am doing wrong. I am new to Phalcon and very impressed by its features.
my vhosts <<VirtualHost *:80> ServerName server ServerAdmin
DocumentRoot "C:\xampp\htdocs\phalcon-app\public"
DirectoryIndex "index.html" "index.php"
<Directory "C:\xampp\htdocs\phalcon-app\public">
Options +Indexes +FollowSymLinks +MultiViews +Includes
AllowOverride All
Require all granted
>
and my config is set to this:
'baseUrl' => 'http://server',
Please help me out.