My software recently got deployed to a customer who said that the application was crashing immediately after it started. After some initial debugging, the customer provided me remote access to one of the computers which was unable to run the application. I found that the crash wasn't specific to my [...] read more
We are running into issues with an old closed-source game engine failing to compile shaders when memory nears 2GB. The issue is usually with D3DXCreateEffect. Usually it returns HResult "out of memory", sometimes d3dx9_25.dll prints random errors in a popup, or it just outright segfault. I believe the issue is [...] read more
When I run my program (admittedly, it was built in debug mode), I get an error "External exception 80000003". According to Win32 Exception/Access Violation Errors it means 0x80000003 EXCEPTION_BREAKPOINT A breakpoint was encountered. However, there are no breakpoints set in the IDE and I am running it outside of the [...] read more
I'm developing a service using .NET on Windows platforms. It had worked until yesterday... but today it doesn't want to start!!! It seems strange, and I feel I'm missing something... I've also tried to revert sources to the last working version, but nothing else happens: net start outputs: > The [...] read more
I want to get into PAPI. I have Version 5.3.2.0 on Debian GNU/Linux. papi_avail just tells me that no hardware events are available: $ papi_avail Available events and hardware information. -------------------------------------------------------------------------------- PAPI Version : 5.3.2.0 Vendor string and code : GenuineIntel (1) Model string and code : Intel(R) Core(TM) i3-5010U [...] read more
Have been having issues with an x64 dotnet service crashing intermittently on an application server. The service can run for hours, days, or weeks with no issue, but then fall over with not much info. The service is run in a cluster (3 x service each server) across two servers [...] read more
Context: Firefox 50.0.2 64bit, C#, Visual Studio 2015, Windows Server 2012 R2, Azure, ClearScript.V8.5.4.7, Selenium.Mozilla.Firefox.Webdriver.0.6.0.1, Selenium.WebDriver.GeckoDriver.Win64.0.11.1 I'm using ClearScript to wrap the Selenium objects for use in JavaScript, viz static JScriptEngine JSengine = null; ... JSengine = new JScriptEngine(WindowsScriptEngineFlags.EnableDebugging | WindowsScriptEngineFlags.EnableJITDebugging); ... JSengine.AddHostType("CSFirefoxDriver", typeof(FirefoxDriver)); JSengine.AddHostType("CSFirefoxOptions", typeof(FirefoxOptions)); JSengine.AddHostType("CSFirefoxDriverService", typeof(FirefoxDriverService)); I instantiate [...] read more
After I did the Windows 10 Anniversary update 1607 (Dutch, so no Cortana), my search bar in start menu stopped working. When I click the start menu and start typing something, it either closes immediately or it freezes and stops the whole explorer.exe. If I manage to get some text [...] read more
I'm having a hard time getting any meaningful information from a crash dump I created with ProcDump, but I'm pretty sure it's relevant to a seemingly random crash I've been having. I have a VB6 application running on Windows 7 64-bit. Every once in a while, it crashes, leaving an [...] read more
I have a 4G wwan modem (Fibocom L850GL) with a valid SIM card on a Debian PC. I have modem-manager-gui and I can send SMS with it. modem manager gui help send SMS from linux with a GUI [https://i.stack.imgur.com/Rgfy6.png] How can I do the same from the command line? I [...] read more
I am trying to split my audio recording with android mediarecorder into multiple files, but whenever I set the next output file, I got an illegalstate exception. Here's the code: private void getMediaRecorderReady(String filePath, FileDescriptor nextFile) { bufferSize = 88200; recorder = new MediaRecorder(); recorder.setAudioSource(MediaRecorder.AudioSource.MIC); recorder.setOutputFormat(MediaRecorder.OutputFormat.AAC_ADTS); recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC); recorder.setAudioEncodingBitRate(64000); recorder.setAudioSamplingRate(44100); recorder.setAudioChannels(1); [...] read more
I have an ASP.NET Core application running on .NET Framework. I host it on IIS and everything works fine except the fact that sometimes it's being restarted. I read that there are many reasons why IIS can restart the application. I found that for an ASP.NET app I could've put [...] read more
I've got a Geforce GTX 660Ti It's been running fine for 5-6 weeks. Today I launched Left4Dead2 and got 7-8 FPS (usually a rock solid 300 even at the busiest moments). In case of driver/software issues, I reinstalled Steam, applied all outstanding windows updates, reinstalled the graphics driver (clean install) [...] read more
When you right click on your username in Windows 10, at least for me, the whole Start Menu suddenly closes (by either waiting around or moving your mouse around. you also can't click on anything) Why this is happening is beyond me. I know I could sign out using Windows [...] read more
I'm reversing an assembly function that I believe is converting an array of pixels (RGB) or photosites (RGGB) into a final array with an original (I think) encoding made of 10bits or 12bits per pixel. My goal is to understand in terms of c/c++ operations or natural language in the [...] read more
In Windows X86, the CPU brand can be queried with cpuid intrinsic function. Here is a sample of the code: #include <stdio.h> #include <intrin.h> int main(void) { int cpubrand[4 * 3]; __cpuid(&cpubrand[0], 0x80000002); __cpuid(&cpubrand[4], 0x80000003); __cpuid(&cpubrand[8], 0x80000004); char str[48]; memset(str, 0, sizeof str); memcpy(str, cpubrand, sizeof cpubrand); printf("%s\n", str); } [...] read more
I am printing some information about CPU in my OS using CPUID instruction. Reading and printing vendor string(GenuineIntel) works well, but reading brand string gives me little strange string. ok cpu-info <= Run command CPU Vendor name: GenuineIntel <= Vendor string is good CPU Brand: D: l(R) Core(TMD: CPU MD: [...] read more
Basically I've followed the instructions here http://sig9.com/bochs-grub to create a bare image file which does nothing but lets the BIOS start GRUB. The problems are: * The kernel I am writing will be 32-bit, using http://www.jamesmolloy.co.uk/tutorial_html/index.html for a start, but my host (physical) machine is x86_64 with bochs configured like [...] read more
MySQL 5.7.16 server on Windows Server 2012R2 with 32GB RAM is now restarting itself every 18minutes or so with the following in the error log: InnoDB: ###### Diagnostic info printed to the standard error stream 2017-11- 16T13:18:39.650036Z 0 [ERROR] [FATAL] InnoDB: Semaphore wait has lasted > 600 seconds. We intentionally [...] read more
We are using the latest version of CEF Sharp (63.0.3) in a WPF application. It works most of the time but at random we get the following error. Faulting application name: Control.exe, version: 2018.4.18108.2, time stamp: 0x5ad7717f Faulting module name: libcef.dll, version: 3.3239.1723.0, time stamp: 0x5a5407a4 Exception code: 0x80000003 Fault [...] read more
I am following brokenthorn OS development series, until now I am able sucessfully run bootloader stage1 but there is some issue with loading second stage bootloader from FAT12 floppy in bochs emulator on linux machine(ubuntu 16.04) (It works fine in virtual box though). Here is my stage1 boot loader: bits [...] read more
I have an uwp project testing on Win 10 iot core with raspberry pi 3. I do remote debugging on device. After a while the application crashes and only i can see in debug is that error.'The program .. has exited with code -2147483645 (0x80000003).' how can i see more [...] read more
I've been asked to explore a dump file (no source files given) using windbg and to extract some information from it: * determine what is the issue (hang/crash) * what module causes the hang. * What is the root cause of the hang/crash. * Enumerate all company modules injected to [...] read more
THE PROBLEM I have been using Windows 8 for a few months now, and today my taskbar has been crashing every few seconds. The taskbar will lose all its icons, then they will all reappear in a few seconds. File Explorer also crashes, however all my programs remain intact. I've [...] read more
I have a strange issue with a Kodak printer that is set up on an Small Business 2008 server, and shared out. The printer prints fine from all Windows XP stations, but won't print from the only Windows 7 32bit (there are no 64bit stations onsite) station that they have [...] read more
My Windows 7 desktop PC, built by me, started acting very weird in the last couple of days. I use it quite often, about half of the time through TeamViewer. Explorer would crash and restart randomly, almost always through TeamViewer. This made me suspect that TeamViewer was the problem but [...] read more
My computer (Dell Precision T7400) keeps crashing. Usually the screen and input devices freezes, but I've also gotten a bluescreen: Problemsignatur: Problemhändelsens namn: BlueScreen OS-version: 6.0.6001.2.1.0.256.6 Språkvariant-ID: 1053 Ytterligare information om problemet: BCCode: 1000007e BCP1: FFFFFFFFC0000005 BCP2: FFFFF800021C9B81 BCP3: FFFFFA6001DDB798 BCP4: FFFFFA6001DDB170 OS Version: 6_0_6001 Service Pack: 1_0 Product: 256_1 [...] read more
I have a Windows Forms Application written on C# and it targets .net framework 4.8. I run this application on Windows 7 x86 on the customer's PC. My application works fine but time to time I have a mystic problem with its launch. Sometimes my application just refuse to start [...] read more
After searching a lot for the error, could not found a solution. I am getting the below error when trying to start Mysql in Xampp > 2019-01-30 8:24:11 6428 [ERROR] InnoDB: File (unknown): 'read' returned OS > error 223. Cannot continue operation 190130 8:24:11 [ERROR] mysqld got > exception 0x80000003 [...] read more
I got the full dump using this command when the process doesn't respond and doesn't work. > procdump.exe -ma [PID] Also, I tried to find the reason why this process showed strange behavior using WinDBG. But I'm just a WinDBG beginner, so I didn't get any hint from the FULL [...] read more
I am not a ClearCase newbie, I already did setup some CC-Servers in very well organized networks managed by LDAP. But this time it is a bit different in a non-LDAP managed network… I am facing a real strange checkout issue and I am stuck… To mention it directly at [...] read more
How to reproduce: * Make a new empty hololens project with a cube in the middle. * Deploy it on the hololens and check that it works. I use "Debug/x86/Remote Machine" as configuration. * Create a new script and add an empty method called OnMouseDown() > void OnMouseDown() > { [...] read more
I have been writing a kernel for the Raspberry Pi 2 using C. To do so I have been following the Valvers and Baking Pi (written in Assembly) tutorials to do so. But each time I try to port the function to set a pin to output from the Baking [...] read more
I recently upgraded my unity 3d app from unity version 5.6.0 to 5.6.1 and holotoolkit-unity from 1.5.6 to 1.5.7. Now, whenever I build the app and attempt to deploy it to the device via Visual Studio 2017, I get the following error: 'LabanotationAR.exe' (CoreCLR: DefaultDomain): Loaded 'c:\data\Programs\WindowsApps\Microsoft.NET.CoreRuntime.2.1_1.1.25129.1_x86__8wekyb3d8bbwe\System.Private.CoreLib.ni.dll'. Skipped loading symbols. [...] read more
I'm developing on my laptop with wamp and mysql is running fine from weeks. Today after 60 seconds after boot mysql crashes I and find the following error inside the log: 2016-03-17T20:34:37.662021Z 0 [ERROR] InnoDB: Cannot allocate 4294956804 bytes of memory after 60 retries over 60 seconds. OS error: Not [...] read more
I have crash dumps that have WerpReportFault() in their stack and they really don't look the way I expect them to. MY EXPECTATION If have seen WerpReportFault()along with 0x80000003 breakpoints and I was able to use WinDbg to re-dump with different exception pointers, taken from the second argument passed to [...] read more
I Have a windows 2008 R2 Ent Server. I installed a Microsoft iSCSI Target 3.3 configured and everything was fine until one reboot. The iSCSI Service will not start. You Can reproduct the error: 1 Install Windows Server 2008 R2 Ent. (64bit) 2 Run Windows Update 3 Run DCPROMO and [...] read more
I ran into a problem while installing our Exchange 2010 server where client access authentication does not work unless the server is configured as a domain controller with global catalogue. I went to production with this because of time constraints but I really need to fix it now. I have [...] read more
I have a user on windows 10 that is having windows explorer crash at seemingly random times. It does not look like it always shows up in the EventLog but here are two times I have seen it: Faulting application name: explorer.exe, version: 10.0.14393.479, time stamp: 0x58258a90 Faulting module name: [...] read more
For the past two years I've been having problems with ATI drivers on Win7. From what I can gather, it's caused by ATI drivers. I have AMD Radeon Sapphire HD 7750 Ultimate Edition 128-bit 1GB DDR5 graphic card. I've been getting BSODs a few times a month for the past [...] read more
I created a winform application in VS express 2013 for windows Desktop and sql server 2012, everything runs beautifully and as expected both in debug and release modes but when i try to run the exe out of the visual studio (by clicking on .exe) it crashes and i found [...] read more
I'm using Ubuntu 20.10 and I am relatively new to Linux so I would like to kindly ask you to tell me if there is any info needed. I am trying to install Ableton Live 10 in Ubuntu but I get this when I try to wine program_name.exe wine Ableton\ [...] read more
What is my next step to track down my app crash? I have a c# winforms app which seems to randomly close without warning. I have run a dump file though winDbg but it hasn't narrowed down my search. Here's what it has given me. 0:000> !analyze -v ******************************************************************************* * [...] read more
I created an extension for WinDbg using DbgEng, which records trace containing the state of the registers and stack for each executed instruction in user mode and in kernel mode. For step-tracing, I use breakpoints (I also tried sets the TRAP flag to threads context for which a trace is [...] read more
I'm getting physical and virtual address bits size with C by using CPUID command in windows. I can get the processor information this way, but I'm confused by getting the address bits. Looks like I should you the 80000008 instruction but I do this way, only 7-8 digits change continuously [...] read more
I'm building a small operating system and was using Qemu before which was working properly. Now I'm stuck on a Windows 10 machine and Qemu doesn't work well with GDB on this machine. I thought I'd try Bochs or Virtual box instead. The problem is that with both of these [...] read more
I have a 3D endless runner game built in Unity3D running on iOS, Android and Windows Phone. It works fine on Windows Phones with 1014MB memory and above, but under that it crashes as soon as it starts (see error message from Visual Studio at the bottom of this post). [...] read more
I have some software that I've helped modify. We took the application from 32 to MFC to 64 bit MFC. It's been a pretty big project, but we are having this one really strange issue. My installer works on all of our computers here, the application works and doesn't have [...] read more
I am using/learning the Windows Task Scheduler in win32 C++. I am attempting to retrieve a task object (for a task that exists) but it continually fails & returns the error COR_E_FILENOTFOUND 0x80070002 = The task does not exist What do you think is going wrong? I know this task [...] read more
I'm working on a Windows 10 Store application where I'm using Raygun.io (5.2.0). We released the app couple of times (latest in mid December) I see in Rayguns web interface the logs coming from previous versions. While testing the app now before publishing next version I found out that Raygun [...] read more
Our web application used the old Crystal Reports XI Rel 2 activeX to render the reports called from classic ASP. We would like now to have it run alongside the new Crystal Reports 13 run time to render reports called from ASP.NET. We installed the exe found in http://scn.sap.com/docs/DOC-7824 (support [...] read more
Mysqld.exe has stopped working in xampp windows. I started my computer while the XAMPP software was running in the background, MySQL will not start! > 2017-11-20 11:05:36 14f4 InnoDB: Warning: Using > innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in > future releases, together with the option innodb_use_sys_malloc and [...] read more
I have a BSOD 0x8E every day on five devices in same times on Windows 7. Allways exception code - 04 - STATUS_SINGLE_STEP as example: 1: kd> !analyze -v ******************************************************************************* * * * Bugcheck Analysis * * * ******************************************************************************* KERNEL_MODE_EXCEPTION_NOT_HANDLED_M (1000008e) This is a very common bugcheck. Usually the exception [...] read more
I got the memory dump from another PC. It is also an x64 machine, but the different version of Windows. It is a dump of usual app work. I took it to make sure that I have all required analyzing next dump (next dump will be with problem inside) At [...] read more
I have got executable module iCoreTest.exe, wich dynamicly loaded library IRTest.rs. I want to debug it via lldb c++ api. When I create "iCoreTest.exe" process under lldb throug lldb::SBTarget::Launch(..); everything works fine. With fine, I mean I can set breakpoints BreakpointCreateByLocation and when the debugger stops on it get the [...] read more
I hope someone can help me with this problem I'm having (I'm a newbie to Mysql and Stackoverflow, so it's probably something silly I'm missing)... Whenever I build a large table in MySQL and then restart xampp's local MySQL server, the table then becomes unreadable under code runs that consider [...] read more
basic network [https://i.stack.imgur.com/ibFOc.gif] I receive a default route via iBGP from R1. On both R2 and R3 I have default-information originate configured. On R4 I only see one default route in the OSPF database; either to R2 or R3. When I shutdown one of the links from R2 / R3 [...] read more
We have several websites configured on our windows server 2012 and we noticed that one site seems crashing intermittently and the only way to get back this online is to restart that particular site and for some reason recycle application pool seems not helping the site to come online. Can [...] read more
PC Specs: * Ryzen 5 5600x * 16gb Trident Z Neo @ 3600mhz * B550 Aorus Pro AC Wireless (Bios Version 13h) * EVGA - SUPER XC ULTRA GAMING NVIDIA GeForce RTX 2070 Super 8GB GDDR6 * 700w EVGA PSU I've been trying to get DX12 games to run for [...] read more
I get bsod at least once a day on my new PC while gaming and i ran a mini dump and it says system thread exception not handled. I don't know exactly whats causing this to happen. I've tried a lot of things but nothing seems to fix it. this [...] read more
I have run into a dead end here. I am trying to install an Intel AX200 WIFI + Bluetooth network card onto my desktop PC. I connected it to a PCIe port that had more slots than needed but I read that this should be fine. Additionally, a cable from [...] read more
Preamble: I would assume that this is just a bug, but I've been having some mysterious problems with this machine, so this question is (partly) an attempt to rule out hardware as a likely cause. I've been having problems with a particular application (Elder Scrolls Online) that I haven't had [...] read more
Blue screen crash upon startup. Can someone help? Dell XPS 15 Windows 7 Ultimate, Service pack 1 Here is the debug information: Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64 Copyright (c) Microsoft Corporation. All rights reserved. Loading Dump File [C:\Windows\Minidump\112115-25131-01.dmp] Mini Kernel Dump File: Only registers and stack trace are [...] read more
My Windows Vista x64 is crashing every once in a while. Can somebody tell me what is wrong according to this crashdump? Microsoft (R) Windows Debugger Version 6.11.0001.404 X86 Copyright (c) Microsoft Corporation. All rights reserved. Loading Dump File [C:\Windows\Minidump\Mini102109-01.dmp] Mini Kernel Dump File: Only registers and stack trace are [...] read more
I have some troubles with solving of the problem and i dont know what to do here. Everytime when i compile this code i get the same error : "job aborted: [ranks] message [0] process exited without calling finalize [1-5] terminated ---- error analysis ----- [0] on USER-PC Philosophers.exe ended [...] read more
My MySQL Xampp is suddenly not working. The past few days it is working fine but now it suddenly stops when I start. The error in logs looks like this: 2020-09-07 17:19:15 0x4818 InnoDB: Assertion failure in file D:\winx64-packages\build\src\storage\innobase\include\ut0new.h line 248 InnoDB: Failing assertion: ptr != NULL InnoDB: We intentionally [...] read more
Since i'm not to sure what to do other then what i've seen on here and stackoverflow but i'm getting this error when i startup MySql in WampServer: Semaphore wait has lasted > 600 seconds error. I've tried lowering and raising the values of these variables and this is what [...] read more
I run a stock trading bot, but Maria DB keeps dying. Even if I look at the error log, I do not know the cause. Please Help. > 2021-02-20 15:10:46 0 [Note] InnoDB: innodb_page_size=32768 InnoDB: using > atomic writes. 2021-02-20 15:10:46 0 [Note] InnoDB: Uses event mutexes > 2021-02-20 15:10:46 [...] read more
Kernel is 5.8, wifi driver is the intel iwlwifi version for ax200 requiring a kernel of at least 5.1 and the wifi card appears in lspci -k but nothing I've tried is working as I can't find any documentation from intel surrounding this or any other thread someone has asked, [...] read more
so I'm trying to save an image via this code: SaveFileDialog saveFileDialogThing = new SaveFileDialog(); Bitmap test = new Bitmap(5, 5); //Do some image edit thingies try { if(saveFileDialogThing.ShowDialog() == DialogResult.OK){ test.Save(saveFileDialogThing.FileName); } } catch (Exception ex) { Console.WriteLine(ex.ToString()); } When running in Debug configuration, everything works as intended. However, [...] read more
In my .net project, we would like to embed a web browser and be able to read the header responses that are returned when we navigate to a remote website. I was able to do that using CefSharp but since it does not support .Net Core t is off the [...] read more
I have G413 Logitech mechanical keyboard, and G300 Logitech gaming mouse, each plugged in at 2 different usb ports on the laptop base. I found both external usb devices connection to the laptop was not stable. Plugging back in or restarting computer sometimes work and sometimes not. I have also [...] read more
I use the below command to generate an object file, but the corresponding "cpusubtype" is incompatible with the current system, what I suppose to have is "0x3", but the actual what I have is "0x80000003", how do I resolve this problem? gobjcopy -I binary -O mach-o-x86-64 -B i386:x86-64 test test.o [...] read more
I am currently learning how debuggers function and I am trying to program one myself following the book 'Gray Hat Python' by Justin Seitz. I am quite new to python and using the Windows API so any help is appreciated. I am using python 2.7 and Windows 10 64bit (in [...] read more
I had MySQL Workbench installed, I was trying to make a script and open .sql files of database I got sent over (I am a noob practising), later on I realised my local server was off, I tried win + R and running on services.msc but it shuts itself down [...] read more
i am facing the following error recently. Mysql was hosted by XAMPP in local, and recently getting repetitively Error. 2020-04-28 7:28:12 260 [Warning] InnoDB: Retry attempts for reading partial data failed. 2020-04-28 7:28:12 260 [ERROR] InnoDB: Tried to read 16384 bytes at offset 49152, but was only able to read [...] read more
I'm working on a C++ project on Windows 10, its been noticed that over time the Handles associated with the process increases and continues to grow. Searching online for a reason I'm not sure if this means that the process has a memory leak or if this is normal. When [...] read more
I'm trying to build the example project from VS 2019: enter image description here [https://i.stack.imgur.com/ejECI.jpg] Then I enabled testsigning and try to load it in Windows 2008 R2, the Virtual Machine immediately crashed. When I loaded MEMORY.DMP in WinDBG: EXCEPTION_CODE: (NTSTATUS) 0x80000003 (2147483651) - { FAULTING_IP: test!__security_init_cookie+2d fffff880`0d16d119 cc int [...] read more
I created a new windows user using C# and I would like to restrict list of apps to run through setting registry using C#. But the user profile and its registry is not initialized yet, since the user has never login, it will not have registry hive loaded and I [...] read more
We are working on a project for the Hololens and for some reason, when running it crashes on the hololens but not in the simulation. We have tried all the simple fixes (rebooting, closing, deleting camera, setting the size) and all have failed. We get the following error: (Filename: C:\buildslave\unity\build\artifacts/generated/Metro/runtime/DebugBindings.gen.cpp [...] read more
Some (~4 of many) of our customers have the problem that while trying to print some documents (pdfs) with our software that the application crashes without any exception. The problem occurs only on windows and I can't find any coherences. All in all it's a very curious bug. Here is [...] read more
I am trying to debug Hello World KMDF driver from MSDN in Virtual Box. Symbols loads and everything looks fine. But when I am trying to debug the code the following happens: ----------------------------------------------------------------------- ----------------------------------------------------------------------- Starting New Debugger Session ----------------------------------------------------------------------- ----------------------------------------------------------------------- [debug session data] Break instruction exception - code 80000003 (first [...] read more
My application is running lots of WMI queries, which are done by opening a connection to root\cimv2, executing the query, and then closing that connection. Now it seems that the WmiPrvSE.exe process in going into a memory leak. A heap_stat.py memory leak investigation (heap_stat.py, as explained under this URL), shows [...] read more
I have a question regarding PAPI (Performance Application Programming Interface). I downloaded and installed PAPI library. Still not sure how to use it correctly and what additional things I need, to make it work. I am trying to use it in C. I have this simple program: int retval; retval [...] read more
I have a problem with MySql on Xampp. It crashes after has been launched. My SO is Windows 10 on a Macbook Pro with Bootcamp. The used port is 6528. The system establishes a connection (the left indicator became green) and after a moment crashes. 2019-01-18 10:44:30 a38 InnoDB: Warning: [...] read more
I'm trying to match each section of any Link State type from OSPF Database as shown in CLI_Output below using following regex in python: regex = r'\n\n(\s+\S+( \S+)?(.+?)\n\n)(\s+\S+( \S+)?)?' section = re.findall(regex,_original_result, re.M) But I get only (the 1st) one line after the heading line i.e. Router Link States (Area [...] read more
I have a C++ dll in 64-Bit, which contains a function that returns an LPStr. I would like to call this function in C#. The function declaration looks like this: __declspec(dllexport) LPSTR __stdcall function(int16_t error_code); In my C# code I have tried the following: [DllImport(@"<PathToInterface.dll>", EntryPoint = "function")] [return: MarshalAs(UnmanagedType.LPStr)] [...] read more
I followed this C# example and am able to query some registry values, but not all of them: How to obtain a registry value from a remote machine if I don't know its type? (C#) I can reliably get registry keys such as the CurrentVersion, the ProductName, etc. But when [...] read more
I've run into issues when deploying a scanning application that uses IBM FileNet/P8 components. On our normal dev and test environments, it starts without any issues. When we install on the client's environment, it fails at the startup splash screen. The event log shows a cryptic (to me) error: -------------------------------------------------------------------------------- [...] read more
I have recently started with web-development. I need a good server to run PHP and mySQL applications. The problem I am facing now is that mySQL keeps crashing whenever I open xampp. I have read most of the threads on StackOverflow and have also reconfigured the ports, deleted the ibdata1 [...] read more
So I've tried a lot of things and can't get my SQL to work (Apache is working) Here is the error log. All it does is show green in the control panel then just stops. 2018-04-14 14:42:34 37c InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in [...] read more
below is a log of mysql MYSQL shutdown frequent and i cant solve the problem image file logfile 2018-02-26T08:15:08.301271Z 591 [Warning] IP address '192.168.1.4' has been resolved to the host name '192.168.1.4', which resembles IPv4-address itself. 2018-02-26T08:15:08.395035Z 596 [Warning] IP address '192.168.1.4' has been resolved to the host name '192.168.1.4', [...] read more
Right now I am learning how to code HTML and PHP and use SQL. I am using XAMPP for mysql. Whenever I try to start mysql I always get an error. This is the error log. 2018-02-24 17:22:30 f04 InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed [...] read more
I have several databases: - curr - curr_add and many others on the same MariaDB instance. When I submit an sql to curr_add I get connection and the results. When I send the query to curr I get the error: MariaDB: ERROR 2013 (HY000): Lost connection to MySQL server during [...] read more
I am trying to use DES encryption/decryption on Google chrome. In my folder I have three files. 1. tripledes.js 2. mode-ecb.js 3. CryptoJS-DES.html The scripts in my html file is defined as follows :- <script type="text/javascript" src="tripledes.js"></script> <script type="text/javascript" src="mode-ecb.js"></script> and another script file which is :- function encryptByDES(message, key) [...] read more
everytime I try to backup or check all tables mysql server crashes on Windows server 2012, I am using XAMPP stack for my development environment. The database crypto has more then 1100+ tables in DB. I am including the logs below. > InnoDB: End of page dump 2017-09-24 13:58:35 7dc [...] read more
I am trying to merge to tables to a single one with the query INSERT IGNORE INTO table1 SELECT * FROM table2 When I run each time this query crashes mysql in Xampp. Both table1 and table 2 are very large contains more than 1 crore (ten million) records. Mysql [...] read more
good afternoon everybody I was trying to upgrade my GUI in c# by using the webBrowser component but it doesnt support everything and the file doesnt show as it should be so i tried using ChromiumWebBrowser which appeared to be a great solution but when i compiled the project it [...] read more
while getting data from from gmail and storing it in a databas. mysql database always crashes. here is the latest log from the latest crash 2017-07-28 15:50:10 3708 [Note] InnoDB: Using mutexes to ref count buffer pool pages 2017-07-28 15:50:10 3708 [Note] InnoDB: The InnoDB memory heap is disabled 2017-07-28 [...] read more
I just upgraded to Ubuntu 16.04 LTS. In my C++ applications I use the PAPI library, so I installed it from http://icl.utk.edu/papi/. However for some reason I can not run my applications anymore without having to type sudo in the beginning. Even just typing papi_avail on the terminal to see [...] read more
I'm not certain that this is the right venue for this question, but a programmer friend of mine said I should try this here. My company's main application is hosted on a terminal server running Windows Server 2008. Since last Thursday we have seen this server crash and reboot 3 [...] read more
I'm trying to run a python script that imports selenium (using firefox browser). I tried close().. but it's not working.. window remains the same after the script I want to close firefox window, so I use driver.quit() and it succeeded to close the window, but it gives me an error [...] read more
I'm trying to use a custom allocation function to control the amount of memory used by Lua, but for some reason I get a COMException while Lua is trying to free memory, saying that an argument is invalid (HRESULT: 0x80000003), if I let a script that creates and extends strings [...] read more
This is a follow up on XMS.NET hanging indefinitely on factory.CreateConnection("username", null); . As recommended in the comments, I installed the newest versions of MQ client and XMS.NET. The application stopped hanging, now it just terminates the process after a few seconds. There is no exception beingh thrown. The only [...] read more
For the most part, the function below works but in rare cases returns a null value: DWORD WinVerMinor() { OSVERSIONINFO osvi; ZeroMemory(&osvi, sizeof(OSVERSIONINFO)); osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&osvi); return osvi.dwMinorVersion; } Also cpustr below sometimes ends up being null. For example, from an executable app cpustr stores the correct string while [...] read more
I have some tests that use Geckodriver to run a test in Firefox. Today, Firefox updated to version 50 on my development machine. I saw this error: System.NotImplementedException : GET /session/ffffffff-ffff-ffff-ffff-ffffffffffff/element//attribute/ did not match a known command I updated to geckodriver-v0.11.1-win64 and selenium-dotnet-strongnamed-3.0.0 (for .NET 4.0), thinking maybe Selenium and [...] read more
I'm using MySQL 5.7.14 x64 on Windows Server 2008 R2 Sometimes (randomly times at day) mysql crashing with this stack trace 11:44:40 UTC - mysqld got exception 0x80000003 ; This could be because you hit a bug. It is also possible that this binary or one of the libraries it [...] read more
I need help and Guidance. I am using XAMPP local server. I tried to create a Full Text search index using below command: CREATE FULLTEXT INDEX corp_nz ON corp_news(content ASC, subject ASC); The table corp_news has around 91000 records with 7 columns. When I fire this query, in phpmyadmin, i [...] read more
I have XAMPP 5.6.15 for Windows which is running 10.1.9-MariaDB. I have a table, InnoDB, with large amount of records and size, 49888 records and 245 MiB size. The main of its size in a column contains text named tafText. Using PHPMyAdmin, I try to set fulltext search on that [...] read more
I am working on a project in Visual Studio Professional 2013, I have been working on this project previously on VS web 2015. A while ago VS stopped being able to run projects on all of my internet browsers including brand new or blank projects that I just created. Whenever [...] read more
I have a Windows Forms Application written on C# and it targets .net framework 4.8. This application uses Chromium Browser from CEF Sharp. Sometimes my application just refuse to start but when I open process explorer I see Browser.exe which holds 5MB of RAM. It seems that something is blocking [...] read more
I'm trying to Execute a binary from Memory ( Without touching disk ) Here is some code that i tried but it's failed with error. This is what i've tried: import( "fmt" "io/ioutil" "syscall" "time" "unsafe" ) const ( mfdCloexec = 0x0001 memfdCreate = 319 AbsPathOfExecutable = "Path\\To\\Executable\\File" NameOfExecutable = [...] read more
A pointer is passed to me from a C++ dll as followed: [DllImport("myfile.dll", EntryPoint = "LoadFile", SetLastError = true, CharSet = CharSet.None)] public static extern IntPtr dLoadFile(string x); IntPtr p = dLoadFile("myfile"); //Do things with p. Marshal.FreeHGlobal(p) //crash on this line with exception below. > System.Runtime.InteropServices.COMException: 'One or more arguments [...] read more
I am developing a website that runs selenium tests on Firefox, Chrome, IE... Although the tests pass perfectly on Chrome and IE, I have the problem that follows with Mozilla Firefox: error 0x80000003 [https://i.stack.imgur.com/1dCFi.png] This appears at the end of a run when the driver closes the firefox window. I [...] read more
My workflow: * check if server is pingable * find if they are domain connected or not and perform a task accordingly. if Operating system 2012 and/or R2 ,2016 or 2019 newer OSes then I will run Get-SmbServerConfiguration cmdlet. if machine is not a part of default domain then else [...] read more