• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Myacc problem after installation

jeanphilip

Member
Joined
Oct 26, 2023
Messages
51
Reaction score
7
have a problem after i installed myacc i have this error
LUA:
Forbidden
You don't have permission to access this resource.

Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 Server at 127.0.0.1 Port 80
I have it installed in htdocs3 folder inside xampp anyway it does not matter if i change it to normal htdocs i get same error. have many other website installed and this is the only one giving me this problem, does somebody have a solution?

Code:
<VirtualHost *:80>
    DocumentRoot "C:/xampp/htdocs"
    <Directory "C:/xampp/htdocs">
        Options FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    Alias /site0 "C:/xampp/htdocs0"
    <Directory "C:/xampp/htdocs0">
        AllowOverride All
        Require all granted
        Options Indexes FollowSymLinks MultiViews
    </Directory>

    Alias /site1 "C:/xampp/htdocs1"
    <Directory "C:/xampp/htdocs1">
        AllowOverride All
        Require all granted
        Options Indexes FollowSymLinks MultiViews
    </Directory>

    Alias /site2 "C:/xampp/htdocs2/public"
    <Directory "C:/xampp/htdocs2/public">
        AllowOverride All
        Require all granted
        Options Indexes FollowSymLinks MultiViews
    </Directory>

   Alias /site3 "C:/xampp/htdocs3/index"
<Directory "C:/xampp/htdocs3/index">
    AllowOverride All
    Require all granted
    Options Indexes FollowSymLinks MultiViews
</Directory>
</VirtualHost>
thank for helping
 
Make shortcut xampp, on desktop.
Right click on shortcut, > properties > compatibility > run as administrator > Apply > Ok.
Run xampp and check.

If this will not work, reinstall xampp, and do not change htdocs folder, and copy myacc again, to the htdocs folder.
 
This is wrong: Alias /site3 "C:/xampp/htdocs3/index"

Should be Alias /site3 "C:/xampp/htdocs3". Same with directory.
tried that way wont work either
Post automatically merged:

edit was wrong thank @slaw
Post automatically merged:

how to enable admin account? i have created it but can't see admin panel
wrote this and it works http://127.0.0.1/site3/admin/ but there no buton or panel assigned directly for this?
 

Attachments

  • 1748294258983.webp
    1748294258983.webp
    100.2 KB · Views: 3 · VirusTotal
Last edited:

Similar threads

Back
Top