wordpress.com Login page

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
noellarkin
Moonbather
Moonbather
Posts: 50
Joined: 2021-07-27, 04:20

wordpress.com Login page

Unread post by noellarkin » 2022-03-21, 10:21

https://wordpress.com/log-in?redirect_t ... ess.com%2F shows the wordpress logo but nothing else.

Code: Select all

SyntaxError: expected expression, got '.'[Learn More]  
28661.6c27258b2c7d6723cc2d.min.js:2:1813
SyntaxError: expected expression, got '.'[Learn More]  
40287.ec2df6409b69bd9e604d.min.js:1:2720
SyntaxError: expected expression, got '?'[Learn More]  
90415.83a99775e916a7d1541d.min.js:1:46077
SyntaxError: expected expression, got '.'[Learn More]  
15878.8c2f897a24081169d733.min.js:1:2844
SyntaxError: expected expression, got '.'[Learn More]  
entry-login.c56a96f981ce93b18574.min.js:2:30881
TypeError: window.AppBoot is not a function[Learn More]  
log-in:27:1
	<anonymous> https://wordpress.com/log-in:27:1

User avatar
Disil07
Moon lover
Moon lover
Posts: 76
Joined: 2021-03-31, 05:15
Location: Indonesia
Contact:

Re: wordpress.com Login page

Unread post by Disil07 » 2022-03-25, 13:46

This issue has been mentioned a few times before, like in https://forum.palemoon.org/viewtopic.php?f=70&t=27184. At the moment you can't use WordPress in PM, as the workaround that was used before is no longer working.
Debian 12 Bookworm - KDE Plasma 5.27
Intel Celeron N5100 - 4 gigs of RAM - 256 gigs of SSD

I can barely speak english, so bear that in mind when talking to me

coffeebreak
Moon Magic practitioner
Moon Magic practitioner
Posts: 2986
Joined: 2015-09-26, 04:51
Location: U.S.

Re: wordpress.com Login page

Unread post by coffeebreak » 2022-03-25, 17:54

SyntaxError: expected expression, got '.'
SyntaxError: expected expression, got '.' (forum search)
Apparently it's optional chaining, which the browser doesn't yet support.

see:
optional chaining (PM forum)
optional chaining (UXP issues)

User avatar
noellarkin
Moonbather
Moonbather
Posts: 50
Joined: 2021-07-27, 04:20

Re: wordpress.com Login page

Unread post by noellarkin » 2022-05-26, 09:04

I believe optional chaining was fixed in the last update (31), however, I'm still getting errors in the Wordpress.com login page. Thanks for looking into this.

Code: Select all

unreachable code after return statement[Learn More]  
61403.b60fcf5c60951efab244.min.js:2:17791
unreachable code after return statement[Learn More]  
61403.b60fcf5c60951efab244.min.js:2:20877
unreachable code after return statement[Learn More]  
61403.b60fcf5c60951efab244.min.js:2:21680
SyntaxError: expected expression, got '?'[Learn More]  
48427.839435f438840c9b1f95.min.js:1:8818
SyntaxError: expected expression, got '?'[Learn More]  
33712.2875d88766c29f446d99.min.js:1:1047
SyntaxError: expected expression, got '?'[Learn More]  
6150.5549171630261a37e8c8.min.js:1:19906
SyntaxError: expected expression, got '?'[Learn More]  
49567.fd595c9d5a7a1f73ee3f.min.js:2:7740
SyntaxError: expected expression, got '?'[Learn More]  
entry-main.9e74d569de25a4c77449.min.js:2:60247
SyntaxError: expected expression, got '?'[Learn More]  
signup.fcdf5aac2a7983eb08e9.min.js:1:11317
SyntaxError: expected expression, got '?'[Learn More]  
16353.91dcd9b5f390079fdc06.min.js:1:9080
SyntaxError: expected expression, got '?'[Learn More]  
21546.c7e4f619121d60e1f135.min.js:1:1755
SyntaxError: expected expression, got '?'[Learn More]  
61702.f68d69a1a44a5918ed38.min.js:1:34251
SyntaxError: expected expression, got '?'[Learn More]  
80420.70e3910a8d1a6e501367.min.js:1:52090
SyntaxError: expected expression, got '?'[Learn More]  
81771.3902beba8819ed80b7b8.min.js:1:3619
TypeError: window.AppBoot is not a function[Learn More]

User avatar
athenian200
Contributing developer
Contributing developer
Posts: 1498
Joined: 2018-10-28, 19:56
Location: Georgia

Re: wordpress.com Login page

Unread post by athenian200 » 2022-05-26, 11:09

Optional chaining is usually used in conjunction with something called "nullish coalescing," which I think has been recently implemented but isn't in a release build yet. That might be the problem you're running into.

They keep piling on these new features and implementing them in an interdependent way. :/
"The Athenians, however, represent the unity of these opposites; in them, mind or spirit has emerged from the Theban subjectivity without losing itself in the Spartan objectivity of ethical life. With the Athenians, the rights of the State and of the individual found as perfect a union as was possible at all at the level of the Greek spirit." -- Hegel's philosophy of Mind

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35483
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: wordpress.com Login page

Unread post by Moonchild » 2022-05-26, 23:23

athenian200 wrote:
2022-05-26, 11:09
They keep piling on these new features and implementing them in an interdependent way. :/
Well it's more like "let's use all of this stuff at once"
so if the result uses "?." and "??" then if one of the two is implemented, you're still running into the other. It's also possible that after the next release it still doesn't work for a different reason when it passes the code lines with those two features. That's one of the issues with JavaScript and how it's an interpreted language that aborts the entire execution when an error is found.

e.g., say you have a piece of code:

Code: Select all

function() {
  line that uses ?. (1)
  some code
  line that uses ?? (2)
  some code
  line that uses something else unsupported (3)
}
In v29, this function aborts and throws on (1). The error message only gives information about (1) only.
in v31.0, this function aborts on (2). The error message now gives information about (2) only.
In v31.1, this function passes (1) and (2), but aborts on (3) and now the error message is different again and gives information about (3) only.

So it's not the case (like in some compilers) that it will tell you all of the unsupported lines at once, but rather it's only telling you the first error it encounters and then completely aborts.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
FranklinDM
Add-ons Team
Add-ons Team
Posts: 575
Joined: 2017-01-14, 02:40
Location: Philippines
Contact:

Re: wordpress.com Login page

Unread post by FranklinDM » 2022-05-27, 02:12

With the recent changes in place, the Wordpress log-in page already works and I'm able to proceed to the site dashboard. However, there are still some pages in the dashboard that refuses to work, particularly the Comments page, which throws the following:

Issue #1675 (UXP)

Code: Select all

SyntaxError: invalid regexp group
Stack trace:
../node_modules/chrono-node/dist/locales/zh/hant/parsers/ZHHantRelationWeekdayParser.js@https://wordpress.com/calypso/evergreen/50842.2149feef3315a41ea8a1.min.js:1:115946
l@https://wordpress.com/comments/all/?retry=1:28:148
../node_modules/chrono-node/dist/locales/zh/index.js@https://wordpress.com/calypso/evergreen/50842.2149feef3315a41ea8a1.min.js:1:125125
l@https://wordpress.com/comments/all/?retry=1:28:148
../node_modules/chrono-node/dist/index.js@https://wordpress.com/calypso/evergreen/50842.2149feef3315a41ea8a1.min.js:1:25511
l@https://wordpress.com/comments/all/?retry=1:28:148
./components/input-chrono/index.jsx@https://wordpress.com/calypso/evergreen/comments.e054e46708b57ba5de30.min.js:1:23053
l@https://wordpress.com/comments/all/?retry=1:28:148
./components/post-schedule/index.jsx@https://wordpress.com/calypso/evergreen/comments.e054e46708b57ba5de30.min.js:1:31526
l@https://wordpress.com/comments/all/?retry=1:28:148
./my-sites/comments/index.js@https://wordpress.com/calypso/evergreen/comments.e054e46708b57ba5de30.min.js:1:97949
l@https://wordpress.com/comments/all/?retry=1:28:148

User avatar
noellarkin
Moonbather
Moonbather
Posts: 50
Joined: 2021-07-27, 04:20

Re: wordpress.com Login page

Unread post by noellarkin » 2022-05-27, 18:06

Thanks! Great to hear that the site will be (more or less) functional next release onwards, looking forward to it :)

User avatar
noellarkin
Moonbather
Moonbather
Posts: 50
Joined: 2021-07-27, 04:20

Re: wordpress.com Login page

Unread post by noellarkin » 2022-06-08, 05:33

Just tested it with 31.1.0 and I'm able to log in now! Thank you so much - - I was temporarily forced to use Firefox primarily because of sites like Wordpress not being compatible, but now I can use PM again :)

User avatar
noellarkin
Moonbather
Moonbather
Posts: 50
Joined: 2021-07-27, 04:20

Re: wordpress.com Login page

Unread post by noellarkin » 2022-06-28, 21:55

So I'm able to login (I'm talking about wordpress.com subdomain, not a selfhosted wordpress instance) to wordpress. I'm able to edit site settings, select a theme etc.
However, I can't get into the site editor, or the post editor.
For example, when I navigate to the site editor page: https://wordpress.com/site-editor/mysub ... dpress.com
I get a blank page.

In the browser console:

Code: Select all

unreachable code after return statement[Learn More]  
61403.b60fcf5c60951efab244.min.js:2:17791
unreachable code after return statement[Learn More]  
61403.b60fcf5c60951efab244.min.js:2:20877
unreachable code after return statement[Learn More]  
61403.b60fcf5c60951efab244.min.js:2:21680
STOP!  
ertgdfvvxcv.wordpress.com:31:9
Wait! This browser feature runs code that can alter your website or its security, and is intended for developers. If you've been told to copy and paste something here to enable a feature, someone may be trying to compromise your account. Please make sure you understand the code and trust the source before adding anything here.  
ertgdfvvxcv.wordpress.com:32:9
Stats are disabled  
nostats.js:1:1
SyntaxError: invalid regexp group  
50842.2149feef3315a41ea8a1.min.js:1:115945
JQMIGRATE: Migrate is installed, version 3.3.2  
_static:5:699
SyntaxError: invalid identity escape in regular expression  
index.min.js:1:6883
TypeError: o is undefined[Learn More]  
index.min.js:1:3635
	O.createPreloadingMiddleware/t< https://s0.wp.com/wp-content/plugins/gutenberg-core/v13.5.1/build/api-fetch/index.min.js:1:3635
	map self-hosted:306:17
	O.createPreloadingMiddleware https://s0.wp.com/wp-content/plugins/gutenberg-core/v13.5.1/build/api-fetch/index.min.js:1:3587
	<anonymous> https://ertgdfvvxcv.wordpress.com/wp-admin/themes.php:14006:18
TypeError: o is undefined[Learn More]  
index.min.js:1:2134
SyntaxError: invalid identity escape in regular expression  
_static:38:24297
TypeError: media is undefined[Learn More]  
_static:18:1
	<anonymous> https://s0.wp.com/_static/:18:1
TypeError: S is undefined[Learn More]  
_static:5:12846
wp.data.registerGenericStore is deprecated since version 5.9. Please use wp.data.register( storeDescriptor ) instead.  
_static:11:657
TypeError: F is undefined[Learn More]  
_static:944:17256
TypeError: c is undefined[Learn More]  
default.editor.min.js:25:785
TypeError: s is undefined[Learn More]  
wpcom.editor.min.js:22:46156
Block "crowdsignal-forms/poll" is already registered.  
_static:23:93715
Block "crowdsignal-forms/vote" is already registered.  
_static:23:93715
Block "crowdsignal-forms/vote-item" is already registered.  
_static:23:93715
Block "crowdsignal-forms/applause" is already registered.  
_static:23:93715
Block "crowdsignal-forms/nps" is already registered.  
_static:23:93715
Block "crowdsignal-forms/feedback" is already registered.  
_static:23:93715
Block "jetpack/layout-grid" is already registered.  
_static:23:93715
Block "jetpack/layout-grid-column" is already registered.  
_static:23:93715
Block "jetpack/rating-priciness" is already registered.  
_static:23:93715
Block "jetpack/rating-spiciness" is already registered.  
_static:23:93715
Block "jetpack/event-countdown" is already registered.  
_static:23:93715
Block "jetpack/timeline" is already registered.  
_static:23:93715
Block "jetpack/timeline-item" is already registered.  
_static:23:93715
Block "a8c/blog-posts" is already registered.  
_static:23:93715
Block "a8c/posts-carousel" is already registered.  
_static:23:93715
	xe https://s0.wp.com/_static/:23:93715
	<anonymous> https://s0.wp.com/_static/:940:163930
	<anonymous> https://s0.wp.com/_static/:940:163720
	<anonymous> https://s0.wp.com/_static/:935:2
TypeError: F is undefined[Learn More]  
_static:944:17256
TypeError: wp.plugins is undefined[Learn More]  
_static:34:6
TypeError: media is undefined[Learn More]  
themes.php:16491:27
TypeError: wp.editSite is undefined[Learn More]  
themes.php:16421:5
	<anonymous> https://ertgdfvvxcv.wordpress.com/wp-admin/themes.php:16421:5
`wp.data.select( 'core/editor' ).getBlocks` is deprecated since version 5.3 and will be removed in version 6.2. Please use `wp.data.select( 'core/block-editor' ).getBlocks` instead.  
_static:11:657
Is PII URL: false  
themes.php:14194:5
maybeIdentifyUser: 83dcc165cb36eb3166c69dbfe8e19371a86af0f32e7329032b480be4fd12be39  
themes.php:14210:6
TypeError: u is undefined[Learn More]  
calypso.editor.min.js:23:4700
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help http://xhr.spec.whatwg.org/  
entry-main.05fbd2e725653e9ff923.min.js:2:138715
ReferenceError: event is not defined[Learn More] 
entry-main.05fbd2e725653e9ff923.min.js:2:80541
I'm not sure what this error is...is there a workaround? I'm using PM v 31.1.0

User avatar
Disil07
Moon lover
Moon lover
Posts: 76
Joined: 2021-03-31, 05:15
Location: Indonesia
Contact:

Re: wordpress.com Login page

Unread post by Disil07 » 2022-06-28, 22:34

The new editor a.k.a gutenberg does not work in Pale Moon. You need to use classic editor. To make it easier, I use this "Wordpress edit post redirect" script. Install them as user script and boom everything will work (although in classic editor you'll use the block editing, it is more like blogger)

Theme customize/site editor will not work even with this user script installed.
Debian 12 Bookworm - KDE Plasma 5.27
Intel Celeron N5100 - 4 gigs of RAM - 256 gigs of SSD

I can barely speak english, so bear that in mind when talking to me

Locked