• Resolved TungstenE2

    (@tungstene2)


    I am using .htaccess to protect my wp-admin.

    when I login in with user having role subscriber I can see the short code edit output. but when I try to edit a line I am promted for the user defined in the .htaccess.

    what functionality is called that triggers the .htaccess call? is wp-admin called?

    would like to keep .htaccess.

    https://wordpress.org/plugins/custom-database-tables/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ka2

    (@ka2)

    Thank you for your inquiry.

    If it is using the Ajax in WordPress, you use the “wp-admin/admin-ajax.php”. Because this plugin is working all Ajax processing via the “wp-admin/admin-ajax.php”, only that file in the “.htaccess” must have been to be able to access.

    Please add a description of the following to the “.htaccess” under the “wp-admin”.

    <FilesMatch "(admin-ajax.php)$">
        Satisfy Any
        Order allow,deny
        Allow from all
        Deny from none
    </FilesMatch>

    Thank you,

    Thread Starter TungstenE2

    (@tungstene2)

    thx

    Plugin Author ka2

    (@ka2)

    This matter has closed because correspond already.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘using .htaccess’ is closed to new replies.