Get Error:
Netscape.cfg/AutoConfig failed. Please contact your system administrator.
Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIPrefBranch.setBoolPref]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: prefcalls.js :: defaultPref :: line 58" data: no]
Netscape.cfg/AutoConfig failed. Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED)
I have the following setup:
Selenium Grid on CentOs 6.4
Slave Node = CentOs 6.4
Trying to run Firefox remotely via Watir-WebDriver
require "rubygems"
require "test/unit"
#require "selenium"
require "watir-webdriver"
caps = Selenium::WebDriver::Remote::Capabilities.firefox
#caps.version = "24"
caps[:name] = "Firefox 24 , port 5555"
default_profile = Selenium::WebDriver::Firefox::Profile.from_name "default"
default_profile.native_events = true
driver = Selenium::WebDriver.for(:firefox, :profile => default_profile)
@browser = Watir::Browser.new(
:remote,
:url => "http://vm-auto.his.vm:4444/wd/hub",
:desired_capabilities => caps)
@browser.goto "google.com"
@browser.text_field(:name => "q").set "3M"
@browser.button.click
@browser.div(:id => "resultStats").wait_until_present
@browser.screenshot.save ("GoogleSearch_FF24.png")
@browser.close
Firefox version is Mozilla Firefox 24.7.0
there is a reference to this error in https://bugzilla.mozilla.org/show_bug.cgi?id=717438
the resolution being suggested as:
In my case commenting out this pref in mozilla.cfg stops generating this message.
But I do not know origin of this pref.
//stops the request to send performance data from displaying
//pref("toolkit.telemetry.prompted", true);
But, i could not find mozilla.cfg on the filesystem where firefox is installed
Получить ошибку:
Netscape.cfg/AutoConfig failed. Please contact your system administrator.
Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIPrefBranch.setBoolPref]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: prefcalls.js :: defaultPref :: line 58" data: no]
Netscape.cfg/AutoConfig failed. Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED)
У меня следующая установка:
Селеновая сетка на CentOs 6.4
Ведомый узел = CentOs 6.4
Попытка запустить Firefox удаленно через Watir-WebDriver
require "rubygems"
require "test/unit"
#require "selenium"
require "watir-webdriver"
caps = Selenium::WebDriver::Remote::Capabilities.firefox
#caps.version = "24"
caps[:name] = "Firefox 24 , port 5555"
default_profile = Selenium::WebDriver::Firefox::Profile.from_name "default"
default_profile.native_events = true
driver = Selenium::WebDriver.for(:firefox, :profile => default_profile)
@browser = Watir::Browser.new(
:remote,
:url => "http://vm-auto.his.vm:4444/wd/hub",
:desired_capabilities => caps)
@browser.goto "google.com"
@browser.text_field(:name => "q").set "3M"
@browser.button.click
@browser.div(:id => "resultStats").wait_until_present
@browser.screenshot.save ("GoogleSearch_FF24.png")
@browser.close
Версия Firefox — Mozilla Firefox 24.7.0.
Ссылка на эту ошибку есть в https://bugzilla.mozilla.org/show_bug.cgi ?id=717438
Резолюция предлагается как:
In my case commenting out this pref in mozilla.cfg stops generating this message.
But I do not know origin of this pref.
//stops the request to send performance data from displaying
//pref("toolkit.telemetry.prompted", true);
Но я не смог найти mozilla.cfg в файловой системе, где установлен firefox.
2 ответа
У меня была такая же проблема с Firefox 24 ESR. Mozilla.cfg находился в том же каталоге, что и исполняемый файл Firefox. В моем случае это было в разделе «%localappdata%MicrosoftAppVClientIntegration[Unique-Code]Root». Я закомментировал ‘pref(«toolkit.telemetry.prompted», true);’ и сообщение об ошибке больше не появлялось.
0
Virtuoso
3 Дек 2015 в 12:54
Эта ошибка определенно связана с проблемой в конфигурационном файле Mozilla, НО в моем случае файл был не mozilla.cfg
, а mozilla-lock.cfg
(расположенный в C:Program Files (x86)Mozilla Firefox
).
Имя файла определяется файлом lockset.js
в C:Program Files (x86)Mozilla Firefoxdefaultspref
. Строка pref("general.config.filename", "mozilla-lock.cfg")
Моя проблема с файлом конфигурации заключалась в следующих строках:
lockpref("security.tls.version.min", "1");
lockpref("security.tls.version.max", "3");
Значения должны быть без кавычек:
lockpref("security.tls.version.min", 1);
lockpref("security.tls.version.max", 3);
В качестве дополнения, вполне возможно, что у вас вообще нет файла конфигурации, и проблема существует с ручной настройкой в about:config
. Откройте страницу about:config и отсортируйте по «статусу», чтобы найти «заблокировано», «набор пользователя» или любые другие элементы, отличные от «по умолчанию».
0
duct_tape_coder
29 Июл 2016 в 22:08
I did not touch any buth the files identified below…. the prefcalls.js looks like it hasn;t been changed from install so I have not appeneded it, but if you want to see it let me know.
I used the all.js shipped with firefox and added one line to the end. Here’s the last vfew lines of that file:
//@line 2289 «/builds/tinderbox/Fx-Mozilla1.8.0/Darwin_7.9.0_Depend/mozilla/modules/libpref/src/init/all.js»
//@line 2309 «/builds/tinderbox/Fx-Mozilla1.8.0/Darwin_7.9.0_Depend/mozilla/modules/libpref/src/init/all.js»
pref(«general.config.filename», «mozilla.cfg»);
This is one of the versions of the file I byte shifted to create the mozilla.cfg, I used the online byteshifter bat autpmatic mozilla configurator. I tried a number of different selections of preferences. I also tried putting a try { … } around the lockPref s and that failed as well of course, but it was apparent that the cfg file was being read. Additionally, as I noted, at least some of the prefs set were in fact greyed out…. What I don;t understand is that if this is an issue of inconsistent prefs there should be an override…. so it has to be something else.
//
lockPref(«autoadmin.failover_to_cached», false);
lockPref(«browser.use_document_fonts», true);
lockPref(«browser.foreground_color», «#000000»);
lockPref(«browser.background_color», «#C0C0C0»);
lockPref(«browser.background_option», 1);
lockPref(«browser.anchor_color», «0000EE»);
lockPref(«browser.visited_color»,»#551A8B»);
lockPref(«browser.underline_anchors»,false);
lockPref(«browser.use_document_colors», true);
lockPref(«general.always_load_images», true);
lockPref(«security.enable_java», true);
lockPref(«javascript.enabled», true);
lockPref(«javascript.allow.signing», true);
lockPref(«browser.enable_style_sheets», true);
lockPref(«network.accept_cookies», 1);
lockPref(«network.warn_cookies», false);
lockPref(«browser.popups.showPopupBlocker», false);
lockPref(«browser.startup.homepage», «http://plato.asdk12.org/Pathways/pway_iis.dll/login.plato»);
lockPref(«browser.startup.page», 1);
lockPref(«network.proxy.type», 1);
lockPref(«network.proxy.http», «pac.area51.asdk12.org»);
lockPref(«network.proxy.http_port», «3128»);
lockPref(«security.warn_entering_weak», false);
lockPref(«security.warn_leaving_secure», false);
lockPref(«security.warn_viewing_mixed», false);
lockPref(«browser.chrome.site_icons», false);
lockPref(«browser.chrome.favicons», false);
lockPref(«browser.blink_allowed», false);
lockPref(«nglayout.initialpaint.delay», 0);
lockPref(«browser.cache.disk.capacity», 0);
lockPref(«network.http.pipelining», true);
lockPref(«network.http.proxy.pipelining», true);
lockPref(«network.http.pipelining.maxrequests», 100);
Permalink
Cannot retrieve contributors at this time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
readConfigTitle = Ошибка настройки | |
readConfigMsg = Ошибка при чтении файла настроек. Обратитесь к системному администратору. | |
autoConfigTitle = Предупреждение системы автонастройки | |
autoConfigMsg = Ошибка системы автонастройки (Netscape.cfg). Обратитесь к системному администратору. n Ошибка %S: | |
emailPromptTitle = Электронная почта | |
emailPromptMsg = Введите свой адрес электронной почты |
Небольшое отступление: подразумевается, что у вас домен работает под управлением samba+ldap (http://www.lissyara.su/?id=1487).
Решил я совсем оптимизировать свою работу. Задумка состоит в следующем. Создаем нового пользователя в домене (я создаю через ldapadmin), далее заходим этим пользователем на компьютер. И.. каждый раз приходится запускать обозреватель, прописывать там прокси-сервер, прописывать ограничения на размер кеша, добавлять еще какие-то опции.. затем запускать почтового клиента, в нем прописывать электронный адрес, имя пользователя т.п. В общем не айс. Хотелось бы, чтобы ничего на стороне клиентского компьютера делать не надо было.
Для автоматизации нам потребуется samba, openldap-server (+ssl), apache, perl. В качестве браузера и почты на клиентских машинах будем использовать Mozilla Seamonkey.
Поднимаем домен: http://www.lissyara.su/?id=1487
Устанавливаем Apache по статье Лиса: http://www.lissyara.su/?id=1360
После этого устанавливаем модуль NTLM для Apache2:
Код: Выделить всё
[f0s@mail] //> cd /usr/ports/www/mod_ntlm2
[f0s@mail] /usr/ports/www/mod_ntlm2/> make install clean
Далее добавляем виртуальный хост. Я назвал его mozilla.artpaint:
Код: Выделить всё
[f0s@mail] //> cd /usr/local/etc/openldap/ldif/
[f0s@mail] /usr/local/etc/openldap/ldif/> cat tmp.ldif
dn: relativeDomainName=mozilla,zoneName=artpaint,ou=dns,dc=artpaint,dc=spb,dc=ru
dNSClass: IN
objectClass: dNSZone
objectClass: top
relativeDomainName: mozilla
zoneName: artpaint
cNAMERecord: mail
Добавляем временный файл в ldap:
Код: Выделить всё
[f0s@mail] /usr/local/etc/openldap/ldif/> ldapadd -x -D "cn=root,dc=artpaint,dc=spb,dc=ru" -W -H ldaps://192.168.10.8 -f tmp.ldif
Enter LDAP Password:
adding new entry "relativeDomainName=mozilla,zoneName=artpaint,ou=dns,dc=artpaint,dc=spb,dc=ru"
Готово. Проверяем:
Код: Выделить всё
[f0s@mail] /usr/local/etc/openldap/ldif/> nslookup mozilla.artpaint
Server: 192.168.10.8
Address: 192.168.10.8#53
mozilla.artpaint canonical name = mail.artpaint.
Name: mail.artpaint
Address: 192.168.10.8
С этим ОК. добавляем в Apache:
Код: Выделить всё
[f0s@mail] //> cd /usr/local/etc/apache2/Includes/
[f0s@mail] /usr/local/etc/apache2/Includes/> cat mozilla.artpaint
<VirtualHost *:80>
ServerAdmin admin@artpaint.spb.ru
DocumentRoot /usr/home/artpaint/www/data/mozilla.artpaint/
ServerName mozilla.artpaint
SuexecUserGroup artpaint artpaint
Alias /php-fcgi/ /usr/home/artpaint/www/cgi-bin/
ErrorLog /var/log/httpd/mozilla.artpaint-error.log
CustomLog /var/log/httpd/mozilla.artpaint-access.log combined
ScriptAlias /moz/ /usr/home/artpaint/www/data/mozilla.artpaint/moz/
AddHandler cgi-script mozilla.config printenv test
<Directory "/usr/home/artpaint/www/data/mozilla.artpaint/moz/">
AllowOverride None
Options ExecCGI
AuthType ntlm
AuthName "ARTPAINT Server"
NTLMAuth on
NTLMAuthoritative on
NTLMDomain ARTPAINT
NTLMServer mail.artpaint
require valid-user
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
[f0s@mail] /usr/local/etc/apache2/Includes/>
Создаем подкаталог:
Код: Выделить всё
[f0s@mail] //> cd /home/artpaint/www/data/mozilla.artpaint/
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/> mkdir moz
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/> cd moz
Создаем скрипт:
Код: Выделить всё
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/moz/> cat mozilla.pl
#!/usr/bin/perl
# Byteshifting program for mozilla's netscape.cfg files
# Old netscape 4.x uses a bytechift of 7
# To decode: moz-byteshift.pl -s -7 <netscape.cfg >netscape.cfg.txt
# To encode: moz-byteshift.pl -s 7 <netscape.cfg.txt >netscape.cfg
# Mozilla uses a byteshift of 13
# To decode: moz-byteshift.pl -s -13 <netscape.cfg >netscape.cfg.txt
# To encode: moz-byteshift.pl -s 13 <netscape.cfg.txt >netscape.cfg
use strict;
use Getopt::Std;
use vars qw/$opt_s/;
getopts("s:");
die "Missing shiftn" if (!defined $opt_s);
my $buffer;
while(1) {
my $n=sysread STDIN, $buffer, 1;
last if ($n eq 0);
my $byte = unpack("c", $buffer);
$byte += 512 + $opt_s;
$buffer = pack("c", $byte);
syswrite STDOUT, $buffer, 1;
}
Далее создаем файл mozweb32.js первоначальных параметров для Mozilla:
Код: Выделить всё
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/moz/> cat mozweb32.js
lockPref("general.config.vendor", "mozweb32");
lockPref("autoadmin.global_config_url", "http://mozilla.artpaint/moz/mozilla.config");
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/moz/>
Конвертируем файл с Java скриптом mozweb32.js в файл mozweb32.cfg:
Код: Выделить всё
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/moz/> ./mozilla.pl -s 13 < mozweb32.js > mozweb32.cfg
Копируем файл mozweb32.cfg в папку, где стоит Mozilla (на клиентский комп).
Создаем файл all.js в папке C:Program Filesmozilla.orgMozilladefaultspref следующим содержанием:
Код: Выделить всё
pref("network.automatic-ntlm-auth.trusted-uris","mozilla.artpaint");
pref("general.config.filename", "mozweb32.cfg");
pref("general.config.vendor", "mozweb32");
После чего создаем конфигурационный файл с настройками:
Код: Выделить всё
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/moz/> cat mozilla.config
#!/usr/local/bin/perl
use CGI qw/:standard :cgi/;
use Net::LDAPS;
$user = $ENV{"REMOTE_USER"};
print header(
-type=>'application/x-javascript-config',
-expires=>'0'
);
$ldaphost="mail.artpaint";
$basedn="dc=artpaint,dc=spb,dc=ru";
$id=0;
$ldap=Net::LDAPS->new($ldaphost) or die $@;
$bind=$ldap->bind();
build_body($user,"uid");
if ($id>0)
{
$podval = <<"EOF";
lockPref("mail.accountmanager.accounts", "$accounts");
} catch(e) {
displayError("lockedPref", e);
}
EOF
print $podval;
};
$ldap->unbind;
sub build_body()
{
$userb=$_[0];
$attrb=$_[1];
$search=ldap_search($userb,"users",$attrb);
foreach $entry ($search->entries)
{
$mail=$entry->get_value('mail');
$mailhost='mail.artpaint';
$accstat=$entry->get_value('accountStatus');
$cn=$entry->get_value('displayName');
$o=$entry->get_value('o');
$uid=$entry->get_value('uid');
$gecos=$entry->get_value('gecos');
$mail_mod=$mail;
$mail_mod=~s/@/%40/g;
if ($accstat eq "active")
{
$id=$id+1;
if ($id==1)
{
$header =<<"EOF";
try {
//displayError("$username");
lockPref("browser.bookmarks.added_static_root", true);
lockPref("browser.cache.disk.capacity", 10240);
lockPref("browser.download.dir", "H:");
lockPref("browser.download.save_converter_index", 0);
lockPref("browser.fixup.alternate.enabled", false);
lockPref("browser.link.open_external", 3);
lockPref("browser.link.open_newwindow", 3);
lockPref("browser.startup.homepage", "http://www.ya.ru/");
lockPref("browser.tabs.autoHide", false);
lockPref("browser.tabs.loadGroup", 1);
lockPref("browser.tabs.loadInBackground", true);
lockPref("browser.tabs.opentabfor.middleclick", true);
lockPref("browser.tabs.opentabfor.urlbar", false);
lockPref("browser.turbo.showDialog", false);
lockPref("general.smoothScroll", false);
lockPref("browser.enable_automatic_image_resizing", false);
lockPref("browser.chrome.site_icons", true);
lockPref("browser.chrome.toolbar_tips", true);
lockPref("browser.chrome.toolbar_style", 2);
lockPref("browser.history_expire_days", 5);
lockPref("browser.search.opensidebarsearchpanel", true);
lockPref("browser.search.opentabforcontextsearch", false);
lockPref("general.startup.chat", false);
lockPref("general.startup.editor", false);
lockPref("general.startup.addressbook", false);
lockPref("general.startup.browser", true);
lockPref("general.startup.mail", false);
lockPref("mail.accountmanager.defaultaccount", "account1");
lockPref("mail.smtp.defaultserver", "smtp1");
lockPref("mail.smtpserver.smtp1.auth_method", 1);
lockPref("mail.smtpserver.smtp1.hostname", "$mailhost");
lockPref("mail.smtpserver.smtp1.port", 465);
lockPref("mail.smtpserver.smtp1.try_ssl", 3);
lockPref("mail.smtpserver.smtp1.username", "$uid");
lockPref("mail.smtpservers", "smtp1");
lockPref("mail.spam.logging.enabled", false);
lockPref("mail.spam.manualMarkMode", 0);
lockPref("mail.spam.markAsReadOnSpam", true);
lockPref("mail.spam.manualMark", true);
lockPref("mail.spam.version", 1);
lockPref("ldap_2.autoComplete.directoryServer", "ldap_2.servers.artpaint");
lockPref("ldap_2.autoComplete.useDirectory", true);
lockPref("ldap_2.prefs_migrated", true);
lockPref("ldap_2.servers.artpaint.auth.savePassword", true);
lockPref("ldap_2.servers.artpaint.description", "mail.artpaint");
lockPref("ldap_2.servers.artpaint.filename", "abook-1.mab");
lockPref("ldap_2.servers.artpaint.maxHits", 500);
lockPref("ldap_2.servers.artpaint.position", 3);
lockPref("ldap_2.servers.artpaint.uri", "ldaps://$ldaphost:636/ou=users,$basedn??sub");
lockPref("ldap_2.servers.history.filename", "history.mab");
lockPref("ldap_2.servers.history.replication.lastChangeNumber", 0);
lockPref("ldap_2.servers.pab.filename", "abook.mab");
lockPref("ldap_2.servers.pab.replication.lastChangeNumber", 0);
lockPref("network.cookie.prefsMigrated", true);
lockPref("network.proxy.ftp", "router.artpaint");
lockPref("network.proxy.ftp_port", 8787);
lockPref("network.proxy.gopher", "router.artpaint");
lockPref("network.proxy.gopher_port", 8787);
lockPref("network.proxy.http", "router.artpaint");
lockPref("network.proxy.http_port", 8787);
lockPref("network.proxy.no_proxies_on", "localhost, 127.0.0.1, 192.168.10.0/24, *.artpaint");
lockPref("network.proxy.share_proxy_settings", true);
lockPref("network.proxy.ssl", "router.artpaint");
lockPref("network.proxy.ssl_port", 8787);
lockPref("network.proxy.type", 1);
lockPref("update_notifications.enabled", false);
lockPref("mail.toolbars.showbutton.print", true);
EOF
print $header;
};
$account="account".$id;
$zp="";
$zp="," if ($id>1);
$accounts="$accounts".$zp.$account;
$identi="id".$id;
$serv="server".$id;
$body_account =<<"EOF";
lockPref("mail.account.$account.identities", "$identi");
lockPref("mail.account.$account.server", "$serv");
lockPref("mail.forward_message_mode", 2);
lockPref("mail.identity.$identi.doBcc", false);
lockPref("mail.identity.$identi.doBccList", "");
lockPref("mail.identity.$identi.draft_folder", "imap://$mail_mod@$mailhost/Drafts");
lockPref("mail.identity.$identi.drafts_folder_picker_mode", "1");
lockPref("mail.identity.$identi.encryption_cert_name", "");
lockPref("mail.identity.$identi.encryptionpolicy", 0);
lockPref("mail.identity.$identi.fcc_folder", "imap://$mail_mod@$mailhost/Sent");
lockPref("mail.identity.$identi.fcc_folder_picker_mode", "1");
lockPref("mail.identity.$identi.fullName", "$cn");
lockPref("mail.identity.$identi.organization","ARTPAINT" );
lockPref("mail.identity.$identi.reply_to", "$mail");
lockPref("mail.identity.$identi.sign_mail", false);
lockPref("mail.identity.$identi.signing_cert_name", "");
lockPref("mail.identity.$identi.smtpServer", "smtp1");
lockPref("mail.identity.$identi.stationery_folder", "imap://$mail_mod@$mailhost/Templates");
lockPref("mail.identity.$identi.tmpl_folder_picker_mode", "1");
lockPref("mail.identity.$identi.useremail", "$mail");
lockPref("mail.identity.$identi.valid", true);
lockPref("mail.server.$serv.ageLimit", 30);
lockPref("mail.server.$serv.capability", 418609);
lockPref("mail.server.$serv.daysToKeepBodies", 30);
lockPref("mail.server.$serv.daysToKeepHdrs", 30);
lockPref("mail.server.$serv.download_on_biff", true);
lockPref("mail.server.$serv.check_new_mail", true);
lockPref("mail.server.$serv.check_time", 10);
lockPref("mail.server.$serv.cleanup_inbox_on_exit", true);
lockPref("mail.server.$serv.empty_trash_on_exit", true);
lockPref("mail.server.$serv.moveOnSpam", true);
lockPref("mail.server.$serv.hostname", "$mailhost");
lockPref("mail.server.$serv.login_at_startup", true);
lockPref("mail.server.$serv.max_cached_connections", 5);
lockPref("mail.server.$serv.name", "$gecos");
lockPref("mail.server.$serv.numHdrsToKeep", 30);
lockPref("mail.server.$serv.port", 10993);
lockPref("mail.server.$serv.socketType", 3);
lockPref("mail.server.$serv.realhostname", "$mailhost");
lockPref("mail.server.$serv.realuserName", "$mail");
lockPref("mail.server.$serv.type", "imap");
lockPref("mail.server.$serv.useSecAuth", false);
lockPref("mail.server.$serv.userName", "$mail");
lockPref("mail.server.$serv.spamActionTargetAccount", "imap://$mail_mod@$mailhost");
lockPref("mail.server.$serv.spamActionTargetFolder", "imap://$mail_mod@$mailhost/Junk");
EOF
print $body_account;
$searchg=ldap_search($userb,"Group","memberUid");
foreach $entryg ($searchg->entries)
{
$cng=$entryg->get_value('cn');
build_body($cng,"cn");
};
};
};
};
sub ldap_search ()
{
$attr=$_[2];
$val=$_[0];
$ou=$_[1];
$filter="($attr=$val)";
$searchs=$ldap->search(
scope =>'sub',
base =>"ou=$ou,".$basedn,
filter =>$filter,
attrs =>['mail','mailHost','accountStatus','displayName','o','uid','gecos']
);
return $searchs
};
[f0s@mail] /home/artpaint/www/data/mozilla.artpaint/moz/>
Ссылки:
1) http://www.it-sudparis.eu/s2ia/user/pro … ig-en.html
2) Артем Za.
Как правило, ошибки synchcfg.exe возникают в результате повреждения, заражения или отсутствия исполняемого файла и обычно наблюдаются во время запуска Netscape Directory Server. В большинстве случаев скачивание и замена файла EXE позволяет решить проблему. Запуск сканирования реестра после замены файла, из-за которого возникает проблема, позволит очистить все недействительные файлы synchcfg.exe, расширения файлов или другие ссылки на файлы, которые могли быть повреждены в результате заражения вредоносным ПО.
Исполнимые файлы с расширением файла EXE, также известны в качестве формата Windows Executable File. Ниже вы также можете найти последние версии файлов для %%os%% (и для других версий ОС). В нашей базе представлены не все версии synchcfg.exe, поэтому нажмите на кнопку Request (Запрос), чтобы наши сотрудники её получили. В крайнем случае, если ниже отсутствует необходимая вам версия файла, вы всегда можете связаться с Netscape Communication Corporation.
Размещение вновь загруженного файла synchcfg.exe в правильном каталоге (в месте расположения исходного файла), скорее всего, решит проблему, однако, чтобы однозначно в этом убедиться, следует выполнить проверку. Чтобы убедиться в том, что удалось решить проблему, попробуйте запустить Netscape Directory Server, и посмотреть выведется ли ошибка.
synchcfg.exe Описание файла | |
---|---|
File: | EXE |
Тип приложения: | 4.0 |
Application: | Netscape Directory Server |
Версия выпуска: | 1.0.0.0 |
Автор: | Netscape Communication Corporation |
Имя: | synchcfg.exe |
Размер: | 113152 |
SHA-1: | 316FDB726079F5A98D7CA18DF91E6394FF764A60 |
MD5: | 71EF0D56A705AE88BB5667148F464E92 |
CRC32: |
Продукт Solvusoft
Загрузка
WinThruster 2023 — Сканировать ваш компьютер на наличие ошибок реестра в synchcfg.exe
Windows
11/10/8/7/Vista/XP
Установить необязательные продукты — WinThruster (Solvusoft) | Лицензия | Политика защиты личных сведений | Условия | Удаление
EXE
synchcfg.exe
Идентификатор статьи: 1169645
Synchcfg.exe
File | Контрольная сумма MD5 | Размер (в байтах) | Загрузить | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
+ synchcfg.exe | 71EF0D56A705AE88BB5667148F464E92 | 110.50 KB | ||||||||||||||||
|
Классические проблемы Synchcfg.exe
Общие проблемы synchcfg.exe, возникающие с Netscape Directory Server:
- «Ошибка программы Synchcfg.exe. «
- «Ошибка программного обеспечения Win32: synchcfg.exe»
- «Synchcfg.exe столкнулся с проблемой и закроется. «
- «Не удается найти synchcfg.exe»
- «Synchcfg.exe не может быть найден. «
- «Ошибка запуска программы: synchcfg.exe.»
- «Synchcfg.exe не работает. «
- «Ошибка Synchcfg.exe. «
- «Ошибка пути программного обеспечения: synchcfg.exe. «
Проблемы Netscape Directory Server synchcfg.exe возникают при установке, во время работы программного обеспечения, связанного с synchcfg.exe, во время завершения работы или запуска или менее вероятно во время обновления операционной системы. Отслеживание того, когда и где возникает ошибка synchcfg.exe, является важной информацией при устранении проблемы.
Корень проблем Synchcfg.exe
Проблемы Synchcfg.exe могут быть отнесены к поврежденным или отсутствующим файлам, содержащим ошибки записям реестра, связанным с Synchcfg.exe, или к вирусам / вредоносному ПО.
Более конкретно, данные ошибки synchcfg.exe могут быть вызваны следующими причинами:
- Поврежденные ключи реестра Windows, связанные с synchcfg.exe / Netscape Directory Server.
- Вредоносные программы заразили synchcfg.exe, создавая повреждение.
- Другая программа злонамеренно или по ошибке удалила файлы, связанные с synchcfg.exe.
- Другое программное приложение, конфликтующее с synchcfg.exe.
- Неполный или поврежденный Netscape Directory Server (synchcfg.exe) из загрузки или установки.
I’m not sure that I am understanding the other posts related to this problem. I’ve created a .cfg file to disable automatic updates on a terminal server for my users. I’ve also creates a .js file to process the .cfg file, when I try to open Firefox i get a pop up message saying:
Netscape.cfg/AutoConfig failed. Please contact your system administrator.
Error: lockPref failed: [Exception... "Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIPrefBranch.prefIsLocked]" nsresult: "0x80070057 (NS_ERROR_ILLEGAL_VALUE)" location: "JS frame :: prefcalls.js :: lockPref :: line 71" data: no]
I saw a fix that involved commenting out a command in the cfg file, but I didn’t find that command in my file. If i click «Ok» the pop up closes and firefox opens correctly and updating is disabled like I want. This isn’t game breaking, but my users tend to «freak out» when they see a pop up message they don’t understand.
Any Idea on how to make this message go away?
CFG File text is:
defaultPref(); // set new default value
pref(); // set pref, but allow changes in current session
lockPref(); // lock pref, disallow changes
lockPref(«app.update.enabled», false);
.js file text is:
pref(«general.config.filename», «mozilla.cfg»);
pref(«general.config.obscure_value», 0); // use this to disable the byte-shift
I’m not sure that I am understanding the other posts related to this problem. I’ve created a .cfg file to disable automatic updates on a terminal server for my users. I’ve also creates a .js file to process the .cfg file, when I try to open Firefox i get a pop up message saying:
Netscape.cfg/AutoConfig failed. Please contact your system administrator.
Error: lockPref failed: [Exception… «Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIPrefBranch.prefIsLocked]» nsresult: «0x80070057 (NS_ERROR_ILLEGAL_VALUE)» location: «JS frame :: prefcalls.js :: lockPref :: line 71» data: no]
I saw a fix that involved commenting out a command in the cfg file, but I didn’t find that command in my file. If i click «Ok» the pop up closes and firefox opens correctly and updating is disabled like I want. This isn’t game breaking, but my users tend to «freak out» when they see a pop up message they don’t understand.
Any Idea on how to make this message go away?
CFG File text is:
defaultPref(); // set new default value
pref(); // set pref, but allow changes in current session
lockPref(); // lock pref, disallow changes
lockPref(«app.update.enabled», false);
.js file text is:
pref(«general.config.filename», «mozilla.cfg»);
pref(«general.config.obscure_value», 0); // use this to disable the byte-shift
Get Error:
Netscape.cfg/AutoConfig failed. Please contact your system administrator.
Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIPrefBranch.setBoolPref]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: prefcalls.js :: defaultPref :: line 58" data: no]
Netscape.cfg/AutoConfig failed. Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED)
I have the following setup:
Selenium Grid on CentOs 6.4
Slave Node = CentOs 6.4
Trying to run Firefox remotely via Watir-WebDriver
require "rubygems"
require "test/unit"
#require "selenium"
require "watir-webdriver"
caps = Selenium::WebDriver::Remote::Capabilities.firefox
#caps.version = "24"
caps[:name] = "Firefox 24 , port 5555"
default_profile = Selenium::WebDriver::Firefox::Profile.from_name "default"
default_profile.native_events = true
driver = Selenium::WebDriver.for(:firefox, :profile => default_profile)
@browser = Watir::Browser.new(
:remote,
:url => "http://vm-auto.his.vm:4444/wd/hub",
:desired_capabilities => caps)
@browser.goto "google.com"
@browser.text_field(:name => "q").set "3M"
@browser.button.click
@browser.div(:id => "resultStats").wait_until_present
@browser.screenshot.save ("GoogleSearch_FF24.png")
@browser.close
Firefox version is Mozilla Firefox 24.7.0
there is a reference to this error in https://bugzilla.mozilla.org/show_bug.cgi?id=717438
the resolution being suggested as:
In my case commenting out this pref in mozilla.cfg stops generating this message.
But I do not know origin of this pref.
//stops the request to send performance data from displaying
//pref("toolkit.telemetry.prompted", true);
But, i could not find mozilla.cfg on the filesystem where firefox is installed
Получить ошибку:
Netscape.cfg/AutoConfig failed. Please contact your system administrator.
Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIPrefBranch.setBoolPref]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: prefcalls.js :: defaultPref :: line 58" data: no]
Netscape.cfg/AutoConfig failed. Error: defaultPref failed: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED)
У меня есть следующая настройка:
Селеновая сетка на CentOs 6.4
Slave Node = CentOs 6.4
Попытка запуска Firefox удаленно через Watir-WebDriver
require "rubygems"
require "test/unit"
#require "selenium"
require "watir-webdriver"caps = Selenium::WebDriver::Remote::Capabilities.firefox
#caps.version = "24"
caps[:name] = "Firefox 24 , port 5555"default_profile = Selenium::WebDriver::Firefox::Profile.from_name "default"
default_profile.native_events = true
driver = Selenium::WebDriver.for(:firefox, :profile => default_profile)@browser = Watir::Browser.new(
:remote,
:url => "http://vm-auto.his.vm:4444/wd/hub",
:desired_capabilities => caps)
@browser.goto "google.com"
@browser.text_field(:name => "q").set "3M"
@browser.button.click
@browser.div(:id => "resultStats").wait_until_present
@browser.screenshot.save ("GoogleSearch_FF24.png")
@browser.close
Версия Firefox — Mozilla Firefox 24.7.0
есть ссылка на эту ошибку в https://bugzilla.mozilla.org/show_bug.cgi?id=717438
предлагаемая резолюция:
In my case commenting out this pref in mozilla.cfg stops generating this message.
But I do not know origin of this pref.
//stops the request to send performance data from displaying
//pref("toolkit.telemetry.prompted", true);
Но я не смог найти mozilla.cfg в файловой системе, где установлен firefox
User is on a Macbook OS 10.7.5 using FireFox 10.0.1 and when launching she gets this error: AutoConfig Alert
Netscape.cfg/AutoConfig failed. Error: pref failed: [Exception… «Component returned
Any assistance would be helpfull. Cheers
User is on a Macbook OS 10.7.5 using FireFox 10.0.1 and when launching she gets this error: AutoConfig Alert
Netscape.cfg/AutoConfig failed. Error: pref failed: [Exception… «Component returned
Any assistance would be helpfull. Cheers
Выбранное решение
Note that Firefox 10.0.1 is really old (there is a 10.0.2 release and a 10.0.12 ESR)
If she installed Firefox herself then check for the presence of a mozilla.cfg file (or netscape.cfg) in the Firefox installation folder. Otherwise you have to check this with the IT department or the people that provide support for this computer.
See also:
- http://kb.mozillazine.org/Locking_preferences
Прочитайте этот ответ в контексте
👍 0
Все ответы (2)
was autoconfig set up on purpose / is this in a controlled enterprise environment?
Выбранное решение
Note that Firefox 10.0.1 is really old (there is a 10.0.2 release and a 10.0.12 ESR)
If she installed Firefox herself then check for the presence of a mozilla.cfg file (or netscape.cfg) in the Firefox installation folder. Otherwise you have to check this with the IT department or the people that provide support for this computer.
See also:
- http://kb.mozillazine.org/Locking_preferences