
05-19-2012, 06:44 PM
|
 |
Jaguar
|
|
Join Date: Apr 2012
Posts: 30
|
|
Here's my working zz folder for those of you who mistakenly deleted yours. My program that I wrote with applescript will search for, find, and give you the choice of doing "chflags uchg" (disabling) or "chflags nouchg" (enabling) ALL xpchelper cache files, which will fix the problem with copy and paste, crashing applications, etc without creating other various problems associated with deleting the zz folder.
---------------------------------------------------------------------
If you do not want to use this program and chose to use the terminal then do this script to disable the cache:
Code:
sudo find /private/var/folders -name "com.apple.xpchelper*" -exec chflags uchg \{\} \;
... or this one to enable it:
Code:
sudo find /private/var/folders -name "com.apple.xpchelper*" -exec chflags nouchg \{\} \;
HP Pavilion a1467c w/ MS-7184 Mobo (SB400 Chipset)
AMD Athlon x2 "Manchester" 2.19 GHz
2 GB DDR 400 MHz
Zotac GeForce GT 440 512 MB GDDR5
Link to dropbox. [Network prefpane fix for Lion AMD; xpchelper enabler/disabler application; random Lion kexts; all legacy kernels for Lion(v1-v6)]
Last edited by jeaton2012; 05-19-2012 at 06:53 PM.
|