• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Ovoo 3.2.3 404 error bitnami lampstack aws

alexrajesh

Member
Apr 29, 2020
40
2
8
Hi I have installed the ovoo 3.2.3 version on bitnami lampstack on aws. I was able to install the app.

When I go to my link it opens the home page, but post that none of the links work. Clicking on any other link gives a 404 error.

The default htaccess file had the follow:

Code:
<IfModule authz_core_module>
    Require all denied
</IfModule>
<IfModule !authz_core_module>
    Deny from all
</IfModule>

Have replaced it with the following:

Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

And restarted the apache server but still have the same issue.
 
Just got the issue resolved. Providing the solution for anyone who is encountering the same issue. The htaccess file was inside the application folder and just moved it to the projects folder and below is the content of the htaccess file.

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

got the information from this link
 

Forum statistics

Threads
78,865
Messages
1,127,981
Members
246,584
Latest member
anin
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock