WordPress site calling debug.log and .user.ini at certain hour
WordPress site calling debug.log and .user.ini at certain hour
WordPress site calling debug.log and .user.ini at certain hour
Solved it adding an annotation to the ingress: nginx.ingress.kubernetes.io/rewrite-target: / nginx.ingress.kubernetes.io/use-regex: “true” nginx.ingress.kubernetes.io/configuration-snippet: | rewrite ^(/[^/]+)?(/wp-admin)$ $1$2/ break; rewrite ^(/[^/]+)?(/wp-admin/.*)$ $1$2 break; And changing the pathtype to ImplementationSpecific
I have a fix, I am not happy with it but it works: I added define(‘FORCE_SSL_ADMIN’, true); to wp-config.php Then I changed this method is_ssl() in /wp-includes/load.php to this. I think to avoid this bug, the define(‘FORCE_SSL_ADMIN’, true); check should have be used by the developers. I added the line if( defined( FORCE_SSL_ADMIN ) ) … Read more
How can I improve and optimise my wordpress web server for better performance in 2023
Serve static files via a subdomain on a wordpress
Loading WordPress Site Inside iframe won’t allow users to login
Resolved by editing the following file: /etc/php-fpm.d/www.conf You can set user:group for php-fpm to reference for the web handler via the following lines: ; Unix user/group of processes ; Note: The user is mandatory. If the group is not set, the default user’s group ; will be used. ; RPM: apache user chosen to provide … Read more
wordpress multisite is broken in nginx but working in apache
Nginx how to redirect index.php
WordPress stuck at Step 1 of setup behind nginx reverse proxy