Recent Topics

reset phpdebugbar to hide the botton debug-menu from the production



  • Re: Bagisto running very slow on AWS

    Hello @rahul ,
    I have the same problem. I've tried all the your suggestions in this support. But I can do the configuration of the Apache2, because I am using the Webkul image of it.
    How can I do this configuration of Apache2 using Docker version of Bagistro installation ?
    Thank you


    Your suggestion:

    You have provide correct configuration to your web server, if you are using apche server then you can do following.

    Open Your apache2.conf file (Probably in etc->apche2 folder).

    Check in this file. you will find some think like -

    <Directory /var/www/html>
            Options Indexes FollowSymLinks
            AllowOverride None
            Require all granted
    </Directory>
    

    Note - Directory path is not compulsory & content inside this can be differ, we only need to change AllowOverride None to All

    change it to

    <Directory /var/www/html>
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
    </Directory>
    
    


  • @rahul !
    I've solved my problem.
    I am not need to add in APP_URL bagisto/public, I need to only set false at app_debug.
    Thank you!


Log in to reply