Sync Errors - What Are the Correct Folder Permissions?

I've been having problems recently on the PB getting it to successfully sync.
Decided to open the log using Console and see what was happening - all sorts of errors! One seems to relate to permissions, the other to a possible problem at .Mac
It had attempted to create a folder 'Syndication' under '~/Library/Application Support' and couldn't. What should the group be to get this to work properly - clearly it isn't 'staff'!
In the other one it seems that a http 404 error occurs (not found) when trying to retrieve keychains from .Mac - going to keep an eye on this.
Cheers
Powermac G5 DP 2.3 GHz   Mac OS X (10.4.4)   4.5 GByte RAM

.Mac sync got a lot of problems this week and Apple has disabled it for now. Check www.mac.com and I think you should follow .Mac forum instead of iSync one as this is a .Mac problem (iSync does not handle .Mac sync). People are discussing the issues you experience there.

Similar Messages

  • I have a Win7Pro SP1 PC locked down with a Group Policy as it is a public facing PC. PDF fillable forms cannot be completed when logged on as the restricted user. The forms work as a normal user. What are the user requirements/permissions needed to fill f

    I have a Win7Pro SP1 PC locked down with a Group Policy as it is a public facing PC. PDF fillable forms cannot be completed when logged on as the restricted user. The forms work as a normal user. What are the user requirements/permissions needed to fill forms?

    Well, try this (I was able to fix my with these steps):
    Go Utilities > Disk Utility
    Select your Startup Disk, e.g. Macintosh HD
    Then, under the First Aid Tab, click Verify Disk Permissions.
    If there are errors, then click repair Disk Permissions.
    After it is done, restart the computer and see if your problem is resolved.
    I hope this help.
    Zeke
    www.ZekeYuen.com/blog/

  • What are the correct steps for installing Oracle Entitlement Server SSM?

    Can somebody explain what are the correct steps to install OES SSM 10.1.4.3? I have installed OES admin 10.1.4.3 and applied the CP2 patch. it is allowing me to open Entitlement Administration, where I can define the policy.
    Is it sufficient to have this Entitlement Admin to call the policy from BPM? Do I need a SSM ?
    When I try to configure Java SSM using ConfigTool.bat -process myssm_config.properties I am getting the following error
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

    Yes I have explored this pdf...but it doesn't tell how to use the policy from the BPM. My question is if I want to use the policies from BPM, then do I need to install the SSM ?
    If yes, what are the correct steps of installation ?
    I am getting the errors while configuring the Java SSM.
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

  • What are the correct answers ?

    after doing one sample swing application, i assumed the exam will be easy. when i took the exam, i couldn't do anything...
    what are the correct answers ??/
      Which one of the following converts the Image i into the BufferedImage bi? 
    Choice 1  
    bi = new BufferedImage(0, 0, BufferedImage.TYPE_INT_RGB);
    Graphics2D g = (Graphics2D)bi.createGraphics();
    g.drawImage(i,i.getHeight(this),i.getWidth(this)); 
    Choice 2  
    bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);
    bi.drawImage(i,0,0,this); 
    Choice 3  
    bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);
    Graphics2D g = (Graphics2D)bi.createGraphics();
    g.drawImage(i,0,0,this); 
    Choice 4  
    bi = new BufferedImage(i, i.getWidth(this), i.getHeight(this), BufferedImage.TYPE_INT_RGB); 
    Choice 5  
    bi = new BufferedImage(i, i.getWidth(this), i.getHeight(this)); 
    CardLayout
    BorderLayout
    FlowLayout
    GridBagLayout
    GridLayout 
      Which one of the following indicates all of the layout managers (from the list above) that allow you to set the space between the components from an instance of the LayoutManager itself? 
    Choice 1  
    CardLayout, FlowLayout, GridBagLayout, GridLayout 
    Choice 2  
    GridBagLayout 
    Choice 3  
    BorderLayout, GridLayout 
    Choice 4  
    BorderLayout, FlowLayout, GridLayout 
    Choice 5  
    BorderLayout, CardLayout, FlowLayout, GridBagLayout, GridLayout 
    JFrame jf = new JFrame();
    jf.setSize(400,400);
    JTextField jtf = new JTextField("JTextField");
    JButton jb = new JButton("JButton");
    jf.getContentPane().setLayout(
                          new FlowLayout(FlowLayout.LEFT,1,2));
    jf.getContentPane().add(jtf);
    jf.getContentPane().add(jb); 
      Which one of the following indicates the positions of the JTextField jtf and JButton jb relative to the JFrame and each other? 
    Choice 1  
    jtf and jb are in the top-center of the Jframe; jtf is to the left of jb, 2 pixels apart. 
    Choice 2  
    jb is in the top-right corner of the JFrame with jtf 1 pixel to the left of it. 
    Choice 3  
    jtf is in the top-left corner of the JFrame with jb 1 pixel to the right of it. 
    Choice 4  
    jb is in the top-right corner of the JFrame with jtf 2 pixels to the left of it. 
    Choice 5  
    jtf is in the top-left corner of the JFrame with jb 2 pixels to the right of it
    public void drawText(Graphics2D g, String text){
      Font f = new Font("Century Gothic", Font.BOLD, 10);
      g.setFont(f);
      g.drawString(text, 20, 20);
      Given the above sample code, what happens if the "Century Gothic" font is NOT available? 
    Choice 1  
    The Font() constructor fails, causing "f" to be null, and the setFont() method throws a NullPointerException. 
    Choice 2  
    "Century Gothic" is a built in Java font, which always exists within the Java runtime environment. 
    Choice 3  
    The code does not compile because only the following "logical" font names are supported in Java: Dialog, DialogInput, Monospaced, Serif, SansSerif, and Symbol. 
    Choice 4  
    The Font() constructor throws an IllegalArgumentException. 
    Choice 5  
    A default Font object is returned and is used
    Sample Code 
    public void drawText(Graphics2D g, String text){
      Font f = new Font("Century Gothic", Font.BOLD, 10);
      g.setFont(f);
      g.drawString(text, 20, 20);
      Given the above sample code, what happens if the "Century Gothic" font is NOT available? 
    Choice 1  
    The Font() constructor fails, causing "f" to be null, and the setFont() method throws a NullPointerException. 
    Choice 2  
    "Century Gothic" is a built in Java font, which always exists within the Java runtime environment. 
    Choice 3  
    The code does not compile because only the following "logical" font names are supported in Java: Dialog, DialogInput, Monospaced, Serif, SansSerif, and Symbol. 
    Choice 4  
    The Font() constructor throws an IllegalArgumentException. 
    Choice 5  
    A default Font object is returned and is used. 
    How must do you interact with a JTextField in order to generate an ActionEvent? 
    Choice 1  
    Tab into the JTextField from another Component. 
    Choice 2  
    Type in the JTextField. 
    Choice 3  
    Activate the cursor in the JTextField. 
    Choice 4  
    Hit <RETURN> while the cursor is in the JTextField. 
    Choice 5  
    Hit the spacebar while typing in the JTextField. 
    double-buffering
    public class TimerTest implements ActionListener{
      public static void main(String[] args){
        TimerTest test = new TimerTest();
        javax.swing.Timer timer = new javax.swing.Timer(100,test);
      public void actionPerformed(ActionEvent ev){
        System.out.println("Timer ticked.");
      Given the above sample code, what is the result when the code is run? 
    Choice 1  
    The words "Timer ticked." are printed to the console once after 100 milliseconds. 
    Choice 2  
    The words "Timer ticked." are printed to the console every 100 microseconds. 
    Choice 3  
    The words "Timer ticked." are printed to the console every 100 seconds. 
    Choice 4  
    The words "Timer ticked." are printed to the console every 100 milliseconds. 
    Choice 5  
    Nothing, the Timer is not started. 
    1. JSlider slider1 = new JSlider (JSlider.VERTICAL, 0, 100, 50);
    2. slider1.setPaintTicks(false);
    3. slider1.setMajorTickSpacing(10);
    4. slider1.setMinorTickSpacing(2); 
      What changes do you have to make to the above Sample code so that there are six Major Ticks and four Minor ticks between each Major Tick? 
    Choice 1  
    Replace line 3 with slider1.setMajorTickSpacing(17); 
    Choice 2  
    Replace line 2 with slider1.setPaintTicks(true);
    Replace line 3 with slider1.setMajorTickSpacing(17);
    Replace line 4 with slider1.setMinorTickSpacing(5); 
    Choice 3  
    Replace line 3 with slider1.setMajorTickSpacing(5);
    Replace line 4 with slider1.setMinorTickSpacing(4); 
    Choice 4  
    Replace line 2 with slider1.setPaintTicks(true);
    Replace line 3 with slider1.setMajorTickSpacing(20);
    Replace line 4 with slider1.setMinorTickSpacing(4); 
    Choice 5  
    Replace line 4 with slider1.setMinorTickSpacing(6); 
       Which one of the following defines a set of three JRadioButtons (b1, b2, and b3) so that only one JRadioButton can be selected at a time? 
    Choice 1  
    ButtonGroup g = new ButtonGroup();
    g.add(b1); g.add(b2); g.add(b3); 
    Choice 2  
    b1.group(true); b2.group(true); b3.group(true); 
    Choice 3  
    JRadioButton jbs[] = {b1, b2, b3};
    ButtonGroup g = new ButtonGroup(jbs); 
    Choice 4  
    The default behavior of JRadioButtons is such that only one can be selected at a time as long as they are in the same Container. 
    Choice 5  
    ButtonGroup g = new ButtonGroup(b1, b2, b3); 
    Sample Code 
    public static void main(String args[]){
      What is the role of the method in the code above? 
    Choice 1  
    To provide a place for initialization code when instantiating the current class. 
    Choice 2  
    It is the first method run when a class is run with the Java Interpreter. 
    Choice 3  
    It serves no specific function. It is a residual method from Java 1.0. 
    Choice 4  
    It is the first method that the Java Compiler converts to bytecode when creating a .class file. 
    Choice 5  
    To process command-line parameters when running the Java Interpreter 
    How do you create a menu item, Save, with a shortcut key of Ctrl+S? 
    Choice 1  
    You have to override the KeyPressed event of the top level Frame and handle the Ctrl+S to call the menu item's actionPerformed. 
    Choice 2  
    JMenuItem save = new JMenuItem("Save");
    save.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S,Event.CTRL_MASK)); 
    Choice 3  
    JMenuItem save = new JMenuItem("Save");
    save.enableShortcut(KeyEvent.CTRL_KEY + KeyEvent.S); 
    Choice 4  
    JMenuItem save = new JMenuItem("Save");
    save.setMnemonic("Ctrl+S"); 
    Choice 5  
    JMenuItem save = new JMenuItem("Save");
    save.addShortcutKey( new KeyStroke(KeyStroke.S | KeyStroke.CTRL_KEY) ); 
    GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1);
    gbl.addLayoutComponent(jb,gbc1); 
      In regards to the above code, which one of the following indicates jb's grid position? 
    Choice 1  
    Grid position 2,1 
    Choice 2  
    Grid position 1,2 
    Choice 3  
    Grid position 1, 1 
    Choice 4  
    Grid position 10, 1 
    Choice 5  
    Grid position 1, 3 
    GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1);
    gbl.addLayoutComponent(jb,gbc1); 
      In regards to the above code, which one of the following indicates jb's grid position? 
    Choice 1  
    Grid position 2,1 
    Choice 2  
    Grid position 1,2 
    Choice 3  
    Grid position 1, 1 
    Choice 4  
    Grid position 10, 1 
    Choice 5  
    Grid position 1, 3 
    Which one of the following is necessary when changing an Applet to a standalone application? 
    Choice 1  
    Add a no-argument constructor. 
    Choice 2  
    Remove the init(), start() and stop() methods. 
    Choice 3  
    Remove "extends JApplet" or "extends Applet". 
    Choice 4  
    Add a main() method. 
    Choice 5  
    Change the import statement so that it imports an Application container rather than Applet or JApplet. 
    Which one of the following adds the String "Java" to the JComboBox jcb? 
    Choice 1  
    ComboBoxModel cbm = jcb.getModel();
    cbm.addItem("Java"); 
    Choice 2  
    jcb.setText("Java"); 
    Choice 3  
    ComboBoxModel cbm = jcb.getModel();
    cbm.add("Java"); 
    Choice 4  
    jcb.add("Java"); 
    Choice 5  
    jcb.addItem("Java");

    I'll have a go but I am not saying they are all correct...
    Question 1.
    Which one of the following converts the Image i into the BufferedImage bi?
    Choice 3 (assuming this implements the imageobserver interface)
    bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);  //1 is BufferedImage.TYPE_INT_RGB
    Graphics2D g = (Graphics2D)  
    bi.createGraphics();
    g.drawImage(i,0,0,this);Good luck with your homework...
    nes
    Question 2.
    CardLayout
    BorderLayout
    FlowLayout
    GridBagLayout
    GridLayout
    Which one of the following indicates all of the layout managers (from the list above) that allow you to set the space between the components from an instance of the LayoutManager itself?
    Choice 4
    BorderLayout,
    FlowLayout,
    GridLayout
    (GridBagLayout uses GridBagConstraints to decide component spacing, card layout does not provided component spacing due to the deck nature used)
    Question 3.
    JFrame jf = new JFrame();
    jf.setSize(400,400);
    JTextField jtf = new JTextField("JTextField");
    JButton jb = new JButton("JButton");
    jf.getContentPane().setLayout( new FlowLayout(FlowLayout.LEFT,1,2));
    jf.getContentPane().add(jtf);
    jf.getContentPane().add(jb);    Which one of the following indicates the positions of the JTextField jtf and JButton jb relative to the JFrame and each other?
    Choice 3 jtf is in the top-left corner of the JFrame with jb 1 pixel to the right of it.
    Question 4
    public void drawText(Graphics2D g, String text)
         Font f = new Font("Century Gothic", Font.BOLD, 10);  
         g.setFont(f);  
         g.drawString(text, 20, 20);
    }    Given the above sample code, what happens if the "Century Gothic" font is NOT available?
    Choice 5 A default Font object is returned and is used
    Question 5.
    How must do you interact with a JTextField in order to generate an ActionEvent?
    Choice 4 Hit <RETURN> while the cursor is in the JTextField.
    Question 6.
    public class TimerTest implements ActionListener
         public static void main(String[] args)
               TimerTest test = new TimerTest();    
               javax.swing.Timer timer = new javax.swing.Timer(100,test);  
         public void actionPerformed(ActionEvent ev)
              System.out.println("Timer ticked.");  
    }    Given the above sample code, what is the result when the code is run?
    Choice 5 Nothing, the Timer is not started.
    Question 7.
    1. JSlider slider1 = new JSlider (JSlider.VERTICAL, 0, 100, 50);
    2. slider1.setPaintTicks(false);
    3. slider1.setMajorTickSpacing(10);
    4. slider1.setMinorTickSpacing(2);    What changes do you have to make to the above Sample code so that there are six Major Ticks and four Minor ticks between each Major Tick?
    Choice 4 Replace line 2 with slider1.setPaintTicks(true); Replace line 3 with slider1.setMajorTickSpacing(20); Replace line 4 with slider1.setMinorTickSpacing(4);
    Question 8.
    Which one of the following defines a set of three JRadioButtons (b1, b2, and b3) so that only one JRadioButton can be selected at a time?
    Choice 1 ButtonGroup g = new ButtonGroup(); g.add(b1); g.add(b2); g.add(b3);
    Question 9.
    Sample Code
    public static void main(String args[]){ }
    TYPO - should be public static void main(String[] args){ }
    What is the role of the method in the code above?
    Choice 2 It is the first method run when a class is run with the Java Interpreter.
    Question 10.
    How do you create a menu item, Save, with a shortcut key of Ctrl+S?
    Choice 2 JMenuItem save = new JMenuItem("Save");
    save.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S,Event.CTRL_MASK));
    Question 11.
    GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1); gbl.addLayoutComponent(jb,gbc1);
    In regards to the above code, which one of the following indicates jb's grid position?
    Choice 3 Grid position 1, 1
    Question 12
    Which one of the following is necessary when changing an Applet to a standalone application?
    Choice 1 Add a no-argument constructor.
    Choice 2 Remove the init(), start() and stop() methods.
    Choice 3 Remove "extends JApplet" or "extends Applet".
    Choice 4 Add a main() method.
    Choice 5 Change the import statement so that it imports an Application container rather than Applet or JApplet.
    mmm. not a good choice of answers. look at the following link...
    http://forum.java.sun.com/thread.jsp?forum=57&thread=218096
    Question 13.
    Which one of the following adds the String "Java" to the JComboBox jcb?
    Choice 5 jcb.addItem("Java");

  • What Are The Correct Gray OS X Discs For This Imac?

    I got a free 700Mhz G4, 15" Screen, 512mb Ram, 40GB HDD and I was wondering what are the correct OS X discs (Gray) that came with this Mac?
    There has to be a serial or model number right? I have Leopard installed on it and I missing having the DVD player so could I connect the iMac to my PowerMac G5 using Target Disc Mode, and then install Panther or Tiger onto the iMac through it?

    Liquidus wrote:
    I got a free 700Mhz G4, 15" Screen, 512mb Ram, 40GB HDD and I was wondering what are the correct OS X discs (Gray) that came with this Mac?
    The correct Mac OS restore discs are Mac OS X 10.1.2 and Mac OS 9.2.2. I have restore discs for a 600MHz Late 2001 iMac G3, which has the same identical software as the iMac G4. That part number for the disc set is 603-0372.
    For the second part of your question, you can install Panther or Tiger through Target Disc Mode from your PM G5.
    -Brian

  • What are the correct domain settings @ Go Daddy?

    I will set up a Mac Mini Lion Server using server assistant.  I bought a domain name from Go Daddy. What are the correct domain (DNS, host) settings @ Go Daddy - need step by step guide; thanks in advance.

    I do not fully understand how the PTR pointer works
    PTRs map IP addresses back to hostnames - also known as 'reverse DNS'.
    The way it works is that when you (or any client) looks up an IP address they first query the root servers that maintain a map of the main IP address allocations. You then query the server that's authoritative for the IP address in question. That server may respond, or may further delegate responsibility to another server.
    As an illustration, imagine a company - MegaISP - who's been allocated a large block of IP addresses - say 1.0.0.0 through 1.255.255.255. As an ISP they provide access service in all 50 states so they may further subdivide their network into chunks and delegate control of each chunk to a different server, e.g. 1.1.0.0 - 1.1.255.255 -> CA, 1.2.0.0 - 1.2.255.255 -> NY, etc.
    Now you, as a customer of MegaISP, connect to their server and are allocated a dynamic address from the 1.2.0.0 - 1.2.255.255 subnet - let's say 1.2.3.4
    When you perform a reverse lookup on 1.2.3.4 your query first goes to the root servers which say something like 'hey, those IPs are owned by MegaISP's DNS servers, so go ask them'. You then query MegaISP's main servers which then say 'hey, that IP is somewhere in the New York subnet, so go query the New York DNS server. Your query then goes to MegaISP's New York server that replies something like 'host-1-2-3-4.ny.megaisp.net' and that' your reverse lookup.
    (of course, this is greatly simplified, and the whole process takes a fraction of a second, but hopefully you get the idea).
    The problem you now have is that MegaISP have no idea what services you're running on your connection, so they just return a generic response (e.g. host-1-2-3-4.ny.megaisp.net) and not something that relates to your domain (e.g. www.yourdomain.net). Nobody knows to ask your DNS server what hostname your IP address should map to.
    In order for that last step, MegaISP either have to change their DNS servers to map your IP address to your domain name rather than the generic hostname, or they have to further delegate your IP address's lookup to your own server (i.e. add another link in the chain - like 'hey, that IP address is delegated to yourdomain.net, so go ask their server').
    Most ISPs are happy to either delegate or have a custom entry for your domain, but not on dynamic or residential-grade connections - it's not worth the time and effort to keep it up to date as your IP address changes, which is why it's typically only something that comes with business-grade services.
    and what limitations this will lead to
    Any service that relies on valid reverse DNS is doomed to fail. For the most part, http doesn't matter/care, but don't expect to run a mail server or certain other services.

  • What are the correct Time Capsule Airport Utility Disk options?

    During configuration of the Time Capsule what are the correct options/settins in the Airport Utility on the Disk tab?  Does File Sharing interfere with Server File Saring>

    You can turn on file sharing.. it will not interfere with your server since it has a different IP address.
    You can use either device password or disk password.. do not use the profiles as that complicates things.. and Apple did not build in a link to Server to use standard user login which is a great pity.. when you have an active directory type setup it .. the TC could have been made a lot more business like.. However apple really have the TC aimed at the domestic market and users without a server.
    What are you intending to use the TC for?
    Most people would be better buying an airport extreme rather than TC when they are running business setup.

  • Transfer ADOBE creative Suite from an old Mac to a new Mac, I have the code but I don't have a CD. What are the correct steps?

    Hi
    I bought a new Mac and I want to transfer my Adobe Creative Suit CS6 to it from my old one. What are the correct steps? Please note that I don't have a CD because I downloaded it via the net. It was an upgrade for the student edition. I heard something about deactivation and reactivation but I don't want to do something wrong then lose my precious software. Please help. Thanks.

    You can download the software and install it using the page linked below.
    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    You are allowed to have the software installed and activated on two machines, so there should be no reason to deactivate it on your other machine, or at least you can wait until you see it loaded and working on the new one.

  • My new 4s cannot send emails; emails are rejected by server. What are the correct settings?

    What are the correct settings when my new 4s can receive but will not send messages. The emails are rejected by the server,

    You're going to have to ask your e-mail provider. We don't have the slightest clue who that is, much less what the correct settings would be.

  • What are the correct settings for my WRT54GS for using remote access on a Windows Home Server?

    I can not remotely access my Windows Home Server from outside.  What are the correct settings for my WRT54GS?

    I have opened ports 80, 443,and 4125 to PCP.  The  router address is http://192.168.1.1, my address is 221.40.138.170.
    Thank you.

  • What are the correct Premiere Pro CS4 settings for producing WMV/MP4 to FLV/F4V videos?

    Greetings.
    I have recently purchased CS4 Production Suite.  My task is to convert WMV/MP4 videos to FLV/F4V videos that contain titles, transitions, and credits for streaming from Flash Media Server.
    My test videos are experiencing audio sync issues when using Adobe Media Encoder as the export tool.  When I use Flash Video Export tool using the source WMV/MP4, I do not experience sync issues.
    I can control the WMV/MP4 output settings since we record our own sessions using Windows Media Encoder.  I can also utilize Flash Media Live Encoder to capture the source.
    The video source comes from a video capture card (Osprey) that is connected to an IP based camera(s) which are controlled by video technicians.
    We record from that capture card into WMV format.
    My question is, what are the settings in Premiere to produce FLV/F4V for streaming in 480p quality?
    I am new to video production and gladly appreciate any assistance.
    Regards,
    Shack

    Classification: UNCLASSIFIED
    Caveats: NONE
    Jim,
    Thank you for your response.  I am a total noob at video, but have the requirement to produce recorded video to our FMS servers.
    Here is my situation.  We have classrooms and auditoriums hard wired with IP cameras.  Our video techs can record to DVR and then finalize to DVD (VOB).  We also have a control center that can capture those cameras using Windows Media Encoder to record.
    I have been given CS4 to produce these videos.  Each time that I transcode, the audio gets out of sync.  I am trying to figure out a suitable way to take VOB and WMV files into PP and output to FLV/MP4.
    Appreciate any advice...
    Shack

  • What are the correct permissions for the Home folder?

    Since buying my first mac (G4 iMac) I've since bought 2 other macs & transferred my home folder from the older computer each time. Since then I've messed around with the permissions of the Home folder a few times to try share files & folders between my Windows PCs. So the permissions of the Home folder on all computers could be messed up a little.
    I want to set up permissions how they should be set up as default.
    I created another user account with admin priveliges & it looks like the Home folder should be set up as follows:
    Owner: 'my name'
    Access: Read & Write
    Group: admin or 'my name'
    Access: Read only
    Others: Read only
    And the sub folders (Documents, Pictures etc.) should be set up as follows:
    Owner: 'my name'
    Access: Read & Write
    Group: admin or 'my name'
    Access: No access
    Others: No accesss
    Is this correct, & if so shall I just set permissions on my Home folder exactly the same as the new account I set up?
    Or is there some way of resetting permissions for the Home folder?
    (I know repairing permissions with Disk Utility doesn't do this).
    Power Mac G5 Dual 2.3, 2.5 GB RAM, 20 Cinema Display | MacBook Pro 2.0 15"   Mac OS X (10.4.6)  

    Mac OS X does not have a built-in way of doing this, but you can make one yourself. Open the Script Editor in the /Applications/AppleScript/ folder and enter the following:
    do shell script "chmod 755 ~"
    try
    do shell script "chmod 700 ~/Desktop"
    end try
    try
    do shell script "chmod 700 ~/Documents"
    end try
    try
    do shell script "chmod 700 ~/Library"
    end try
    try
    do shell script "chmod 700 ~/Music"
    end try
    try
    do shell script "chmod 700 ~/Pictures"
    end try
    try
    do shell script "chmod 755 ~/Public"
    end try
    try
    do shell script "chmod 755 ~/Sites"
    end try
    This script can be saved as an application, which makes it possible to fix the permissions on a home folder with two clicks. The try statements are included so that the script will run if a folder doesn't exist. If the ~ object is a symbolic link, the permissions on it may not be changed; you can use the code block
    tell application "Finder"
    set the_home to POSIX path of (home as alias)
    end tell
    do shell script ("chmod 755 " & the_home)
    in this case. The rest of the script works as before.
    (12450)

  • What are the correct Send Connectors settings in Exchange 2013

    Hi
    I'm new to exchange, successfully setup a lab with 2 cashub roles and 2 mailbox roles. I am trying to set the send connectors settings, because I've not been able to send nor receive external email via owa. Since I'm separating the exchange roles, my mailbox
    servers only use internal IP settings and cannot resolve external DNS. I'm thinking I need to tick, proxy through CAS for it to work? any suggestions?

    Hi 
    Can you please let us know what version of Exchange that you are using 
    "I'm new to exchange, successfully setup a lab with 2 cashub roles and 2 mailbox roles"
    - Because Exchange 2013 does not hold hub role.
    " I am trying to set the send connectors settings, because I've not been able to send
    nor receive external email via owa."
    It would be great if you could answer few questions so that people can help you out here
    Are you able to send emails internally without any issues with Outlook ? If not can you paste the errors.
    What error you are getting while trying to send emails through owa . Can you paste the errors.
    If you are looking for steps to create new send connector please follow below technet article
    http://technet.microsoft.com/en-us/library/aa998936(v=exchg.150).aspxFeel free to post your comments/errors you received  to proceed
    further
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

  • What are the correct steps for installing SP1 over Sharepoint 2010

    Hi,
    I have SharePoint 2010 (Release To Manufacturing) environment and am planning to to upgrade it to SP1. May I please know the correct steps
    to install SP1 on to my environment(2WFE + 2APP servers & 64 bit OS).

    SP2 provides key updates and fixes across our servers, services and applications including security,
    stability, and performance enhancements and provides better compatibility with Windows 8, Internet Explorer 10, Office 2013, and SharePoint 2013.
    also your Sharepoint is upto date version, you will get all the functionality which
    you will losing since you are prior to SP1.
    i.e Site Recycle bin,
    Content Deployment fixes, . you can go throw all the kB articles which will tell you what fixes in it.
    http://blogs.technet.com/b/stefan_gossner/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • What are the correct settings for the Canon 5D mark II in FCP 7 ?

    I am shooting full HD at 23s97 fps.. tried making a preset for the Canon but when I import fils FCP always wants to change to appropriate settings for this file type but doesn't tell me what that is...
    (latest firmware installed)
    Please, can someone provide all the correct settings for me?
    And also, why doesn't the camera show up on the desktop/in the menus when attached to the mac? I have ro use EOS utility every time I want to get anything off of the camera... and FCP doesn't see it either. That's just not right - FCP MUST recognise my camera!! : (
    Please help - I don't want to start editing until I have the right settings for this footage.
    Thanks
    Jim

    Welcome to the Boards
    Not sure what you mean with the following, looks like a word dropped?
    I have ro use EOS utility every time I want to get anything off of the camera...
    Anyway, some more specs on your system could help point where the issue is. With the new Plug-In by Canon you can Log & Transfer from the Flash Card (not sure how you connected the camera.) Alternatively you could just drag the files in (but make sure to keep all files such as THM in case you use Log and Transfer later.)
    Generally it is best to transcode to Pro Res to be able to work with the files in Final Cut. (Log & Transfer should do that, or using Compressor/Mpeg Streamclip.)
    It (Final Cut) is probably changing the timeline to match the codec, or depending on your last preset used, just switching things around. In other words if you were editing in DV and had a set up for that, new sequences would default to that and if you try to ad anything else you will get the message.
    Take a look at the search over there -> to look for the Canon 5D threads for some more info.
    What I would do is just pull one of the clips in to start and look at what the sequence settings are aftr Final Cut changes them for you - they should be fine generally, though you will want to change Codecs to Pro Res.
    I like just batch conversion of all my clips from the 5D Markk II and then work from there. (I do not hook up the camera to the computer, just use a card reader.)

Maybe you are looking for

  • Can't dismount mounted vhdx image file

    Sometimes mounted vhdx drive become unmountable - the  Eject disapears from context logical volume menu as ordinaly. mountvol X: /D works and unmount but only one logical drive per time, and after i unmount all in such way vhdx file is still locked a

  • How can i pull the payment transactions for each invoice?

    Hi folks iam developing report for following requirement. want to disply the vendor transaction file for all company codes Fiscal year,of 2004,2005,2006, and 2007 (to date). The purpose of oureport is to analyze our company invoices and investigate p

  • Error exporting application into a ear file

    I'm developing an application with the Sun One 5 IDE,and Application server 8, i'm making CMP entity bean, when i try to export to an ear file an error occur Validation failed for entities.CMPAdministradorBean. Verify that all fields are mapped. CMP

  • Airport Update and New Problems

    Every since I exposed my rock stable mac to the last airport update and system update, I have had some connectivity problems with my airport. I cannot get Back To My Mac to work. I can't print off of my USB connected to the airport. I went into Airpo

  • AS3 drag and drop masked bitmaps - not working

    I have a drag and drop project using bitmaps that were masked using fireworks. All bitmaps are PNG (fireworks files) and one object is GIF. All objects were converted into movie clips. PROBLEM All movie clips from PNG's can be dragged, but they can't