Developing a Website to be run from a DVD?

I'm a newcomer to Dreamweaver though I have some experience
with other web development tools. I've been asked to design an
interactive DVD. Yes, I know Director is the preferred application
but I don't want to learn Director for this single project. Is
there technology I can buy that will serve the site from the DVD?
Any products that will do so and read tables?

Hi Vooc,
You can do a straight HTML/CSS based site and run it from a
DVD, you can
even have some JavaScript, anything that is Client Side, or
browser based.
Unfortunately, when you say "interactive" It sounds like you
are looking for
more than this. Although you could do quite a bit with AJAX,
you will be
limited to reading data. Interactive implies writing as well,
and there's
where your going to get stuck. There's where you'll need
Director - OR -
what I would suggest is taking a good look at Adobe AIR:
http://labs.adobe.com/technologies/air/
This technology opens huge doors of possibility for this sort
of thing!
Lawrence Cramer
Cartweaver.com
"Vooc" <[email protected]> wrote in message
news:f78pb4$6is$[email protected]..
> I'm a newcomer to Dreamweaver though I have some
experience with other web
> development tools. I've been asked to design an
interactive DVD. Yes, I
> know
> Director is the preferred application but I don't want
to learn Director
> for
> this single project. Is there technology I can buy that
will serve the
> site
> from the DVD? Any products that will do so and read
tables?
>

Similar Messages

  • Disk Utility doesn't run from installation dvd.....

    hi there:)
    i ran a scheduled maintenance check using Onyx. It turned out that the disk could not be verified and it had to be fixed by inserting the installation dvd and running 'disk utility'. i inserted the dvd and ran the 'disk utility', however, it quit unexpectedly. the following message came up:
    Process: Disk Utility [417]
    Path: /Volumes/Mac OS X Install Disc 1/Applications/Utilities/Disk Utility.app/Contents/MacOS/Disk Utility
    Identifier: com.apple.DiskUtility
    Version: 10.5.8 (198.16)
    Build Info: DiskUtility-1981600~17
    Code Type: X86 (Native)
    Parent Process: launchd [172]
    Date/Time: 2008-12-28 12:28:49.499 +0000
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Dyld Error Message:
    Symbol not found: __commpagedsmos
    Referenced from: /Volumes/Mac OS X Install Disc 1/Applications/Utilities/Disk Utility.app/Contents/MacOS/Disk Utility
    Expected in: /usr/lib/libSystem.B.dylib
    i really want to know what to do to save my mac book!
    please help
    regards,
    rik

    Rik,
    Please reread my first post carefully & make sure you follow its instructions closely. The "Repair Disk" step (not the verify one) should be run while your Mac is started up from the install disk, then the "Repair Permissions" step should be run after you have restarted normally.
    Some background info that may be helpful:
    Disk Utility (& all such disk utilities) must temporarily "unmount" a disk to affect a repair of its file system (which is what the "Repair Disk" step does). Unmounting a disk makes it unavailable for normal use. The disk containing the operating system that is currently running the computer (the startup disk) cannot be unmounted. This is why the "Repair Disk" button is grayed out if you run Disk Utility with your startup disk as its target.
    Repairing permissions does not require unmounting the disk but it does require a healthy file system, which is why the disk repair must precede it. Apple recommends repairing permissions on the start up disk while booted from it, which is why it should be done after restarting normally.
    The verify steps do not actually repair anything. They just run the checks that the repair steps run to determine if any repairs are needed & report the results of those checks.
    The routine that repairs permissions is part of the OS itself. Disk Utility, Onyx, & all other such utilities that repair permissions actually just tell the OS to perform this routine. Thus, it doesn't matter which one you use to do this repair, nor is one utility any better than another at doing this. So if you prefer, after restarting after doing the disk repair from the install disk you can do the permissions repair with Onyx.

  • G5 Black & white video when booted from install DVD

    It has been years since I installed 10.5 on our G5 so I can not remember if this happened back then but think it did.
    When I boot from an install DVD (both the original G5 DVD with Tiger and the MacOS Leopard DVD) the video output drops to 1-bit (dithered black & white) which makes it very hard to discern the text on the shaded buttons in the GUI. The video card is fine - when I hold down the Option key on boot to select the DVD the video is full-color, but as soon as it switches to running from the DVD the video becomes low-rez dithered b&w.
    Anyone else see this issue and suggestions on resolving it? The display is a Dell 17" wide model. I don't have another display that is easily swappable to see if it's a problem with it or the Apple DVI-to-VGA adapter.
    The G5 tower is a first-generation 2x2 (2CPUs, 2GHz) with 2 DVI ports on the video card (can't recall which card I ordered back then).

    Great to hear, thanks for the report!
    I suspect what happened, was that the Install also changed some PRAM or NVRAM setting, those are where number of colors are held.
    Some earlier Macs store these settings in PRAM:
    Status of AppleTalk
    Serial Port Configuration and Port definition
    Alarm clock setting
    Application font
    Serial printer location
    Autokey rate
    Autokey delay
    Speaker volume
    Attention (beep) sound
    Double-click time
    Caret blink time (insertion point rate)
    Mouse scaling (mouse speed)
    Startup disk
    Menu blink count
    Monitor depth
    32-bit addressing
    Virtual memory
    RAM disk
    Disk cache
    http://support.apple.com/kb/ht1379

  • Create trigger not audited when run from sql developer Version 3.2.20.09

    Creating or editing a trigger is not being stored in the audit table when run from sql developer.
    Here is a sample script to show the issue:
    Grant Connect,create table,create trigger To testuser Identified By testuser;
    create table testuser.testtab(t1 number);
    Select Count(*) From Dba_Audit_Trail Where Owner='TESTUSER';
    CREATE OR REPLACE TRIGGER testuser.testtab_bi_trg BEFORE
      Insert
          ON testuser.testtab FOR EACH ROW
    begin
      null;
    end;
    Select Count(*) From Dba_Audit_Trail  Where Owner='TESTUSER';
    drop user testuser cascade;
    If I run the script from sql developer the CREATE TRIGGER statement does not get audited.
    If I run the script from sql plus or All Arround Automations PL/SQL Developer the CREATE TRIGGER statement does get audited.
    If I edit the trigger from sql developer the CREATE TRIGGER statement does not get audited.
    If I edit the trigger from  All Arround Automations PL/SQL Developer the CREATE TRIGGER statement does get audited.

    DoyleFreeman wrote:
    Not sure what you mean by "perform the audit".
    Have you tested my script? Does the "Select Count(*) From Dba_Audit_Trail  Where Owner='TESTUSER';" increment by 1 after each of the ddl statements or only after the Create table statement.
    Your question doesn't have ANYTHING to do with sql developer and should be posted in the Database General forum
    https://forums.oracle.com/community/developer/english/oracle_database/general_questions
    Yes - and it works just fine once you ENABLE AUDITING. Your scripIt  does NOT include the statements or code used to ENABLE auditing and, specifically, enable auditing for triggers.
    Auditing doesn't just 'happen'; you have to enable it and you have to specify any non-default auditing that you want to perform.
    Have you read any of the extensive documentation about auditing to learn how to use it?
    See the Database Security Guide
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/auditing.htm
    Also see 'Auditing Functions, Procedures, Packages, and Triggers
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/auditing.htm#BCGBEAGC
    And see the AUDIT statement in the SQL language doc for how to specify auditing of specific operations.
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_4007.htm
    Select count(*) From Dba_Audit_Trail  Where (Owner='SCOTT' or username = 'SCOTT')
    and action_name = 'CREATE TRIGGER';
    COUNT(*)
    0
    audit create trigger by scott
    CREATE OR REPLACE TRIGGER emp_copy_bi_trg BEFORE
      Insert
          ON emp_copy FOR EACH ROW
    begin
      null;
    end;
    Select count(*) From Dba_Audit_Trail  Where (Owner='SCOTT' or username = 'SCOTT')
    and action_name = 'CREATE TRIGGER';
    COUNT(*)
    1

  • I have developed one website and provied print fuctionality to print entire web from , but it is not printing the web page correctly, even in print preview it is showing wrong out put

    i have developed one website and provied print fuctionality to print entire web from , but it is not printing the web page correctly, even in print preview it is showing wrong out put...

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.
    Make sure you provide the URL for the problematic page, so they can see the problem for themselves.

  • Trying to Access Website using SSL running JAVA from inside ORACLE DB

    Hi,
    I am trying to access website using SSL and running JAVA code from inside Oracle 10g DB server using SSL and Java. I have loaded my java code into Oracle data base. My problem is when I am running same code from outside the DB it is running perfectly fine but when the same code is loaded into DB and trying to run from DB under these environment I am using for running my code:-
    JDK 1.4.2_06
    JSSE 1.4
    Database :- Oracke 10G
    I am getting following Exception:-
    CALL testssl_http_mar20_New();
    java.io.IOException: Unable to tunnel through 123.456.789.123:80. Proxy returns "HTTP/1.1 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied.)
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.a(DashoA12275
    at
    com.sun.net.ssl.internal.www.protocol.https.HttpsClient.doConnect(DashoA12275)
    at
    com.sun.net.ssl.internal.www.protocol.https.NetworkClient.openServer(DashoA12275
    at com.sun.net.ssl.internal.www.protocol.https.HttpClient.l(DashoA12275)
    at com.sun.net.ssl.internal.www.protocol.https.HttpClient.<init>(DashoA1
    2275)
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.<init>(DashoA
    12275)
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.a(DashoA12275
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.a(DashoA12275
    at
    com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnection.connect(DashoA122
    75)
    at
    com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnection.getInputStream(Da
    shoA12275)
    at java.net.URL.openStream(URL.java:924)
    at SecureURLhttp_Mar20_New.SecureURLhttp_Mar20_New(
    source code is below :-
    import java.io.*;
    import java.net.*;
    import java.security.*;
    import java.util.*;
        public class SecureURLhttp
              public static void main(String[] args) throws Exception
                  SecureURLhttp r = new SecureURLhttp();
                  r.SecureURLhttp();
        public static void SecureURLhttp() throws IOException
                System.setProperty("java.protocol.handler.pkgs","oracle.aurora.rdbms.url|com.sun.net.ssl.internal.www.protocol");
                System.setProperty("https.proxySet","true");
                Authenticator.setDefault(new MyAuthenticator());
                System.setProperty("https.proxyHost","123.456.789.123");
                System.setProperty("https.proxyPort","80");
               //  URL verisign = new URL("https://login.oracle.com/");
                URL verisign = new URL("https://www.verisign.com");
                BufferedReader in = new BufferedReader(new InputStreamReader(verisign.openStream()));
                String inputLine;
                while ((inputLine = in.readLine()) != null)
                System.out.println(inputLine);
                in.close();
                 /* Code Newly Add for checking the system property   */
                java.util.Properties props = System.getProperties();
                java.util.Enumeration propNames = props.propertyNames();
                 while (propNames.hasMoreElements ())
                 Object o=  propNames.nextElement();
                 String name = (String ) o;
                 String val =  props.getProperty(name)   ;
                 System.out.println ( name +  "  = "  + val );
        private static class MyAuthenticator extends Authenticator {
              protected PasswordAuthentication getPasswordAuthentication() {
                   return new PasswordAuthentication("<USERNAME>",new String("<USER_PASSWORD>").toCharArray());
         }Please help me out:
    Thanks a lot in advance.

    0- the fact the ISA server logs an 'anonymous' seems logical, since it answers by HTTP 407. I will say it's even a "good log" :) but I had preferred a good old "security exception" but it's not the case..
    1- The code for checking the properties (your debugging) should be placed BEFORE trying to connect to the url if you want to see what's happening
    2- The 'normal' way to set the proxy is to set the following properties
    System.setProperty("http.proxySet","true"); // and NOT https.proxyset as ejp said
    System.setProperty("http.proxyHost","123.456.789.123");
    System.setProperty("http.proxyPort","80");
    3- what's the behavior if you change 123.456.789.123 by the real name (hostname) of the server ?
    4- You can try setting up the proxy in the java control panel instead of in your code (easy to do under Windows, you look for the networking settings, and you find the proxy settings for http/https there. Otherwise look for all files called net.properties and edit them).
    5- to help debbuging, we can rely on several methods of Authenticator :
    protected PasswordAuthentication getPasswordAuthentication() {
    System.err.println(".\tgetRequestingHost: " + getRequestingHost());
    System.err.println("..\tgetRequestingSite: " + getRequestingSite());
    System.err.println("...\tgetRequestingPort: " + getRequestingPort());
    System.err.println("....\tgetRequestingProtocol: " + getRequestingProtocol());
    System.err.println(".....\tgetRequestingPrompt: " + getRequestingPrompt());
    System.err.println("......\tgetRequestingScheme: " + getRequestingScheme());
    return new PasswordAuthentication("<USERNAME>",new String("<USER_PASSWORD>").toCharArray());
    Try all this and let us see the output messages.
    Please remember to give some 'duke stars' if it helped resolving the problem ;)
    NephYliM

  • Joomla website running from Azure very slow

    I have migrated a Joomla website to windows Azure and it is running really slow (despite being a temp URL with only me connecting to it) compared to the previous hosting. The site is scaled up to standard with 2 CPUs and runs from a free cleardb
    MySQL database (as created by the Azure Joomla wizard). I have tried everything (following guides on speeding up Joomla) to speed it up but nothing works. I am suspicious of the free cleardb database connection and raised a support question with them but they
    were useless.
    Is Microsoft's flagship Azure hosting really this bad? Has anyone else had problems with speed (particularly if connecting to a cleardb SQL database)?
    My test URL is: http://rmjoomla.azurewebsites.net

    Thanks Brenton,
    That's interesting that it is responsive on the US. Apparently the website and database are hosted in Northern Europe (Dublin for Azure and not sure where database is exactly) and I am based in UK. I have checked it across different connections but
    it just seems slow (sometimes 10s plus to load a page). The only thing I haven't tried is upgrading the database but since I am the only connection I am not convinced this will help.
    There may be another option you need to check... Make sure the Website is AlwaysOn.. and Azure doesn't tear down the website due to inactivity.
    https://social.msdn.microsoft.com/Forums/azure/en-US/5c822101-98ab-460d-94c9-d1ebb555d549/azure-website-very-slow-performance-nz?forum=windowsazurewebsitespreview
    Entrepreneur, Strategic Technical Advisor, and Sr. Consulting Engineer - Strategic Services and Solutions Check out my book - Powershell 3.0 - WMI: http://amzn.to/1BnjOmo | Mastering PowerShell Coming in April 2015!

  • PL/SQL procedure is 10x slower when running from weblogic

    Hi everyone,
    we've developed a PL/SQL procedure performing reporting - the original solution was written in Java but due to performance problems we've decided to switch this particular piece to PL/SQL. Everything works fine as long as we execute the procedure from SQL Developer - the batch processing 20000 items finishes in about 80 seconds, which is a serious improvement compared to the previous solution.
    But once we call the very same procedure (on exactly the same data) from weblogic, the performance seriously drops - instead of 80 seconds it suddenly runs for about 23 minutes, which is 10x slower. And we don't know why this happens :-(
    We've profiled the procedure (in both environments) using DBMS_PROFILER, and we've found that if the procedure is executed from Weblogic, one of the SQL statements runs noticeably slower and consumes about 800 seconds (90% of the total run time) instead of 0.9 second (2% of the total run time), but we're not sure why - in both cases this query is executed 32742-times, giving 24ms vs. 0.03ms in average.
    The SQL is
    SELECT personId INTO v_personId FROM (            
            SELECT personId FROM PersonRelations
            WHERE extPersonId LIKE v_person_prefix || '%'
    ) WHERE rownum = 1;Basically it returns an ID of the person according to some external ID (or the prefix of the ID). I do understand why this query might be a performance problem (LIKE operator etc.), but I don't understand why this runs quite fast when executed from SQL Developer and 10x slower when executed from Weblogic (exactly the same data, etc.).
    Ve're using Oracle 10gR2 with Weblogic 10, running on a separate machine - there are no other intensive tasks, so there's nothing that could interfere with the oracle process. According to the 'top' command, the wait time is below 0.5%, so there should be no serious I/O problems. We've even checked JDBC connection pool settings in Weblogic, but I doubt this issue is related to JDBC (and everything looks fine anyway). The statistics are fresh and the results are quite consistent.
    Edited by: user6510516 on 17.7.2009 13:46

    The setup is quite simple - the database is running on a dedicated database server (development only). Generally there are no 'intensive' tasks running on this machine, especially not when the procedure I'm talking about was executed. The application server (weblogic 10) is running on different machine so it does not interfere with the database (in this case it was my own workstation).
    No, the procedure is not called 20000x - we have a table with batch of records we need to process, with a given flag (say processed=0). The procedure reads them using a cursor and processes the records one-by-one. By 'processing' I mean computing some sums, updating other table, etc. and finally switching the record to processed=1. I.e. the procedure looks like this:
    CREATE PROCEDURE process_records IS
        v_record records_to_process%ROWTYPE;
    BEGIN
         OPEN records_to_process;
         LOOP
              FETCH records_to_process INTO v_record;
              EXIT WHEN records_to_process%NOTFOUND;
              -- process the record (update table A, insert a record into B, delete from C, query table D ....)
              -- and finally mark the row as 'processed=1'
         END LOOP;
         CLOSE records_to_process;
    END process_records;The procedure is actually part of a package and the cursor 'records_to_process' is defined in the body. One of the queries executed in the procedure is the SELECT mentioned above (the one that jumps from 2% to 90%).
    So the only thing we actually do in Weblogic is
    CallableStatement cstmt = connection.prepareCall("{call ProcessPkg.process_records}");
    cstmt.execute();and that's it - there is only one call to the JDBC, so the network overhead shouldn't be a problem.
    There are 20000 rows we use for testing - we just update them to 'processed=0' (and clear some of the other tables). So actually each run uses exactly the same data, same code paths and produces the very same results. Yet when executed from SQL developer it takes 80 seconds and when executed from Weblogic it takes 800 seconds :-(
    The only difference I've just noticed is that when using SQL Developer, we're using PL/SQL notation, i.e. "BEGIN ProcessPkg.process_records; END;" instead of "{call }" but I guess that's irrelevant. And yet another difference - weblogic uses JDBC from 10gR2, while the SQL Developer is bundled with JDBC from 11g.

  • Crystal report run from ASP code significantly slower than when run in CRS

    We have CRS XI R2.  I developed a report that contains several on-demand sub-reports.  The report and sub-reports are very fast when run directly from CRS.  However, when I run from ASP (users run a link from the intranet), it takes 4 times longer (1 second on CRS, vs. 5-10 seconds on intranet).  The report takes longer, bringing up a sub-report takes longer and paging through sub-reports take longer.  What can be done to improve the speed of the report that is using the ASP code?  I used a sample program provided at this support site to develop the report and it is pretty basic code.  The only time I have a problem is when I have many sub-reports.  Since they are on-demand, I do not know why this would matter.

    This has been created as an incident with SAP support.  Things that you will want to check is making sure that you handle the postback to the code as you do not need to run your entire code on every postback.  This will help performance after the original load. 
    One other thing is to compare performance with the viewer within Infoview that uses the same backend server as your application, ie PSReportFactory uses the page server, so you'll want to test with the DHTML viewer.  RAS code (reportclientdocument) uses the Report Application Server so you will want to test with the Advanced DHTML viewer.

  • Is there any way to delete a run from my iTunes Nike+iPod history?

    I'm using a shoe "hack" for my chip, which unfortunately didn't work -- resulting in a 58minute run that only clocked in .6miles on my nano. I've deleted the run from the iPod itself, but not before I synched with my iTunes. So now I have an erroneous run on my iTunes history. Is there a way to delete this so it won't upload to my running history on the nikeplus website?

    I just deleted a run from the Nike+ site after syncing with iTunes. You should be able to do the same.
    Just select the run and from the Options drop-down menu in the upper right hand corner select "Delete run".
    HTH
    Message was edited by: Sterkur

  • How can I boot/run from external HD when internal HD is fried?

    Background: I have an original vintage 2002 emac G4 1.25 that I've been messing with for the past couple of months due to slow running and hanging/crashing apps. I upgraded the RAM with an additional 256 MB several years ago and I was running OSX 10.2 without many problems until recently. I was getting messages about the hard drive being full, so I cleaned up and backed up my files to an external HD (USB, of course, since I hadn't found this forum at that time). Freeing up memory didn't help and neither did creating an administrator account, so I ran Apple Hardware Test, which turned up an error code: mem_/2/4 DIMM1/J1601
    When I tried to do an erase and reinstall, the erase part went fine but the reinstall wouldn't work because (on the last of 4 discs) the machine returned a "can't write" error and suggested that the hard drive is unusable.
    My questions: How can I use an external HD (Firewire, of course) to boot and run my emac when the internal HD is fried and there's no operating system on board? How do I install OSX on the external HD to boot the emac in the first place? Also, will the 384 MB of RAM be enough, or must I upgrade that, too? For that matter, what version of OSX would be best?
    Thanks for any help you can offer. I am a long-time mac user (still have my Classic, which still works), and I'd really rather not replace the emac.

    HFS stands for Hierarchical File System. The plus sign stands for extended or extended format.
    This is the data system format that Apple uses for their operating systems.
    When you buy an external hard drive device, typically they do not come pre-formatted.
    You'll need to use the Disk Utility app in OS X in your username/Applications/Utilities folder on your eMac if it's still operational or when you start up your eMac from the OS X 10.5 DVD located in the Applications/Utilities folder.
    You use this app to initialize and format the drive once it is connected to your eMac. If you wish, you can also, at that stage, partition the drive into separate variable size sections to make a large capacity HD more manageable.
    You need to have a functioning stick of RAM in your eMac in order for it to boot up correctly.
    The OS X startup routine looks for all components in your eMac that are necessary for a successful start up.
    Your eMac will not boot up, even from CD/DVD, without any RAM installed.
    If you have only one stick of RAM in your eMac and it's bad or corrupted, you'll need to purchase and Install a new stick of RAM to start.
    You might as well purchase 2 brand new 1 GB RAM sticks for your eMac. 2 GBs
    OS X 10.5 Leopard's minimum RAM requirements are 512 MBs of RAM.
    Your eMac can max out at 2 GBs of RAM.
    The specs for the RAM are PC2700 SDRAM, DDR333, 184 pins.
    Here are links to websites I use to buy Mac accessories and Hard drives compatible with Macs.
    http://eshop.macsales.com/shop/firewire/
    http://www.lacie.com/us/products/range.htm?id=10033

  • Report is taking too much time when running from parameter form

    Dear All
    I have developed report in oracle reports bulider 10g. while running it from report builder data is coming very fast.
    But, If it is running from parameter form it is taking too much time to format report in PDF.
    Please suggest any configuration or setting if anybody is having Idea.
    Thanks

    Hi,
    The first thing to check is whether the query is running to completion in TOAD. By default, TOAD just selects the first 50 rows, where as Discoverer must return all the rows before displaying results if a crosstab report is used.
    Secondly, check that the queries and the explain plans are the same in Discoverer and Toad. Although, Discoverer shows the SQL in the SQL inspector this isn't necessarily the SQL actually sent to the database. Use TOAD to interogate the Discoverer session to determine the actual SQL and compare this SQL and explain plan to SQL you ran in TOAD.
    Thirdly, check that the session context is the same in both cases. So check that any custom contexts and the USER_ENV context is the same, and if any security packages or VPD policies are used in the SQL that these have been initialised the same.
    If you still cannot determine the difference then trace both sessions.
    Rod West

  • Facing Issue while running from on desktop through oracle form builder 10g.

    Dear All,
    I am facing No plugin to show content error while trying to run oracle from on desktop through form builder 10g. please help.
    Thanks,
    Pradeep

    I am facing No plugin to show content error while trying to run oracle from on desktop through form builder 10g. What is your OS version?
    What Java version are you using?
    Have you configured your Oracle Developer Suite (ODS) 10g to run forms from the Forms Builder?
    Craig...

  • Windows Media Player Extension "Add-on for this website failed to run" except for Administrator

    This is on a Windows server 2008 r2. I am trying to allow users to watch help videos at a vendor site. If I remote desktop using the Administrator, I can play the videos and if I check the "manage add-ons", I see Windows Media Player as an extension.
    If I remote desktop on as a "normal user" and try to view the same video, I get the error message "An add-on for this website failed to run" and if I check the "manage add-ons", Windows Media Player extension is not there. That
    makes sense, since if it is not there, it won't run.
    Why isn't Windows Media Player extension showing up in IE 10 on the server for anyone other than Admin? How could I make this work? If I am somehow preventing this from taking place, where would I go on the server to change that?

    Hi,
    Have you try adding this video website into trusted sites zone or compatibility view list?
    Generally, improper security settings may casue failure to run some add-ons. So, please attempt to  decrease  security level for Internet Zone to check if this issue still occurs.
    How do you think your issue is related to Windows Media Player extension? Based on my knowledge, Flash player plug-in can lead to the problem. Please reinstall your flash player for the current user.
    Also, Please check in event log for more clues.
    Andy Altmann
    TechNet Community Support

  • This website wants to run the Following add-on: 'Adobe Flash Player'...

    Alright, So i'm getting this information bar to pop up everytime i enter a new site that has adobe content.
    This website wants to run the Following add-on: 'Adobe Flash Player' from 'Adobe System Incorporation'. If you trust the website and the following add-on and want to allow it to run, Click Here...
    Here's an example picture on cartoonnetwork.com
    (Click to enlarge)
    Now, If i hit allow it will allow it but it pops up on almost every new website i go to and i have to allow it each and everytime.
    Yet my Adobe version is 10,0,32,18 as shown in the picture below.
    I've uninstalled and reinstalled overwritten and uninstalled Internet Explorer 8 with no luck of getting rid of this annoying problem. So if anyone has a slight idea of how to fix this problem i'll try anything because i hate it when something isn't working correctly. (Yes, I've googled around for a good 2 hours with no luck)

    Alright guy's It always happens. Over 90% of the time it's just a matter of time before i fix my own problems. I solved my problem and now it works perfectly fine.
    I'm gonna say how i fixed it so who ever finds this page on google can see how i did it. I uninstalled Adobe Flash Player using the uninstaller from adobe http://download.macromedia.com/pub/flashplayer/current/uninstall_flash_player.exe after i did that i went to my system32 folder and delete my adobe folder which still had files left over in it (Deleted the whole macromed folder) C:\WINDOWS\system32\Macromed\Flash
    Note, You need to exit any browser you have up (IE,Firefox,ect) or else you will not be able to delete it and it'll say access denied. After deleting that i installed Adobe Flash Player with a .exe i downloaded from Adobe and it worked perfect! No more annoying message
    Side note, I'm use XP so the marcomed folder might possible be somewhere else if you are useing Vista or Windows 7.

Maybe you are looking for

  • Can I Display a Selection or Combo box using MIDP

    Hey All, How can I display a Selection or Combo box in My Form Using MIDlet. Please send a Way to do this. Thanks in Advance.

  • CAF import / service group issue?

    Hi, I have developed a caf with a number of webservices exposed (CAF A), this has been deployed to a ce server, within a serperate CAF project (CAF B) I have imported a service from CAF A as an external service and used it within this caf. The two ca

  • Adding Text to photos in FCPX

    Hi I am wondering how you add text to imported photos on the timeline.  I have tried drag and dropping a title over the photo, but it just comes up with a black option box asking if i want to replace, etc the photo. THanks Amanda

  • Is it my imagination, or is this a bad idea? NTFS external as a Mac drive

    I've always heard NTFS and Mac's didn't get along too well. Today I found out that Seagate is selling NTFS drives as "Mac" drives. Here's a link to their spec sheet: http://www.seagate.com/www-content/product-content/backup-plus-fam/backup-plus-d esk

  • How to type faces on iOS 5 iPhone

    I wanna make my msm much funny I tried app called Emoji , not usful does anyone know how to type faces without using an App