Pacifist help for reinstalling files

Hey guys, newbie question here!
I'm trying to use Pacifist as described here: http://discussions.apple.com/thread.jspa?threadID=1280947&tstart=75
but I have no clue how to do this to reinstall those quartz files. I've downloaded Pacifist, but I'm not sure what package to open and how to reinstall etc.
This seems to have resolved some people's ichat video problems as it seems I've tried all the other tricks - QT streaming, port 443, bandwidth 500, Firewall to allow specific ichat etc.
The user I'm trying to chat with is running Tiger. We did connect successfully in video BEFORE I upgraded to 10.5.1 and before I installed Parallels.
Thanks for any advice.

Click here for instructions on using Pacifist.
(27591)

Similar Messages

  • F4 Help for Logical file

    Hi All,
    i've declared a parameter where end-user can specify the logical file name. can anyone provide the code for F4 help for logical file name.
    Regards
    Faisal

    Declare this :-->
    PARAMETERS: p_apsvr  LIKE rlgrap-filename OBLIGATORY.
    AT selection Screen
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_apsvr.
      PERFORM get_apsvr_path.
    FORM get_apsvr_path .
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory        = p_apsvr
          filemask         = '*'
        IMPORTING
          serverfile       = p_apsvr
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " get_apsvr_path

  • Large file handling tips Help for illustrator file larger than 3 gb

    Can anyone provide advice for large file handling tips.  Help for illustrator file larger than 3 gb ie how often, when, and should I clear the clipboard? are here other tips?
    Thanks,
    Gavin

    My key tip is to EXPECT corruption. Keep every save separately so you can go back before damage (which might not be visible). Don't just keep a single old file or rely on daily backups.

  • Urgent help for linking file

    hi i am a noob in this area..can someone plz help me..
    well i have to do a link where it will open the latest file..
    how do i do tat......................
    String file = "C:/";
    File f = new File(file);
    String [] fileNames = f.list();
    File [] fileObjects= f.listFiles();
    %>
    <UL>
    <%
    for (int i = 0; i < fileObjects.length; i++) {
         if(!fileObjects.isDirectory()){
    %>
    <LI>
    <a href="<%= fileNames[i %">"><%= fileNames[i] %></A>
    (<%= Long.toString(fileObjects.length()) %> bytes long)
    <%
    tis code can loop for all the documents i have in my C drive..but i dont want it to loop .. i want it to search for me the latest file and just open it...
    thank you very much. </a>

    import java.io.File;
    public class LatestFileInDir {
         static long maxFileDate = 0;
         static String maxFilePath = "";
         static void getLatestFilePath(File fd) throws Exception {
            if (fd.isDirectory()) {
                 String[] children = fd.list();
                 for (int i=0; i<children.length; i++) getLatestFilePath(new File(fd, children));
    else {
         if(fd.lastModified() > maxFileDate) {
              maxFileDate = fd.lastModified();
              maxFilePath = fd.getCanonicalPath();
         public static void main(String args[]) throws Exception {
              getLatestFilePath(new File("C:\\TestDir"));
              System.out.println("Latest File : " + maxFilePath);
    }Cheers

  • Podcast Help for xml file!

    Hi!
    I am creating a podcast for my primary school that I work at.....yet I am having difficulties getting the text file to go with it.
    We used epodcast producer to make the mp3 file - but where do i go from here?
    Ultimately we want to list the podcast on itunes, but at the moment - people go to our website www.westonpoint.ik.org and download it manually from there in the documents choice.
    Where do we go from here?
    Cheers
    Chris
      Windows XP  

    http://www.podcast411.com/howto_1.html
    Read this tutorial - including all the comments at the bottom.
    Then let me know if you have any other questions.
    Rob @ podCast411

  • Help for raw files

    How do I make Canon 5D MarkIII compatable with Lightroom 3 and cs5 (raw files)

    Excuse me, but Camera Raw 6.7 handles Canon 5D Mark III files directly, and it works with Photoshop CS5, so Mylenium's answer is incorrect. 
    You just need to update your Photoshop CS5 installation to include Camera Raw 6.7.  You may be able to do that by simply going through Help - Updates.
    You can check your facts starting here:  http://forums.adobe.com/thread/311515
    Which leads you here:  http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    Note specifically the "What version of Camera Raw started to support my camera?" section, which states:
    -Noel

  • PLEASE HELP FOR POLICY FILE !

    Hello All,
    i write that code
    try {
    System.setSecurityManager(new RMISecurityManager());
         java.util.Properties prop = System.getProperties();
         prop.setProperty("java.security.policy","D:\\Borland\\AppServer\\var\\servers\\sas2\\wars\\tomcat3\\webcontainer_examples\\WEB-INF\\classes\\pol.policy");
    AddServerImpl addServerImpl = new AddServerImpl();
         Registry registry = LocateRegistry.createRegistry(1099);
         LocateRegistry.getRegistry().rebind("AddServer",addServerImpl);
    catch(Exception e) {
    out.println("Exception: " + e);
    After that i got that exception
    Exception: java.security.AccessControlException: access denied (java.util.PropertyPermission java.security.policy write)
    please any body tell me how i solve it ?
    i m thanksfull.
    Arif.

    I tried adding these lines to my code to set the policy inside the program:
    System.setSecurityManager(new RMISecurityManager());
    java.util.Properties prop = System.getProperties();
    prop.setProperty
    ("java.security.policy","C:\\Pawel\\School\\year4\\rmi\\policy.txt");
    This is the error that i get..
    Exception in thread "main" java.security.AccessControlException: access
    denied (
    java.util.PropertyPermission * read,write)
    at java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java:270)
    at java.security.AccessController.checkPermission(AccessController.java:
    401)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:542)
    at java.lang.SecurityManager.checkPropertiesAccess(SecurityManager.java:
    1259)
    at java.lang.System.getProperties(System.java:500)
    at FileServer.main(FileServer.java:10)
    My problem is that i have a GUI running thus i don't know how to start my FileSever classs with the java -Djava.security.policy=policy.txt FileServer
    ive tested the gui client part .. i can start the file server using the previous command line then connect to it thru the gui but as soon as i activate the fileserver thru the gui it does not work..
    should i have my gui just run a .bat file isntead of making a seporate thread for the fileserver?
    is there a way of doing that..
    or is there a way of setting the policy from the code?
    thanks
    pawel

  • Need Help for Jar Files Operations!

    Hi,
    I am trying to extract files from jar file using the java code. Does any one knows how can one do this using java code.
    Or
    is there any facility that I can use the unjar command inside the java code to extract it. I wonder about this!
    Or
    does java povide Java APIs provides facility for this. I have gone thourgh java.util.jar package but am not to get how can this be used for the above purpose?
    Thanks.
    Huzefa

    The following will display each file in the zip/jar file to the screen.
    ZipInputStream zin = new ZipInputStream( new FileInputStream( "z:\\myzip.zip" ) );
    ZipEntry entry;
    while( (entry = zin.getNextEntry() ) != null ) {
         System.out.println( "Entry: " + entry.toString() );
         byte[] buf = new byte[ (int)entry.getSize() ];
         zin.read( buf, 0, (int)entry.getSize() );
         System.out.write( buf, 0, (int)entry.getSize() );
    Jar* extends Zip*.

  • Need urgent help for (Message file sp1 lang .msb not found)

    sir
    c:\oracle9i this is my database folder name
    c:\oraform this is my form folder name
    which one my oracle_home name
    sir i test this command
    c:\ set ORACLE_HOME=c:\ORACLE9I
    c:\ set ORACLE_SID=AAMIR
    c:\ sqlplus / as sysdba
    AND RUN SQL PLUS THEN SYSTEM GIVE ME THIS ERROR
    incorrect environment variable plus_dflt program execution error
    please give me idea how i run my system
    thank

    Duplicate post:
    ''Urgent'' incorrect environment variable plus_dflt program execution erro

  • Search help for files

    Hello, is there any search help for searching files in local pc?
    I need it for a dynpro.
    Any help?
    Thanks!

    Hi ,
    Try this way...
    PROCESS ON VALUE-REQUEST.
    FIELD <DYNPRO-FIELDNAME>  MODULE F4_filename.
    MODULE F4_filename INPUT.
    * Drop down to retrieve File Path
      DATA: w_lcnt      TYPE i,
            t_lfilename TYPE filetable,
            w_lfilename LIKE LINE OF t_lfilename.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title            = 'Find File Path'
        CHANGING
          file_table              = t_lfilename
          rc                      = w_lcnt
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          not_supported_by_gui    = 4
          OTHERS                  = 5.
      IF sy-subrc <> 0.
      ENDIF.
      READ TABLE t_lfilename INTO w_lfilename INDEX 1.
      IF sy-subrc NE 0.
        CLEAR w_lfilename.
      ENDIF.
      <DYNPRO-FIELDNAME> = w_lfilename-filename.
    ENDMODULE.
    regards,
    Prabhudas

  • Hello guys, so help me, if i will buy a final cut pro from appstore, will i have a .dmg or other type of file, for reinstall it in another mac?

    hello guys, so help me, if i will buy a final cut pro from appstore, will i have a .dmg or other type of file, for reinstall it in another mac?

    No. You simply sign in to the App Store and download it again. AppStore knows that you already paid for it.

  • Help howto reinstall missing system file..

    I've been having problems with iTunes not updating/installing, and another program installing. I checked the console log and it says it cannot find a file, I checked for that file and it is missing.
    /System/Library/PrivateFrameworks/MobileDevice.framework
    How can I reinstall that file? I have a iMac 27in and the factory 10.6.2 reinstall disk. (in case that helps)
    Unlike Windows discs, there isn't a folder with all the system files in it.
    I really don't want to have to reformat or reinstall Mac OS.

    There are many folders with system files but they are invisible so inexperience users don't accidentally delete something. You can go to any folder by selecting Go to folder from the Finder's Go menu. Enter the path to the file, /System/Library/PrivateFrameworks/.
    To replace missing components:
    How Restore Deleted or Missing OS X Components
    A few of the basic OS X installed applications can be restored from the Optional Installs installer located in the Optional installs folder on your Installer DVD. However, if what you need is not there then follow the instructions below.
    How to Use Pacifist to Restore Deleted or Missing OS X Components
    Insert the OS X Installer DVD into the optical drive. Use a simple utility like TinkerTool to toggle invisibility so you can see invisible items. Alternatively, open the Terminal application in your Utilities folder and at the prompt enter the following:
    defaults write com.apple.finder AppleShowAllFiles Yes
    Press RETURN.
    To turn off the display of invisible files repeat the above command substituting No for Yes.
    The install packages are located in the /System/Installation/ folder on the DVD.
    Download the shareware utility Pacifist from VersionTracker or MacUpdate. Use it to extract a fresh copy of the missing item(s) from the file archives on your OS X installation DVD. The file archives are in the /System/Installations/ folder (use Go to Folder option in the Go menu of the Finder.)
    Here are Four Basic ways to use Pacifist (courtesy of George Orville.)
    A. Drag a .pkg icon onto the Pacifist window .....proceed to step 7.
    B. Click on “Open Package ....” and navigate to package desired and click “Open” in the open/save window.....proceed to step 7.
    C. Insert Mac OS X installer CD and when it mounts, navigate to .... Menu->Go->Go to Folder.
    In the path field enter or paste ....
    /Volumes/disc name/System/Installation/Packages (where disc name is the name of the CD/DVD that you inserted.
    • Click on the "Go" button .....
    • Drag a .pkg to Pacifist..... proceed to step 7.
    The package you'll need will have to be discovered by trial and error, but for most applications you should start with the Essentials.pkg and/or Additional Essentials.pkg.
    D. Insert your Mac OS X install disk 1 .... and open Pacifist.
    1. In Pacifist, select "Open Mac OS X Install Packages" ... dialog may appear asking for disk 2, then disk 3 and finally disk 1 again.... {if DVD is not used)...If “Stop Loading” is selected...the procedure will stop!!!
    2a. When loading is complete, a new window appears, click the triangle to display contents of each package...Select item and proceed to step 7.
    2b. or click the “Find” icon in the Pacifist window and type the name of the software you need.
    3. In the list that comes back, click the top most entry for the item that you want. ..... that is the one for the English language.
    4. On the top of the Pacifist window, click “verify” .... you will probably be prompted for your password.
    5. Enter checks for.... “verify permissions” and “verify file contents.” and click “verify” ....enter password when prompted.... you will get back output which may look like this:
    20 files were scanned.
    20 of 20 files were present on the hard disk.
    0 of 20 files had file permissions that did not match those specified in the package.
    0 of 20 files had checksums that did not match those specified in the package.
    6. Click “close”. Go to step 7.
    Extract or Install........
    7. In the Toolbar (upper left), you now have the option to extract or install. Click a file in the lower list and those two icons will be enabled.
    8. If “Extract to...” is selected.... navigate to the location where the file will be placed, select “choose”, select “extract” in new dialog that appears,authenicate , if prompted, click “OK”.
    9. In the next dialog, click “Extract”.
    10. If “Install” is selected... dialog will appear with the location/path of the installed software. Click “Install”
    11. Type in your password, click “OK”
    • Pacifist will begin to extract files.
    12. In steps 8/10ß.... you also have the choice to “cancel”
    Notes.....
    • Pacifist may find that a file it is installing already exists on the hard disk. Pacifist will present you with an alert panel....
    Stop
    Leave original alone
    Update ..... Default selection
    Replace .... Replace option should only be used on full install packages

  • The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. PLEASE HELP!!!

    I have been trying for over 2 weeks now trying to get my iTunes to open up so I can use my iTunes but I have not had any luck since I up graded to the new itunes. I have tried uninstalling (all apple programs) and reinstalling and nothing seems to work. Everytime I try to open my iTunes I receive the following message - The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. Please help as I'm getting very frustrated and want to throw every apple device in the trash!!!
    FYI: I thought about getting the iPhone but since I"m not having very good luck getting assistance with my iPod/iTunes I think I will rethink my decision.

    Found the solution.

  • Attachments dont download from Gmail in Safari, They disappear,I even tried re-downloading Safari and that download disappeared, it is not in my downloads folder, I actually searched in finder for the file and it is nowhere on my computer.  Please help!

    Attachments dont download from Gmail in Safari, They disappear,I even tried re-downloading Safari and that download disappeared, it is not in my downloads folder, I actually searched in finder for the file and it is nowhere on my computer.  Please help!

    Oh my gosh I had the EXACT same problem, and for ages I couldn't figure out how to fix it until today. Here's what I did:
    First I went onto my computer, opened itunes, and un-installed tumblr, vine and kik. These were the apps I was having problems with (it said I had them on my phone but, like you, they didn't show).
    Then I went to the itunes store, searched for each one, and it said I could update them so I did (just FYI: for tumblr a window popped up saying "please click ok to confirm you are 17 years or older", so I did that also)
    When I went back to my phone and tried installing them again (still on my computer), it worked!
    I hope this helps, because it was incredibly frustrating. Good luck!

  • My iTunes won't open! It keeps saying 'The iTunes Library.itl is locked on a locked disk or you not have write permission for this file.' Please Help!

    My iTunes won't open! It keeps saying 'The iTunes Library.itl is locked on a locked disk or you not have write permission for this file.' Please Help!

    this may happen on external drives if:
    The external drive was hotpluged (removed) without going the correct "eject" way
    The iTunes library (database) got corrupted
    First Aid for external drive
    Close iTunes
    Unmount (eject) external drive the right way.
    Mount drive again
    Go to Workplace -> right click external drive -> choose "clean up" This will force the filesystem to rescan the file structure of the drive and rebuilding the file system table and journaling file.
    After the tool shows "done" (could last some time depending on size of drive) restart iTunes
    If your iTunes library is on your internal drive, this may happen
    The system was not shoot down correct, e.g. "pulled the plug"
    The iTunes library (database) got corrupted
    First Aid for internal hard drive
    Close iTunes
    Reboot system
    Go to Workplace -> right click external drive -> choose "clean up"
    After the tool shows "done" (could last some time depending on size of drive)
    Reboot system, restart iTunes
    If none of the above fixes your problem, post here.
    Lupunus

Maybe you are looking for

  • Changing WT to GL mapping

    Dear All I am working in a group of companies and there is a request to change the GL mapping for few wage-types for one particular company.  I am new to this particular area of SAP HR, but I am learning.  By far what I have understood that WT are ma

  • Brand new iMac 24" 2.4 streaked dirty display

    Hello: I apologize if this question has been previously asked, it appears that there are many display issues with these new iMacs... I purchased an iMac 2.4/320GB HD/1GB RAM/256MB VRAM from the MacConnection on October 15, 2008. I've been having some

  • NHL Gamecenter Live on ATV2 Freezing

    I am able to watch NHL Gamecenter Live on other devices (iPhone, iPad, iMac and XBox) without any problem.  But on the ATV2, the picture freezes about every 30 seconds to a minute.  This lasts for about 15 seconds then picks up where it had frozen. 

  • How to use [BAPI_BUS2054_CREATE_MULTI]?

    Dear experts:    can anyone tell me how to use [BAPI_BUS2054_CREATE_MULTI] this function..when i used , the wbs is still not created, although the message tells me create sucessfully. below is my step: first:          CALL FUNCTION 'BAPI_PS_INITIALIZ

  • Flash file won't display

    Bear with me, I come from the GoLive world. Have a site recently converted to DW. Made an update to the home page that has a Flash file in it. DW asked me if I wanted to update code to make it IE safe. Now file does not display in Mac Safari or Firef