Just finished completing the setup, now I am able to see the GNU license page and not able to proceed further.
Getting error 404 post GNU license page : The requested URL /setup/requirements was not found on this server.
I have gone through https://forum.tastyigniter.com/thread-55...ml#pid1996 and tried applying changes mentioned but still no luck.
I am using LAMP server [Ubuntu 14.04]
.htaccess files in my setup
root folder
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
#Options +FollowSymlinks
# Prevent Directoy listing
#Options -Indexes
<IfModule mod_rewrite.c>
# Turn on URL rewriting
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage then use
# RewriteBase /mypage
RewriteBase /
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
setup folder
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
#Options +FollowSymlinks
# Prevent Directoy listing
#Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage/setup then use
RewriteBase /setup
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
admin folder
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
#Options +FollowSymlinks
# Prevent Directoy listing
#Options -Indexes
<IfModule mod_rewrite.c>
# Turn on URL rewriting
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage/admin then use
RewriteBase /admin
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
Any clue, what am i missing ?? kind of stuck now, please help...