3221225477 код ошибки как исправить

I’m not sure why but I can’t open a terminal in vscode. I’m running windows 10, and my version of vscode is 1.46. The error code is as follows

The terminal process terminated with exit code: 3221225477

Tamir Abutbul's user avatar

asked Jun 24, 2020 at 14:11

Saeed Shareef's user avatar

This is just for corner case.

Having same issue after deleting ~/.bash_profile on Windows 10. Working correctly after restore it.

# generated by Git for Windows
test -f ~/.profile && . ~/.profile
test -f ~/.bashrc && . ~/.bashrc

answered Oct 29, 2022 at 6:44

user14082's user avatar

user14082user14082

1812 silver badges9 bronze badges

I’m using PHP5, CodeIgniter and Apache. The localhost php pages were loading fine and then suddenly they started crashing Apache.

The web pages seem to get to different stages of loading when apache crashes.

The only interesting line in the Apache error log file says :

[notice] Parent: child process exited with status 3221225477 — Restarting.

There is a lot of discussion of this issue on the web but it seems there is no one solution, different people have described different solutions that worked for their system.

Suggestions Appreciated.

Arkaaito's user avatar

Arkaaito

7,2972 gold badges38 silver badges56 bronze badges

asked Jul 16, 2009 at 15:02

SamH's user avatar

3

This problem often happens in Windows because of smaller Apache’s default stack size. And it usually happens when working with php code that allocates a lot of stacks.

To solve this issue, add the following at the end of apache config file, httpd.conf

<IfModule mpm_winnt_module>
    ThreadStackSize 8888888
</IfModule>

AND restart apache.
i take this solution from this site.

answered Dec 24, 2015 at 12:35

Mostafa Rostami's user avatar

4

I found a solution that worked for me.

I copied the following two files from my PHP directory to the Win32 directory and the errors stopped : php5apache.dll, libmysql.dll.

So even though these files should have been found in the PHP directory under certain circumstances they needed to be in the system dir

answered Jul 17, 2009 at 2:55

SamH's user avatar

SamHSamH

1,2363 gold badges17 silver badges26 bronze badges

In my case it was the php extension APC (php_apc.dll, 3.1.10-5.4-vc9-x86, threadsafe), which caused the error.

I used XAMPP 1.8.2 with PHP 5.4.19 and Apache 2.4.4

Since it could be caused by another extension as well, it might be a good starting point to restore the original php.ini from the xampp distribution. If this one works well, try to change it line by line to your desired configuration (starting with the extension list).

answered Oct 17, 2013 at 18:17

SvenT's user avatar

SvenTSvenT

612 bronze badges

We are running two copies of Apache, each with their own version of PHP.

After searching for this error and trying different suggestions of copying files into the windows system32 folder, I finally found that the issue seems to be multiple copies of libmysql.dll found in the windows path.

After copying the libmysql.dll file into the apache bin folder we no longer have this problem.

answered Apr 28, 2010 at 13:03

Ron Meske's user avatar

I had the problem — and after checking my folders, I realized I did not have the php5apache.dll in my php directory. So I tried copying it from the Win32 folder — and it has improved matters considerably (I won’t hold my breath yet :))

answered Jul 26, 2011 at 19:19

Liz Rainey's user avatar

0

I just had this problem for a while, apache restarted in every 5-15 minutes. My server serves a lot of sites and a portal with a big traffic, I programmed that portal and I just figured it out that the get_browser() function gives a memory error sometimes (depends on the agent). I refreshed the browscap.ini, no effect, the restarting still happens but as far as I removed to use this function, the apache didn’t restart anymore.
I use PHP 5.2.6 with Apache 2.0.5x
I hope this helps for some other people too.

answered Oct 7, 2012 at 11:21

pylon's user avatar

pylonpylon

211 bronze badge

So my php directory did not have libmysql.dll in it this seems to have resolved the problem.

I also added this to the win32 directory and the apache bin directory

answered Jan 8, 2016 at 17:08

hanco ike's user avatar

hanco ikehanco ike

2852 silver badges14 bronze badges

I experienced tha same problem when I called

$link = mysql_connect('127.0.0.1', $user, $password);

from a PHPscript when running a clean install of WampServer (http://www.wampserver.com/en/)

I tried to copy DLLs, as suggested above, but I could not get it to work.

Finally I changed to UniformServer (http://www.uniformserver.com/) 5.6.16, and it worked as a charm.

Hope this post can save some time for somebody :-)

answered Dec 15, 2010 at 13:25

Mathias Larsson's user avatar

I tried above, but they all did not work.

After long investigation, it was ridiculously easy: in one of my ajax-files I had in the PHP-code the line

mysqlclose();

This was the problem.
Everything works fine now.

Just mentioning.
Maybe helping people cut their debugtime a bit.

answered Feb 3, 2011 at 3:12

Aiken's user avatar

AikenAiken

111 bronze badge

1

This is an openssl_public_encrypt() function in my case.

answered Nov 20, 2012 at 10:19

Aldekein's user avatar

AldekeinAldekein

3,4602 gold badges27 silver badges32 bronze badges

I had this same problem. Copying dll’s didn’t fix it. So I looked around some more and found this thread with the answer that worked for me. Why does my XAMPP Apache service keep restarting?

In my Nvidia control panel I didn’t see the FIrstPacket settings initially, so I uninstalled the Nvidia ForceWare Network Access Manager, then reinstalled it through the Nvidia drivers. After the restart the FirstPacket settings were visible and I made sure it was disabled, then everything worked.

Community's user avatar

answered Jul 20, 2013 at 18:23

AllanT's user avatar

AllanTAllanT

91314 silver badges23 bronze badges

It is a problem with a problematic mix of mysql DLLs. See here for a solution:
http://www.java-samples.com/showtutorial.php?tutorialid=1050

Copying dlls into system32 is not the best thing to do, so I suggest to install apache+php+mysql properly, rather than copy files into system32, because once the dlls are there — they will be loaded instead of newer version dlls, in a future update.

answered Aug 3, 2015 at 12:34

user3751454's user avatar

Copy file php5apache.dll from xamppphp to WindowsSystem32

Jazi's user avatar

Jazi

6,55413 gold badges58 silver badges91 bronze badges

answered Sep 8, 2015 at 5:31

Tuan Nguyen's user avatar

It looks like after some Windows update, this issue may appear if you have open_basedir set, as well. This was discovered by me in https://www.apachelounge.com/viewtopic.php?p=39993
For me commenting out open_basedir resolved the issue and sped up the site significantly.
I plan to look further into it and report it as bug, if applicable. Will update this answer with any news.

Reported as https://bugs.php.net/bug.php?id=80881

answered Mar 18, 2021 at 10:28

Simbiat's user avatar

SimbiatSimbiat

3042 silver badges12 bronze badges

I also encountered this problem when upgrading PHP from 8.0 to 8.1 on a Windows 11 Apache 2.4.49 installation from Apache Lounge. None of the other solutions resolved my issue; however I did get a hint from this thread on laracasts and on checking my PATH variable realised that it was still pointing at PHP8.0. Once I updated the PATH to point to PHP8.1 and rebooted the computer (simply restarting Apache did not help), the problem was resolved.

answered Aug 21, 2022 at 0:45

Nick's user avatar

NickNick

134k22 gold badges52 silver badges89 bronze badges

I’m using PHP5, CodeIgniter and Apache. The localhost php pages were loading fine and then suddenly they started crashing Apache.

The web pages seem to get to different stages of loading when apache crashes.

The only interesting line in the Apache error log file says :

[notice] Parent: child process exited with status 3221225477 — Restarting.

There is a lot of discussion of this issue on the web but it seems there is no one solution, different people have described different solutions that worked for their system.

Suggestions Appreciated.

Arkaaito's user avatar

Arkaaito

7,2972 gold badges38 silver badges56 bronze badges

asked Jul 16, 2009 at 15:02

SamH's user avatar

3

This problem often happens in Windows because of smaller Apache’s default stack size. And it usually happens when working with php code that allocates a lot of stacks.

To solve this issue, add the following at the end of apache config file, httpd.conf

<IfModule mpm_winnt_module>
    ThreadStackSize 8888888
</IfModule>

AND restart apache.
i take this solution from this site.

answered Dec 24, 2015 at 12:35

Mostafa Rostami's user avatar

4

I found a solution that worked for me.

I copied the following two files from my PHP directory to the Win32 directory and the errors stopped : php5apache.dll, libmysql.dll.

So even though these files should have been found in the PHP directory under certain circumstances they needed to be in the system dir

answered Jul 17, 2009 at 2:55

SamH's user avatar

SamHSamH

1,2363 gold badges17 silver badges26 bronze badges

In my case it was the php extension APC (php_apc.dll, 3.1.10-5.4-vc9-x86, threadsafe), which caused the error.

I used XAMPP 1.8.2 with PHP 5.4.19 and Apache 2.4.4

Since it could be caused by another extension as well, it might be a good starting point to restore the original php.ini from the xampp distribution. If this one works well, try to change it line by line to your desired configuration (starting with the extension list).

answered Oct 17, 2013 at 18:17

SvenT's user avatar

SvenTSvenT

612 bronze badges

We are running two copies of Apache, each with their own version of PHP.

After searching for this error and trying different suggestions of copying files into the windows system32 folder, I finally found that the issue seems to be multiple copies of libmysql.dll found in the windows path.

After copying the libmysql.dll file into the apache bin folder we no longer have this problem.

answered Apr 28, 2010 at 13:03

Ron Meske's user avatar

I had the problem — and after checking my folders, I realized I did not have the php5apache.dll in my php directory. So I tried copying it from the Win32 folder — and it has improved matters considerably (I won’t hold my breath yet :))

answered Jul 26, 2011 at 19:19

Liz Rainey's user avatar

0

I just had this problem for a while, apache restarted in every 5-15 minutes. My server serves a lot of sites and a portal with a big traffic, I programmed that portal and I just figured it out that the get_browser() function gives a memory error sometimes (depends on the agent). I refreshed the browscap.ini, no effect, the restarting still happens but as far as I removed to use this function, the apache didn’t restart anymore.
I use PHP 5.2.6 with Apache 2.0.5x
I hope this helps for some other people too.

answered Oct 7, 2012 at 11:21

pylon's user avatar

pylonpylon

211 bronze badge

So my php directory did not have libmysql.dll in it this seems to have resolved the problem.

I also added this to the win32 directory and the apache bin directory

answered Jan 8, 2016 at 17:08

hanco ike's user avatar

hanco ikehanco ike

2852 silver badges14 bronze badges

I experienced tha same problem when I called

$link = mysql_connect('127.0.0.1', $user, $password);

from a PHPscript when running a clean install of WampServer (http://www.wampserver.com/en/)

I tried to copy DLLs, as suggested above, but I could not get it to work.

Finally I changed to UniformServer (http://www.uniformserver.com/) 5.6.16, and it worked as a charm.

Hope this post can save some time for somebody :-)

answered Dec 15, 2010 at 13:25

Mathias Larsson's user avatar

I tried above, but they all did not work.

After long investigation, it was ridiculously easy: in one of my ajax-files I had in the PHP-code the line

mysqlclose();

This was the problem.
Everything works fine now.

Just mentioning.
Maybe helping people cut their debugtime a bit.

answered Feb 3, 2011 at 3:12

Aiken's user avatar

AikenAiken

111 bronze badge

1

This is an openssl_public_encrypt() function in my case.

answered Nov 20, 2012 at 10:19

Aldekein's user avatar

AldekeinAldekein

3,4602 gold badges27 silver badges32 bronze badges

I had this same problem. Copying dll’s didn’t fix it. So I looked around some more and found this thread with the answer that worked for me. Why does my XAMPP Apache service keep restarting?

In my Nvidia control panel I didn’t see the FIrstPacket settings initially, so I uninstalled the Nvidia ForceWare Network Access Manager, then reinstalled it through the Nvidia drivers. After the restart the FirstPacket settings were visible and I made sure it was disabled, then everything worked.

Community's user avatar

answered Jul 20, 2013 at 18:23

AllanT's user avatar

AllanTAllanT

91314 silver badges23 bronze badges

It is a problem with a problematic mix of mysql DLLs. See here for a solution:
http://www.java-samples.com/showtutorial.php?tutorialid=1050

Copying dlls into system32 is not the best thing to do, so I suggest to install apache+php+mysql properly, rather than copy files into system32, because once the dlls are there — they will be loaded instead of newer version dlls, in a future update.

answered Aug 3, 2015 at 12:34

user3751454's user avatar

Copy file php5apache.dll from xamppphp to WindowsSystem32

Jazi's user avatar

Jazi

6,55413 gold badges58 silver badges91 bronze badges

answered Sep 8, 2015 at 5:31

Tuan Nguyen's user avatar

It looks like after some Windows update, this issue may appear if you have open_basedir set, as well. This was discovered by me in https://www.apachelounge.com/viewtopic.php?p=39993
For me commenting out open_basedir resolved the issue and sped up the site significantly.
I plan to look further into it and report it as bug, if applicable. Will update this answer with any news.

Reported as https://bugs.php.net/bug.php?id=80881

answered Mar 18, 2021 at 10:28

Simbiat's user avatar

SimbiatSimbiat

3042 silver badges12 bronze badges

I also encountered this problem when upgrading PHP from 8.0 to 8.1 on a Windows 11 Apache 2.4.49 installation from Apache Lounge. None of the other solutions resolved my issue; however I did get a hint from this thread on laracasts and on checking my PATH variable realised that it was still pointing at PHP8.0. Once I updated the PATH to point to PHP8.1 and rebooted the computer (simply restarting Apache did not help), the problem was resolved.

answered Aug 21, 2022 at 0:45

Nick's user avatar

NickNick

134k22 gold badges52 silver badges89 bronze badges

При попытке установить программу на вашем компьютере с Windows, Если вы видите “ShellExecuteEx failed” в сопровождении различных кодов, то этот пост поможет вам.

Сопутствующие коды ошибок могут быть: 2, 5, 67, 255, 1155, 1460, 8235, 2147221003, и т.д. Эта ошибка обычно возникает, если установщик требует прав администратора, файл установки был поврежден или существует конфликт приложений.

ShellExecuteEx — это функция ОС, которая выполняет операцию над указанным файлом. Если операция завершится неудачно, вы получите эту ошибку.

  1. Запустите исполняемый файл от имени администратора
  2. Повторно загрузите или переустановите программу
  3. Запустить Средство Проверки Системных Файлов
  4. Сброс звуков по умолчанию.

Давайте подробно рассмотрим эти методы.

Попробуйте запустить приложение от имени администратора

Запуск приложений с правами администратора. Даже если приложение не удается запустить, попробуйте переустановить приложение с правами администратора. Просто щелкните правой кнопкой мыши на файле установщика и нажмите кнопку Запуск от имени администратора.

Запуск с правами администратора

Запуск с правами администратора

Загрузите установщик еще раз, а затем установите повторно

Иногда, когда вы загружаете любое приложение для установки, вы возможно столкнулись с ситуацией, когда программа установки не будет работать и приложение не будет установлено. Это может произойти из-за поврежденного или файла установщика.

Попробуйте загрузить то же самое с официального сайта приложения или любого доверенного источника. Также можно отключить антивирус на время установки и далее добавить приложение в исключения антивируса ( Внимание!!, вы должны быть уверены, что в этом файле нет вирусов или он из надежного источника)

Здесь вы можете приобрести ключ лицензии Windows 10 Pro 2020. Вы сразу же получаете ваш собственный уникальный ключ активации. После ввода лицензионного ключа вы начинаете использовать лицензионную операционную систему без ограничений, а также получать последующие пакеты обновлений, выпускаемые Microsoft.

Запустите сканирование SFC

Запуск сканирования SFC делается для замены потенциально поврежденных системных файлов. Таким образом, если ошибка возникает из-за поврежденного системного файла, то следующие шаги должны помочь вам исправить ошибку.

SFC scan не только находит проблемный системный файл, но и исправляет его.

Нажмите Клавишу Win + X . Откроется меню быстрого доступа.
Нажмите на Windows PowerShell (администратор) . Если вместо PowerShell отображается Командная строка, выберите пункт Командная строка (администратор) .

Windows PowerShell c правами администратора

Windows PowerShell c правами администратора

Выполните команду: sfc /scannow
Подождите несколько секунд, так как требуется время для завершения сканирования.
Если проблема в этом, то ошибка должна быть решена.

сканирование SFC.jpg

сканирование SFC.jpg

Но если есть действительно большая проблема, то вы можете столкнуться с сообщением, говорящим: «Windows Resource Protection нашел поврежденные файлы, но не смог исправить».

Вам просто нужно перезагрузить машину в безопасном режиме и снова запустить вышеуказанную команду.

Сброс системных звуков по умолчанию

Вы можете подумать, что как сброс системного звука по умолчанию может решить системную ошибку, такую как “ShellExecuteEx”? Но некоторые пользователи сообщили, как этот шаг решил их проблему.

Откройте диалоговое окно Выполнить, нажав клавишу Win + R.

И введите mmsys.cpl нажмите Enter.

Нажмите на вкладку Звуки. Выберите «По умолчанию» в звуковой схеме.

Нажмите на кнопку Применить, а затем на кнопку ОК.

Сброс системных звуков Windows 10

Сброс системных звуков Windows 10

Вопрос:

Моя следующая настройка – Xampp 1.7.7, и вот информация для всего, что в этом пакете:
– Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1

Я запускаю сервер на 32-битной ОС Windows XP SP3, 4 гигабайта RAM, Quad Core.

В моем файле журнала ошибок apache возникает проблема:

[Tue Apr 24 15:55:55 2012] [notice] Parent: child process exited with status 3221225477 -- Restarting.
[Tue Apr 24 15:55:57 2012] [notice] Digest: generating secret for digest authentication ...
[Tue Apr 24 15:55:57 2012] [notice] Digest: done
[Tue Apr 24 15:55:59 2012] [notice] Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
[Tue Apr 24 15:55:59 2012] [notice] Server built: Sep 10 2011 11:34:11
[Tue Apr 24 15:55:59 2012] [notice] Parent: Created child process 776
[Tue Apr 24 15:56:00 2012] [notice] Disabled use of AcceptEx() WinSock2 API
[Tue Apr 24 15:56:01 2012] [notice] Digest: generating secret for digest authentication ...
[Tue Apr 24 15:56:01 2012] [notice] Digest: done
[Tue Apr 24 15:56:02 2012] [notice] Child 776: Child process is running
[Tue Apr 24 15:56:02 2012] [notice] Child 776: Acquired the start mutex.
[Tue Apr 24 15:56:02 2012] [notice] Child 776: Starting 350 worker threads.
[Tue Apr 24 15:56:02 2012] [notice] Child 776: Listening on port 443.
[Tue Apr 24 15:56:02 2012] [notice] Child 776: Listening on port 80.

Кажется, что это происходит спорадически в течение дня, и я даже попытался использовать Win32DisableEx, EnableIMAP Off и EnableSendFile Off в файле apache conf. Я также попытался скопировать файл libmysql.dll в папки system32 и apache/bin без возможности.

Если кто-то знает другие причины этой ошибки для дочернего процесса, выходящего и приводящего к сбою апаша, информация была бы весьма признательна. Если необходимы дополнительные файлы журналов, пожалуйста, дайте мне знать.

Tks,
Шейн.

Лучший ответ:

Код ошибки 3221225477 равен 0xC0000005 в шестнадцатеричном формате, который в Windows:

#define STATUS_ACCESS_VIOLATION  ((NTSTATUS)0xC0000005L)

Нарушение прав доступа – это версия Windows “ошибка сегментации”, которая просто означает, что программа пыталась получить доступ к памяти, которая не выделена. Это может произойти по разным причинам, но главным образом (если не всегда) является ошибкой в ​​программе.

Теперь, я предполагаю, что в вашей ситуации есть либо ошибка в PHP, либо в одном из PHP-расширений или в Perl или в каком-то приложении Perl. Сам Apache обычно очень стабилен, но если вы используете какое-то необычное расширение, это тоже может быть причиной.

Я бы предложил обновить всю вашу конфигурацию до последних версий. Если вы хотите найти источник проблемы, запустите Apache внутри отладчика, например Visual Studio или OllyDbg. Когда произойдет исключение (нарушение прав доступа), оно прекратит выполнение (вместо перезапуска), и вы увидите, в каком модуле он находится.

Также загляните в журнал доступа, если есть подозрительный запрос с той же меткой времени, что и ошибка. Но может случиться так, что авария произойдет до того, как запрос будет сохранен в файле журнала.

When you scan a number, you need to pass the address of the variable where you want to store the result:

fscanf(fp,"%d",&i);

where you have

fscanf(fp,"%d",i);
               ^  missing the & sign!

Your compiler really ought to have warned you — do you enable warnings when you compile?

What is happening here is that the fscanf function writes to the location given (in your case, it writes to whatever location is pointed to by the value of i, instead of writing to the location of i) . This can corrupt your memory in all kinds of nasty ways — resulting, in your case, in the program «running» for considerable time before crashing.

As @Brandin pointed out, there is a further problem with your code (although it’s less likely to be the source of your problem). When you attempt to open a file, you should ALWAYS check that you succeeded. You do this with something like this:

#include <assert.h>
// at the top of the program


// attempt to open the file:
fp = fopen("keimeno.txt","r");
// and check whether you succeeded:
assert(fp != NULL); // this says "check fp is not NULL. Otherwise, quit."

Alternatively, you can make things a bit prettier with:

const char *fileName = "keimeno.txt";
const char *mode = "r";
if((fp=fopen(fileName, mode))==NULL) {
  printf("cannot open file %sn", fileName);
  return -1;
}

It is almost always a good idea to put «hard wired values» near the start of your program, rather than embedding them in a function call.

#1

holodok

    Newbie

  • Members
  • 2 Сообщений:

Отправлено 05 Январь 2012 — 20:14

Здравствуйте, хочу проконсультироваться о сообщении в утилите DrWebCureIt!
При попытке запустить утилиту DrWebCureIt! ее работа сразу останавливается и выдается сообщение о наличии вируса RC=3221225477. Сообщается, что вирус находится в папке карантина утилиты. Далее из утилиты можно только выйти. Перезапустить или изменить ее настройки нельзя. То же самое и в безопасном режиме. Папка карантина пуста.
Почитав в интернете и здесь на форуме темы повещенные RC=3221225477 не понимаю это сбой или вирус.
Использую файервол Комодо, антивирус Аваст и раз в неделю утилиту DrWebCureIt! Это связка используется несколько лет. Проблем не было.
Например вот тут говорится, что это сбой:
http://forum.drweb.c…77&fromsearch=1
а вот тут описывается метод лечения:
http://www.adminplanet.ru/t4286.html
Логи не выкладываю так как прошу только ответить на вопрос RC=3221225477 это вирус или сбой в работе программ. И где можно прочитать о лечении если это вирус.
Заранее спасибо.

  • Наверх


#2


Aleksandra

Aleksandra

    VIP

  • Helpers
  • 3 529 Сообщений:

Отправлено 05 Январь 2012 — 21:37

а вот тут описывается метод лечения:
http://www.adminplanet.ru/t4286.html

Кроме убиения легитимных файлов скриптами AVZ и использования третьесортных утилит типа MBAM я ничего в этой теме не увидела.

13.00.0 (04-04-2022 05:00:00) / Linux 5.10.0-18-amd64 x86_64; Debian GNU/Linux 11.5; glibc 2.31 / PostgreSQL 13.8

  • Наверх


#3


Dmitry Shutov

Dmitry Shutov

    Poster

  • Virus Hunters
  • 1 656 Сообщений:

Отправлено 05 Январь 2012 — 22:11

Здравствуйте, хочу проконсультироваться о сообщении в утилите DrWebCureIt!
При попытке запустить утилиту DrWebCureIt! ее работа сразу останавливается и выдается сообщение о наличии вируса RC=3221225477. Сообщается, что вирус находится в папке карантина утилиты. Далее из утилиты можно только выйти. Перезапустить или изменить ее настройки нельзя. То же самое и в безопасном режиме. Папка карантина пуста.
Почитав в интернете и здесь на форуме темы повещенные RC=3221225477 не понимаю это сбой или вирус.
Использую файервол Комодо, антивирус Аваст и раз в неделю утилиту DrWebCureIt! Это связка используется несколько лет. Проблем не было.
Например вот тут говорится, что это сбой:
http://forum.drweb.c…77&fromsearch=1
а вот тут описывается метод лечения:
http://www.adminplanet.ru/t4286.html
Логи не выкладываю так как прошу только ответить на вопрос RC=3221225477 это вирус или сбой в работе программ. И где можно прочитать о лечении если это вирус.
Заранее спасибо.

Это не вирус, об этом уже писали, при сканировании Кюритом, отключайте все щиты Аваста, Аваст стал блокировать Кюрит, все вопросы к разработчикам Аваста.

  • Наверх


#4


holodok

holodok

    Newbie

  • Members
  • 2 Сообщений:

Отправлено 06 Январь 2012 — 14:06

Это не вирус, об этом уже писали, при сканировании Кюритом, отключайте все щиты Аваста, Аваст стал блокировать Кюрит, все вопросы к разработчикам Аваста.

Спасибо за ответ.

  • Наверх


Issue Type: Bug

This occurs on my Node.js project as backend API. I’ve observed the pattern as:

  1. whenever it’s run as «Disable all breakpoints» or no breakpoints at all.
  2. then «Disable all breakpoints», «Enable all breakpoints» will run ok.

This is related to this «Unbound breakpoints»:
https://stackoverflow.com/questions/64589447/unbound-breakpoint-vs-code-chrome-angular/68323650#68323650

On a side note for this SO issue, I’m also running Angular v11 UI project. The way I discovered this not-hitting-breakpoint issue is most of work is on UI, and sometimes the debug execution not hitting any breakpoint at all, yet no errors printed on console, nor terminal, but execution at browser was not going anywhere, like died in the middle without any error. Meanwhile, all standalone browsers Chrome and Edge are running fine meaning they reach the expected result, not kind of execution seems lost (not hanging). After applying all fixes mentioned in this SO except «devtoolModuleFilenameTemplate: ‘[absolute-resource-path]'», UI project hits breakpoint always! Did I have this issue before? My memory is not before mid-June.

Because my API project is much smaller, so sometimes I simply disabled breakpoints, then this «Process exited with code 3221225477» came up.

I tried to do «code —crash-reporter-directory » following https://github.com/microsoft/vscode/wiki/Native-Crash-Issues. New dump folder contains only metadata and settings.dat, «reports» folder is empty so no dump file is available for report.

Thank you!

VS Code version: Code 1.59.0 (379476f, 2021-08-04T23:13:12.822Z)
OS version: Windows_NT x64 10.0.19043
Restricted Mode: No

System Info

Item Value
CPUs Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz (8 x 1800)
GPU Status 2d_canvas: enabled
gpu_compositing: enabled
multiple_raster_threads: enabled_on
oop_rasterization: enabled
opengl: enabled_on
rasterization: enabled
skia_renderer: enabled_on
video_decode: enabled
vulkan: disabled_off
webgl: enabled
webgl2: enabled
Load (avg) undefined
Memory (System) 23.89GB (14.85GB free)
Process Argv —crash-reporter-directory C:UsersmeDocumentsCanDelVSCDump
Screen Reader no
VM 0%

Extensions (10)

Extension Author (truncated) Version
openssl-configuration-file gee 0.0.1
vscode-pull-request-github Git 0.29.0
regionfolder map 1.0.15
python ms- 2021.3.680753044
vscode-pylance ms- 2021.8.0
jupyter ms- 2021.3.684299474
cpptools ms- 1.5.1
debugger-for-chrome msj 4.12.12
debugger-for-edge msj 1.0.15
sonarlint-vscode Son 2.0.0

A/B Experiments

vsliv368cf:30146710
vsreu685:30147344
python383cf:30185419
pythonvspyt700cf:30270857
pythonvspyt602:30300191
vspor879:30202332
vspor708:30202333
vspor363:30204092
pythonvspyt639:30300192
pythontb:30283811
pythonptprofiler:30281270
vshan820:30294714
vstes263:30335439
pythondataviewer:30285071
pythonvsuse255:30340121
vscod805:30301674
pythonvspyt200:30340761
vscextlangct:30333562
binariesv615:30325510
vsccppwt:30329788
pythonvssor306:30344512
bridge0708:30335490
vstre464cf:30346473

  • 3183 ошибка sp flash tool
  • 318 ошибка климата пассат б5
  • 318 ошибка климата гольф 4
  • 3169 ошибка камаз евро 5
  • 3149 ошибка sp flash tool