Site logo

Archived topic

Radio buttons not working in the backend (WP-Admin)...

5 replies · Started by Gerhard on May 17, 2022

Viewing posts 1–6 of 6

Dear Support,

Since the update to WP 5.9.3, the radio buttons can no longer be selected in the backend, no matter under which menu item (e.g. /wp-admin/edit.php / e.g. Post / All Post). It is not visible which posts are selected, e.g. to delete or quick edit.

WordPress 5.9.3
GeneratePress 3.1.3
GP Premium: 2.1.2

Thank you for the information...

Best regards
Gerhard

Hi there,

have you checked for Plugin Conflicts by temporarily disabling all plugins ?

Hi,

Yes, all plugins were deactivated and the default twentytwentytwo theme switching didn't help either.

Are there any errors reported in Dashboard > Tools > Site Health ?

Hi,

Thank you very much, i found the problem.

If WordPress is secured with .htaccess file and "headers" are set, then WP has the problem that wordpress.org cannot be contacted.

Sample .htaccess in wordpress root directory:
[...SNIP...]
<IfModule mod_headers.c>
Header unset server
Header unset ETag
Header set X-Content-Type-Options nosniff
Header always set X-XSS-Protection "1; mode=block"
Header always set X-FRAME-OPTIONS "SAMEORIGIN"
Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
Header always set Permissions-Policy "geolocation=(), microphone=(), payment=()"
Header set Referrer Policy: strict-origin-when-cross-origin
>>>>>>> Header set Content-Security-Policy "default-src 'self' 'unsafe-inline' 'unsafe-eval'" <<<<<<<<<<
Header set Connection keep-alive
Header set Expect-CT "enforce, max-age=21600"
FileETag None
</IfModule>
[...SNIP...]

The following entry must be set in the wp-admin directory, in the .htaccess file:

<IfModule mod_headers.c>
Header unset Content-Security-Policy
</IfModule>

Then the WP backend works again without any problems, no further changes are required.

You can close the ticket again, thank you.

Glad to hear you found the issue!

This archived topic is closed to new replies.