Page 1 of 1

cpanel crash

PostPosted: 29. May 2013 01:16
by jmichae3
this is from event viewer:

Code: Select all
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
  <Provider Name="Application Error" />
  <EventID Qualifiers="0">1000</EventID>
  <Level>2</Level>
  <Task>100</Task>
  <Keywords>0x80000000000000</Keywords>
  <TimeCreated SystemTime="2013-04-08T03:56:12.000000000Z" />
  <EventRecordID>4397</EventRecordID>
  <Channel>Application</Channel>
  <Computer>Jim-Michaels-PC</Computer>
  <Security />
  </System>
 <EventData>
  <Data>xampp-control.exe</Data>
  <Data>3.1.0.0</Data>
  <Data>505b977e</Data>
  <Data>xampp-control.exe</Data>
  <Data>3.1.0.0</Data>
  <Data>505b977e</Data>
  <Data>c0000005</Data>
  <Data>001abefe</Data>
  <Data>1058</Data>
  <Data>01ce340b3827383b</Data>
  <Data>D:\xampp\xampp-control.exe</Data>
  <Data>D:\xampp\xampp-control.exe</Data>
  <Data>403df29b-a000-11e2-839e-dc85de2605ca</Data>
  </EventData>
  </Event>


don't know if this will help you debug or not.

Re: cpanel crash

PostPosted: 29. May 2013 21:50
by hackattack142
Hello,

Could you try grabbing the latest control panel (3.2.0) from the link in my signature.

If you encounter more crashes, post the entire control panel log window here.

Re: cpanel crash

PostPosted: 04. June 2013 08:04
by jmichae3
Code: Select all
Log Name:      Application
Source:        Application Error
Date:          6/4/2013 12:02:36 AM
Event ID:      1000
Task Category: (100)
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      Jim-Michaels-PC
Description:
Faulting application name: xampp-control.exe, version: 3.2.0.0, time stamp: 0x514f901f
Faulting module name: xampp-control.exe, version: 3.2.0.0, time stamp: 0x514f901f
Exception code: 0xc0000005
Fault offset: 0x001a9bfe
Faulting process id: 0x26d0
Faulting application start time: 0x01ce60f17bdfe32a
Faulting application path: D:\xampp\xampp-control.exe
Faulting module path: D:\xampp\xampp-control.exe
Report Id: bbfe77f2-cce4-11e2-ba4f-dc85de2605ca
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-06-04T07:02:36.000000000Z" />
    <EventRecordID>10090</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Jim-Michaels-PC</Computer>
    <Security />
  </System>
  <EventData>
    <Data>xampp-control.exe</Data>
    <Data>3.2.0.0</Data>
    <Data>514f901f</Data>
    <Data>xampp-control.exe</Data>
    <Data>3.2.0.0</Data>
    <Data>514f901f</Data>
    <Data>c0000005</Data>
    <Data>001a9bfe</Data>
    <Data>26d0</Data>
    <Data>01ce60f17bdfe32a</Data>
    <Data>D:\xampp\xampp-control.exe</Data>
    <Data>D:\xampp\xampp-control.exe</Data>
    <Data>bbfe77f2-cce4-11e2-ba4f-dc85de2605ca</Data>
  </EventData>
</Event>


test it before sending it out please. crashed on launch. no chance for any sort of log window. sorry. I have work I need to do so I was hoping for something stable. I am using 1.8.0 I think.

Re: cpanel crash

PostPosted: 04. June 2013 23:18
by hackattack142
Hello,

1. Did you run it with Admin privileges?
2. Do you have any log fragments in xampp-control.log? (newest entries will be at the bottom)

Could you try the latest development build:
https://www.dropbox.com/s/6uzktnh241pn2 ... g-321_7.7z

If you get an exception window, could you PM the contents to me and I would be happy to work with you to get it resolved.

Re: cpanel crash

PostPosted: 05. June 2013 06:52
by jmichae3
hackattack142 wrote:Hello,

1. Did you run it with Admin privileges?
2. Do you have any log fragments in xampp-control.log? (newest entries will be at the bottom)

Could you try the latest development build:
https://www.dropbox.com/s/6uzktnh241pn2 ... g-321_7.7z

If you get an exception window, could you PM the contents to me and I would be happy to work with you to get it resolved.


Code: Select all
12:02:32 AM  [main]     Initializing Control Panel
12:02:32 AM  [main]     Windows Version: Windows 7 Ultimate SP1 64-bit
12:02:32 AM  [main]     XAMPP Version: 1.8.1
12:02:32 AM  [main]     Control Panel Version: 3.2.0 3.1.0 [ Compiled: March 24th 2013 ]
12:02:32 AM  [main]     Running with Administrator rights - good!
12:02:32 AM  [main]     XAMPP Installation Directory: "d:\xampp\"
12:02:32 AM  [main]     Checking for prerequisites
12:02:34 AM  [main]     All prerequisites found
12:02:34 AM  [main]     Initializing Modules
12:02:34 AM  [Apache]   XAMPP Apache Service is already running on port 80
12:02:34 AM  [EXCEPTION]        Access violation at address 005CAC7B in module 'xampp-control.exe'. Read of address 00000024
12:02:34 AM  [main]     Deinitializing Modules
12:02:34 AM  [main]     Deinitializing Control Panel


best thing I can say to a C programmer is:
- check anything with pointers or arrays that it is not out of bounds (this might be the case with an access violation)
- or a pointer is trying to access memory not belonging to it,
- or someone forgot to allocate memory (oops).
- forgetting to free memory is another problem.
- so is freeing memory on a pointer and then trying to use it.
- calling a win32 api function with bad parameters (!)
- calling a win32 api function with parameters from an older copy of the MSDN (the API's data types DO change over time, including WinMain()) (!)

this looks pointer related or possibly Win32 API related.
think about these things when debugging code.

what is "PM" - postmark? postal mail?

Re: cpanel crash

PostPosted: 05. June 2013 21:53
by hackattack142
Hello,

I was referring to the forums Private Messages. I will send you one with more details.