• Resolved flytokiwi

    (@flytokiwi)


    Hello,

    I am currently testing Ninja Tables (to replace TablePress).
    When I insert a table on my homepage and open the page in the browser, I have to enter a password for HTACCESS.

    If I do not enter a password, the table is not loaded.

    I have currently secured access to WP-Login.php in HTACCESS. All other pages are running normally so far. The table using TablePress is displayed normally.

    What could be the reason for this?

    Thanks and greetings
    Ralph

    # Verbietet allen den Zugang zur wp-config

    <files wp-config.php>

    order allow,deny

    deny from all

    </files>

    # Kennwortabfrage bei Zugriff auf WP-Login

    <Files wp-login.php>

    </Files>

    #Zugriffe auf .htaccess verhindern

    <files ~ "^.*\.([Hh][Tt][Aa])">

    order allow,deny

    deny from all

    satisfy all

    </files>

    # BEGIN WordPress

    # Die Anweisungen (Zeilen) zwischen ?BEGIN WordPress“ und ?END WordPress“ sind

    # dynamisch generiert und sollten nur über WordPress-Filter ge?ndert werden.

    # Alle ?nderungen an den Anweisungen zwischen diesen Markierungen werden überschrieben.

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    RewriteBase /

    RewriteRule ^index\.php$ - [L]

    RewriteCond %{REQUEST_FILENAME}!-f

    RewriteCond %{REQUEST_FILENAME}!-d

    RewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Syed Numan

    (@annuman)

    Hello @flytokiwi,

    This shouldn’t be happening with Ninja Table Shortcode. It seems to be related to a conflict with another plugin. We need to look into this further from the website dashboard. I recommend reaching out to our support, as resolving the issue will require sharing sensitive information.

    Thank you

    Thread Starter flytokiwi

    (@flytokiwi)

    Hello Numan,

    thanks for the answer. I did some more research and found the solution. In the HTACCESS, which is in the WP-ADMIN directory, I have entered the following.

    <Files admin-ajax.php>

        Order allow,deny

        Allow from all

        Satisfy any

    </Files>

    After that the display of the table worked without a password request.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.