Question: I Can Not Login After Install

I Can Not Login After Install

This Url https://pos.78truck.com/admin How to fix? Thanks

A

Attaphon

Asked
This Url

https://pos.78truck.com/admin

How to fix?



Thanks
  • MS

    Mian Saleem

    Answered
    Hello,

    Please check with your server admin. Is the path correctly set.

    If yes, the 404 error cause due to missing `.htaccess` file. You can check it and upload. The other reason might be mod_rewrite. It should be enabled and configured to use the .htaccess file from site directory.

    Thank you
  • A

    Attaphon

    Answered
    please sent .htaccess file to me?
  • A

    Attaphon

    Answered
    i download file from https://codecanyon.net/ don't have .htaccess file please sent file to email : [email protected]



    pls
  • MS

    Mian Saleem

    Answered
    Hello,

    The file is in your download. If you are on linux/unix the dot files are hidden by default. If you need you can craete it with the following contents


    ```
    DirectoryIndex index.php index.html

    <IfModule mod_rewrite.c>

    RewriteEngine On
    # RewriteBase /basepath/
    RewriteCond $1 !^(index\.php|assets|install|update)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    # For godady Shared Hosting Server uncomment the line below
    RewriteRule ^(.*)$ index.php?/$1 [L]

    # Please comment this if you have uncommented the above
    # RewriteRule ^(.*)$ index.php/$1 [NC,L,QSA]

    </IfModule>
    ```

    Thank you
  • Login to Reply