FMP URL not working on Windows 10

I have a solution that has been archived from a MAC to a Windows 10 Pro machine. There is an issues where FMP:// URL WebViewer links trigger this prompt.

.

I thought this might be the anwswer:

//my settings

but no luck

FMS: 21.x
FMP: 21.x
Window: 10 PRO

@rivet Does the file name contain a space char? Recently I read some posts elsewhere indicating similar troubles. There was a mention that removing any space chars from the file name solves the issue.

My guess would be that there's been an unexpected change in how URL encoding is being handled by the underlying browser, whereby, what used to be a properly escaped space char, i.e., %20, is now being extra-escaped, resulting in the problem folks are seeing. This is totally just a guess, however, and should be taken with a grain of salt.

If it does seem plausible that this is due to an escaping issue, and it is not possible to rename the file to not have space chars, I wonder if using a + char to encode the space in the URL would fare better than %20.

And, if all this is off-base because the file in question for you does not even have a space char in its name, then apologies for the noise.

1 Like

Thanks @steve_ssh for the suggestions, they nudged me to the solution. The old URL's were fmp://%24 so a global search and replace to fmp21://$ did the trick. :pray:t3:

2 Likes