Working with XDCAM HD in Media Browser window (CS6)

Is it just me, or is this unusably slow?
I have a PDW-F70 deck hooked up via Firewire to my PC (Windows 7 64-bit) but when I mount a XDCAM HD disc and try to browse the contents in Premiere's Media Browser window (or in Predulde's Ingest window) then it takes what seems like forever to download and display the thumbnails and low res proxies. Is Premiere trying to do someting different?  It's so incredibly slow that I'm thinking it might actually be trying to download and cache the full hi-res media before letting me browse ... but when it finally does finish, once the clip thumbnails do eventually display, then it is still taking forever to display them in the source/external display if and when I select one in the browser window ... and heaven help me if I try to actually play one of these clips.
Does this scenario sound at all familar to anyone? I'm guessing I have a basic settings issue ... either that or I am maybe just misunderstanding how this function works with XDCAM HD in Premiere.
For what it's worth, using Grass Valley's Edius app with the exact same hardware, setup and connections etc and browsing the media using their own "Source Browser" window (which is basically their version of Premiere's Media Browser window), then I can almost instantly view thumbnails and browse the XDCAM HD low res proxies, make my selections and import whats needed ... same goes if I'm using Sony's own XDCAM Browser app.
Clearly I'm a bit lost at this point and am hoping someone can help me out.
Thanks in advance
Andy

This is a known issue in PP.  Adobe has elevated the priority, but for now you'll just have to wait until thumbs are draw for better responsiveness.
In the meantime, please do report the bug as unusable for you.  The more that do, the more urgency will be attached to a fix.
https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Similar Messages

  • Hi all, i can't sync over wifi between my iPhone 4 and Windows 7 64 bit, wifi sync works with the same phone and my Windows 8 machine, tried solutions from other threads with no luck, just thought i'd see if anyone else had any ideas, thanks.

    Hi all, i can't sync over wifi between my iPhone 4 and Windows 7 64 bit, wifi sync works with the same phone and my Windows 8 machine so the problem seems confined to Windows 7. I've tried solutions from other threads -
    Making sure everything is allowed through firewall
    Rebooting phone/laptop/router
    Disabling ipv6
    Disabling all networks except the one curently on
    Re-installing iTunes
    Restoring iPhone
    No luck with any of those unfortunately so i just thought i'd see if anyone else is still without wifi sync after trying those as well and if you ever found a fix, thanks.

    I just wanted to leave a note that it's working now. I'm not sure if it was the latest iTunes update that got it working or that i decided to start a new library instead of using the one i had backed up on Windows 8 (it didn't occur to me to check using the old library when i re-installed iTunes). But if anyone is having this problem, it might be worth trying again with a new installation of iTunes to see if the latest update works for you, and if not, try using a fresh library instead of a backup (by fresh library i mean discard your old library completely and start a new library, not just restore as new iPhone, a whole new library).

  • Which PC is recommended by Microsoft that ACTUALLY meet the requirements to work with software development for kinect for windows?

    My PC serves the minimum requirements described in the kinect page, but when installing the device, the software says that the computer does not meet the minimum requirements and therefore will not work with efficiency. Alternatively, theorize buy a new
    computer.
    Which PC is recommended by Microsoft that ACTUALLY meet the requirements to work with software development for kinect for windows?

    Getting a definitive answer from Microsoft will be difficult as to my understanding, requirements are still subject to change; and unless it's their brand of PC  I doubt they will give free advertisement to buy a specific make/model.
    There are other threads where people discuss specific machines that work with the Kinect V2.  
    The only compatibility problems I've had with getting it to work are: It has to be run Windows 8; It has to have a compatible USB 3.0;  The 'Compatible' USB 3.0 requirement seems to be the most difficult.

  • ActionPerformed method not working when applet is loaded in browser window.

    Hey there guys. I need urgent help from anybody who has experience in deploying websites whose code is in java.
    I am having two problems as mentioned below...
    first, I have made a simple login screen using java swing and JApplet. there is a single button to login. the action performed for this button accesses a private method to check the username and password which are there in atext file. the applet is working perfectly in appletviewer but when i load the applet in a Internet Explorer window using HTML's Applet tag, the button is giving no response at all even when i enter the correct username and password.
    I guess it is either not calling the private function that is checking the username and password from the tes=xt file or it can not access the file. Please help as soon as possible as this is related to my college project.
    I am attaching the code herewith. Suggestions to improve the coding are also welcome.
    the second problem is that while writing my second program for generating a form which registers a user the html is not at all loading the applet into the browser and also if im trying to access a file to write all the details into the console is showing numerous amount of error after i press the button which i can't not understand. the only thing i can understand is that it is related to file access permissions. If anybody could put some light on the working of worker threads and thread safe activities of SwingUtilities.invokeandWait method it would be really appreciable.
    import java.io.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.plaf.*;
    <applet code = "UserLogin" width = 300 height = 150>
    </applet>
    public class UserLogin extends JApplet implements ActionListener, KeyListener {
         private JLabel lTitle;
         private JLabel lUsername, lPassword;
         private JTextField tUsername;
         private JPasswordField tPassword;
         private JButton bLogin;
         private JLabel lLinkRegister, lLinkForgot;
         private JLabel lEmpty = new JLabel(" ", JLabel.CENTER);
         private JPanel panel1, panel2;
         public void init() {
              try {
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                   SwingUtilities.invokeAndWait(new Runnable() {
                        public void run() {
                             LoginGUI();
              catch(Exception e) {
                   e.printStackTrace();
         public void start() {
              setVisible(true);
         public void stop() {
              setVisible(false);
         private void LoginGUI() {
              super.setSize(300, 150);
              super.setBackground(Color.white);
              lTitle = new JLabel("<HTML><BODY><FONT FACE = \"COURIER NEW\" SIZE = 6 COLOR = BLUE>Login</FONT></BODY></HTML>", JLabel.CENTER);
              lUsername = new JLabel("Username : ", JLabel.CENTER);
              lPassword = new JLabel("Password : ", JLabel.CENTER);
              tUsername = new JTextField(15);
              tPassword = new JPasswordField(15);
              bLogin = new JButton("LOGIN");
    //          bLogin.setEnabled(false);
              bLogin.addActionListener(this);
              bLogin.addKeyListener(this);
              panel2 = new JPanel();
              GridBagLayout gbag = new GridBagLayout();
              GridBagConstraints gbc = new GridBagConstraints();
              panel2.setLayout(gbag);
              panel2.addKeyListener(this);
              gbc.anchor = GridBagConstraints.CENTER;
              panel2.setMinimumSize(new Dimension(300, 200));
              panel2.setMaximumSize(panel2.getMinimumSize());
              panel2.setPreferredSize(panel2.getMinimumSize());
              gbc.gridx = 1;
              gbc.gridy = 1;
              gbag.setConstraints(lUsername,gbc);
              panel2.add(lUsername);
              gbc.gridx = 2;
              gbc.gridy = 1;
              gbag.setConstraints(tUsername,gbc);
              panel2.add(tUsername);
              gbc.gridx = 1;
              gbc.gridy = 2;
              gbag.setConstraints(lPassword,gbc);
              panel2.add(lPassword);
              gbc.gridx = 2;
              gbc.gridy = 2;
              gbag.setConstraints(tPassword,gbc);
              panel2.add(tPassword);
              gbc.gridx = 2;
              gbc.gridy = 3;
              gbag.setConstraints(lEmpty,gbc);
              panel2.add(lEmpty);
              gbc.gridx = 2;
              gbc.gridy = 4;
              gbag.setConstraints(bLogin,gbc);
              panel2.add(bLogin);
              panel1 = new JPanel(new BorderLayout());
              panel1.add(lTitle, BorderLayout.NORTH);
              panel1.add(panel2, BorderLayout.CENTER);
              add(panel1);
              setVisible(true);
         public void keyReleased(KeyEvent ke) {}
         public void keyTyped(KeyEvent ke) {}
         public void keyPressed(KeyEvent ke) {
              if(ke.getKeyCode() == KeyEvent.VK_ENTER){
                   String username = tUsername.getText();
                   String password = new String(tPassword.getPassword());
                   if(username.length() == 0 || password.length() == 0) {
                        JOptionPane.showMessageDialog(new JFrame(),"You must enter a username and password to login", "Error", JOptionPane.ERROR_MESSAGE);
                   else {
                        boolean flag = checkUsernamePassword(username, password);
                        if(flag)
                             JOptionPane.showMessageDialog(new JFrame(),"Username and Password Accepted", "Access Granted", JOptionPane.INFORMATION_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(new JFrame(),"Username or password Incorrect", "Access Denied", JOptionPane.INFORMATION_MESSAGE);
         public void actionPerformed(ActionEvent ae) {
              String gotCommand = ae.getActionCommand();
              if(gotCommand.equals("LOGIN")) {
                   String username = tUsername.getText();
                   String password = new String(tPassword.getPassword());
                   if(username.length() == 0 || password.length() == 0) {
                        JOptionPane.showMessageDialog(new JFrame(),"You must enter a username and password to login", "Error", JOptionPane.ERROR_MESSAGE);
                   else {
                        boolean flag = checkUsernamePassword(username, password);
                        if(flag)
                             JOptionPane.showMessageDialog(new JFrame(),"Username and Password Accepted", "Access Granted", JOptionPane.INFORMATION_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(new JFrame(),"Username or password Incorrect", "Access Denied", JOptionPane.INFORMATION_MESSAGE);
         private boolean checkUsernamePassword(String username, String password) {
              String user = null, pswd = null;
              try {
                   FileInputStream fin = new FileInputStream("@data\\userpass.txt");
                   DataInputStream din = new DataInputStream(fin);
                   BufferedReader brin = new BufferedReader(new InputStreamReader(din));
                   user = (String) brin.readLine();
                   pswd = (String) brin.readLine();
              catch(IOException ioe) {
                   ioe.printStackTrace();
              if(username.equals(user) && password.equals(pswd))
                   return true;
              else
                   return false;
    }PLEASE HELP ME GUYS......

    RockAsh wrote:
    Hey Andrew, first of all sorry for that shout, it was un-intentional as i am new to posting topics on forums and didn't new that this kind of writing is meant as shouting. Cool.
    Secondly thank you for taking interest in my concern.No worries.
    Thirdly, as i mentioned before, I am reading i file for checking of username and password. the file is named as "userpass.txt" and is saved in the directory named "@data" which is kept in the same directory in which my class file resides.OK - server-side. That makes some sense, and makes things easier. The problem with your current code is that the applet will be looking for that directory on the end user's local file system. Of course the file does not exist there, so the applet will fail unless the the end user is using the same machine as the server is coming from.
    To get access to a resource on the server - the place the applet lives - requires an URL. In applets, URLs are relatively easy to form. It might be something along the lines of
    URL urlToPswrd = new URL(getCodeBase(), "@data/userpass.txt");
    InputStream is = urlToPswrd.openStream();
    DataInputStream din = new DataInputStream(is);
    So the problem is that it is reading the file and showing the specific output dialog box when i run it through appletviewer.. Huhh. What version of the SDK are you using? More recent applet viewers should report security exceptions if the File exists.
    ..but the same is not happening when i launch the applet in my browser window using the code as written belowHave you discovered how to open the Java Console in the browser yet? It is important.
    Also the answer to your second question
    Also, the entire approach to storing/restoring the password is potentially wrong. For instance, where is it supposed to be stored, on the server, or on the client?is that, as of now it is just my college project so all the data files and the username and password wiles will be stored on my laptop only i.e. on the client only. no server involved.OK, but understand that an applet ultimately does not make much sense unless deployed through a server. And the entire server/client distinction becomes very important, since that code would be searching for a non-existent file on the computer of the end user.

  • Help with image placement in new browser window.

    I need help trying to position images that are being opened
    in a new browser window. I have created a photo gallery with
    thumbnails that are links to the larger image. Ive used the
    behaviors panel to open the new image in a new browser window but
    the image is always shown at the top left margins of the new
    window. Is there a way to 1. center the image in the new window, 2.
    change the background color of the new window that opens.
    Any help would be appreciated.
    Stu

    If, as I read it, you are simply opening the image, it will
    always be upper
    left and cannot be changed. IF you wnat to position it, you
    will need to
    create a new html page and position your image on that page,
    then call the
    page, not the image from your thumbnail link.
    In Dreamweaver in the command menu try the "Create Web Photo
    Album" command.
    It will create all of your pages, links and thumbnails for
    you. (requires
    Fireworks)
    Michael Hager
    www.cmhager.com
    "Stu127" <[email protected]> wrote in
    message
    news:eo70n5$qo5$[email protected]..
    >I need help trying to position images that are being
    opened in a new
    >browser
    > window. I have created a photo gallery with thumbnails
    that are links to
    > the
    > larger image. Ive used the behaviors panel to open the
    new image in a new
    > browser window but the image is always shown at the top
    left margins of
    > the new
    > window. Is there a way to 1. center the image in the new
    window, 2.
    > change the
    > background color of the new window that opens.
    >
    > Any help would be appreciated.
    > Stu
    >

  • Is there an external hard disc that will work with Mac OS10.4.11 and Windows Vista?

    Is there an external hard disc that will work with both Mac (OS10.4.11) and Windows (Vista)?

    For NTFS on Mac, there are both open-source and commercial solutions. See:
    http://www.macupdate.com/find/mac/NTFS
    For HFS+ Drivers for Windows, there is only one:
    http://www.mediafour.com/products/macdrive
    Regards.

  • Working with XDCam Footage in Shake. Is it Possible?

    Hey Guys,
    From what I've been able to dig up, Shake doesn't like rendering out to XDCam in File-Out nodes and it's been the same case for me. XDCam renders brought in to FCS are slow to load and constantly bring up the beach-ball. Is it the same case for File-In nodes too? Should I avoid working with the XDCam format entirely?
    The other problem I've been having, is I'll File-In the XDCam footage, work through the process to get a greenscreen key and then I've tried several different file-out CoDecs: Animation, ProRes422, ProRes422 (HQ), DV/DVCPro NTSC, and the only format that comes out normal is the DV/DVCPro NTSC. All the others are shortened.
    So my question is, what's happening to my footage? The original is 10,372 Frames (Roughly 5:45) and yet I get different render times for each, even though the Flipbook shows 10k+ Frames rendered.
    422(HQ) at the Original 1280x720 - 2:34
    422(HQ) resized to 864x480 - 3:52
    422 at the original size 1280x720 - 3:50
    DV/DVCPro NTSC at 1280x720 - 5:46
    Animation at 1280x720 - :20 (That one was an odd one.)
    Can anyone help by explaining to me what's going on? I've even tried putting an 8-bit "Bytes" node before the file-out, as some have suggested, and still no glory. I should not that ProRes422 (HQ) is the timeline setting for my Final Cut Project and everything was shot on an XDCam ex-3 at 720p30.

    I don't have any interlacing options selected in either node and the clip just stops automatically at 2:34 (4636 Frames). The file-in format is a 1280x720, 29.97fps, Apple ProRes 422 (HQ), 13.6 MB/sec Data Rate. The File-out node is set to the same 29.97fps, Apple ProRes 422 (HQ) codec and is left at 1280x720. When imported back into Final Cut the Data Rate is slightly lower at 13.2 MB/sec, but that is the only difference.
    What makes me doubly confused is that if I put a resize node before my file out and size the 422 (HQ) file to a proportional 864x480 (other details the same) I get a longer video file as the result at 3:52 (6962 Frames), at an 8.8MB/sec Data Rate, but still well short of the full 5:45 (10375 Frames). The only file-out format that doesn't truncate my video is a 1280x720 DV/DVCPro - NTSC and it's Data Rate is 3.4MB/sec but the quality is so low as to warrant not using it.

  • Can you change the design to adjust with the size of the browser window?

    I am creating my first site in iWeb, and would like the image in the background to adjust as someone adjusts the size of their browser window.  In other words, no matter what size their window is, the entire page fits.  I would like it to accomodate small to large computers and windows without them having to scroll up/down or sideways.
    Any ideas on how to do that?
    Thanks!

    Thanks Wyodor,
    I apologize, but apparently I typed "background" image instead of just an image.  I have an image on the page that I would like to size to do the same thing.  There are layered images on top of it, and I need those images to remain in the same place because they are hyperlinked images that take them to another page. I have attached a photo of what it looks like here. 
    The agree and disagree buttons are the hyperlinks, and I want them to stay static with the image underneath them.  I know that if I put the larger green image as a background image, to have it dynamic, the agree and disagree buttons would not stay in the correct spot when the browser size is adjusted. Thus, it brings me back to my question (but phrased correctly this time)... is there a way to have the entire site, images and all, be dynamic with the size of the browser? No matter what the size of the browser window, I would like the whole page to show so the hyperlink images stay with the image they are on top of.
    Thanks!

  • Is there a way to view/work with cookies outside the Firefox browser?

    Hi! I am looking for some help with understanding more about the cookies.sqlite file. I use to add/remove cookies in bulk to the exceptions list when I used the cookies.txt file however now that I am unable to use a text pad to quickly paste the names of cookies, I am finding trying to modify my exception list has become quite tedious. I was wondering if I would be able to use another method to view/work with the list of cookies outside of the Firefox browser? Thank you in advance for your help!

    You would need an SQLite manager program to open the cookies.sqlite file and inspect it.<br />
    However exceptions are no longer stored in the cookies.sqlite database, but in one permissions.sqlite database file.
    You can give it a first try with the SQLite Manager extension if you don't have one yourself yet.
    *SQLite Manager: https://addons.mozilla.org/firefox/addon/sqlite-manager/
    *ExExceptions: https://addons.mozilla.org/firefox/addon/exexceptions/

  • Drag and Drop not working with IE11,Firefox or Chrome on Windows 7 x64 SP1

    Hello,
     I am trying to use drag and drop on my system but it is not working. other's within my department have no issues, but they are using IE10. I also have SharePoint Designer 2013 installed.
    Any suggestions?
    Thanks,
    Derek

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • SoundFX suddenly not working with PCI-Express SB Titanium and Windows 7 HP 64

    Hi guys,
    I bought myself a PCI-Express Sounblaster Titanium bulk last friday.
    I downloaded some drivers (sorry, I have no idea what Version?) and an Update to the latest official Version (2.7.0007). When I first tried tu use VoiceFX it worked and I was astonished. Its seemed a real cool gimmick.
    Strangely, when I tried it again the next day the VoiceFX buttons where still there under the Audio Config thingie, but my voice did not change anymore when I chose for ex. Robot or Ork. It did not matter what I chose, my voice always stayed normal.
    Since then I've deen doing nothing else than to deinstall, reinstall drivers, deleting driver traces, trying again. My worst case was that the VoiceFX did not show at all anymore, my best case was as described above.
    I even treid the new beta Drivers.
    Does anyone have a solution?
    If not, can anyone tell me what dependancies VoiceFX has? Is it enough to install only the drivers or does it need something else as well?
    With which Driver Version does it definitely work under Win 7 64?
    Oh yeah, I have I microphone which I can switch to Mono or Stereo, does it only work with one of the two? Mine was mostly in Stereo mode. (It comes from a company (dunno which one) thats got nothing to do with computers, games or creative, it's one of those Microphones you connect to your tie).
    Thanks@all

    Weird... I changed nothing and yeterday it worked...
    I just understand this, but what the hell?

  • Flash player upgrade failed with message "Please close this browser window to complete Flash Player"

    The upgrade was triggered by the following javascript in the page and  there is rather old version of flash player installed.
    AC_FL_RunContent(
    "src", "playerProductInstall",
    "FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"" ,
    "width", "100%",
    "height", "88%",
    "align", "middle",
    "id", "Main",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "Main",
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "http://www.adobe.com/go/getflashplayer"
    } else if (hasRequestedVersion) {
    // if we've detected an acceptable version
    // embed the Flash Content SWF when all tests are passed
    AC_FL_RunContent(
    "src", "Main",
    "width", "100%",
    "height", "88%",
    "align", "middle",
    "id", "Main",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "Main",
    "flashvars",'historyUrl=history.htm%3F&lconid=' + lc_id + '',
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "http://www.adobe.com/go/getflashplayer"
      } else {  // flash is too old or we can't detect the plugin
        var alternateContent = 'Alternate HTML content should be placed here. '
           + 'This content requires the Adobe Flash Player. '
            + '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
        document.write(alternateContent);  // insert non-flash content
    Browser prompts for download of Adobe FlashPlayer11. Accepting this download reports "Downloading install package" and then says  "Please close this browser window to complete Flash Player installation" BUT  doing so and re-invoking the same address reprompts for same  Download of Adobe FlashPlayer 11 and then stuck in infinite loop  of accepting install of Adobe FlashPlayer11 which never  actually installs.
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="Main" width="100%" height="100%" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
    <param name="quality" value="high" />
    <param name="bgcolor" value="#869ca7" />
    <param name="allowScriptAccess" value="sameDomain" />
    OS: Windows XP
    Browser: Internet Explorer  7

    As I traced the http transactions, the updater downloaded https://fpdownload.macromedia.com/get/flashplayer/update/current/install/inline/win/x64/in stall_all_win_ax.z. On one hand, the 7MB file is unable to be opened via most zip utilities. On the other hand, the file seems to be for x64 platform and os per the url but mine is Windows XP. Is it a bug of Adobe?

  • How do you run a servlet with no effect on the browser window?

    Is it possible to send parameters to a servlet (using POST or, if necessary, GET) from an application or html page running in a browser, without causing the current browser to be redirected, and without opening a visible new browser window to run the servlet?
    If so, can you explain how to do this?

    Sure, you could embed it as an image tag.
    <img src="http://yourserver/servlets/MyServlet?param1=foo&param2=bar" height=1 width=1>
    This will probably produce a broken image in some browsers, unless you have your Servlet send a 1x1 pixel image to its output stream.
    -Derek

  • Flash Player 13.0.0.206 not working with IE 11 (32 bit) using Windows 7 64 bit OS but does work in Chrome

    When I go to some websites (https://www.facebook.com/photo.php?v=335893426565493) for one, I get a white screen where the flash video should be displayed. I can hear the audio just fine. Right-clicking on the white area brings up the settings menu and the video can be seen dimly in the background. The video drivers are up-to-date. I have uninstalled the flash player, emptied all of the suggested folders and re-installed Flash with exactly the same results. I have disabled hardware acceleration with no change as well. I have also tried compatibility mode to no avail.
    Going to the Flash websites, I can see all of their animations and the boxes that show the currently installed version all show correctly.
    Any suggestions?

    Chrome uses a separate and independent plug-in than IE does.
    IE is ActiveX - Chrome ISN'T.
    Chrome is PPAPI - IE is NPAPI.
    The ActiveX plug-in is in C/Windows/System32/Macromed/Flash and C/Windows/SysWOW64/Macromed/Flash - PepperFlash is in C/Program Files (x86)/Google/Chrome/Application/[version number]/PepperFlash.
    The trouble with IE in general is that you need to disable ActiveX filtering for most everything, which leave the browser vulnerable to attacks. ActiveX Filtering in Internet Explorer
    The trouble with IE11 is "User Agent Strings".
    Microsoft "rewrote" the User-Agent Strings for the abomination they call their latest and greatest browser (Read more here).
    User-Agent Strings are what websites use to identify the browser you're using and provide the proper content for it's browser engine, like ActiveX stuff, and Flash or HTML5 video.
    Thanks to the geniuses in Redmond, WA, the User-Agent Strings for IE11 (which has a Trident engine), ID it as either "Gecko" (Firefox) or "Webkit" (Chrome).
    Trouble is: when the site the directs to the content for one of these two engines, the Trident engine in IE can't interpret it and the site then sees IE as an "unidentified" browser.
    The problem with an unidentified browser is that the plug-ins in that browser aren't recognized either, so even though you're up to date, it says you need the latest Flash Player when you use IE11.
    YouTube... has converted to HTML5 video so if it doesn't detect Flash Player, it can display HTML5 (MP4) video which requires no plug-in to play.
    Facebook can't do that, because HTML5 doesn't apply to games... only video.
    Microsoft has no plans to "fix" the mess they've created because they think it's a great idea to block you out of the websites you visit.
    They recommend using "Compatibility View" and pretending that you're using an older version of IE...
    The Problem with THAT is that it's seen limited success, and you have to enable it for EVERY page that has problems... individually.
    I'm not big on "pretending" so I recommend actually using another browser.
    Firefox (from Mozilla)
    Opera (from Opera)
    Safari (from Apple)
    Chrome (from Google)
    ANY of those will work where IE11 won't, with the Flash Player Plug-in (For all other browsers), and Chrome doesn't even need that, because it has its own Flash Player plugin built in.

  • Certificate request not working with web server v2 template on windows 2012 R2

    I have tried to generate a certificate request on my domain joined Windows 2012 R2. I have tried both online and offline requests. I am using the web server v2 template.
    Both Method fails with error message that the cryptographic algorithm is unknown. I am using these settings apart from the template:
    This is the error Message in online request:
    The error Message in the offline request is somewhat similar.
    An event error is also appearing in the application log:
    The CSPs from the template:
    I am wondering if a cryptographic service provider or several of them are missing? They are installed With Windows update are they not? The strange thing is that this supposedly have worked before with another user. Could it be that I do not have the
    correct permissions to request a certificate with this template, or has something happened with the server? 

    Hey dag 
    Thanks for posting ,
    If You try duplicate the web template for using it in version 4 - can You see any difference? 
    Also check the link below for certificate templates versions:
    http://social.technet.microsoft.com/wiki/contents/articles/13303.windows-server-2012-certificate-template-versions-and-options.aspx#Version_4_Certificate_Templates
    In previous operating system versions the configuration of CSPs and KSPs were on different tabs in the certificate properties. For version 2 certificate templates, CSPs were configured on the Request Handling tab. For version 3 certificate templates,
    KSPs were configured on the Cryptography tab. Starting in Windows Server 2012, the configuration of the providers is consolidated on the Cryptography tab. To learn more about the cryptographic provider options present in previous operating systems
    Notice later.
    I'd be glad to answer any question

Maybe you are looking for