DBMS_LOB.loadfromfile don't work?

I have a word doc file, I write a stored proc using DBMS_LOB.loadfromfile to load it into a BLOB record.
-the DBMS_LOB.getlength successfully got the length
-but when I use form ole container to show it....the ole container show nothing.
-if I use initialize_container ... it works....why?
my stored proc :-
PROCEDURE XXinsert_file AS
lobd BLOB;
fils BFILE := BFILENAME('UPLOAD', 'A1.TXT');
length integer;
BEGIN
-- update ole_container set ole_content = empty_blob() where container_id = 'CH050100001';
SELECT ole_content INTO lobd FROM ole_container
WHERE container_id = 'CH050100001' for update;
dbms_lob.fileopen(fils, dbms_lob.file_readonly);
length := dbms_lob.getlength(fils);
dbms_lob.loadfromfile(lobd, fils, length);
update ole_container set file_length = length where container_id = 'CH050100001';
dbms_lob.fileclose(fils);
COMMIT;
END XXinsert_file;

Forms wraps files in a larger structure before storing them as blobs. So in Forms you can only read files that were loaded through Forms, and using dbms_lob you can only read files that were loaded through dbms_lob.

Similar Messages

  • Dbms_lob.loadfromfile help

    sorry in advance if this is basic - SQL developer virgin here . . .
    Using the examples in this document
    http://download-west.oracle.com/docs/cd/B14117_01/appdev.101/b10840/mm_uses.htm
    specifically the code:
    INSERT INTO soundtable(id, sound) VALUES (1, EMPTY_BLOB());
    COMMIT;
    DECLARE
    f_lob BFILE := BFILENAME('AUDDIR','chimes.wav');
    b_lob BLOB;
    Lob BLOB;
    Length INTEGER;
    BEGIN
    SELECT sound INTO b_lob FROM soundtable WHERE id=1 FOR UPDATE;
    -- Open the LOBs.
    dbms_lob.open(f_lob, dbms_lob.file_readonly);
    dbms_lob.open(b_lob, dbms_lob.lob_readwrite);
    dbms_lob.loadfromfile
    (b_lob, f_lob, dbms_lob.getlength(f_lob));
    -- Close the LOBs.
    dbms_lob.close(b_lob);
    dbms_lob.close(f_lob);
    COMMIT;
    -- Select the LOB:
    SELECT sound INTO Lob FROM soundtable
    WHERE ID = 1;
    -- Opening the LOB is optional.
    DBMS_LOB.OPEN (Lob, DBMS_LOB.LOB_READONLY);
    -- Get the length of the LOB.
    length := DBMS_LOB.GETLENGTH(Lob);
    IF length IS NULL THEN
    DBMS_OUTPUT.PUT_LINE('LOB is null.');
    ELSE
    DBMS_OUTPUT.PUT_LINE('The length is '|| length);
    END IF;
    -- Closing the LOB is mandatory if you have opened it.
    DBMS_LOB.CLOSE (Lob);
    END;
    2 questions for anyone who has done this before or has an opinion:
    1) In the initial insert -- INSERT INTO soundtable(id, sound) VALUES (1, EMPTY_BLOB()); -- if the value for the column "id" is sequence.next_val I could end up with an "id" of 3012 for example:
    so how would I find out what value the "id" is before doing the next step:
    SELECT sound INTO b_lob FROM soundtable WHERE id=1 FOR UPDATE;
    I would have to do:
    SELECT sound INTO b_lob FROM soundtable WHERE id=<whatever_was_generated_by_the_sequence> FOR UPDATE;
    and if there are 10 people inserting at about the same time, how the heck am I supposed to know which "id" goes with which content file?
    any help is appreciated

    You can use the returning clause to store the generated sequence value that was inserted into id into a variable, then reference that variable in the rest of your code, as demonstrated below.
    SCOTT@10gXE> CREATE TABLE soundtable
      2    (id    NUMBER,
      3       sound BLOB DEFAULT EMPTY_BLOB ())
      4  /
    Table created.
    SCOTT@10gXE> CREATE SEQUENCE your_sequence
      2  /
    Sequence created.
    SCOTT@10gXE> VARIABLE g_id_seq NUMBER
    SCOTT@10gXE> INSERT INTO soundtable (id)
      2  VALUES (your_sequence.NEXTVAL)
      3  RETURNING id INTO :g_id_seq
      4  /
    1 row created.
    SCOTT@10gXE> COMMIT
      2  /
    Commit complete.
    SCOTT@10gXE> CREATE OR REPLACE DIRECTORY auddir AS 'C:\WINDOWS\Media'
      2  /
    Directory created.
    SCOTT@10gXE> SET SERVEROUTPUT ON
    SCOTT@10gXE> DECLARE
      2    f_lob  BFILE := BFILENAME ('AUDDIR', 'chimes.wav');
      3    b_lob  BLOB;
      4    Lob    BLOB;
      5    Length INTEGER;
      6  BEGIN
      7 
      8    SELECT sound
      9    INTO   b_lob
    10    FROM   soundtable
    11    WHERE  id = :g_id_seq
    12    FOR UPDATE;
    13 
    14    dbms_lob.open (f_lob, dbms_lob.file_readonly);
    15    dbms_lob.open (b_lob, dbms_lob.lob_readwrite);
    16    dbms_lob.loadfromfile
    17        (b_lob, f_lob, dbms_lob.getlength (f_lob));
    18    dbms_lob.close(b_lob);
    19    dbms_lob.close(f_lob);
    20    COMMIT;
    21 
    22    SELECT sound
    23    INTO   Lob
    24    FROM   soundtable
    25    WHERE  ID = :g_id_seq;
    26    length := DBMS_LOB.GETLENGTH (Lob);
    27    IF length IS NULL THEN
    28        DBMS_OUTPUT.PUT_LINE ('LOB is null.');
    29    ELSE
    30        DBMS_OUTPUT.PUT_LINE ('The length is '|| length);
    31    END IF;
    32  END;
    33  /
    The length is 55776
    PL/SQL procedure successfully completed.
    SCOTT@10gXE>

  • DBMS_LOB.LOADFROMFILE causes numeric value error

    The code below causes a numeric value error when I do LOADFROMFILE. Do you have any suggestions. Thanks.
    declare
    locator bfile;
    cloblocator clob;
    buffer varchar2(1000);
    lsize integer := 0;
    amount INTEGER := 1000;
    v_filename varchar(50) := 'notify_offer_tbl';
    begin
    locator := bfilename('IDEA_DATA_DIR','notify_offer_tbl');
    insert into imsa.t_unix_logs values ('notify_offer_tbl', locator, empty_clob());
    Select fileloclob into cloblocator from imsa.t_unix_logs where filename ='notify_offer_tbl' for update;
    if dbms_lob.fileexists(locator) = 1 then
    dbms_output.put_line('Exists');
    if dbms_lob.fileisopen(locator) = 1 then
    dbms_output.put_line('open');
    else
    dbms_output.put_line('close');
    dbms_lob.fileopen(locator, DBMS_LOB.FILE_READONLY);
    lsize := dbms_lob.getlength(locator);
    dbms_output.put_line('File Length: ' || to_char(lsize));
    DBMS_LOB.LOADFROMFILE(cloblocator, locator, lsize);
    commit;
    end if;
    end if;
    DBMS_LOB.READ(cloblocator, amount, 1, buffer);
    dbms_output.put_line('File ' || buffer);
    DBMS_LOB.FILECLOSE(locator);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('Error -- ' || SUBSTR(sqlerrm, 1, 200));
    DBMS_LOB.FILECLOSE(locator);

    Yes. The column clobcol (in the SELECT in your example) should be set to empty_clob() or already contain a CLOB, before selecting the column value into the local variable. The example in the DBMS_LOB documentation page is misleading as it does not mention this.
    Note also that it is best to use dbms_lob.getlength to establish the value for
    the amount parameter.
    Hope this helps others searching for information on this - I have spent some painful hours working this out!
    Peter

  • Use dbms_lob.loadfromfile to handle chinese character

    Hello,
    I have a database with NLS_LANG=TRADITIONAL CHINESE_HONG KONG.ZHT16BIG5
    There is a table with clob type column.
    I've tried to use dbms_lob.loadfromfile to load file content into the clob type column.
    But the result is that no matter the file is english or chinese character, the column's content will become "monster".
    Is there any method to solve this problem ?
    Can anyone help ?
    Rgds,
    Edward
    null

    Hi, it's me again.
    I just want to share my experience and hope that it can help someone and someone can help me !
    I've created a database with UTF8 as my character set.
    With session's character set = UTF8, when I tried to use dbms_lob.loadfromfile to load data into clob column from a file with chinese character content. What has been stored is "monster" character. I know that it's because bfile is with binary type and will not do character set conversion when loadfromfile is being used.
    I've tried the other way, I use dbms_lob.read to read the file and use utl_raw to convert it to UTF8 character set and store it in a varchar2. It works !
    But what I want is to store the chinese character into the clob column.
    I've tried to use the following option but still fail :
    - convert (it's seems that has no effect)
    - utl_raw.translate (it always get oracle error, I've use this as : utl_raw.translate(RAW, 'UTF8', 'UTF8'))
    - utl_raw.convert
    Hope that some have experience can help me !
    Rgds,
    Edward
    null

  • "Enable Swipe" don't work and Tablet Layout on a Smartphone

    Hi there,
    I have two big problems with my own site www.mhgrafikdesign.de:
    1. I have different slideshows in my tablet version of my site. I created the slideshow before one of the updates with the feature "Enable swipe" came out. However, it worked well on my Samsung Galaxy Tab 10.1n. Now I have a Microsoft Surface and it's not working anymore although "Enable Swipe" is enabled. I don't know if the Microsoft Surface has problems with the slideshow or one of the updates has "damaged" my slideshow. Please help me! Any ideas?
    2. I have a HTC 8S smartphone and if I type www.mhgrafikdesign.de my smartphone always show me the tablet version. Any idea why? P.S. Swiping there is also not possible.
    Many thanks for quick help. My website is my flagship in the web and it's a little bit embarrassing if my slideshow on the tab don't work... = /

    This is now a slideshow created with Muse: Homepage
    The slideshow uses fullscreen mode and was build with the latest version of Muse. On my Win8-Tablet, it is not working. I tested this with the IE11 in desktop- and in modern-ui-mode.
    Next to this problem, I also run into these things:
    1. Using the buttons to go forward and backward in the slideshow will select the text-arrow inside the button when touched.
    2. Clicking the forward- and backward-button behaves different. Windows Desktop -> slideshow does not roll back, so you can click forever in one direction, no feedback that you reached the end. On iOS -> slideshow will be rolled back and you get the visual feedback to start over again.
    3. Zoom into the fullscreen-slideshow will result in strange and not really controllabel behaviour. Zooming in does not allow to pan.
    But I am not talking only about the phones. It is more about windows tablets in general. So, content can be viewed in the InternetExplorer11 in desktop-mode and also in modern-UI-mode (touch does work in both modes). But it is also possible, that people use other browsers like Firefox and Chrome. I think, it would be a quite a good idea to translate the movement of the mousepointer into gestures. This javascript library shows what I think is a good aproach: Hammer.JS - Hammer.js

  • Adobe Flash & Javascript don't work even though Enabled

    Ever since what I think was either a Firefox upgrade (I don't know which one) or installation of Quicktime, my Adobe Flash Plugin is perpetually crashed and I cannot play any Flash content on any website. All that displays in place of the video is a gray screen with the sad-face Lego icon and the message: “The Adobe Flash Plugin has crashed. Please reload the page to try again.” (See attached image.) But it will not resolve when reloaded.
    No Flash videos on any sites work. HTML5 videos work on YouTube when tested, but non-HTML5 videos won't work.
    Also, my Javascript does not seem to be working since at least some displays requiring javascript don't work. Sometimes the display just doesn't work, and sometimes I get a message that javascript is disabled and must be enabled, but it is already enabled (set to “true” in about:config).
    I have spent days scouring every help forum entry I can find on troubleshooting Flash Player and Javascript. Everything on my end seems to be in order and I cannot find or fix either problem. I think it is possible the issue could have its roots in the fact that Javascript seems to not be working which may be preventing Flash Player content from working...??
    Also, Flash content does work in I.E. but not in Firefox (I do not have Chrome installed so did not test in Chrome). I have too many window tabs open in Firefox and can't switch to I.E. (nor do I like to use I.E.).
    PLEASE HELP as this is crippling for very important work deadlines I have.
    This is what else I know and have tried:
    I have a Toshiba Satellite C75D-A Laptop;
    Processor: AMD A6-5200 APU with Radeon HD Graphics; x64; 2.00 Ghz;
    RAM: 8 MB;
    OS: 64-bit system; Windows 8.1 (but some auto-check utilities detect it as 8.0 because it was upgraded.);
    Graphics Card: “Desktop Graphics” System – AMD Radeon HD 8400 (0x9830);
    Installed Graphics Driver Version: AMD 13.352.1004.1007 (Driver Date: 4/22/2014)
    My Device Manager graphics driver updater states: “driver software is up to date.”
    From the AMD website: the graphics driver auto-detect utility recommended the AMD Catalyst Driver (amd-catalyst-omega-14.12-without-dotnet45-win8.1-64bit.exe) I tried installing this driver, but it won't install. After trying to install, I got a message stating: “We are unable to find a driver for your system.” But Device Manager states I have a current driver, and my graphics card & driver seem to be working fine, so I do not believe this is part of the issue.
    I am using Latest Firefox version 35.0.1; and
    Using Latest Flash Player: 32-bit NPAPI Plug-in Version: 16.0.0.296; designated: “always activate” (Downloaded new update several times, including fresh install after uninstall; system & web address icons indicate Flash is enabled).
    I turned off hardware acceleration in FF Tools>Options>Advanced>General
    I disabled WebGL as explained here: https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration
    I am using Ad-Block Plus which has never affected things in the past. I have not tried starting FF in Safe Mode because I believe I will lose all open tabs and not be able to recover them (I may have over 200 open). But disabling add-ons has no effect (I disabled all except for Sessions Manager in case of a crash). (My No-Script has been disabled for at least six months.)
    I have Windows Media Player and Quicktime installed.
    Quicktime is most recent upgrade (7.7.6) so should not be a problem according to:
    “QuickTime plugin takes over Flash” at:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here)
    Disabling Quicktime had no effect in the prior version of FF (ver. 35.0), but in latest FF ver. 35.0.1, Flash videos only display a plain (blank) gray screen instead of the sad-faced icon and crash message.
    (I tried to uninstall Quicktime altogether, but was not able to due to Error codes 2502 & 2503. I tried troubleshooting that as well with no luck using methods successful for other programs, including here:
    http://www.fixkb.com/2014/01/error-2503-and-2502-when-uninstalling-on-windows-8.html;
    & here:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-winapps/re-internal-error-codes-2502-and-2503-for/ba5f2145-aa6e-4cc0-81a7-e4346f43b698.)
    Disabling my FF theme and using the default brought back the sad-faced icon and crash message in the place of videos on some YouTube pages, but not other YouTube pages (where video was still blank gray screen). It also enabled a still Flash image (an ad) to display on a different website page that previously had a Flash Plugin crash message. I have been using this same theme for a couple of years without previous issue. While turning it off did generate an effect on some still imagery, it didn't fix the video problem.
    I tried Disabling Protected Mode in Flash 11.3 as explained here:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here).
    It did not solve the issue.
    I also deleted all storage & data in Flash Player as advised. This had no effect either.
    I've tried all solutions I've been able to find and am at a loss for what to try next. Please help and advise ASAP. Thank you!!

    ''guigs2 [[#answer-684038|said]]''
    <blockquote>
    I truely admire the efforts that have been made to make this work.
    "“We are unable to find a driver for your system.” "
    For it not installing, you need to follow these instructions to install them: see the comments: [http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_devices/windows-10-atiamd-display-drivers/50944d10-dde3-4e08-8244-d54eb2b1e7de] --> take warning though it looks like it has caused issues for others as well.
    Since it was working for some youtube videos and not others, there might be an issue with a particular video codec. DO you have OpenH264 Video Codec provided by Cisco Systems, Inc. plugin?
    Is it possible to try Safe Mode after saving your session with [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager Addon]? IT would test hardware acceleration in Firefox.
    </blockquote>
    Thank you, guigs2! Sorry for my delayed reply...I didn't realize I hadn't gotten back to you. Update is that I did try a whole slew of other troubleshooting steps including starting FF in safe mode, to no avail. However, I was FINALLY (after months) able to solve this problem just today by pure chance!
    The problem was that hardware acceleration was enabled in the Flash settings. I had not been able to turn it off because I didn't have access to the Flash Player settings as long as the crash error message was visible, which was all the time! Today, by a sheer fluke, I saw a static picture in place of the crash message on a Flash video. I snagged the opportunity to call up the settings and turn off hardware acceleration, and it fixed the problem for my whole browser! This has been a frustrating issue because I did not have access to the settings utility as long as I had the crash message, which was always, so my Flash was crippled without the ability for me to fix it until pure luck gave me this window of opportunity.
    Does anyone know another way to access the settings utility if this ever happens again in the future? I could not find a way. (Incidentally, I had tried disabling hardware acceleration via my graphics driver settings, but it didn't fix the problem.) We need Adobe to allow some other way to access the Flash Player settings utility when this problem arises since they aren't accessible when there is a static crash message.
    Thanks again!

  • IPod Touch: apps (facebook, twitter, facetime) don't work properly with my wireless internet having worked perfectly before. Help needed!

    I got my iPod Touch 4g for Christmas 2011 and for the first 2 weeks everything worked fine - I could download apps; use apps to their full potential; use FaceTime; use everything.
    But after the two weeks, the iPod decided to no longer work as well as it had promised. First of all, it would take more than 2 hours to download a single app from the app store and then, straight after that, I couldn't connect to FaceTime (it had worked perfectly before). Then, finally, to top it all off - Facebook and Twitter stopped working on occasions. For example, I couldn't post/send messages or photos on Twitter and at the majority of the time, the News Feeds wouldn't load.
    Sometimes everything works but most of the time it doesn't. I've tried my iPod at every time of the day and it makes no difference - nothing still works! Also, I don't think it is the fault of my wireless internet because I've had an iPod touch before and it worked perfectly, and the laptop that I am writing this question on also works perfectly with wifi.
    The weird thing is that I have used my iPod to its full potential (everything worked fine) at my friends hosue on multiple occasions - using his wifi. I am really lost for ideas for what to do - I have uninstalled all the apps that don't work with the internet (facebook, twitter) and have always made sure that I have closed apps after using them, so that my iPod wouldn't run slow.
    My iPod has been like this for over a month now, help would be appreciated

    Do you have a blackberry data plan active. On your account? You need an active blackberry data plan to use the majority of data functions on your phone, even if you are connected to wifi 

  • TV don't work with OSX Server software?

    Everything worked great BEFORE I updated our MacMini Intel to OSX Server software, now iTunes can't find the recent found Apple TV. And therefore the connection is gone and the syncing don't work anymore.
    Any work-around or suggestions on how to solve this?
    Or do I have to revert to previus userversion of OSX to make it work again?
    Is there a limitation built into OSX Server software or is there maybe some kind of firewall / preferences etc that needs to be adjusted? (The built in firewall has been disconnected.)
    FYI:
    All apps are up to date. The Mac Mini + Apple TV is on my local network at home and I'm trying to make it my family's digital hub for all family-related media.
    MacBook Pro CD2 & X-servers Mac OS X (10.4.9)
    MacBook Pro CD2 & X-servers   Mac OS X (10.4.9)  

    1) I've not tried to reset ATV from scratch. But it works fine on other Mac's on the network (sharing).
    2) Security options, yes I belive so to. I've followed all instructions and opened all ports I've seen mentioned i apples Knowledge database / support. Still don't work. Maybe I've missed some ports...
    3) YES! It works fine sharing the MacMinis lib over the network.
    4) Today I also tried to reinstall iTunes. But no luck.
    Any mor suggestions anyone? Thx
    I really wanny solve this, otherwhise my ATV is pretty useless for me...

  • Help needed! Just want to cancel my year subscription. No answer from support via mail, noone answers when I call, support chat don't work.

    Help needed! Just want to cancel my year subscription. No answer from support via mail, noone answers when I call, support chat don't work.

    Hi there
    I'll pass your details to our Russian team and they'll contact you to assist further.
    Kind regards
    Bev

  • Bookmarks exist but don't work in PDF (exported from InDesign)

    Hi all,
    I had a similar problem a few months ago where SOME cross-references within a document weren't taking you to the right place when exported to PDF although they appeared to work fine in InDesign (the "source" and "destination" arrows took you to the right place). Someone suggested exporting the file to IDML and importing again, which worked fine.
    Now I'm working on the same document (an update) but it's grown a bit and so each chapter is in its own file within a book. Problem is similar but not the same. Some cross-references work fine in the generated PDF, others are recognised as being links (cursor changes) but NO effect when clicking on them... not taking me to the wrong place, nothing is happening at all. ALSO the table of contents AND the bookmarks don't work.
    I've exported each chapter to IDML, recreated the InDesign files and recreated the book, but still no joy. If all else fails, I'll put the book back into a single file but I'd rather not go through this pain each time I have to update the book (especially as this latest change was really tiny).
    Any suggestions? Are cross-references between files in a book known to be problematic? And if they are, has the problem been addressed for CS5.5? (I'm looking to use InDesign for a journal that will contain a lot of links between elements, but the turnaround time is tight and I'm wary of this issue being a problem each month.)
    Currently using CS5 on Windows 7 Professional, and Acrobat 9 Pro Extended was installed as part of the Tech Comm Suite.
    Thanks in advance,
    Alison

    This is so funny...I was just about to close my email and look up the
    Forums to profusely thank the person who posted the solution to a similar
    problem I was having in CS4.  I'd created numerous hyperlinks in Indesign
    documents and sometimes the links worked in a pdf, and sometimes not.  The
    problem solver was talking about a solution in Word, but I found the same
    type of text in the PDF settings box that pops up when you want to save the
    pdf.  There are all kinds of checkboxes and I'd thought I was doing enough
    by checking 'add hyperlinks'...but the advisor said you have to make sure
    'tagged PDF' is CLEAR.   So the same thing will probably work for you with
    your bookmarks!  (...if the settings are similar in CS5 of course, and
    there's no reason they shouldn't be.  I guess.)
    The only thing is, there's a lot of what we call 'ant work' ahead of me.  I
    have to go back to each InDesign doc and retype the text in the home font,
    and create the hyperlinks over again.  Luckily, the hyperlink destinations
    are still there.  It's not enough just to export the document again with
    the Tagged checkbox cleared, and you can't create a new hyperlink over an
    old one; the 'new hyperlink' option isn't available under Interactive. So
    you may have the same problem.
    Let me know if this works!  I'm off to thank the person...
    Susan

  • Some share buttons don't work on my tablet

    I have a Samsung tablet, model GT-P3113 and its Operating System is Android. In some websites when I click share buttons like addthis and sharethis, they don't work and are inactive. I refresh the page and it doesn't help. For example, none of share buttons of http://www.threehosts.com/ratings/comparison-software/wordpress-vs-joomla-vs-drupal.html work on my tablet, but when I go to this page via my Laptop the share buttons work. My laptop OS is Windows 8.
    One of my friends has iPad and I sent this link to him. The share buttons work correctly for her.
    Does my problem come from my Android which doesn't support share plugins perfectly, or it comes from my tablet model?
    Is there anyone with Samsung GT-P3113 on this forum? If so, could you please test the mentioned page and tell if its share buttons are active or not?

    I have the Samsung Galaxy Tab 2,  7", model GT-P3113, wifi only (not on my Verizon plan).  It's currently running Android 4.2.2; the share buttons on the site you listed above seem to work for me...I didn't actually go through and "share" anything, but I did get to this screen and it appears that all I need to do is log in to whatever service I want to  use to share the post :

  • Upgraded to yosemite now my speakers don't work and i can't play videos on Facebook.

    When i play a video on face book I'm told i need to upgrade flashplayer, i wasn't even aware i had it downloaded! I have got rid of flash player (i think ) and now I'm told i need to download FP before i can watch videos. I can't play games on FB either and my speakers don't work.
    I wish i hadn't upgraded to Yosemite to be honest as i prefer the old layout and it seems to have caused me problems. Everything was working fine before the Upgrade to Yosemite.
    Im not good with computer terminology so please reply as simply as possible :-)
    Thank you

    Try un-installing and then re-installing.
    Adobe Flash Uninstaller
    Adobe Flash Player
    Adobe Flash Player updates available for OS X on October 24, 2014
    Sound.
    Sound – can’t hear sound from speaker - Yosemite
    Sound – No Sound After Upgrade (2)
    Sound Levels - Troubleshoot
    Sound – Troubleshooting Internal Speakers

  • Menus on some web sites don't work

    I have just activated 2 new Lumia 520 phones with Windows 8 mobile. (updated to Amber)
    When browsing the web, the menus don't work on a couple of web sites that I have written.
    These menus use Javascript to show drop down lists and to navigate to the appropriate pages. When you click a link on the menu, the drop down menu appears for a couple of seconds, then disappears. Even in the couple of seconds that the dropdown appears, it can not be clicked.
    Interestingly, these web sites also use javascript to open overlay pages when a thumbnail picture is clicked, This action works.
    These menus have been regression tested in all the major browsers and they work on a PC, Mac, iPad and Android but seem to fail on Windows 8 mobile.
    I searched and can't see any option that allows me to enable or disable Javascript.
    Here are links to those 2 sites:
    http://www.garynancy.com/index.html
    http://www.chisholmtv.com/
    What am I missing?

    The menuscript (popupmo.js) you are using will not work.
    I'd suggest you take this to http://developer.nokia.com where you will likely find more help as this is a general user to user support platform.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Chromium doesn't start and suspend, shutdown don't work occassionally

    Hello,
    I have this problem on my laptop but since chromium doesn't start on my desktop either, I don't think it's specific to laptops.
    When I try to start chromium in a terminal, I get a blank window (I can tell because I use spectrwm):
    ATTENTION: default value of option force_s3tc_enable overridden by environment.
    [25148:25148:0215/130205:ERROR:background_mode_manager_aura.cc(14)] Not implemented reached in virtual void BackgroundModeManager::EnableLaunchOnStartup(bool)
    I temporarily resorted to using Firefox instead, but at times it just freezes up while opening some pages. After that point, even killing firefox doesn't help: the system load level keeps on rising. I used pidof to check if firefox is still running, but I had no output from pidof. After having firefox to freeze, shutdown, suspend, etc don't work. The laptop goes to a black screen state, but the power LED remains on indefinitely.
    These might be two separate issues, but they started together on my laptop.
    Thanks in advance!
    Last edited by SgrA (2015-02-15 09:47:08)

    I also have issues wich starting up  chromium (google-chrome and opera too).
    Feb 15 10:09:58 localhost kernel: [ 102.301038] chromium[786]: segfault at 7ffffd294ff8 ip 00007fb4386962b2 sp 00007ffffd295000 error 6 in chromium[7fb43371e000+66c6000]
    Feb 15 10:12:16 localhost kernel: [ 240.102784] chromium D 0000000000000000 0 786 1 0x00000104
    Feb 15 10:12:16 localhost kernel: [ 240.102789] ffff8800c2d5bb68 0000000000000082 ffff8800c5635a90 0000000000013640
    Feb 15 10:12:16 localhost kernel: [ 240.102793] ffff8800c2d5bfd8 0000000000013640 ffffffff81818540 ffff8800c5635a90
    Feb 15 10:12:16 localhost kernel: [ 240.102796] ffff8800c2d5bb78 0000000000000246 ffffffff81a52047 ffff88042f5eeb08
    Feb 15 10:12:16 localhost kernel: [ 240.102799] Call Trace:
    Feb 15 10:12:16 localhost kernel: [ 240.102809] [<ffffffff8109e777>] ? try_to_wake_up+0x1e7/0x380
    Feb 15 10:12:16 localhost kernel: [ 240.102814] [<ffffffff81551599>] schedule+0x29/0x70
    Feb 15 10:12:16 localhost kernel: [ 240.102818] [<ffffffff81553e25>] rwsem_down_write_failed+0x175/0x360
    Feb 15 10:12:16 localhost kernel: [ 240.102823] [<ffffffff812c0e63>] call_rwsem_down_write_failed+0x13/0x20
    Feb 15 10:12:16 localhost kernel: [ 240.102827] [<ffffffff81553604>] ? down_write+0x24/0x40
    Feb 15 10:12:16 localhost kernel: [ 240.102832] [<ffffffff8122c5cd>] do_coredump+0x16d/0xf30
    Feb 15 10:12:16 localhost kernel: [ 240.102837] [<ffffffff81080524>] ? force_sig_info+0xd4/0xf0
    Feb 15 10:12:16 localhost kernel: [ 240.102841] [<ffffffff8107e3d7>] ? __sigqueue_free.part.15+0x37/0x40
    Feb 15 10:12:16 localhost kernel: [ 240.102846] [<ffffffff8108180c>] get_signal+0x38c/0x710
    Feb 15 10:12:16 localhost kernel: [ 240.102852] [<ffffffff81014617>] do_signal+0x37/0x800
    Feb 15 10:12:16 localhost kernel: [ 240.102855] [<ffffffff81550f08>] ? __schedule+0x3e8/0xa50
    Feb 15 10:12:16 localhost kernel: [ 240.102859] [<ffffffff81014e48>] do_notify_resume+0x68/0xa0
    Feb 15 10:12:16 localhost kernel: [ 240.102863] [<ffffffff81556322>] retint_signal+0x48/0x86
    Feb 15 10:12:16 localhost kernel: [ 240.102871] Watchdog D 0000000000000004 0 794 1 0x00000104
    Feb 15 10:12:16 localhost kernel: [ 240.102874] ffff880402757d40 0000000000000082 ffff8800c5632840 0000000000013640
    Feb 15 10:12:16 localhost kernel: [ 240.102877] ffff880402757fd8 0000000000013640 ffff880418841420 ffff8800c5632840
    Feb 15 10:12:16 localhost kernel: [ 240.102880] ffff880402757ce8 ffff880402757e70 00000000ffffff92 ffff880402757c98
    Feb 15 10:12:16 localhost kernel: [ 240.102883] Call Trace:
    Feb 15 10:12:16 localhost kernel: [ 240.102888] [<ffffffff810dbe32>] ? hrtimer_cancel+0x22/0x30
    Feb 15 10:12:16 localhost kernel: [ 240.102893] [<ffffffff810ed4e6>] ? futex_wait+0x206/0x280
    Feb 15 10:12:16 localhost kernel: [ 240.102897] [<ffffffff810dbbc0>] ? __run_hrtimer+0x250/0x250
    Feb 15 10:12:16 localhost kernel: [ 240.102900] [<ffffffff81551599>] schedule+0x29/0x70
    Feb 15 10:12:16 localhost kernel: [ 240.102903] [<ffffffff81553c65>] rwsem_down_read_failed+0xe5/0x130
    Feb 15 10:12:16 localhost kernel: [ 240.102906] [<ffffffff810ed0d0>] ? futex_wake+0x80/0x160
    Feb 15 10:12:16 localhost kernel: [ 240.102910] [<ffffffff812c0e34>] call_rwsem_down_read_failed+0x14/0x30
    Feb 15 10:12:16 localhost kernel: [ 240.102913] [<ffffffff815535d7>] ? down_read+0x17/0x20
    Feb 15 10:12:16 localhost kernel: [ 240.102918] [<ffffffff81060aed>] __do_page_fault+0x1ed/0x600
    Feb 15 10:12:16 localhost kernel: [ 240.102923] [<ffffffff8110e7f9>] ? seccomp_phase1+0x99/0x210
    Feb 15 10:12:16 localhost kernel: [ 240.102927] [<ffffffff81060f22>] do_page_fault+0x22/0x30
    Feb 15 10:12:16 localhost kernel: [ 240.102930] [<ffffffff81557598>] page_fault+0x28/0x30
    Feb 15 10:12:43 localhost kernel: [ 267.288947] chromium[920]: segfault at 7fff3faceff8 ip 00007fa90fcc62bc sp 00007fff3facf000 error 6 in chromium[7fa90ad4e000+66c6000]
    It started happening after upgrade:
    [2015-02-15 09:43] [ALPM] upgraded chromium (40.0.2214.94-1 -> 40.0.2214.111-1)
    I was wondering if it has anything to do with some X-related upgrades:
    [2015-02-15 09:42] [ALPM] upgraded xorg-server-common (1.16.3-2 -> 1.16.4-1)
    [2015-02-15 09:43] [ALPM] upgraded xorg-server (1.16.3-2 -> 1.16.4-1)
    [2015-02-15 09:48] [ALPM] upgraded xorg-server-devel (1.16.3-2 -> 1.16.4-1)
    [2015-02-15 09:45] [ALPM] upgraded nvidia (346.35-5 -> 346.35-6)
    I tried to downgrade chromimu to 40.0.2214.94-1 and it didn't help. I tried to downgrade nvidia, xorg-server and xorg-server-devel to previous versions, when everything worked and X chouldn't start.
    Other observations are that if I start chromium, the ps command hangs and I have to reboot the system to be able to use ps command again.
    Linux lisa 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:44:05 CET 2015 x86_64 GNU/Linux
    It's worth mentioning that I also run spectrwm, like SgrA, however i don't have other issues with freezing on shutdown etc.

  • "Archive" and "View" buttons don't work after folio update

    Hi all,
    I have a subscription to the professional edition and I have built a custom viewer app for Android. I have built about 10 folios and at first download all is ok, the folios are displayed without problems and the app works fine except for one issue: "Archive" button don't work, when I tap on it, near folio cover, nothing happens, the folio does not disappear from folios list.
    But the serious problem occurs when I perform a folio update from Folio Producer ('Update content' from adobe dashboard DPS): both "Archive" and "View" buttons stop working, nothig happens when I tap tap on them and I am forced to uninstall and reinstall the application on tablet (.apk file) to see folio changes in my custom viewer.
    This is very annoying as well as time expensive.
    Tablet is Samsun Galaxy Tab SII with Android 3.2.
    Any help is appreciated.

    To the best of my knowledge, the SII is a smartphone and not a tablet device, and the official claim is (correct me if I'm wrong) that DPS on Android is corrently tablet only.
    Anyway, it seems strange to me so checked and found out that even though the DPS apps are not available when you search for them in the Play Market of a smartphone you can still force load them to the phone and run them.
    I've done it on both a Samsung SIII running Android 4.0.4 and a Samsung GT-I9070 running Android 2.3.6 (I currently don't have a device running Android 3.2)
    The interface is so small that it's hardly possible to use it, but it works.

Maybe you are looking for