This line:  KERN_INVALID_ADDRESS at 0x0000000000000030, is crashing my preferences panel.  What to do?

Hi Guys,
This string? or line of code is given on the crash report when i click on the desktop & screensaver under system preferences.  What can I do to correct this problem?
Thanks,
JA

Is there another User account on there you can login to to see if it's system wide or not?
Try this & post the output please...
http://www.etresoft.com/etrecheck

Similar Messages

  • Need help in understanding this line of code...

    Hi,
    I am trying to modify an existing code and I came across this line.
            dorminLabel111.setText("<HTML> <b>18. %(demonstration_problem1_char)% was asked to solve an equation, and %(demonstration_problem1_char)% came up with the following solution, which is incorrect:</b>");I dit not understand how %(demonstration_problem1_char)% is being used. What is it supposed to do? And how can i reference that value?

    JoachimSauer wrote:
    That notation has no inherent meaning in Java, so there's probably some other code that interprets that value later on. Or perhaps before, like some kind of pre-compiler or something related to the build process that replaces those just before compiling?

  • When I upgraded to FF 3.6, the line in the FF header with file, edit, view, etc is no longer visible. What do i need to do to display this line?

    When FF starts, the file, edit, etc line is not displayed. What do I need to do to display this line?
    Bill
    == This happened ==
    Every time Firefox opened
    == I upgraded to FF 3.6

    '''''"...the file, edit, etc line is not displayed"''''': That's the Menu Bar; see below.
    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(~~red:Linux & OSX see~~: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M then release the key
    <u>''Windows'' Method 2.</u> Tap once on the F10 key, while the Menu bar is visible, choose "View > Toolbars", click "Menu Bar" so that a check mark is placed next to Menu Bar
    <u>''Windows'' Method 3.</u> Tap once and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar so that a check mark is placed next to Menu Bar
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See:
    http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    http://kb.mozillazine.org/Toolbar_customization#Restoring_missing_menu_or_other_toolbars
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    '''[http://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar How to customize the toolbar]'''

  • The schedules for this line are incomplete

    Hi,
    I'm attempting to create a PO in the vision EBS 12.1.3 apps instance..Logged in as 'operations'. When I click on the 'Approve' button, I get the following error which I'm not sure what it means and where I should start to debug:
    The schedules for this line are incomplete. I thought I covered all the necessary fields...
    Any ideas?
    Thank you!

    Please see ((Pics) How to Capture Debug / Log / Trace Files During the Purchase Order / Requisition Approval Process? [ID 409155.1]) for the steps you need to follow to debug the issue.
    Thanks,
    Hussein

  • //remove this line if you want to edit the code by hand? um which line?

    Several of my pages are locking up and I don't know why. As I work through the code, I remembered that I altered some text in a SendEmail by directly altering the page rather than using the Server Behavior. Don't understand why that would matter but whatever...
    Now as I ponder if that is causing the problem, I ran across this commented line in the code:
    //remove this line if you want to edit the code by hand
    But are they talking about the line just after that line of //remove or do they mean the actual comment line of
    //remove this line if you want to edit the code by hand?
    Thanks for your help

    Trigger and $tNG look suspiciously like ADDT code to me. Ask the guys in the ADDT forum (http://forums.adobe.com/community/dreamweaver/addt). There are a couple of them in there who know the code intimately. I haven't touched ADDT for ages.

  • Cannot open in Dreamweaver, to edit maybe because of this line " ?php defined('SYSPATH') or die('No direct access allowed.');"

    Because of  this line "<?php defined('SYSPATH') or die('No direct access allowed.');" at the onset of my php script I can not open my site in dreamweaver. How do I define the "syspath" for dreamweaver so it can be opened?
    Please assist me if possible to open my site in dreamweaver. I contacted tech support who were unable to assist me and referred me to the forums. If anyone know how to resolve this please let me know. Thanks

    Now that I have found the "index.php" file and uploaded it to wamp/www, I am not quite sure how to proceed to successfully integrate it in my localserver files for use in dreamweaver.   For quick reference the syspath definition is:
    // Define the absolute paths for configured directories
    define('APPPATH', realpath($application).DIRECTORY_SEPARATOR);
    define('KOMODPATH', realpath($komodules).DIRECTORY_SEPARATOR);
    define('MODPATH', realpath($modules).DIRECTORY_SEPARATOR);
    define('COMMONPATH', realpath($common).DIRECTORY_SEPARATOR);
    define('SYSPATH', realpath($system).DIRECTORY_SEPARATOR);
    Please advise. Thank you.
    Below I have pasted the full "index.php" script.
    <?php
    * Debug variable used in Bootstrap, this will setup the Kohana::$environment =  Kohana::DEVELOPMENT;
    * Seted to TRUE:
    *  - disables the cache, 
    *  - enable the profiler in the bottom of the page
    *  - Enable logs for anything (false=only ERRORs)
    *  - Displays the full error stack instead of friendly page
    define('OC_DEBUG', FALSE);
    * Where the application for Open Classifieds is installed.
    $application = '/oc';
    * The directory in which your external modules are located.
    $modules = $application.'/modules';
    * The directory in which the Kohana resources are located. The system
    * directory must contain the classes/kohana.php file.
    * @see  http://kohanaframework.org/guide/about.install#system
    $system = $application.'/kohana/system';
    * The directory in which KO modules are located.
    * @see  http://kohanaframework.org/guide/about.install#modules
    $komodules = $application.'/kohana/modules';
    * The directory where common Open Classifieds files are
    * @see https://github.com/open-classifieds/common
    * @see https://github.com/open-classifieds/openclassifieds2/blob/master/CONTRIBUTING.md
    $common = $application.'/common';
    * The default extension of resource files. If you change this, all resources
    * must be renamed to use the new extension.
    * @see  http://kohanaframework.org/guide/about.install#ext
    define('EXT', '.php');
    * Set the PHP error reporting level. If you set this in php.ini, you remove this.
    * @see  http://php.net/error_reporting
    * When developing your application, it is highly recommended to enable notices
    * and strict warnings. Enable them by using: E_ALL | E_STRICT
    * In a production environment, it is safe to ignore notices and strict warnings.
    * Disable them by using: E_ALL ^ E_NOTICE
    * When using a legacy application with PHP >= 5.3, it is recommended to disable
    * deprecated notices. Disable with: E_ALL & ~E_DEPRECATED
    ini_set('display_errors', 'On');
    # Error reporting may look like this but E_ALL is only what we need
    error_reporting(E_ALL & ~E_DEPRECATED);
    * End of standard configuration! Changing any of the code below should only be
    * attempted by those with a working knowledge of Kohana internals.
    * @see  http://kohanaframework.org/guide/using.configuration
    // Set the full path to the docroot
    define('DOCROOT', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR);
    // Make the application relative to the docroot, for symlink'd index.php
    if ( ! is_dir($application) AND is_dir(DOCROOT.$application))
        $application = DOCROOT.$application;
    // Make the modules relative to the docroot, for symlink'd index.php
    if ( ! is_dir($modules) AND is_dir(DOCROOT.$modules))
        $modules = DOCROOT.$modules;
    // Make the modules relative to the docroot, for symlink'd index.php
    if ( ! is_dir($komodules) AND is_dir(DOCROOT.$komodules))
        $komodules = DOCROOT.$komodules;
    // Make the common module relative to the docroot, for symlink'd index.php
    if ( ! is_dir($common) AND is_dir(DOCROOT.$common))
        $common = DOCROOT.$common;
    // Make the system relative to the docroot, for symlink'd index.php
    if ( ! is_dir($system) AND is_dir(DOCROOT.$system))
        $system = DOCROOT.$system;
    // Define the absolute paths for configured directories
    define('APPPATH', realpath($application).DIRECTORY_SEPARATOR);
    define('KOMODPATH', realpath($komodules).DIRECTORY_SEPARATOR);
    define('MODPATH', realpath($modules).DIRECTORY_SEPARATOR);
    define('COMMONPATH', realpath($common).DIRECTORY_SEPARATOR);
    define('SYSPATH', realpath($system).DIRECTORY_SEPARATOR);
    // Clean up the configuration vars
    unset($application, $modules, $komodules,$common, $system);
    // OC install
    if (file_exists(DOCROOT.'install/install.lock'))
        // Load the installation check
        return include DOCROOT.'install/index'.EXT;
    * Define the start time of the application, used for profiling.
    if ( ! defined('KOHANA_START_TIME'))
        define('KOHANA_START_TIME', microtime(TRUE));
    * Define the memory usage at the start of the application, used for profiling.
    if ( ! defined('KOHANA_START_MEMORY'))
        define('KOHANA_START_MEMORY', memory_get_usage());
    // Bootstrap the application
    require APPPATH.'bootstrap'.EXT;
    if ( ! defined('SUPPRESS_REQUEST'))
         * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].
         * If no source is specified, the URI will be automatically detected.
        echo Request::factory()
            ->execute()
            ->send_headers()
            ->body();

  • Can i use this line in JNLP file?

    Can i use the below line in JNLP file?
    <property name="ondc.root" value="@user.dir"/>
    I want to get the client side location of a JAR file. How can i get it?
    plz help
    Thanks,
    Deepak

    I Think u can not use this line
    as i have studied jnlp file syntax thoruoghly and did not found any thing like this
    would u plz telll me what u want to aceive so that i can suggest u any solution.
    Regards
    M Fazal Ur Rehman(Pakistan)

  • Multiple annotations found at this line, the method  ......

    There,
    I got an error when I used sql tag lib.
    Error Message:
    Multiple annotations found at this line, the method getStartdate() is undefined for the type map.
    Before, I used JSTL 1.0, it worked fine, after I upgraded it to 1.1, I got the problem.
    Any help and idea are appreciated.
    Wolf
    <%@ page session="true" language="java" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
    <sql:query var="monthlyList" dataSource="jdbc/Booking" scope="request">
    select date as d, count(d_code) as c, (sum(seconds)) as t
    from inservicehistory where date>='<c:out value="${param.startdate}" />'  and date <='<c:out value="${param.enddate}" />'
    group by d
    </sql:query>
    <jsp:forward page="list_daily.jsp" />

    Very strange.
    What server are you using?
    You realise that JSTL1.1 requires a JSP2.0 container (eg Tomcat 5?)
    Does your web.xml declare itself as version 2.4?
    Is there any more to the error message?
    Also I would write the query like this:
    <sql:query var="monthlyList" dataSource="jdbc/Booking" scope="request">
    select date as d, count(d_code) as c, (sum(seconds)) as t
    from inservicehistory where date>= ?
    and date <= ?
    group by d
    <c:param value="${param.startdate}" />
    <c:param value="${param.enddate}" />
    </sql:query>

  • Column Highlighted with Color with leadselection on this line...

    Hi, All
    I want to highlight column with Color but when I select on this line the orignal color will overlap the highlighted color, any way to still keep this hightlighted color?

    Hi, All
    I want to highlight column with Color but when I select on this line the orignal color will overlap the highlighted color, any way to still keep this hightlighted color?

  • If ( windowsIsMacAddress(macAddressCandidate) ) this line give me error

    hi master sir i try to
    this link code http://forum.java.sun.com/thread.jspa?threadID=245711&forumID=4
    see my code
    private final static String getMacAddress() throws IOException {
              String os = System.getProperty("os.name");
              try {
                   if(os.startsWith("Windows")) {
                        return windowsParseMacAddress(windowsRunIpConfigCommand());
                   } else if(os.startsWith("Linux")) {
                        return linuxParseMacAddress(linuxRunIfConfigCommand());
                   } else {
                        throw new IOException("unknown operating system: " + os);
              } catch(ParseException ex) {
                   ex.printStackTrace();
                   throw new IOException(ex.getMessage());
    private final static String windowsParseMacAddress(String ipConfigResponse) throws ParseException {
              String localHost = null;
              try {
                   localHost = InetAddress.getLocalHost().getHostAddress();
              } catch(java.net.UnknownHostException ex) {
                   ex.printStackTrace();
                   throw new ParseException(ex.getMessage(), 0);
              StringTokenizer tokenizer = new StringTokenizer(ipConfigResponse, "\n");
              String lastMacAddress = null;
              while(tokenizer.hasMoreTokens()) {
                   String line = tokenizer.nextToken().trim();
                   // see if line contains IP address
                   if(line.endsWith(localHost) && lastMacAddress != null) {
                        return lastMacAddress;
                   // see if line contains MAC address
                   int macAddressPosition = line.indexOf(":");
                   if(macAddressPosition <= 0) continue;
                   String macAddressCandidate = line.substring(macAddressPosition + 1).trim();
                   if(windowsIsMacAddress(macAddressCandidate)) {
                        lastMacAddress = macAddressCandidate;
                        continue;
              ParseException ex = new ParseException("cannot read MAC address from [" + ipConfigResponse + "]", 0);
              ex.printStackTrace();
              throw ex;
    private final static String windowsRunIpConfigCommand() throws IOException {
              Process p = Runtime.getRuntime().exec("ipconfig /all");
              InputStream stdoutStream = new BufferedInputStream(p.getInputStream());
              StringBuffer buffer= new StringBuffer();
              for (;;) {
                   int c = stdoutStream.read();
                   if (c == -1) break;
                   buffer.append((char)c);
              String outputText = buffer.toString();
              stdoutStream.close();
              return outputText;
    public final static void main(String[] args) {
              try {
                   System.out.println("Network infos");
                   System.out.println(" Operating System: " + System.getProperty("os.name"));
                   System.out.println(" IP/Localhost: " + InetAddress.getLocalHost().getHostAddress());
                   System.out.println(" MAC Address: " + getMacAddress());
              } catch(Throwable t) {
                   t.printStackTrace();
    but sir only this line give me eror
    if ( windowsIsMacAddress(macAddressCandidate) )
    symbol : method windowsIsMacAddress(java.lang.String)
    location: class webapplication42.Page1
    if(windowsIsMacAddress(macAddressCandidate)) {
    1 error
    please give me idea how i get mac address
    thank's
    aamir

    Complete step 17 (2 steps after you paste the code)
    17. Right-click in the source and choose Fix Imports from the pop-up menu.
    I suggest that you complete the following 2 tutorials before you try to do the advanced ones.
    http://developers.sun.com/jscreator/learning/tutorials/2/jscintro.html
    http://developers.sun.com/jscreator/learning/tutorials/2/helloweb.html

  • This line give me error ExternalContext econtext = getExternalContext();

    sir i try to create pdf with using
    ireport and jasper
    i past mfa.jasper and mfajrxml in wen-ing/reports folder
    i see this link
    http://developers.sun.com/jscreator/learning/tutorials/2/reports.html
    i try to call mfa.jasper directly by using inputstream
    when i put this line system give me error
    please give me idea which class i import and how i use inputstream
    thank's
    aamir

    Complete step 17 (2 steps after you paste the code)
    17. Right-click in the source and choose Fix Imports from the pop-up menu.
    I suggest that you complete the following 2 tutorials before you try to do the advanced ones.
    http://developers.sun.com/jscreator/learning/tutorials/2/jscintro.html
    http://developers.sun.com/jscreator/learning/tutorials/2/helloweb.html

  • This line give me error Map fillParams = new HashMap(); for calling ireport

    hi master
    sir i flow this link step by step
    http://developers.sun.com/jscreator/learning/tutorials/2/reports.html
    when i us this step
    Double-click the View Report button to display the Java source for the viewReportBtn_action method.
    Add the following code shown in bold to the body of the viewReportBtn_action method.
    Code Sample 5: viewReportBtn_action Method
    public String viewReportBtn_action() {
    // Free up the rowset resources
    tripDataProvider.close();
    then this line give me error
    Map fillParams = new HashMap();
    in out put windows give me this error
    C:\Documents and Settings\Administrator\My Documents\Creator\Projects\TravelReport\src\travelreport\Page1.java:383: cannot find symbol
    symbol : class Map
    location: class travelreport.Page1
    Map fillParams = new HashMap();
    please give me error how solve this error
    thank's
    aamir

    Complete step 17 (2 steps after you paste the code)
    17. Right-click in the source and choose Fix Imports from the pop-up menu.
    I suggest that you complete the following 2 tutorials before you try to do the advanced ones.
    http://developers.sun.com/jscreator/learning/tutorials/2/jscintro.html
    http://developers.sun.com/jscreator/learning/tutorials/2/helloweb.html

  • Bought PS Elements 12 online this morning, unfortunately my internet connection crashed and download was incomplete, how can i go back? I don't have mail yet from Adobe of my purchase... Getting worried...

    Bought PS Elements 12 online this morning, unfortunately my internet connection crashed and download was incomplete, how can i go back? I don't have mail yet from Adobe of my purchase... Getting worried...

    Go to http://www.adobe.com/downloads and click the Try next to Elements. 
    Once you have the trial installed, use your newly-purchased serial number to register it.

  • Acceptable range of speeds for this line.

    Dear Forum,
    I have for many months now been on the phone to Bt with regards to the fact that when I run the speedtester the results for the acceptable range of speeds for this line dose not match up to BT's own table within their broadband speed wizard.  Below please find the latest speedtester result and the table taken from said area.
    Test1 comprises of Best Effort Test:  -provides background information.
     Download  Speed
     1825 Kbps
    0 Kbps 2000 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 1825 Kbps
     For your connection, the acceptable range of speeds is 400-2000 Kbps.
     Additional Information:
     Your DSL Connection Rate :2528 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
     IP Profile for your line is - 2000 Kbps
    Write down your test results and use the table below to check that your throughput speed is in the right range for your connection speed.
    Connection rate downstream test result:     Throughput speed you should expect:               
    288Kbps                                                             50Kbps to 250Kbps
    288Kbps to 576Kbps                                            50Kbps to 500Kbps
    576Kbps to 1152Kbps                                         200Kbps to 1000Kbps
    1152Kbps to 2272Kbps                                       400Kbps to 2000Kbps
    2272Kbps to 8128Kbps                                       600Kbps to 7150Kbps
    I keep getting told that they can't change the acceptable range of speeds for this line to read 600Kbps to 7150Kbps as this was originally set when I first took broadband from BT, but surely they can rerun the test's that set up this configuration so that the acceptable range of speeds for this line reads as above.
    I used to, prior to a length of main cable being replaced back in May of this year, between the exchange and the street box, get a DSL of between 2648Kbps and 3020Kbps.  When the cable was replaced, they replaced 9Guage with 5Guage.  Also it has been found out by two engineer's that about 325Mtrs from my property that there is a sudden drop of 1000Kbps.  Both BT and Openreach seem to think that this is acceptable.  I don't and niether do my neiboughers, who are also affected.
    Please get back to me with a reasonable answer to this.  Not like when I dealt with Mods in the past and they would only answer one part of the problem.
     Thanks in advance.

    The bit loading is not great on that liine ....
    And it's little to do with the metallic path specification you referred to in another post.
    One thing is certain, Openreach operate to strict codes of practice, and don't just install any old wire .... 
    The noise margin is not bad, target is 6db ... but the problem there is that you have a high forward error count
    which demonstrates a profound level of interleave, which does cause some latency.
    It's the bitloading that's causing the high error count.
    Sometimes a RF3 filter, fitted by Openreach can cure some of this ... sometimes not.
    But the CRC, cyclic redundancy checks, are re-transmitted packets, and therefore do absorb bandwidth.
    Also the errored second count is high, these are seconds which have seen bad error rates.
    I don't think you'd benefit by going into the test socket either, as most errors are downstream and margin is
    fair, the CRC up errors are false, a result of poor scripting in the hub firmware.
    You could try buying quality line filters, or using a v1 splitter socket face, but to be honest, your line is your line,
    and that's why the broadband is line adaptive ... to cater for all quality levels of lines.
    Yours is not the best I've seen.
    You could try a reset at midday, often gaining a higher sync rate, as much as 400-500kbps.
    No more than 3 resets in 24 hours, DLM will downgrade the IP.
    Glad to have helped you ... perhaps not what you wanted to hear though.   

  • My iTunes keeps crashing on my iphone what can I do to fix this?

    My iTunes keeps crashing on my iphone what can I do to fix this?

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons..

Maybe you are looking for

  • Connect macbook to a printer

    Hi, I'm a new mac user and firstly, let me just say that I'm really happy with my purchase (original Macbook). I've used PCs since 1996 and I don't know why I have waited this long. I have a linksys WRT54G on one side of the room, and a printer that'

  • Using my iCal on my work computer

    I log in at work under their information, and i don't have my .mac account set up on their Mail program. can i somehow sync my work computer with my home iCal? [so it's editable, i've already subscribed to my own calendars.] thanks!

  • N8 ovi suite connection not working and unable to ...

    Hi guys, i bought a brand new n8 today with vodafone australia, and being naturally very excited about it i tried to download some apps from the ovi store. i was prompted to download the ovi store installer, which i accepted, but when it came to inst

  • How to make the main window's table size fixed?

    Hi all,    when i have a single line item, the size of table in main window is getting reduced. Its size is varying according to number of line items. Is not is possible to keep the size of table fixed even you have single line item? Regards, Bipen

  • Link PDF file to webpage

    I am just in the early stages of working with dreamweaver, and would like to know how to link a pdf file to a webpage through this software?