Webform - List (Checkbox) Not accepting variables

I am having problems with a List (Checkbox) element on a webform where it will not save the text for the options that is entered. I enter the text i want and then save it and it shows with nothing. If it does save it properly and I go to edit or add any options it deletes everything.
Please investigate and advise.
Rob

Hi Rob,
If making a change to the form you'll need to first apply it within the admin via site manager -> web forms. 
In this case add the text for the checkbox then save.  Go to the page with the form insert and replace with a fresh copy. 
If still stuck please provide the form's url and the text information you want to add so we can assist further.
Cheers!
-Sidney

Similar Messages

  • Sql statement in a table not accepting variable

    I have the following problem on 10.1.0.3.0 with varialbe in an execute immediate statement
    here is the code that I am using
    declare
    remote_data_link varchar2(25) := 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA VARCHAR2(40) := 'UDE_OLTP';
    l_last_process_date date := to_date(to_char(sysdate,'mm-dd-yyyy hh:mi:ss'),'mm-dd-yyyy hh:mi:ss') - 1;
    stmt varchar2(4000) := 'MERGE into applicant_adverseaction_info theTarget USING (select * from '||FROM_SCHEMA||'.applicant_adverseaction_info@'||remote_data_link||' where last_activity > :l_last_process_date ) theSource ON(theTarget.applicant_id = theSource.applicant_id) WHEN MATCHED THEN UPDATE SET theTarget.cb_used = theSource.cb_used, theTarget.cb_address = theSource.cb_address, theTarget.scoredmodel_id = theSource.scoredmodel_id, theTarget.last_activity = theSource.last_activity WHEN NOT MATCHED THEN INSERT(CB_USED, CB_ADDRESS, SCOREDMODEL_ID, APPLICANT_ID, LAST_ACTIVITY) values(theSource.cb_used, theSource.cb_address, theSource.scoredmodel_id, theSource.applicant_id, theSource.last_activity)';
    stmt2 varchar2(4000) := 'MERGE into edm_application theTarget USING (select * from '||from_schema||'.edm_application@'||remote_data_link||' where last_activity > :l_last_process_date) theSource ON (theTarget.edm_appl_id = theSource.edm_appl_id) WHEN MATCHED THEN UPDATE SET theTarget.APP_REF_KEY = theSource.APP_REF_KEY, theTarget.IMPORT_REF_KEY = theSource.IMPORT_REF_KEY, theTarget.LAST_ACTIVITY = theSource.LAST_ACTIVITY WHEN NOT MATCHED THEN INSERT (EDM_APPL_ID, APP_REF_KEY, IMPORT_REF_KEY, LAST_ACTIVITY) values(theSource.EDM_APPL_ID, theSource.APP_REF_KEY, theSource.IMPORT_REF_KEY, theSource.LAST_ACTIVITY)';
    v_error varchar2(4000);
    T_MERGE VARCHAR2(4000);
    stmt3 varchar2(4000);
    BEGIN
    select merge_sql
    INTO T_MERGE
    from transfertables
    where table_name= 'edm_application';
    remote_data_link:= 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA := 'UDE_OLTP';
    --DBMS_OUTPUT.PUT_LINE(SUBSTR(stmt2,1,200));
    --STMT2 := T_MERGE;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    EXECUTE IMMEDIATE stmt2 using l_last_process_date;
    --execute immediate stmt3 ;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    dbms_output.put_line(substr(stmt2,1,200));
    commit;
    EXCEPTION
    WHEN OTHERS THEN
    V_ERROR := SQLCODE||' '||SQLERRM;
    v_ERROR := V_ERROR ||' '||SUBSTR(stmt2,1,200);
    DBMS_OUTPUT.PUT_LINE(V_ERROR);
    --dbms_output.put_line(substr(stmt2,1,200));
    END;
    This works perfectly
    but if I change it to get the same statement in a db table
    declare
    remote_data_link varchar2(25) := 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA VARCHAR2(40) := 'UDE_OLTP';
    l_last_process_date date := to_date(to_char(sysdate,'mm-dd-yyyy hh:mi:ss'),'mm-dd-yyyy hh:mi:ss') - 1;
    stmt varchar2(4000) := 'MERGE into applicant_adverseaction_info theTarget USING (select * from '||FROM_SCHEMA||'.applicant_adverseaction_info@'||remote_data_link||' where last_activity > :l_last_process_date ) theSource ON(theTarget.applicant_id = theSource.applicant_id) WHEN MATCHED THEN UPDATE SET theTarget.cb_used = theSource.cb_used, theTarget.cb_address = theSource.cb_address, theTarget.scoredmodel_id = theSource.scoredmodel_id, theTarget.last_activity = theSource.last_activity WHEN NOT MATCHED THEN INSERT(CB_USED, CB_ADDRESS, SCOREDMODEL_ID, APPLICANT_ID, LAST_ACTIVITY) values(theSource.cb_used, theSource.cb_address, theSource.scoredmodel_id, theSource.applicant_id, theSource.last_activity)';
    stmt2 varchar2(4000) := 'MERGE into edm_application theTarget USING (select * from '||from_schema||'.edm_application@'||remote_data_link||' where last_activity > :l_last_process_date) theSource ON (theTarget.edm_appl_id = theSource.edm_appl_id) WHEN MATCHED THEN UPDATE SET theTarget.APP_REF_KEY = theSource.APP_REF_KEY, theTarget.IMPORT_REF_KEY = theSource.IMPORT_REF_KEY, theTarget.LAST_ACTIVITY = theSource.LAST_ACTIVITY WHEN NOT MATCHED THEN INSERT (EDM_APPL_ID, APP_REF_KEY, IMPORT_REF_KEY, LAST_ACTIVITY) values(theSource.EDM_APPL_ID, theSource.APP_REF_KEY, theSource.IMPORT_REF_KEY, theSource.LAST_ACTIVITY)';
    v_error varchar2(4000);
    T_MERGE VARCHAR2(4000);
    stmt3 varchar2(4000);
    BEGIN
    select merge_sql
    INTO T_MERGE
    from transfertables
    where table_name= 'edm_application';
    remote_data_link:= 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA := 'UDE_OLTP';
    --DBMS_OUTPUT.PUT_LINE(SUBSTR(stmt2,1,200));
    STMT2 := T_MERGE;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    EXECUTE IMMEDIATE stmt2 using l_last_process_date;
    --execute immediate stmt3 ;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    dbms_output.put_line(substr(stmt2,1,200));
    commit;
    EXCEPTION
    WHEN OTHERS THEN
    V_ERROR := SQLCODE||' '||SQLERRM;
    v_ERROR := V_ERROR ||' '||SUBSTR(stmt2,1,200);
    DBMS_OUTPUT.PUT_LINE(V_ERROR);
    --dbms_output.put_line(substr(stmt2,1,200));
    END;
    I get ora-00900 invalid sql statement
    can somebody explain why this happens
    Thanks

    I agree with jan and anthony. Your post is too long and ill-formatted. However here's my understanding of your problem (with examples though slightly different ones).
    1- I have a function that returns number of records in a any given table.
      1  CREATE OR REPLACE FUNCTION get_count(p_table varchar2)
      2     RETURN NUMBER IS
      3     v_cnt number;
      4  BEGIN
      5    EXECUTE IMMEDIATE('SELECT count(*) FROM '||p_table) INTO v_cnt;
      6    RETURN v_cnt;
      7* END;
    SQL> /
    Function created.
    SQL> SELECT get_count('emp')
      2  FROM dual
      3  /
    GET_COUNT('EMP')
                  14
    2- I decide to move the statement to a database table and recreate my function.
    SQL> CREATE TABLE test
      2  (stmt varchar2(2000))
      3  /
    Table created.
    SQL> INSERT INTO test
      2  VALUES('SELECT count(*) FROM p_table');
    1 row created.
    SQL> CREATE OR REPLACE FUNCTION get_count(p_table varchar2)
      2     RETURN NUMBER IS
      3     v_cnt number;
      4     v_stmt varchar2(4000);
      5  BEGIN
      6     SELECT stmt INTO v_stmt
      7     FROM test;
      8     EXECUTE IMMEDIATE(v_stmt) INTO v_cnt;
      9     RETURN v_cnt;
    10  END;
    11  /
    Function created.
    SQL> SELECT get_count('emp')
      2  FROM dual
      3  /
    SELECT get_count('emp')
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at "SCOTT.GET_COUNT", line 8
    ORA-06512: at line 1
    --p_table in the column is a string and has nothing to do with p_table parameter in the function. And since there's no p_table table in my schema function returns error on execution. I suppose this is what you mean by "sql statement in a table not accepting variable"
    3- I rectify the problem by recreating the function.
      1  CREATE OR REPLACE FUNCTION get_count(p_table varchar2)
      2     RETURN NUMBER IS
      3     v_cnt number;
      4     v_stmt varchar2(4000);
      5  BEGIN
      6     SELECT replace(stmt,'p_table',p_table) INTO v_stmt
      7     FROM test;
      8     EXECUTE IMMEDIATE(v_stmt) INTO v_cnt;
      9     RETURN v_cnt;
    10* END;
    SQL> /
    Function created.
    SQL> SELECT get_count('emp')
      2  FROM dual
      3  /
    GET_COUNT('EMP')
                  14
    Hope this gives you some idea.-----------------------
    Anwar

  • Select List - checkbox not working properly

    Hi,
    Can anyone help? I'm able to insert one record into the table with the code listed below, if I select only one checkbox. I get this error message, if I select more than one checkbox: ORA-01722: invalid number ORA-02063: Error ERR-1003 Error executing computation query . Note - Employee number is numeric in table. This is my select list/checkbox field being used in application. Thanks.... Elaine
    Procedure being used is:
    create or replace procedure "SAF_INSERT_MEETING_RECORDS"(
    EMPNUMBER_in IN SAF_MEETING_INFO_V.EMPNUMBER%TYPE,
    COURSEID_in IN SAF_MEETING_INFO_V.COURSEID%TYPE,
    TRAINDATE_in IN SAF_MEETING_INFO_V.TRAINDATE%TYPE,
    HOURSTRAINED_in IN SAF_MEETING_INFO_V.HOURSTRAINED%TYPE,
    NEXTTRAINDATE_in IN SAF_MEETING_INFO_V.NEXTTRAINDATE%TYPE,
    DATEADDED_in IN SAF_MEETING_INFO_V.DATEADDED%TYPE,
    ADDEDBY_in IN SAF_MEETING_INFO_V.ADDEDBY%TYPE,
    DATEMODIFIED_in IN SAF_MEETING_INFO_V.DATEMODIFIED%TYPE,
    MODIFIEDBY_in IN SAF_MEETING_INFO_V.MODIFIEDBY%TYPE,
    CURDEPT_in IN SAF_MEETING_INFO_V.CURDEPT%TYPE,
    CURDEPTDESC_in IN SAF_MEETING_INFO_V.CURDEPTDESC%TYPE,
    SEQNUM_in IN SAF_MEETING_INFO_V.SEQ_NUM%TYPE)
    is
    myHoursTrained NUMBER;
    mySeq NUMBER;
    vCHECKBOXES APEX_APPLICATION_GLOBAL.VC_ARR2;
    BEGIN
    vCHECKBOXES := APEX_UTIL.STRING_TO_TABLE(EMPNUMBER_in);
    myHoursTrained := TO_NUMBER(HOURSTRAINED_in);
    FOR i IN 1..vCHECKBOXES.COUNT
    LOOP
    BEGIN
    SELECT SAF_MEETING_SEQ.nextval
    INTO mySeq
    FROM dual;
    END;
    INSERT INTO SAF_MEETING_INFO_V
    (EMPNUMBER,COURSEID,TRAINDATE,HOURSTRAINED,NEXTTRAINDATE,DATEADDED, ADDEDBY,DATEMODIFIED,MODIFIEDBY,CURDEPT,CURDEPTDESC,SEQ_NUM)
    VALUES
    (vCHECKBOXES(i) , COURSEID_in, TRAINDATE_in, myHoursTrained, NEXTTRAINDATE_in, SYSDATE,
    ADDEDBY_in, DATEADDED_in, MODIFIEDBY_in, CURDEPT_in, CURDEPTDESC_in, mySeq);
    END LOOP;
    END;

    varad,
    Thank you so much for your response. I had a few issues with numeric vs character data that I needed to address. I was able to resolve them all, based on the information you provided. I'm posting my new working code. Thanks again. Elaine
    Working code is:
    CREATE OR REPLACE procedure "SAF_INSERT_MEETING_RECORDS"(
    EMPNUMBER_in IN VARCHAR2,
    COURSEID_in IN SAF_MEETING_INFO_V.COURSEID%TYPE,
    TRAINDATE_in IN SAF_MEETING_INFO_V.TRAINDATE%TYPE,
    HOURSTRAINED_in SAF_MEETING_INFO_V.HOURSTRAINED%TYPE,
    NEXTTRAINDATE_in SAF_MEETING_INFO_V.NEXTTRAINDATE%TYPE,
    DATEADDED_in IN SAF_MEETING_INFO_V.DATEADDED%TYPE,
    ADDEDBY_in IN SAF_MEETING_INFO_V.ADDEDBY%TYPE,
    DATEMODIFIED_in IN SAF_MEETING_INFO_V.DATEMODIFIED%TYPE,
    MODIFIEDBY_in IN SAF_MEETING_INFO_V.MODIFIEDBY%TYPE,
    CURDEPT_in IN SAF_MEETING_INFO_V.CURDEPT%TYPE,
    CURDEPTDESC_in IN SAF_MEETING_INFO_V.CURDEPTDESC%TYPE,
    SEQNUM_in IN SAF_MEETING_INFO_V.SEQ_NUM%TYPE
    is
    mySeq NUMBER;
    vCHECKBOXES APEX_APPLICATION_GLOBAL.VC_ARR2;
    BEGIN
    vCHECKBOXES := APEX_UTIL.STRING_TO_TABLE(EMPNUMBER_in);
    FOR i IN 1..vCHECKBOXES.COUNT
    LOOP
    BEGIN
    SELECT SAF_MEETING_SEQ.nextval
    INTO mySeq
    FROM dual;
    END;
    INSERT INTO SAF_MEETING_INFO_V
    (EMPNUMBER,COURSEID,TRAINDATE,HOURSTRAINED,
    NEXTTRAINDATE,DATEADDED,
    ADDEDBY,DATEMODIFIED,MODIFIEDBY,CURDEPT,CURDEPTDESC,SEQ_NUM)
    VALUES
    (to_number(vCHECKBOXES(i)), COURSEID_in, TRAINDATE_in, HOURSTRAINED_in,
    NEXTTRAINDATE_in, DATEADDED_in,
    ADDEDBY_in, DATEMODIFIED_in, MODIFIEDBY_in, CURDEPT_in, CURDEPTDESC_in, mySeq);
    END LOOP;
    END;
    /

  • EC SALES LIST - Belgique: XML file: Content not accepted in prolog

    Hy tou you all,
    We've implemented all Ec sales list note oss for Belgium but at the upload in the delcaration vat system the xml file is not accepted : "Content not accepte in prolog"; Did this message encured to you ?
    Thanks,
    TF

    HI,
    I hope you are asking about below legal changes
    http://www.minfin.fgov.be/portail2/fr/e-services/intervat/calendrier.html
    and SAP DS colleagues are working on same and they are planning to release the note
    within soon.
    For same information will check the service market place.
    Thank you.
    Regards
    Madhu M

  • I am trying to reinstall Master Collection after a computer crash and after download it will not accept the serial number that it lists on my purchased products.  The purchase was in 2012.

    I am trying to reinstall Master Collection after a computer crash and after download it will not accept the serial number that it lists on my purchased products.  The purchase was in 2012.The message says the serial number is invalid.  What do I do nest?

    Hi there,
    Please see help here - https://helpx.adobe.com/creative-suite/kb/error-serial-number-valid-product.html
    If still you are facing problem, I would recommend to reach out to support through the link which is available at the bottom of the support page.
    ^Ani

  • During opening Apple ID. I do not get My country region Bangladesh in given country region list and credit card from my country is not accepting apple. How could I sort it out? I cannot buy any app

    During opening Apple ID. I do not get My country region Bangladesh in given country region list and credit card from my country is not accepting apple. How could I sort it out? I cannot buy any app

    Yeap, that's what I was afraid of. I have a valid card and a valid billing address, I just don't see why they're keeping people like me from using their service, and what the actual roadblock is in getting an iTunes Store for Serbia.
    Thanks anyway!

  • I received an Ipad for my birthday in November and a month later it stopped working ie it would not power on. It was bought at Best Buy. Now I am told they will replace it HOWEVER I am on a waiting list!!!! This is simply not acceptable and so frustrating

    I received an Ipad for my birthday in November. A month later it stopped working- it would not power on. I got it at Best Buy. Now I'm told they will exchange it but I'm on a waiting list! Not only is this impacting my ability to work but it is also sooo frustrating- having received such an expenisive gift and not being able to enjoy the benefits!! Any suggestions???

    Dis you try contacting Apple or going to an Apple store? BB is very consistent in how they treat customers (e.g. They Suck!)

  • Can't mount external HDD? "usb 1-1: Device not accepting address"

    I just bought a Medion HDDRIVE2GO (Full Speed) from Aldi, and at first when I plugged it in, everything went fine (well, I thought so). Appearently it had some errors with HAL not being able to read the HDD (error name="(unset)").
    I gave it a reboot, and now it does not work at all! In dmesg, I have this output (the bottom is the most important I guess)
    [dell@linuxnas ~]$ dmesg
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.33-ARCH (thomas@evey) (gcc version 4.5.0 (GCC) ) #1 SMP PREEMPT Thu May 13 12:06:25 CEST 2010
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    BIOS-e820: 0000000000100000 - 000000001ffe2800 (usable)
    BIOS-e820: 000000001ffe2800 - 0000000020000000 (reserved)
    BIOS-e820: 00000000feda0000 - 00000000fee00000 (reserved)
    BIOS-e820: 00000000ffb80000 - 0000000100000000 (reserved)
    Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
    DMI 2.3 present.
    last_pfn = 0x1ffe2 max_arch_pfn = 0x100000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-CFFFF write-protect
    D0000-EFFFF uncachable
    F0000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask FE0000000 write-back
    1 base 0FEDA0000 mask FFFFE0000 write-combining
    2 disabled
    3 disabled
    4 disabled
    5 disabled
    6 disabled
    7 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
    Scanning 1 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000002000 (usable)
    modified: 0000000000002000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009fc00 (usable)
    modified: 000000000009fc00 - 00000000000a0000 (reserved)
    modified: 0000000000100000 - 000000001ffe2800 (usable)
    modified: 000000001ffe2800 - 0000000020000000 (reserved)
    modified: 00000000feda0000 - 00000000fee00000 (reserved)
    modified: 00000000ffb80000 - 0000000100000000 (reserved)
    initial memory mapped : 0 - 01800000
    init_memory_mapping: 0000000000000000-000000001ffe2000
    0000000000 - 0000400000 page 4k
    0000400000 - 001fc00000 page 2M
    001fc00000 - 001ffe2000 page 4k
    kernel direct mapping tables up to 1ffe2000 @ 15000-1a000
    RAMDISK: 1fe3b000 - 1ffd2770
    ACPI: RSDP 000fde50 00014 (v00 DELL )
    ACPI: RSDT 000fde64 00028 (v01 DELL CPi R 27D4010C ASL 00000061)
    ACPI: FACP 000fde90 00074 (v01 DELL CPi R 27D4010C ASL 00000061)
    ACPI: DSDT fffe4000 0319C (v01 INT430 SYSFexxx 00001001 MSFT 0100000E)
    ACPI: FACS 1ffff800 00040
    0MB HIGHMEM available.
    511MB LOWMEM available.
    mapped low ram: 0 - 1ffe2000
    low ram: 0 - 1ffe2000
    node 0 low ram: 00000000 - 1ffe2000
    node 0 bootmap 00016000 - 0001a000
    (10 early reservations) ==> bootmem [0000000000 - 001ffe2000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0001000000 - 0001550444] TEXT DATA BSS ==> [0001000000 - 0001550444]
    #3 [001fe3b000 - 001ffd2770] RAMDISK ==> [001fe3b000 - 001ffd2770]
    #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
    #5 [0001551000 - 0001557198] BRK ==> [0001551000 - 0001557198]
    #6 [0000010000 - 0000011000] TRAMPOLINE ==> [0000010000 - 0000011000]
    #7 [0000011000 - 0000015000] ACPI WAKEUP ==> [0000011000 - 0000015000]
    #8 [0000015000 - 0000016000] PGTABLE ==> [0000015000 - 0000016000]
    #9 [0000016000 - 000001a000] BOOTMAP ==> [0000016000 - 000001a000]
    Zone PFN ranges:
    DMA 0x00000000 -> 0x00001000
    Normal 0x00001000 -> 0x0001ffe2
    HighMem 0x0001ffe2 -> 0x0001ffe2
    Movable zone start PFN for each node
    early_node_map[3] active PFN ranges
    0: 0x00000000 -> 0x00000002
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0001ffe2
    On node 0 totalpages: 130931
    free_area_init_node: node 0, pgdat c13f9880, node_mem_map c1559000
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3953 pages, LIFO batch:0
    Normal zone: 992 pages used for memmap
    Normal zone: 125954 pages, LIFO batch:31
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x808
    SMP: Allowing 1 CPUs, 0 hotplug CPUs
    Local APIC disabled by BIOS -- you can enable it with "lapic"
    APIC: disable apic facility
    APIC: switched to apic NOOP
    nr_irqs_gsi: 16
    PM: Registered nosave memory: 0000000000002000 - 0000000000010000
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    Allocating PCI resources starting at 20000000 (gap: 20000000:deda0000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    PERCPU: Embedded 14 pages/cpu @c1c00000 s34776 r0 d22568 u4194304
    pcpu-alloc: s34776 r0 d22568 u4194304 alloc=1*4194304
    pcpu-alloc: [0] 0
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 129907
    Kernel command line: root=/dev/disk/by-uuid/5501fa6d-1664-41e3-ac30-9a475cc6843d ro vga=773
    PID hash table entries: 2048 (order: 1, 8192 bytes)
    Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    allocated 2620840 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Initializing HighMem for node 0 (00000000:00000000)
    Memory: 509220k/524168k available (2895k kernel code, 14260k reserved, 1208k data, 408k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff1e000 - 0xfffff000 ( 900 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xe07e2000 - 0xff7fe000 ( 496 MB)
    lowmem : 0xc0000000 - 0xdffe2000 ( 511 MB)
    .init : 0xc1403000 - 0xc1469000 ( 408 kB)
    .data : 0xc12d3f1e - 0xc14022e0 (1208 kB)
    .text : 0xc1000000 - 0xc12d3f1e (2895 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Hierarchical RCU implementation.
    NR_IRQS:512
    Console: colour dummy device 80x25
    console [tty0] enabled
    Fast TSC calibration using PIT
    Detected 1993.528 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 3988.18 BogoMIPS (lpj=6645093)
    Security Framework initialized
    Mount-cache hash table entries: 512
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    CPU0: Hyper-Threading is disabled
    mce: CPU supports 4 MCE banks
    Performance Events: no PMU driver, software events only.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 11k freed
    ACPI: Core revision 20091214
    ACPI: setting ELCR to 0200 (from 0800)
    weird, boot CPU (#0) not listed by the BIOS.
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (3988.18 BogoMIPS).
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xfbfee, last bus=2
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: Power Resource [PADA] (on)
    ACPI: ACPI Dock Station Driver: 1 docks/bays found
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci_root PNP0A03:00: ignoring host bridge windows from ACPI; boot with "pci=use_crs" to use them
    pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff] (ignored)
    pci_root PNP0A03:00: host bridge window [mem 0x20000000-0xfed9ffff] (ignored)
    pci_root PNP0A03:00: host bridge window [mem 0xfee00000-0xffb7ffff] (ignored)
    pci_root PNP0A03:00: host bridge window [mem 0xffc00000-0xfff7ffff] (ignored)
    pci 0000:00:00.0: reg 10: [mem 0xe8000000-0xebffffff pref]
    pci 0000:00:1d.0: reg 20: [io 0xbf80-0xbf9f]
    pci 0000:00:1f.0: quirk: [io 0x0800-0x087f] claimed by ICH4 ACPI/GPIO/TCO
    pci 0000:00:1f.0: quirk: [io 0x0880-0x08bf] claimed by ICH4 GPIO
    pci 0000:00:1f.1: reg 10: [io 0x01f0-0x01f7]
    pci 0000:00:1f.1: reg 14: [io 0x03f4-0x03f7]
    pci 0000:00:1f.1: reg 18: [io 0x0170-0x0177]
    pci 0000:00:1f.1: reg 1c: [io 0x0374-0x0377]
    pci 0000:00:1f.1: reg 20: [io 0xbfa0-0xbfaf]
    pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
    pci 0000:00:1f.5: reg 10: [io 0xd800-0xd8ff]
    pci 0000:00:1f.5: reg 14: [io 0xdc80-0xdcbf]
    pci 0000:00:1f.6: reg 10: [io 0xd400-0xd4ff]
    pci 0000:00:1f.6: reg 14: [io 0xdc00-0xdc7f]
    pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
    pci 0000:01:00.0: reg 14: [io 0xc000-0xc0ff]
    pci 0000:01:00.0: reg 18: [mem 0xfcff0000-0xfcffffff]
    pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    pci 0000:01:00.0: supports D1 D2
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    pci 0000:00:01.0: bridge window [mem 0xfc000000-0xfdffffff]
    pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
    pci 0000:02:00.0: reg 10: [io 0xec80-0xecff]
    pci 0000:02:00.0: reg 14: [mem 0xf8fffc00-0xf8fffc7f]
    pci 0000:02:00.0: reg 30: [mem 0xf9000000-0xf901ffff pref]
    pci 0000:02:00.0: supports D1 D2
    pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:02:00.0: PME# disabled
    pci 0000:02:01.0: reg 10: [mem 0x00000000-0x00000fff]
    pci 0000:02:01.0: supports D1 D2
    pci 0000:02:01.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:02:01.0: PME# disabled
    pci 0000:02:01.1: reg 10: [mem 0x00000000-0x00000fff]
    pci 0000:02:01.1: supports D1 D2
    pci 0000:02:01.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:02:01.1: PME# disabled
    pci 0000:00:1e.0: PCI bridge to [bus 02-10] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0xe000-0xffff]
    pci 0000:00:1e.0: bridge window [mem 0xf4000000-0xfbffffff]
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 *11)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *11
    ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 *11)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 *11)
    vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    Switching to clocksource tsc
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp 00:02: disabling [io 0x0800-0x0805] because it overlaps 0000:00:1f.0 BAR 13 [io 0x0800-0x087f]
    pnp 00:02: disabling [io 0x0808-0x080f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x0800-0x087f]
    pnp 00:03: disabling [io 0x0806-0x0807] because it overlaps 0000:00:1f.0 BAR 13 [io 0x0800-0x087f]
    pnp 00:03: disabling [io 0x0810-0x085f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x0800-0x087f]
    pnp 00:03: disabling [io 0x0860-0x087f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x0800-0x087f]
    pnp 00:04: disabling [io 0xf000-0xf0fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xf100-0xf1fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xf200-0xf2fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xf400-0xf4fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xf500-0xf5fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xf600-0xf6fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xf800-0xf8fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xf900-0xf9fe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xfa00-0xfafe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xfc00-0xfcfe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xfd00-0xfdfe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [io 0xfe00-0xfefe] because it overlaps 0000:00:1e.0 BAR 13 [io 0xe000-0xffff]
    pnp 00:04: disabling [mem 0xfa000000-0xfbffffff] because it overlaps 0000:00:1e.0 BAR 14 [mem 0xf4000000-0xfbffffff]
    pnp: PnP ACPI: found 17 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:00: [mem 0x00000000-0x0009fbff] could not be reserved
    system 00:00: [mem 0x0009fc00-0x0009ffff] could not be reserved
    system 00:00: [mem 0x000c0000-0x000cffff] could not be reserved
    system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
    system 00:00: [mem 0x00100000-0x1ffeffff] could not be reserved
    system 00:00: [mem 0x1fff0000-0x1fffffff] has been reserved
    system 00:00: [mem 0xfeda0000-0xfedfffff] has been reserved
    system 00:00: [mem 0xfff80000-0xffffffff] has been reserved
    system 00:02: [io 0x04d0-0x04d1] has been reserved
    system 00:03: [io 0x0880-0x08bf] has been reserved
    system 00:03: [io 0x08c0-0x08df] has been reserved
    system 00:03: [io 0x08e0-0x08ff] has been reserved
    system 00:09: [io 0x0900-0x091f] has been reserved
    system 00:09: [io 0x03f0-0x03f1] has been reserved
    system 00:0f: [io 0xbf40-0xbf5f] has been reserved
    system 00:0f: [io 0xbf20-0xbf3f] has been reserved
    system 00:10: [mem 0xfebffc00-0xfebfffff] has been reserved
    pci 0000:00:1e.0: BAR 15: assigned [mem 0x20000000-0x27ffffff pref]
    pci 0000:00:1f.1: BAR 5: assigned [mem 0x28000000-0x280003ff]
    pci 0000:00:1f.1: BAR 5: set to [mem 0x28000000-0x280003ff] (PCI address [0x28000000-0x280003ff]
    pci 0000:01:00.0: BAR 6: assigned [mem 0xfc000000-0xfc01ffff pref]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    pci 0000:00:01.0: bridge window [mem 0xfc000000-0xfdffffff]
    pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
    pci 0000:02:01.0: BAR 15: assigned [mem 0x20000000-0x23ffffff pref]
    pci 0000:02:01.0: BAR 16: assigned [mem 0xf4000000-0xf7ffffff]
    pci 0000:02:01.1: BAR 15: assigned [mem 0x24000000-0x27ffffff pref]
    pci 0000:02:01.1: BAR 16: assigned [mem 0x2c000000-0x2fffffff]
    pci 0000:02:01.0: BAR 0: assigned [mem 0xf8000000-0xf8000fff]
    pci 0000:02:01.0: BAR 0: set to [mem 0xf8000000-0xf8000fff] (PCI address [0xf8000000-0xf8000fff]
    pci 0000:02:01.1: BAR 0: assigned [mem 0xf8001000-0xf8001fff]
    pci 0000:02:01.1: BAR 0: set to [mem 0xf8001000-0xf8001fff] (PCI address [0xf8001000-0xf8001fff]
    pci 0000:02:01.0: BAR 13: assigned [io 0xe000-0xe0ff]
    pci 0000:02:01.0: BAR 14: assigned [io 0xe400-0xe4ff]
    pci 0000:02:01.1: BAR 13: assigned [io 0xe800-0xe8ff]
    pci 0000:02:01.1: BAR 14: assigned [io 0xf000-0xf0ff]
    pci 0000:02:01.0: CardBus bridge to [bus 03-06]
    pci 0000:02:01.0: bridge window [io 0xe000-0xe0ff]
    pci 0000:02:01.0: bridge window [io 0xe400-0xe4ff]
    pci 0000:02:01.0: bridge window [mem 0x20000000-0x23ffffff pref]
    pci 0000:02:01.0: bridge window [mem 0xf4000000-0xf7ffffff]
    pci 0000:02:01.1: CardBus bridge to [bus 07-0a]
    pci 0000:02:01.1: bridge window [io 0xe800-0xe8ff]
    pci 0000:02:01.1: bridge window [io 0xf000-0xf0ff]
    pci 0000:02:01.1: bridge window [mem 0x24000000-0x27ffffff pref]
    pci 0000:02:01.1: bridge window [mem 0x2c000000-0x2fffffff]
    pci 0000:00:1e.0: PCI bridge to [bus 02-10]
    pci 0000:00:1e.0: bridge window [io 0xe000-0xffff]
    pci 0000:00:1e.0: bridge window [mem 0xf4000000-0xfbffffff]
    pci 0000:00:1e.0: bridge window [mem 0x20000000-0x27ffffff pref]
    pci 0000:00:1e.0: setting latency timer to 64
    pci 0000:02:01.0: enabling device (0000 -> 0003)
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
    PCI: setting IRQ 11 as level-triggered
    pci 0000:02:01.0: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:02:01.1: enabling device (0000 -> 0003)
    pci 0000:02:01.1: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
    pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
    pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    pci_bus 0000:01: resource 1 [mem 0xfc000000-0xfdffffff]
    pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
    pci_bus 0000:02: resource 0 [io 0xe000-0xffff]
    pci_bus 0000:02: resource 1 [mem 0xf4000000-0xfbffffff]
    pci_bus 0000:02: resource 2 [mem 0x20000000-0x27ffffff pref]
    pci_bus 0000:02: resource 3 [io 0x0000-0xffff]
    pci_bus 0000:02: resource 4 [mem 0x00000000-0xffffffff]
    pci_bus 0000:03: resource 0 [io 0xe000-0xe0ff]
    pci_bus 0000:03: resource 1 [io 0xe400-0xe4ff]
    pci_bus 0000:03: resource 2 [mem 0x20000000-0x23ffffff pref]
    pci_bus 0000:03: resource 3 [mem 0xf4000000-0xf7ffffff]
    pci_bus 0000:07: resource 0 [io 0xe800-0xe8ff]
    pci_bus 0000:07: resource 1 [io 0xf000-0xf0ff]
    pci_bus 0000:07: resource 2 [mem 0x24000000-0x27ffffff pref]
    pci_bus 0000:07: resource 3 [mem 0x2c000000-0x2fffffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
    TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
    TCP: Hash tables configured (established 16384 bind 16384)
    TCP reno registered
    UDP hash table entries: 256 (order: 1, 8192 bytes)
    UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
    NET: Registered protocol family 1
    pci 0000:01:00.0: Boot video device
    PCI: CLS 32 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1629k freed
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1274299821.609:1): initialized
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 998
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    vesafb: framebuffer at 0xe0000000, mapped to 0xe0800000, using 1536k, total 32768k
    vesafb: mode is 1024x768x8, linelength=1024, pages=41
    vesafb: protected mode interface info at c000:549f
    vesafb: pmi: set display start = c00c5533, set palette = c00c557f
    vesafb: pmi: ports = c010 c016 c054 c038 c03c c05c c000 c004 c0b0 c0b2 c0b4
    vesafb: scrolling: redraw
    vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    Console: switching to colour frame buffer device 128x48
    fb0: VESA VGA frame buffer device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:0d: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 5
    PCI: setting IRQ 5 as level-triggered
    serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 5 (level, low) -> IRQ 5
    serial 0000:00:1f.6: PCI INT B disabled
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    PM: Resume from disk failed.
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 408k freed
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    Floppy drive(s): fd0 is 1.44M
    SCSI subsystem initialized
    FDC 0 is a post-1991 82077
    libata version 3.00 loaded.
    ata_piix 0000:00:1f.1: version 2.13
    ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    ata_piix 0000:00:1f.1: setting latency timer to 64
    scsi0 : ata_piix
    scsi1 : ata_piix
    ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xbfa0 irq 14
    ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xbfa8 irq 15
    ata2.01: NODEV after polling detection
    ata1.00: ATA-6: HTS548040M9AT00, MG2OA5EA, max UDMA/100
    ata1.00: 78140160 sectors, multi 8: LBA48
    ata2.00: ATAPI: HL-DT-STDVD-ROM GDR8081N, 0108, max MWDMA2
    ata2.00: configured for MWDMA2
    ata1.00: configured for UDMA/100
    scsi 0:0:0:0: Direct-Access ATA HTS548040M9AT00 MG2O PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-ROM GDR8081N 0108 PQ: 0 ANSI: 5
    sd 0:0:0:0: [sda] 78140160 512-byte logical blocks: (40.0 GB/37.2 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda:sr0: scsi3-mmc drive: 10x/24x cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sda1 sda2 sda3 sda4
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    sd 0:0:0:0: [sda] Attached SCSI disk
    EXT4-fs (sda3): mounted filesystem with ordered data mode
    rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one day, 114 bytes nvram
    udev: starting version 151
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    intel_rng: FWH not detected
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    Linux agpgart interface v0.103
    Marking TSC unstable due to TSC halts in idle
    input: PC Speaker as /devices/platform/pcspkr/input/input2
    ACPI: AC Adapter [AC] (on-line)
    dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    ACPI: Lid Switch [LID]
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    ACPI: Power Button [PBTN]
    input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
    ACPI: Sleep Button [SBTN]
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Switching to clocksource acpi_pm
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    parport_pc 00:0e: reported by Plug and Play ACPI
    parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
    iTCO_vendor_support: vendor-support=0
    agpgart-intel 0000:00:00.0: Intel 845G Chipset
    lp: driver loaded but no devices found
    lp0: using parport0 (interrupt-driven).
    agpgart-intel 0000:00:00.0: AGP aperture is 64M @ 0xe8000000
    ppdev: user-space parallel port driver
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [THM] (57 C)
    Synaptics Touchpad, model: 1, fw: 5.9, id: 0x9b4cb1, caps: 0x884793/0x0
    serio: Synaptics pass-through port at isa0060/serio1/input0
    input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
    ACPI: Battery Slot [BAT0] (battery present)
    ACPI: Battery Slot [BAT1] (battery absent)
    yenta_cardbus 0000:02:01.0: CardBus bridge found [1028:012a]
    yenta_cardbus 0000:02:01.0: Using CSCINT to route CSC interrupts to PCI
    yenta_cardbus 0000:02:01.0: Routing CardBus interrupts to PCI
    yenta_cardbus 0000:02:01.0: TI: mfunc 0x01261222, devctl 0x64
    iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
    iTCO_wdt: Found a ICH3-M TCO device (Version=1, TCOBASE=0x0860)
    iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:1d.0: irq 11, io base 0x0000bf80
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:15/LNXVIDEO:00/input/input7
    ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 5 (level, low) -> IRQ 5
    Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
    yenta_cardbus 0000:02:01.0: ISA IRQ mask 0x0418, PCI irq 11
    yenta_cardbus 0000:02:01.0: Socket status: 30000006
    yenta_cardbus 0000:02:01.0: pcmcia: parent PCI bridge I/O window: 0xe000 - 0xffff
    pcmcia_socket pcmcia_socket0: cs: IO port probe 0xe000-0xffff: clean.
    yenta_cardbus 0000:02:01.0: pcmcia: parent PCI bridge Memory window: 0xf4000000 - 0xfbffffff
    yenta_cardbus 0000:02:01.0: pcmcia: parent PCI bridge Memory window: 0x20000000 - 0x27ffffff
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
    3c59x 0000:02:00.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    3c59x: Donald Becker and others.
    0000:02:00.0: 3Com PCI 3c905C Tornado at e0c6ac00.
    Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 5 (level, low) -> IRQ 5
    Intel ICH 0000:00:1f.5: setting latency timer to 64
    yenta_cardbus 0000:02:01.1: CardBus bridge found [1028:012a]
    yenta_cardbus 0000:02:01.1: Using CSCINT to route CSC interrupts to PCI
    yenta_cardbus 0000:02:01.1: Routing CardBus interrupts to PCI
    yenta_cardbus 0000:02:01.1: TI: mfunc 0x01261222, devctl 0x64
    usb 1-1: new full speed USB device using uhci_hcd and address 2
    [drm] Initialized drm 1.1.0 20060810
    yenta_cardbus 0000:02:01.1: ISA IRQ mask 0x0418, PCI irq 11
    yenta_cardbus 0000:02:01.1: Socket status: 30000006
    yenta_cardbus 0000:02:01.1: pcmcia: parent PCI bridge I/O window: 0xe000 - 0xffff
    pcmcia_socket pcmcia_socket1: cs: IO port probe 0xe000-0xffff: clean.
    yenta_cardbus 0000:02:01.1: pcmcia: parent PCI bridge Memory window: 0xf4000000 - 0xfbffffff
    yenta_cardbus 0000:02:01.1: pcmcia: parent PCI bridge Memory window: 0x20000000 - 0x27ffffff
    usb 1-1: device descriptor read/64, error -71
    usb 1-1: device descriptor read/64, error -71
    [drm] radeon defaulting to kernel modesetting.
    [drm] radeon kernel modesetting enabled.
    radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [drm] radeon: Initializing kernel modesetting.
    [drm] register mmio base: 0xFCFF0000
    [drm] register mmio size: 65536
    [drm] GPU reset succeed (RBBM_STATUS=0x00000140)
    agpgart-intel 0000:00:00.0: AGP 2.0 bridge
    agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
    radeon 0000:01:00.0: putting AGP V2 device into 4x mode
    [drm] radeon: VRAM 64M
    [drm] radeon: VRAM from 0x00000000 to 0x03FFFFFF
    [drm] radeon: GTT 64M
    [drm] radeon: GTT from 0xE8000000 to 0xEBFFFFFF
    [drm] radeon: irq initialized.
    [drm] Detected VRAM RAM=64M, BAR=128M
    [drm] RAM width 64bits DDR
    [TTM] Zone kernel: Available graphics memory: 255756 kiB.
    [drm] radeon: 32M of VRAM memory ready
    [drm] radeon: 64M of GTT memory ready.
    [drm] radeon: cp idle (0x00008383)
    [drm] Loading R100 Microcode
    platform radeon_cp.0: firmware: requesting radeon/R100_cp.bin
    pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: clean.
    pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: clean.
    pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
    pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7:
    usb 1-1: new full speed USB device using uhci_hcd and address 3
    clean.
    pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
    pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af: clean.
    pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff: clean.
    pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff: clean.
    pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7: clean.
    pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff: clean.
    [drm] radeon: ring at 0x00000000E8000000
    [drm] ring test succeeded in 1 usecs
    intel8x0_measure_ac97_clock: measured 52675 usecs (2532 samples)
    intel8x0: clocking to 48000
    [drm] radeon: ib pool ready.
    [drm] ib test succeeded in 0 usecs
    [drm] Panel ID String: QDI141X1LH03
    [drm] Panel Size 1024x768
    [drm] Default TV standard: NTSC
    [drm] 27.000000000 MHz TV ref clk
    [drm] No TV DAC info found in BIOS
    [drm] Default TV standard: NTSC
    [drm] 27.000000000 MHz TV ref clk
    [drm] Radeon Display Connectors
    [drm] Connector 0:
    [drm] VGA
    [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
    [drm] Encoders:
    [drm] CRT1: INTERNAL_DAC1
    [drm] Connector 1:
    [drm] LVDS
    [drm] Encoders:
    [drm] LCD1: INTERNAL_LVDS
    [drm] Connector 2:
    [drm] S-video
    [drm] Encoders:
    [drm] TV1: INTERNAL_DAC2
    usb 1-1: device descriptor read/64, error -71
    [drm] fb mappable at 0xE0040000
    [drm] vram apper at 0xE0000000
    [drm] size 786432
    [drm] fb depth is 8
    [drm] pitch is 1024
    fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver
    Console: switching to colour dummy device 80x25
    Console: switching to colour frame buffer device 128x48
    fb0: radeondrmfb frame buffer device
    registered panic notifier
    [drm] Initialized radeon 2.0.0 20080528 for 0000:01:00.0 on minor 0
    usb 1-1: device descriptor read/64, error -71
    usb 1-1: new full speed USB device using uhci_hcd and address 4
    usb 1-1: device not accepting address 4, error -71
    EXT4-fs (sda4): mounted filesystem with ordered data mode
    usb 1-1: new full speed USB device using uhci_hcd and address 5
    Adding 265064k swap on /dev/sda2. Priority:-1 extents:1 across:265064k
    psmouse serio2: ID: 10 00 64
    usb 1-1: device not accepting address 5, error -71
    hub 1-0:1.0: unable to enumerate USB device on port 1
    eth0: setting full-duplex.
    input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/serio2/input/input8
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    eth0: no IPv6 routers present
    lspci (Is this useable info?)
    [dell@linuxnas ~]$ lspci
    00:00.0 Host bridge: Intel Corporation 82845 845 [Brookdale] Chipset Host Bridge (rev 04)
    00:01.0 PCI bridge: Intel Corporation 82845 845 [Brookdale] Chipset AGP Bridge (rev 04)
    00:1d.0 USB Controller: Intel Corporation 82801CA/CAM USB Controller #1 (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 42)
    00:1f.0 ISA bridge: Intel Corporation 82801CAM ISA Bridge (LPC) (rev 02)
    00:1f.1 IDE interface: Intel Corporation 82801CAM IDE U100 Controller (rev 02)
    00:1f.5 Multimedia audio controller: Intel Corporation 82801CA/CAM AC'97 Audio Controller (rev 02)
    00:1f.6 Modem: Intel Corporation 82801CA/CAM AC'97 Modem Controller (rev 02)
    01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]
    02:00.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)
    02:01.0 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller
    02:01.1 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller

    I found this post on linux forums which say It's a HAL related problem.
    "rmmod ehci_hcd" made it work for some of these guys Which one of them explains It's a data speed issue. Cables.., 2.0 1.0, that sort of things. Read it, I bet you'll get more out of it, It's old though.
    Try removing the module, plugging the drive, check dmesg, and mount manually.
    Last edited by Ekimino (2010-05-20 01:23:54)

  • Mail gateway not accepting connections on port 25

    My "beautiful" mail gateway does not accept Telnet connections to port 25.
    Not from another machine
    Not even from it self.
    telnet gwipaddress 25
    telnet: connect to address "gwIP": Connection refused
    telnet: Unable to connect to remote host
    Which variable in main.cf would be responsible for this?
    Postfix is running.
    All the machines involved are defined in mynetworks on the mailgateway as ipaddress/32
    Or is this a deeper issue?
    Any ideas?
    Or is this a job for postconf -n?
    TIA
    Hans

    I think I have found the cause.
    inet_interfaces was set to "local" rather than "all"
    I wonder why this causes such a problem...
    Let me make a test and I'll be back in a while.
    I found an old reply from some genious on the list
    "I just spotted something else I missed before. (Well it's late here
    edit /etc/postfix/main.cf and change:
    inet_interfaces = localhost
    to
    inet_interfaces = all
    and issue:
    sudo postfix reload"
    Look familiar?
    Hans

  • Muse is NOT Working, Illustrator Update FAILS, Apps list is NOT Correct. What Do I Do?

    I started having issues with CC a couple months ago out of no where. Mostly just with updates from CC for the apps.
    I did the suggested re-installs of CC and then had to try to update by fully re-installing apps and I had funciontality but errors trying to update Illustrator and most of the installed apps did not show up in the CC interface.
    Now I try to do a quick update to a site thru Muse and it tells me that it would not validate my subscription and would be canceled in 2 days.
    I again followed instructions on Adobe to delete a couple of folders and try to re start Muse.
    Now I get an unexpected error and cnont use the program.
    I test out CC for updates and the Muse app shows up to date, Bridge app surprisingly updated fine, and as expected, once again, Illustrator errors out on the update and still my CC app list is not correct so I honestly dont know what updates I have to do on the other programs.
    I checked my subscription details and everything is fine.
    Not having the ability to update efficiently from CC is not a huge deal as long as I can use the programs to work. Not being abel to work because of some programing hiccup is NOT ACCEPTABLE.
    Anybody have any possible paths to fix these latest issues?
    Should I start by wiping the machine clean of any installs and then completely try to re-install everything?
    what a pain.

    UPDATE:   
    I got home tonight and tried to open up Muse.
    This time it opened up the login screen and actually made it past the point it errored at previously.
    Illustrator update stilll gives an Error 8.

  • WET54G v3.1 Will not accept the default password for web setup

    The setup:
    1 2WIRE wireless router for AT&T DSL connection
    1 wireless laptop, online and good to go
    1 desktop, too far from router to connect with an ethernet cable, this computer does not have wi-fi
    1 new WET54G v3.1, trying to setup as a wireless-ethernet bridge to get the wired desktop on the network and online
    I have set up the desktop with static IP: 192.168.1.1; Subnet 255.255.255.0; Gateway 192.168.1.226.  The WET54G is directly connected to the desktop.  I open Internet Explorer and go to 192.168.1.226.  After entering the password "admin" and leaving the username blank, the login prompt simply reappears as if the password is incorrect.  I have reset the WET54G to factory defaults numerous times (held the reset button for over 30 seconds).  It simply will not accept the password.
    Any suggestions?  I tried live chat but the chat window was so slow and buggy that both times it seemed we were about to make progress the window would freeze up or refresh entirely and disconnect me.  Extremely frustrating to say the least.
    Thanks,
    Sean

    Hi brickmonkey, 
    Sorry for taking so long to get back on this.  We left for a long vacation and I got ridiculously busy when we got back.  ANyway I just spent some time working on this and wanted to report back.  Still didn't get it to work.
    Got into the 2Wire and wrote down it's settings:
    Router Address: 192.168.1.254
    Subnet Mask: 255.255.255.0
    Default Gateway: (???) I did not see this under the summary page, but it was on the internet connection details page., it's a 151.x.x.x number, which the WET54G was not happy to accept as the default gateway.  It gave me the error "DUT and Gateway cannot locate in different subnet."  Also, on that internet connection details page, an additional subnet mask of 255.255.255.255 was listed, but I'm guessing 255.255.255.0 is the correct one to use, right?
    Because it wouldn't accept that 151.x.x.x address, I can't get any farther.  I did notice when setting up the SSID and security to match that of the 2WIRE, the channel was fixed at 6 and the dropdown was disabled.  I changed the 2WIRE from 1 to 6 in case that was an issue.  The WET54G is in Infrastructure mode, as the guide you linked to indicated.
    Any thoughts with this new info?
    Thanks again for your help with this,
    Sean

  • How to create a group/list of check box variables for display in text field, in appended format

    I need to identify a series of single-response checkbox variables and display the ones selected (as a group) in a text field in an appended (comma, space) format. Last week, you provided a great little script for a similar need using List Box (multiple response) variables. This time I need to know how to formally identify the checkbox variables and, I presume, use a similar script to display the results in a comma, space format.
    You've been of great help.
    Thanks

    Here's the script adapted to this situation. It assumes there are ten check boxes named cb1, cb1, cb2, ...cb10.
    // Custom Calculate script for text field
    (function () {
        // Initialize the string
        var v, s = "";
        // Loop through the check boxes to build up a string
        for (var i = 1; i < 11; i++) {
            // Get the value of the current check box
            v = getField("cb" + i).value;
            if (v !== "Off") {
                if (s) s += ", ";  // Add a comma and a space if needed
                s += v;  // Add the selected value
        // Set this field value to the string
        event.value = s;
    You'll have to change the field name and starting/ending numbers to match your form.

  • TS1398 I have been having network problems on my Ipad and I reset all network settings as advised in the article about problems connecting to networks.  Now my Ipad will not allow me to sign onto any network....it will not accept the passwords for any net

    My ipad has been a little glitchy for the last couple of weeks....not able to load pages because of DNS lookup failure and really slow loading...some of which has to do with the DSL service I have, but I followed the directions on one of the Apple wi-fi issues pages to reset network all connections..which I did, and now the Ipad cannot connect to WiFi because it will not accept (or cannot resolve..or??) password.  I am sure I am typing the password correctly and have tried it on several routers..and it cannot cannect to any router properly even with the correct password.  My laptop is connected just fine and it accepts the password and I have confirmed the password with the ISP and tried other routers.
      So the question is what should I do if I am entering the right password and the Ipad can't sign itself on to the Wifi network?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Service Entry sheet to be set as Not accepted status

    Hi
    After flagging the Transfer check box in the Settlement Tab in item details of shipment cost document(VI03), the Purchase order(ME23N) and Service entry sheet(ML81N) are automatically getting generated. PO and Service entry sheet numbers can be seen in Service Procurement tab.
    Question 1: When I separetely look into PO, I am unable trace back the flow. I mean, there is no reference  of Shipment cost number in PO.
    Question 2: I want the service entry sheet to get on hold/not accepted status so that i can add the list of services performed by the Forwarding agent / service agent mentioned in Shipment cost document.
    Question 3: I have made Release strategy for Service entry sheet which is properly working when i am accepting  the entry sheet manually. But it is not working when the shipment cost document is triggering PO and Service entry sheet automatically. Actually, It should hold the service entry sheet from not being accepted.
    Note: This subject is a mix of  Transportation (Logistics Execution) and  External Service Management (Materials management). The moderator of this forum can take a call on placement of this thread under suitable section.
    Thanks
    Maruthi Ram
    Edited by: MARUTHI RAM on May 26, 2009 9:31 PM
    Edited by: MARUTHI RAM on Jun 4, 2009 2:50 AM
    Edited by: MARUTHI RAM on Jun 5, 2009 8:29 PM

    not solved.

  • HT1277 I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it.

    I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it. This is the 1st time I've had this problem.
    slpmtns

    Whilst it may not be your fault I am afraid it appears that your post is on a forum which is not the best for your OS. It will save the time of the unpaid volunteers here, and may resolve your issue faster, if you could examine the list below and see if there is a more appropriate forum to which you could direct your question.
    OS X 10.9 Mavericks
    OS X 10.8 Mountain Lion
    OS X 10.7 Lion
    OS X 10.6 Snow Leopard
    OS X 10.5 Leopard
    OS X 10.4 Tiger
    OS X 10.3 and earlier
    OS 9, OS 8 & System 7
    OS X Technologies
    OS X Server
    iPad
    iPhone
    iPod
    Other

Maybe you are looking for