Can’t connect my selfhosted site to wordpress.com
-
Hello. I am not able to connect my wordpress account with jetpack.
The only error i can see is error 406 in my browsers tab title and “We couldn’t find what you were looking for. ” in the page content.
I have wordpress installed in subfolder (wpcore) and jetpack used to work before some months. Also woocommerce android app used to work without any problem. Now for some reason its not working.
My nginx.conf:
... root /var/www/website; location / { try_files $uri $uri/ /index.php?$args; } location ^~ /wp-login.php { rewrite /wp-login.php /wpcore/wp-login.php; } location ^~ /wp-admin { rewrite /wp-admin /wpcore/wp-admin; } location ~ [^/].php(/|$) { fastcgi_split_path_info ^(.+?.php)(/.*)$; if (!-f $document_root$fastcgi_script_name) { return 404; } include fastcgi.conf; fastcgi_index index.php; fastcgi_pass php-upstream-www; fastcgi_buffers 32 32k; fastcgi_buffer_size 32k; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_ignore_client_abort on; } location = /xmlrpc.php { rewrite ^/xmlrpc(.*)$ /wpcore/xmlrpc$1 last; }Everything else is working fine.
The blog I need help with is: (visible only to logged in users)
-
Hey there,
I have wordpress installed in subfolder (wpcore) and jetpack used to work before some months. Also woocommerce android app used to work without any problem. Now for some reason its not working.
So, I’m not sure about your NGINIX configuration, but I did run a connection test and right now the only error I’m facing is a 503 accessing the home page. I currently see a Maintenance Mode too… would you be able to turn that off long enough to try connecting Jetpack to see if that helps?
- The topic ‘Can’t connect my selfhosted site to wordpress.com’ is closed to new replies.