uncatcrea / wp-appkit

WP-AppKit WordPress plugin (create mobile apps connected to WordPress)
http://uncategorized-creations.com/
194 stars 66 forks source link

403 forbidden on debian apache2 #390

Closed metzger100 closed 2 years ago

metzger100 commented 3 years ago

Hey guys. Can't access the pwa preview. I didn't find a solution in your Docs. Log:

AH01276: Cannot serve directory /usr/share/wordpress/pwa/android-app/: No matching DirectoryIndex (index.php) found, and server-generated directory index forbidden by Options directive, referer: http://xxxxxxxxxxx.net/wp-admin/post.php?post=185&action=edit&classic-editor

Thanks for your help! Greetings Metzger

metzger100 commented 3 years ago

Found a solution you have to add:

<Directory /usr/share/wordpress/pwa/android-app/>
    AllowOverride None
        DirectoryIndex index.html
    Require all granted
</Directory>

to /etc/apache2/apache2.conf where you set the securiyt model for the Server. Maybe you can add that to your tutorial?