Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Firefox ESR 78.7.0 error - "Failed to read the configuration file"

  • 5 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: drepollet

more options

We currently have a setup where we're installing Firefox ESR 68.10.0 using a .CFG and .JS file for custom configurations. Everything has been working great, but now we have a need to update to the latest version of Firefox ESR due to recently-announced security vulnerabilities. I am testing the upgrade to 78.7.0 using the same .CFG and .JS files, and I get the error "Failed to read the configuration file. Please contact your system administrator." at startup. I tried doing a complete uninstall of the old version and install of the new one, keeping the same config files, but the same error comes up. The support documentation for ESR 78.7.0 makes no indication that these configuration files are to be used, instead mentioning that Group Policies should be used for configuration in a Windows environment. But we have various user groups that require specialized configurations, and using the configuration files has worked best for us. Is there any way to keep using the configuration files? If so, what changes would I need to make to the formatting of the files to get them working? Any help is greatly appreciated!

We currently have a setup where we're installing Firefox ESR 68.10.0 using a .CFG and .JS file for custom configurations. Everything has been working great, but now we have a need to update to the latest version of Firefox ESR due to recently-announced security vulnerabilities. I am testing the upgrade to 78.7.0 using the same .CFG and .JS files, and I get the error "Failed to read the configuration file. Please contact your system administrator." at startup. I tried doing a complete uninstall of the old version and install of the new one, keeping the same config files, but the same error comes up. The support documentation for ESR 78.7.0 makes no indication that these configuration files are to be used, instead mentioning that Group Policies should be used for configuration in a Windows environment. But we have various user groups that require specialized configurations, and using the configuration files has worked best for us. Is there any way to keep using the configuration files? If so, what changes would I need to make to the formatting of the files to get them working? Any help is greatly appreciated!

선택된 해결법

You need to convert your use of Services.perms.add to Services.perms.addFromPrinicipal. The syntax is close, just changes the way the URL is created

     Services.perms.addFromPrincipal(
       Services.scriptSecurityManager.createContentPrincipalFromOrigin("https://URL"),
       "popup",
       1);
문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (5)

more options

This is about using an autoconfig.cfg file to deploy Firefox and there is a problem with this file, either missing or has invalid JavaScript. You can check the Browser Console on startup for related messages.

Note that GPO prevails and autoconfig and policies might not work.

I will move the question to Firefox for enterprise.

more options

My guess is some API changed and it's not working in 78. Should be easy to fix.

Can you check the JS console after startup and look for errors that reference your config file?

Ctrl+Shift+J

Or if you're willing to send me your autoconfig file, I can take a look

mkaply at mozilla.com

more options

Mike Kaply said

My guess is some API changed and it's not working in 78. Should be easy to fix. Can you check the JS console after startup and look for errors that reference your config file? Ctrl+Shift+J Or if you're willing to send me your autoconfig file, I can take a look mkaply at mozilla.com

Thanks for your help. I was able to find an error related to a function in our custom CFG file. I've included a screenshot of the error as well as the function in the CFG file. The "var" declaration and "Services.perms.add" function are used several times for other URLs in the file.

Let me know if there is anything else I can provide to aid with troubleshooting this. Thanks!

more options

선택된 해결법

You need to convert your use of Services.perms.add to Services.perms.addFromPrinicipal. The syntax is close, just changes the way the URL is created

     Services.perms.addFromPrincipal(
       Services.scriptSecurityManager.createContentPrincipalFromOrigin("https://URL"),
       "popup",
       1);
more options

Mike Kaply said

You need to convert your use of Services.perms.add to Services.perms.addFromPrinicipal. The syntax is close, just changes the way the URL is created Services.perms.addFromPrincipal( Services.scriptSecurityManager.createContentPrincipalFromOrigin("https://URL"), "popup", 1);

Thank you Mike, this worked great!