BUG Report: Undo Region Source

Release: 4.0.2.00.07 (I haven't tested this in the 4.1 EA yet...)
In a report region with a BIG query, if I use the Undo Region Source I receive the following error -
report error:
ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: XXX....)
John.
Blog: http://jes.blogs.shellprompt.net
Work: http://www.apex-evangelists.com
Author of Pro Application Express: http://tinyurl.com/3gu7cd
REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

Hi scott you are right!
If I create a region type=tree i have to select a tree query that exist (created as share component). If I midify the SQL for the tree it will be done at the shared components area and there is no undo feature.

Similar Messages

  • Bug report: Delete region

    Page definition - http://i7.tinypic.com/21j8uxc.jpg
    When I click on the PL/SQL region and then the Delete button to delete the region, I get http://i7.tinypic.com/21j8x7c.jpg
    Hm, but the region doesn't have any "associated list and list entries", heck the entire page doesn't have any associated lists (as you can see from the first screenshot).
    Thanks

    No. The region was deleted fine.
    I was just pointing out that the "Delete associated list and list entries?" question was inappropriate.

  • SQL report region source to call a pl/sql function using DB link

    Hi - I have a pl/sql function fn_dbtype(id NUMBER) defined in database X. The pl/sql function executes couple DML statements and returns a string (a SELECT query). I am able to call this function using SQL Plus (Connected to Database X) as below and it works fine:
    declare
    vSQL VARCHAR2(100);
    begin
    vSQL := fn_dbtype(1);
    end;
    The DML operations completed fine and vSQL contains the "Select" query now.
    In APEX:
    I am trying to create a SQL report in APEX using SQL query(PL/SQL function returning a sql statement) option. I am trying to figure out what to put in the region source so that the output of the "Select" query is displayed in the report.
    Moreover APEX is hosted in a different database instance. So I would need to call this pl/sql function using a DB Link.
    Please let me know what I need to put in the region source to execute the pl/sql function which returns the "Select" query thereby displaying the query output in the report. Thanks.
    Edited by: user709584 on Mar 19, 2009 2:32 PM
    Edited by: user709584 on Mar 19, 2009 2:34 PM

    try something like this:
    return fn_dbtype(1)@dblink;

  • How to retrieve report region source statement programmatically?

    Hi all,
    I have several report regions in an apex application each
    of type "PL/SQL function body returning SQL query"
    and of same structure like:
    bq. declare \\ stmt varchar2(32767); \\ ... \\ begin \\ /* some stuff preparing sql query string */ \\ stmt := 'select' || ' a,b,c' || 'from table'; \\ return stmt; \\ end;
    Now I need to retrieve the region source returned sql statement programmatically.
    The region source is stored in apex view "apex_application_page_regions.region_source".
    But what is the best way to retrieve the SQL statement value, by executing
    the anonymous pl/sql block OR how does it work in apex internally?
    An "execute immediate +region_source+ ... " approach does not work due to PLS-00372.
    Any hints?
    Regards,
    Matthias

    Dear Matthias,
    an interesting problem you raise here. The solution is to create a function from the region source, call that function and then do something useful with the result.
    Let's suppose your region source is :
    declare v_text varchar2(100); begin return(''select * from emp''); end;
    - put this text instead of the first declare
    declare
    v_statement varchar2(4000) := '
    declare
    function test return varchar2 is
    - put this code behind the source:
    begin
    dbms_output.put_line(test);
    end;';
    begin
    execute immediate v_statement;
    end;
    Now you have created a anonymous PL/SQL block that can be performed. The whole code looks like:
    declare
    v_statement varchar2(4000) := '
    declare
    function test return varchar2 is
    begin return(''select * from emp''); end;
    begin
    dbms_output.put_line(test);
    end;';
    begin
    execute immediate v_statement;
    end;
    Instead of the put_line you might set a package variable, so that you can use the result in another way,
    good luck, DickDral

  • Problem with SQL query region source containing OLAP clauses

    Hi team,
    I believe I found a bug when HTMLDB validates the SQL Query in a report region.
    My query includes an ORDER BY clause within a windowing function and HTMLDB refuses to accept the source owing to the presence of the ORDER BY and the column heading sort preference.
    Clearly the order-by in a window function has little to do with the column heading sort, but this error prevents me from updating the conditional display item in the page definition.
    Note also that the page was imported smoothly from the 1.5 version, so probably the region source is not checked at that time, but only when you update it "manually".
    So, in the end, if I don't change anything the page works because the sql query is assumed to be correct but unfortunately I need to change the condition and I cannot.
    The problem shows up in page 126 of app 21670, SQL query region.
    Bye,
    Flavio
    PS: may be I can work around this by using the pl/sql function returning the sql query.

    Flavio,
    We're aware of this problem. For now, your workaround is described in this thread:
    HTMLDB 1.6 and "order by" in analytic functions
    Sergio

  • Can I use an IF Statement in a Region Source

    Hello, Im using Apex 3.x. I have a standard report page whose Region Source is a simple select statement..... SELECT xyz FROM...WHERE
    I need to add an IF statement to this Region Source, but when I do I get an error - Query cannot be parsed within the Builder.
    IF :P2_FILTER = 'A' THEN
    SELECT abc FROM...WHERE
    ELSIF :P2_FILTER = 'B' THEN
    SELECT abc FROM...WHERE
    END IF;
    The columns selected are the same in both scenarios. Is there any way to add an IF statement to the region source?
    Thank
    you

    I guess Scott is suggesting creating 2 regions (with different source query ) , then define the codition for each one. Ex. for region 1 >> condition >> plsql expression >> :P2_FILTER = 'A'
    for region 2 >> condition >> plsql expression >> :P2_FILTER = 'B'
    Hope this helps,
    Sam
    Edited by: Sam_06 on Aug 17, 2010 12:20 PM

  • Application Item Not Working as Bind Variable in Region Source

    I've created an application variable - APP_AC_CODE - a value for which - PA1 - I set as part of the column link on page A that branches to page B.
    I use APP_AC_CODE as part of a region title on page B - &APP_AC_CODE. Parameters - which evaluates successfully to 'PA1 Parameters'.
    However when I try to use APP_AC_CODE on the same page as part of the SQL query that drives the report for that region it fails to retrieve any records.
    If I set the region source to:
    SELECT idi FROM v_parameters WHERE aircraft_code = :APP_AC_CODE ;
    then it fails but if I explicitly state the where clause:
    SELECT idi FROM v_parameters WHERE aircraft_code = 'PA1' ;
    then it works just fine and retrieves the records as expected.
    If I check the session state then the right value is assigned to APP_AC_CODE; if I check debug then it shows the right value - binding: ":APP_AC_CODE"="APP_AC_CODE" value="PA1". Also, it displays fine as a substitution string.
    I'm very confused. I'll be very grateful if someone can shed a little light. I expect I'm doing something stupid - new user and all that - but I haven't got a clue what that is.

    Thanks for the reply Scott, but unfortunately I can't upload the app for business reasons. I appreciate that might make it impossible for you to diagnose the problem.
    I don't know if I'm making progress with the problem but I've tried adding a hidden page item, setting that value from page A and using it from page B with the same results. Check the session state, the debug messages, or use it as a substitution variable and the right value is there.
    I then tried setting the value of the page item with the value of the application item and (according to session and debug) the right value ends up in the page item. Still didn't work though.
    I then created a new page (using the sql report wizard in case I was doing something wrong manually) and tried using the application item in the same way with the same problem.
    Given that no records are being returned I assume that the database server doesn't care for the SQL query it sees. Is there a way of seeing what this is? When I look at the debug messages, all I see is 'parse query' and 'binding' messages. Any way I can see what the database server eventually sees?
    Matt

  • Region source (PL/SQL function body returning SQL query)

    Hi, guys.
    Here is what i try to do:
    Create a region of type SQL Query (PL/SQL function body returning SQL query). In the source area i tried to put this:
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    -- htp.p(v_new);
    IF v_new = 'N-Set' THEN
    v_SQL := 'select ' ||
    ELSIF v_new = 'Y-Set' THEN
    v_SQL := 'select ' ||
    END IF;
    RETURN v_SQL;
    END;
    And here is the reply from APEX:
    1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. The query can not be parsed, the cursor is not yet open or a function returning a SQL query returned without a value.
    Now.
    1. Variable is set with the right value.
    2. Each statement (separately) returns SQL that works with no problems
    3. Problem occures if i try to put IF statement around the SQL creation.
    4. If i select "Use Generic Column Names (parse query at runtime only)" instead of "Use Query-Specific Column Names and Validate Query" then the script returns SQL properly, however report's column names are set to Col1, Col2,Col3 ......
    Thnks in advence
    Mike

    OK. Here is enire statement:
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    htp.p(v_new);
    IF v_new = 'N-Set' THEN
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,DECODE(ld.level,''All'', ''All Categories'',ld.level)) level, ' ||
    'apex_item.checkbox(1, ld.opt_in_auto_flag, decode(ld.opt_in_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, ld.opt_in_manual_flag, decode(ld.opt_in_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, ld.opt_out_auto_flag, decode(ld.opt_out_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, ld.opt_out_manual_flag, decode(ld.opt_out_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''NMBR'', NULL,''Change to '' || DECODE(ld.level,''All'',''Categories'',''All Categories'')) link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c, ' ||
    'tbl2 ld ' ||
    'where c.code = ld.code ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    ELSIF v_new = 'Y-Set' THEN
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,''All Categories'') level, ' ||
    'apex_item.checkbox(1, c.option_1, decode(c.option_1,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, c.option_3, decode(c.option_3,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, c.option_2, decode(c.option_2,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, c.option_4, decode(c.option_4,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''AAA'', NULL,''Options by AAA'') link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c ' ||
    'where 1 = 1 ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    END IF;
    RETURN v_SQL;
    END;
    If i put just this
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    htp.p(v_new);
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,DECODE(ld.level,''All'', ''All Categories'',ld.level)) level, ' ||
    'apex_item.checkbox(1, ld.opt_in_auto_flag, decode(ld.opt_in_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, ld.opt_in_manual_flag, decode(ld.opt_in_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, ld.opt_out_auto_flag, decode(ld.opt_out_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, ld.opt_out_manual_flag, decode(ld.opt_out_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''NMBR'', NULL,''Change to '' || DECODE(ld.level,''All'',''Categories'',''All Categories'')) link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c, ' ||
    'tbl2 ld ' ||
    'where c.code = ld.code ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    RETURN v_SQL;
    END;
    it works fune...

  • Bug report: ube_ipa: internal error when compiling with -xO5

    When compiling imlib2-1.1.2, one source file causes compilation to fail with the following error message:
    ube_ipa: internal error
    cc: ube_ipa failed for loader_tiff.c
    The command which fails is (probably wrapped):
    cc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I.. -I../src -I../loaders -I../libltdl -I/usr/X11R6/include -I/usr/openwin/include -I/opt/csw/include -I/opt/csw/include -I/opt/csw/include -g -fast -xarch=386 -xstrconst -v -xildoff -xO5 -c loader_tiff.c -KPIC -DPIC -o .libs/loader_tiff.o
    Changing -xO5 to -xO4 works around the problem. The source file in question is imlib2-1.1.2/loaders/loader_tiff.c
    Patch 112756-10 has been applied, and doesn't correct the problem. GCC doesn't have any problem compiling the file.
    A quick note to any Sun employees reading this: it took me 45 minutes to find somewhere to submit this bug report. Searching sun.com for "submit bug report" turned up many forum postings where people asked "Where do I submit bug reports?", a bug report form for Sun One Java Studio, and not much else. It might be in your interest to make submitting bugs easier.

    Internal errors, such as the one you encountered, are generally considered compiler bugs. They indicate that the compiler reached an unexpected state and therefore bailed out. I opened bug 20703141: internal error: pic_relocs(): hh reltype? to investigate. I see the same error message emitted by the current Studio development release; I will update this thread if I find a work-around.
    Thanks,
    Mark

  • KSLD bug report:  32 bit causes target panic

    Since the bug report link:
    http://soldc.sun.com/developer/support/driver/tools/KSLD/bug-report.html
    goes to a non existant email address, I thought I would post here.
    Setup:
    ksld 1.01
    target and host booted with kernel/unix (32 bit)
    /proto directory struct as described in starting ksld doc
    debugging ramd driver example
    ramd directory:
    drwxr-xr-x 4 root other 512 Feb 11 12:40 .
    drwxr-xr-x 10 root other 512 Feb 11 12:47 ..
    drwxrwxrwx 2 bin bin 512 Feb 11 10:26 777
    -rw-r--r-- 1 root other 341 Feb 11 11:31 Makefile
    -rw-r--r-- 1 root other 1610 Apr 24 2001 README
    -rw-r--r-- 1 root other 3588 Apr 18 2001 install
    lrwxrwxrwx 1 root other 52 Feb 11 10:47 misc -> /export/home/ksld-space/proto/root_sparc/kernel/misc
    -rw-r--r-- 1 root other 2523 Apr 18 2001 ntestram.c
    -rw-r--r-- 1 root other 2542 Apr 18 2001 printinfo.c
    lrwxrwxrwx 1 root other 6 Feb 11 10:46 proto -> /proto
    -rw-r--r-- 1 root other 25713 Feb 11 11:29 ramd.c
    -rw-r--r-- 1 root other 291 Apr 18 2001 ramd.conf
    -rw-r--r-- 1 root other 210 Apr 18 2001 ramio.h
    drwxrwxrwx 4 bin bin 512 Feb 11 19:51 sparc
    -rw-r--r-- 1 root other 1785 Apr 18 2001 testram.c
    lrwxrwxrwx 1 root other 67 Feb 11 10:48 unix.281 -> /export/home/ksld-space/proto/root_sparc/platform/sun4u/kernel/unix
    HOST output
    home1# ksld -t hardwire unix.281 99
    Reading unix.281
    KSLD v1.0 on sun4u [SunOS 5.8]
    Current thread is 0x4001fe60
    Reading krtld
    Reading genunix
    Reading platmod
    Reading SUNW,UltraSPARC-II
    Reading specfs
    Reading TS
    Reading TS_DPTBL
    Reading ufs
    Reading fssnap_if
    Reading rpcmod
    Reading ip
    Reading rootnex
    Reading options
    Reading sad
    Reading pseudo
    Reading sd
    Reading scsi
    Reading glm
    Reading pcipsy
    Reading dada
    Reading todmostek
    Reading procfs
    Reading sockfs
    Reading clone
    Reading ip6
    Reading tcp
    Reading md5
    Reading tcp6
    Reading udp
    Reading udp6
    Reading icmp
    Reading icmp6
    Reading arp
    Reading timod
    Reading conskbd
    Reading wc
    Reading ebus
    Reading su
    Reading kb
    Reading ms
    Reading consms
    Reading se
    Reading elfexec
    Reading fifofs
    Reading ldterm
    Reading ttcompat
    Reading zs
    Reading ptsl
    Reading ptc
    Reading rts
    Reading tl
    Reading keysock
    Reading sysmsg
    Reading cn
    Reading pipe
    Reading mm
    Reading hme
    Reading ufs_log
    Reading doorfs
    Reading devinfo
    Reading iwscn
    Reading log
    Reading sy
    Reading fctl
    ksld_dbx: can't stat /platform/sun4u/kernel/drv/afb -- No such file or directory
    Reading afb
    ksld_dbx: can't open /platform/sun4u/kernel/drv/afb -- No such file or directory
    Reading fd
    Reading busra
    Reading cs
    Reading winlock
    Reading seg_drv
    Reading usba
    Reading kstat
    Reading vol
    Reading cpc
    Reading tnf
    Reading pcihp
    Reading hpcsvc
    Reading pcicfg
    Reading nfssrv
    Reading nfs
    Reading rpcsec
    Reading tlimod
    Reading seg_mapdev
    Reading inst_sync
    Reading mntfs
    Reading tmpfs
    Reading klmmod
    Reading autofs
    Reading connld
    Reading bootdev
    Reading shmsys
    Reading ipc
    Reading ramd
    Reading kaio
    detected a multithreaded program
    t@0 stopped in (unknown) at 0xedd000d8
    0xedd000d8: ta %icc,%g0 + 125
    (ksld_dbx) module -v ramd.o
    Module: ramd.o
    Language: ansic
    Debugging information: read [stabs version: 3.1]
    Source file: /opt/SUNWddk/src/drivers/ramd/ramd.c
    Object file: /opt/SUNWddk/src/drivers/ramd/sparc/obj32/ramd.o
    Loadobject: /usr/kernel/drv/ramd
    (ksld_dbx) stop in ram_strategy
    (2) stop in ram_strategy
    poll in failed
    can't set breakpoint
    TARGET output:
    connected
    New connection: uid 0, fd 7
    Begin traceback... sp = edd48290
    Called from edd009dc, fp=edd47b41, args=34 edd308ee eddc40a8 34 edd042f0 edd042ec
    Called from edd03624, fp=edd47c11, args=fff74000 edda51f0 102d087a ffffffff91d0207e 0 4
    Called from edd0c0d0, fp=edd47cd1, args=102d087a 91d0207e ff1bd714102d087a 100 edd48608 27
    Called from edd0a394, fp=edd47d81, args=eddb7788 8 eddc16a1 f0000 1 ffff
    Called from edd176d4, fp=edd47e31, args=ffff eddb7788 0 1 0 eddc1690
    Called from edd0e470, fp=edd47f41, args=edd49058 0 0 3c 0 edda69d8
    Called from edd0e214, fp=edd47ff1, args=eddb6d58 eddc1690 edd49158 ffffffffffffffff 10000 edd483e0
    Called from edd0e154, fp=edd480a1, args=eddc1640 edda3550 0 0 0 0
    Called from edd071b4, fp=edd48121, args=0 0 0 0 0 0
    Called from 0, fp=0, args=0 0 0 0 0 0
    End traceback...
    abort jump: trap 34 sp edd48290 pc edd042ec npc edd042f0
    etext edd308ee estack edd489a0 edata edda2388 nofault edda2658
    ksld_kadb[0]: (`o403P0801So6mLD42d8N_lK^bH00004)(`o403P0801So6mLD42d8N_lK^bH0000
    panic[cpu0]/thread=4001fe60: BAD TRAP: type=34 rp=4002fbc0 addr=40030507 mmu_fsr=0
    sched: alignment error:
    addr=0x40030507
    pid=0, pc=0xedd2ba78, sp=0x4002fc50, tstate=0x1404, context=0x0
    g1-g7: 1000c000, edda1f78, edda1f78, 0, edda2658, 14aef0, 4001fe60
    panic: entering debugger (continue to save dump)
    Trap 7d
    What is wrong with the setup,when a breakpoint would cause a traceback and panic on the target?

    One other possibility is having sufficient rights, especially if you are invoking it via some other app, rather than manually as a logged in user. If you are not logged in and instead invoke it via a web site action, I believe you will have problems reading the registry, accessing a desktop, writing to disk, etc.
    Sorry I can't be more definitive, but perhaps it will help.
    Please post your conclusion, if you find it.
    --Ian

  • Help! Macbook Pro Keeps Crashing.  Here Is The Bug Report

    Please, please, please can someone help me my mac keeps crashing for the last week and I dont know why.
    I  keep getting the grey screen of death
    I have included the bug report below.
    Mac Specs
    I have a Macbook Pro 17"
    Model Identifier: MacBookPro8,3
    Late 2011 Version
    2.2ghz Intel Core i7
    Intel HD Graphics 3000 512 MB
    Software  OS X 10.9.4 (13E28)
    I am running  the OS off an SSD 750 GB Drive connected internally (have been for over a year with no issues)
    The drive that came with my mac got corrupted so I replaced it with the SSD
    I am using an external monitor AOC connected via thunderbolt (have had this set up for over 1.5 years with no issues.
    Bug Report
    Anonymous UUID:       DDEA4723-7244-E776-B61A-34B381E8523F
    Tue Jul 29 23:34:57 2014
    panic(cpu 5 caller 0xffffff8003e4e5ca): "A kext releasing a(n) GenericUSBXHCI has corrupted the registry."@/SourceCache/xnu/xnu-2422.110.17/libkern/c++/OSObject.cpp:218
    Backtrace (CPU 5), Frame : Return Address
    0xffffff81ee4cbe00 : 0xffffff8003a22f79
    0xffffff81ee4cbe80 : 0xffffff8003e4e5ca
    0xffffff81ee4cbed0 : 0xffffff8003e9b6e7
    0xffffff81ee4cbef0 : 0xffffff8003ea9d0f
    0xffffff81ee4cbf30 : 0xffffff8003eaf292
    0xffffff81ee4cbf80 : 0xffffff8003eaf367
    0xffffff81ee4cbfb0 : 0xffffff8003ad7417
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000003800000
    Kernel text base: 0xffffff8003a00000
    System model name: MacBookPro8,3 (Mac-942459F5819B171B)
    System uptime in nanoseconds: 49357323350
    last loaded kext at 46443091940: com.apple.driver.AppleBluetoothMultitouch 80.14 (addr 0xffffff7f858c1000, size 77824)
    loaded kexts:
    com.bresink.driver.BRESINKx86Monitoring 9.0
    com.avatron.AVExFramebuffer 1.7
    com.displaylink.driver.DisplayLinkDriver 2.1
    net.telestream.driver.TelestreamAudio 1.1.0
    com.techsmith.TACC 1.0.2
    com.logmein.driver.LogMeInSoundDriver 1.0.3
    com.avatron.AVExVideo 1.7
    com.sonnet.driver.SXHCD 1.27.9b2
    net.osx86.kexts.GenericUSBXHCI 1.2.7
    com.apple.driver.AppleBluetoothMultitouch 80.14
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.ApplePolicyControl 3.6.22
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.kext.AMDFramebuffer 1.2.4
    com.apple.driver.AppleHDAHardwareConfigDriver 2.6.3f4
    com.apple.iokit.IOBluetoothUSBDFU 4.2.6f1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleHWAccess 1
    com.apple.AMDRadeonX3000 1.2.4
    com.apple.driver.AppleIntelMCEReporter 104
    com.apple.driver.AppleIntelHD3000Graphics 8.2.4
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.kext.AMD6000Controller 1.2.4
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleIntelSNBGraphicsFB 8.2.4
    com.apple.driver.AppleMuxControl 3.6.22
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyEventDriver 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.driver.AppleFileSystemDriver 3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBUHCI 656.4.1
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.driver.IOBluetoothHIDDriver 4.2.6f1
    com.apple.driver.AppleMultitouchDriver 245.13
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAcceleratorFamily 98.22
    com.apple.driver.AppleThunderboltEDMSink 2.1.3
    com.apple.driver.AppleThunderboltDPOutAdapter 3.1.7
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.kext.AMDSupport 1.2.4
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleUSBAudio 2.9.5f8
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0

    Looks like the Open Source USB 3.0 driver GenericUSBXHCI is causing this. I'd suggest uninstalling it.

  • Solaris 9 x86 bug report - el_GR.ISO8859-7 & CDE

    I'm posting this article here, because I can't find any official Solaris 9 x86 bug report page. I hope the developers will notice it. I'm using Solaris 9 x86 (12/02), with the latest 9_x86_Recommended patch cluster installed, and support for Greek installed too.
    It seems there is some kind of problem, when trying to view text files with Greek (el_GR.ISO8859-7) characters, which were created under Windows. To be more specific:
    If I boot at CDE with language el_GR.ISO8859-7, and try to view a .txt file (just with a simple double click), which I have created under Windows, with Greek characters,
    the screen goes black, and the CDE login screen appears again (restarts). If I keep the Greek language or change the language to US English, I can boot at CDE again, with
    no problems. If I try "command line logging", the screen goes off - just like when the computer is powered off, and I can't do anything, (well, except pressing the reset button, that's the sure way). And if I use the "init 6" command, while being logged at CDE, from a terminal, the Graphical Desktop exits, and then, the screen goes off again (just like the computer is powered off), but finally the computer manages to restart.
    I'm using the Sun X server, NOT the XFree86 porting kit and I use the entry
    :0 Local local_uid@console nobody /usr/openwin/bin/Xsun :0 -dpsfileops
    in /usr/dt/config/Xservers file, to start the X server.
    Here is the $HOME_DIR/.dt/startlog file:
    --- ??? 23 ??? 2003 12:10:51
    --- /usr/dt/bin/Xsession starting...
    --- starting /usr/openwin/bin/speckeysd
    --- Xsession started by dtlogin
    --- starting /usr/dt/bin/dtsession_res -load -system
    --- sourcing /root/.dtprofile...
    --- sourcing /usr/dt/config/Xsession.d/0010.dtpaths...
    --- sourcing /usr/dt/config/Xsession.d/0015.sun.env...
    --- sourcing /usr/dt/config/Xsession.d/0020.dtims...
    --- sourcing /usr/dt/config/Xsession.d/0030.dttmpdir...
    --- sourcing /usr/dt/config/Xsession.d/0040.xmbind...
    --- sourcing /usr/dt/config/Xsession.d/1000.solregis...
    --- could not read /root/.profile
    --- starting /usr/dt/bin/dthello &
    --- starting /usr/dt/bin/dtsearchpath
    --- starting /usr/dt/bin/dtappgather &
    --- starting /usr/dt/bin/dsdm &
    --- session log file is /root/.dt/sessionlogs/www_DISPLAY=:0
    --- DTSOURCEPROFILE is 'true' (see /root/.dtprofile)
    --- execing /usr/dt/bin/dtsession with a /sbin/sh login shell ...
    --- starting desktop on /dev/pts/3
    Sun Microsystems Inc.     SunOS 5.9     Generic_112234-03     November 2002
    /usr/dt/bin/ttsession[337]: starting
    X connection to :0.0 broken (explicit kill or server shutdown).
    X connection to :0.0 broken (explicit kill or server shutdown).
    I don't know if this is a bug or something, and I'm very curious about the cause. I didn't have much time for any other "experiments".
    Anyway, I hope this will help developers solve a problem -if it really exists-.
    Angelos Vasilopoulos
    Site Security Officer
    [email protected]

    I'm posting this article here, because I can't find any official Solaris 9 x86 bug report page. I hope the developers will notice it. I'm using Solaris 9 x86 (12/02), with the latest 9_x86_Recommended patch cluster installed, and support for Greek installed too.
    It seems there is some kind of problem, when trying to view text files with Greek (el_GR.ISO8859-7) characters, which were created under Windows. To be more specific:
    If I boot at CDE with language el_GR.ISO8859-7, and try to view a .txt file (just with a simple double click), which I have created under Windows, with Greek characters,
    the screen goes black, and the CDE login screen appears again (restarts). If I keep the Greek language or change the language to US English, I can boot at CDE again, with
    no problems. If I try "command line logging", the screen goes off - just like when the computer is powered off, and I can't do anything, (well, except pressing the reset button, that's the sure way). And if I use the "init 6" command, while being logged at CDE, from a terminal, the Graphical Desktop exits, and then, the screen goes off again (just like the computer is powered off), but finally the computer manages to restart.
    I'm using the Sun X server, NOT the XFree86 porting kit and I use the entry
    :0 Local local_uid@console nobody /usr/openwin/bin/Xsun :0 -dpsfileops
    in /usr/dt/config/Xservers file, to start the X server.
    Here is the $HOME_DIR/.dt/startlog file:
    --- ??? 23 ??? 2003 12:10:51
    --- /usr/dt/bin/Xsession starting...
    --- starting /usr/openwin/bin/speckeysd
    --- Xsession started by dtlogin
    --- starting /usr/dt/bin/dtsession_res -load -system
    --- sourcing /root/.dtprofile...
    --- sourcing /usr/dt/config/Xsession.d/0010.dtpaths...
    --- sourcing /usr/dt/config/Xsession.d/0015.sun.env...
    --- sourcing /usr/dt/config/Xsession.d/0020.dtims...
    --- sourcing /usr/dt/config/Xsession.d/0030.dttmpdir...
    --- sourcing /usr/dt/config/Xsession.d/0040.xmbind...
    --- sourcing /usr/dt/config/Xsession.d/1000.solregis...
    --- could not read /root/.profile
    --- starting /usr/dt/bin/dthello &
    --- starting /usr/dt/bin/dtsearchpath
    --- starting /usr/dt/bin/dtappgather &
    --- starting /usr/dt/bin/dsdm &
    --- session log file is /root/.dt/sessionlogs/www_DISPLAY=:0
    --- DTSOURCEPROFILE is 'true' (see /root/.dtprofile)
    --- execing /usr/dt/bin/dtsession with a /sbin/sh login shell ...
    --- starting desktop on /dev/pts/3
    Sun Microsystems Inc.     SunOS 5.9     Generic_112234-03     November 2002
    /usr/dt/bin/ttsession[337]: starting
    X connection to :0.0 broken (explicit kill or server shutdown).
    X connection to :0.0 broken (explicit kill or server shutdown).
    I don't know if this is a bug or something, and I'm very curious about the cause. I didn't have much time for any other "experiments".
    Anyway, I hope this will help developers solve a problem -if it really exists-.
    Angelos Vasilopoulos
    Site Security Officer
    [email protected]

  • Bug report, how do I find out what is wrong?

    my computer keeps getting bug reports stuck all over the desktop. When I print them it is 3 pages long and I dont know how to use the information from it. It only occurs when my son is using Runescape an online game. My son says he has reported all the errors when the computer prompts him to. I did find an Bug Report that seems to be associated with this problem. Our computer did shut down occasionally also, but since I switched the location of the new memory I added it has not continued. The reason I am checking with this website is because this is where the reports are going. The first part of the error report from my computer is this:
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x809D50E
    Function=JVM_FindSignal+0x10882
    Library=C:\PROGRA~1\Java\J2RE14~1.2\bin\client\jvm.dll
    Current Java thread:
         at r.a(Unknown Source)
         at r.a(Unknown Source)
         at client.t(Unknown Source)
         at client.B(Unknown Source)
         at client.a(Unknown Source)
         at a.run(Unknown Source)
         at client.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    And the last part of the report reads this:
    Local Time = Fri Mar 04 21:38:29 2005
    Elapsed Time = 58
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2-b28 mixed mode)
    What do I need to do to fix this problem? Could it be Runescapes issue? Is there other information that is more important to this? I really appreciate any help I can get with this problem. And I am sorry for being so long. I have included the Bug Report I found that is an almost exact duplicate of our issue.
    Thank you again, Linda Peterson.
    COPIED FROM BUG REPORT SEARCH AREA
    Bug ID: 5092499
    Votes 1
    Synopsis IA64 - EXCEPTION_ACCESS_VIOLATION on IA664 W2003
    Category java:runtime
    Reported Against 1.4.2_05
    Release Fixed
    State In progress, bug
    Related Bugs
    Submit Date 26-AUG-2004
    Description OS: Windows2003 [5.2.3790]
    Chip: Itanium 2
    JVM: Sun 1.4.2_05-b04 64-bit server VM
    Error message:
    EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x84D5F10
    Function=[Unknown]
    Library=C:\j2sdk1.4.2_05\jre\bin\server\jvm.dll
    Error ID: 4F530E43505002EF
    xxxxx@xxxxx 10/5/04 20:02 GMT
    Work Around N/A
    Evaluation Post tiger
    xxxxx@xxxxx 2004-09-02
    Comments
    Include a link with my name & email
    Submitted On 05-FEB-2005
    JavaJava13 Hey just wondering. Java is used for runescape on my computer, and it seems to be constantly crashing lately. Not only the game is crshing, it seems to even take down the whole computer with it. Sometimes the computer restarts and I get an error message.
    "Your system has recovered from a serious error"
    Java continues to add error reports to my desktop with this code: 4F530E43505002EF
    Anyone help?

    try checking with runescapes FAQ/tech support. I play
    WC3: RoC and i only got that same memory location
    error(0xc0000005). I got that memory error when I
    used a no-cd third party program when they upgraded
    the server. So, my advice is check on the FAQ for
    errors and ask your son if he is using
    ANY third party programs.The 0xc0000005 error is a standard error on Windows that can occur for any number of reasons.
    It means something in the application tried to access memory to which windows knows the application should not be accessing.

  • Bug Report: DW CS5.5 Crashes Every Time On An Image Map

    I am posting this in lieu of contacting Adobe support. I went to my account to send Adobe a bug report and was told I needed to contact support via phone. That's pretty crappy. As a licensed user who's owned it less than three months, there's no direct path to tell you guys that your software is broken?
    Here's the deal: I am working on an HTML landing page with one image map attached to one image. Literally, every time I make a modification to the code near the image (tied to the image map) then click into the live preview window, Dreamweaver CS5.5 crashes like a 70-year old on a bar of soap on the floor of the shower. It crashes hard. My only relief is to save the file before clicking into the live preview window. That's my only workaround to the problem.
    But I'm left amazed that I can crash it every single time over an image map, flicking from the code to the preview pane. You would think that at version 11.5, a minor thing like that wouldn't hemorrage the supposed creme de la creme of web design software.
    Here's the code I'm editing that causes it to crash:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
              <?php
              require_once("/var/www/html/c/index.php");
              $recip_name = $subscriber['first_name'].' '.$subscriber['last_name'];
              ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="/c/print.css" type="text/css" rel="stylesheet" media="print">
    <title>Membership Special - No Commitment</title>
    </head>
              <?php // Google Link Tracking Code ?>
              <script type='text/javascript' src='/c/google-analytics-code.js'></script>
              <?php // End Google Link Tracking Code ?>
        <!-- Source File -->
              <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.9.0/build/reset/reset-min.css">
        <style type="text/css">
                        body {font:normal 14px/1.25em Georgia, "Times New Roman", Times, serif;}
                        h1,h2,h3,h4,h5,h6 {font-weight:bold;color:#333333;}
                        h1 {font:normal 28px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h2 {font:normal 24px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h3 {font:normal 20px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h4 {font:normal 16px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h5 {font:normal 12px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h6 {font:normal  8px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        a, a:link, a:visited, a:active {color:#0055FF;}
                        a:hover {color: #002AFF;}
                        #wrapper {margin:0 auto;width:432px;}
                        #header, #footer {margin:20px auto;text-align:center;position:relative;}
                        #footer {margin:40px auto;}
                        #coupon {position:relative;}
                        #coupon, #coupon img {margin:0 auto;text-align:center;}
                        .personalization {position:absolute;width:100%;text-align:center;text-transform:uppercase;}
                        .printcoupon {text-transform:uppercase;}
              </style>
    <body>
    <div id="wrapper">
    <div id="header">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    <div id="coupon">
              <img src="images/19415coupon-01.jpg" width="432" height="432" />          <!-- <div class="personalization" style="left:0;top:818px;"><h1><?php echo $recip_name; ?></h1></div> -->
      <img src="images/19357coupon-02.jpg" width="550" height="602" usemap="#imagemap" class="dontprint"/>
    </div>
    <div id="footer">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    </div>
    <map name="imagemap">
              <area coords="29,69,521,197" shape="rect" href="javascript:window.print();">
              <area coords="29,212,521,339" shape="rect" href="http://www.google.com" target="_blank" onClick="recordOutboundLink(this, 'Landing Page', 'http://www.google.com');return false;">
                        </map>
    </body>
    </html>

    Bug Report and Feature Request https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • HTML Snippet widget bug report.

    Dear Apple iWeb 08 Engineers.
    I didn't know where to send this bug report and so I have resorted to this forum. I hope it gets to you somehow.
    When creating a simple HTML Snippet in a page it seems that the piece of code that refers to the newly created widget in the .html for the page has a bug in it. For example, I have a page on my website called "Animation"; it has a simple HTML Snippet the code for which has been tested (by viewing the file widget0_markup.html in a browser). In Animation.html the following line appears
    <iframe id="widget0-frame" src=".//Animationfiles/widget0markup.html" frameborder="0" style="width: 100%; height: 100%;" scrolling="no" marginheight="0" marginwidth="0" allowTransparency="true"></iframe>
    Surely the pathname in the "src" option is in error (what the **** is .//?). If I change it to ./ by hand then everything works. Please change this asap, because at the moment I have to go into every page and change it by hand after publishing.
    Many thanks, Marvin.

    Thanks for the reply, but I'm afraid that I'm not convinced.
    In all the flavours of unix that I've ever used ./ is the current directory, ../ is the parent directory and ../../ is the grandparent directory (not .// as you suggest). In any case, the path name of source file in question is ./Animationfiles/widget0markup.html (assuming the code in question is in the file Animation.html) and so going up the tree into the grandparent directory is not what you want to do anyway; the directory Animation_files is always in the same directory as Animation.html and the file widget0_markup.html is saved, by iWeb upon publication, in the directory ./Animation_files.
    In short, I still think it's a bug, but thanks for the advice; I apologise if I am wrong.
    Marvin.

Maybe you are looking for