TUTORIAL: Previously working effects now missing? Here's the fix...

WARNING: This process involves editing the Windows registry, so if you are squeamish about that sort of thing, do not attempt this. I'm not responsible for broken computers, hurt feelings, or terrified household pets.
I've ocassionally run into an issue since CS4 where certain plugins/effects would spontaneously cease loading in Premiere Pro and functioning, and it apparently continues to affect CS5. This happened on three total different computers, so I'm not sure what the underlying cause is. There was no clear reason why this would happen: I'd use the effect one day, come back the next and load my project, and the effects would be reported as "missing" upon project load:
This doesn't happen with the "built-in" effects that ship with Premiere, but it has happened repeatedly with the Cycore effects (copied from the AE plugins directory) or with third-party plugins like those from DigiEffects, Red Giant, Trapcode, etc. After this loading mesage, the instance of the filter would show up in the Effects Control Panel as "Offline Filter" and the filter would have no effect on the clip to which it is applied. This isn't a case of the effect simply not being compatible with Premiere, as they had previously showed up in the Effect bin and could be applied and used, as evidenced by the error pop-up above. Uninstalling and reinstalling the plugins has no effect on correcting the issue. After a bit of hunting around, I finally figured out how to correct the problem--not the underlying cause, which I still cannot pinpoint, but I can at least get the filters/effects/plugins loading and operating again. Note that the following applies to Windows systems; I'm not sure if this affects Macs, and if it does, I have no clue as to how to correct it.
In Explorer, go to the following folder: C:\Users\username\AppData\Roaming\Adobe\Premiere Pro\5.0. Inside, you will find a file called Plugin Loading.log. This is simply a text file which you can open with Notepad or a similar text editor. In it, you'll find a long list of entries like this:
Anything that says "The plugin was successfully loaded from the registry" was obviously successfully loaded, and therefore able to be used in Premiere. However, upon scrolling through the file, you will see something like this (using the CC Snow example from above):
At some point in the list, the successfully-loaded plugins will stop and the list will change to "The plugin is marked as Ignore, so it will not be loaded." Herein lies the problem and the solution; we need to correct this issue in the registry, since we know from the above example that the plugins are loaded from the registry.
In Windows, click the Start button/orb, and select Run; in the panel that appear, type in regedit. This will launch the Registry Editor. A good safety precaution before going any further is to select File > Export and save your ENTIRE registry by selecting the All radio button. Pick a location and back it up; it may take a few moments. This is important to do if you're not familiar with editing the registry, because you can pretty quickly toast your OS installation if you poke at animals you shouldn't. You've been warned.
Navigate to the following key in the Registry Editor: HKEY_CURRENT_USER\Software\Adobe\Premiere Pro\5.0\PluginCache.64\en_US. Here, you will see a long list of other subkeys, each of which bears the name of a plugin. If you click on one of the keys in the left pane (looks like a folder icon from Explorer), you will see a list of values, their types, and the data they hold in the pane on the right. Using the Plugin Loading.log text file as a guide, compare a plugin that loads with one that doesn't. You'll see the following disparity:
If the "Ignore" value is set as "0" (binary data), the plugin loads; if the "Ignore" value is set as "1," the plugin does not load. Based on this information, the solution should be apparent:
Using the Plugin Loading.log text file as a guide, change this data for any "Ignore" value set to "1." An important note: this does not "enable" effects that wouldn't otherwise work in Premiere Pro anyway. For example, some of the Cycore effects, like Time Blend, Time Blend FX, and Split 2, do not work in Premiere, regardless of how the "Ignore" value is set. If you should happen to change them, Premiere will set the value to "1" the next time you launch the program.
Once you've changed these values (there's no need to save, as the changes are immediately made to the registry), launch Premiere. If you were successfully, nothing interesting will happen--you'll be greeted with no error messages, and your once-missing effects will resume their place and settings on your sequence clips. You can confirm the "fix" by reopening Plugin Loading.log (be sure to have closed this file before relaunching Premiere, as it is simply overwritten each time), and looking for the entries that were previously ignored:
There you have it. Again, I don't know the reason why this happens, but I've been bitten by this oddity numerous times in CS4, and now in CS5. My best guess is that it happens when Premiere crashes during loading (which seems to happen to me) or there is some other "issue" during launch. As a sort of self-defense mechanism, Premiere tells the registry to disable these plugins to ensure a successful load the next time the program is launched, but then they are not automatically re-enabled, and hence the need for this somewhat convoluted fix. Under normal circumstances, I would imagine that relatively few users will ever encounter this issue--but if you do, you now know how to get back to work.

A great set of screen clips & tutorial. But I'm compelled to tell you guys it's even simpler than that.
All you have to do is delete the en_US keys for both the Premiere Pro & After Effects plug-in caches in the registry at:
HKEY_CURRENT_USER\Software\Adobe\Premiere Pro\5.5\PluginCache.64\en_US &
HKEY_CURRENT_USER\Software\Adobe\After Effects\10.5\PluginCache.64\en_US
Of course, have the applications closed prior to deleting the keys. Upon launching the Premiere Pro & After Effects again, both applications will regenerate their cache folders (they'll re-appear) in the registry & you should then see all your installed plug-ins if they are installed in the correct folders & aren't corrupted.
Note that Pr & Ae will take significantly longer to launch as it re-scans all the installed plug-ins again.
If you don't want to dig through the registry, here's a copy of VBscripts to do it for you. Don't see all your plugins? One of the apps choose to ignore your plug-in's without provocation?
...just run these & re-launch the Premiere & After Effects. Enjoy.
tC
Reset Premiere Pro CS5.5 x64 Plugin Cache.vbs
**BEGIN CODE**
Const HKEY_CLASSES_ROOT = &H80000000
Const HKEY_CURRENT_USER = &H80000001
Const HKEY_LOCAL_MACHINE = &H80000002
Const HKEY_USERS = &H80000003
' Object used to get StdRegProv Namespace
Set wmiLocator = CreateObject("WbemScripting.SWbemLocator")
' Object used to determine local machine name
Set wshNetwork = CreateObject("WScript.Network")
' Registry Provider (StdRegProv) lives in root\default namespace.
Set wmiNameSpace = wmiLocator.ConnectServer(wshNetwork.ComputerName, "root\default")
Set objRegistry = wmiNameSpace.Get("StdRegProv")
' Deletes Key with all subkeys
sPath = "Software\Adobe\Premiere Pro\5.5\PluginCache.64\en_US"
lRC = DeleteRegEntry(HKEY_CURRENT_USER, sPath)
Function DeleteRegEntry(sHive, sEnumPath)
' Attempt to delete key. If it fails, start the subkey
' enumration process.
lRC = objRegistry.DeleteKey(sHive, sEnumPath)
' The deletion failed, start deleting subkeys.
If (lRC <> 0) Then
' Subkey Enumerator
On Error Resume Next
lRC = objRegistry.EnumKey(HKEY_CURRENT_USER, sEnumPath, sNames)
For Each sKeyName In sNames
If Err.Number <> 0 Then Exit For
lRC = DeleteRegEntry(sHive, sEnumPath & "\" & sKeyName)
Next
On Error Goto 0
' At this point we should have looped through all subkeys, trying
' to delete the registry key again.
lRC = objRegistry.DeleteKey(sHive, sEnumPath)
End If
End Function
**END OF CODE**
Reset After Effects CS5.5 x64 Plugin Cache.vbs
**BEGIN CODE**
Const HKEY_CLASSES_ROOT = &H80000000
Const HKEY_CURRENT_USER = &H80000001
Const HKEY_LOCAL_MACHINE = &H80000002
Const HKEY_USERS = &H80000003
' Object used to get StdRegProv Namespace
Set wmiLocator = CreateObject("WbemScripting.SWbemLocator")
' Object used to determine local machine name
Set wshNetwork = CreateObject("WScript.Network")
' Registry Provider (StdRegProv) lives in root\default namespace.
Set wmiNameSpace = wmiLocator.ConnectServer(wshNetwork.ComputerName, "root\default")
Set objRegistry = wmiNameSpace.Get("StdRegProv")
' Deletes Key with all subkeys
sPath = "Software\Adobe\After Effects\10.5\PluginCache.64\en_US"
lRC = DeleteRegEntry(HKEY_CURRENT_USER, sPath)
Function DeleteRegEntry(sHive, sEnumPath)
' Attempt to delete key. If it fails, start the subkey
' enumration process.
lRC = objRegistry.DeleteKey(sHive, sEnumPath)
' The deletion failed, start deleting subkeys.
If (lRC <> 0) Then
' Subkey Enumerator
On Error Resume Next
lRC = objRegistry.EnumKey(HKEY_CURRENT_USER, sEnumPath, sNames)
For Each sKeyName In sNames
If Err.Number <> 0 Then Exit For
lRC = DeleteRegEntry(sHive, sEnumPath & "\" & sKeyName)
Next
On Error Goto 0
' At this point we should have looped through all subkeys, trying
' to delete the registry key again.
lRC = objRegistry.DeleteKey(sHive, sEnumPath)
End If
End Function
**END OF CODE**

Similar Messages

  • After Effects error: Missing Filters in the file.

    I'm using CS4 in Windows XP SP3.  When I work with video in Photoshop, apply filters as smart object, and save as psd, then import into AE as footage>merged layers, I get this message:  After Effects error: Missing Filters in the file.  The file open as just the footage with none of the work I did in PS.
    Does anyone have a solution to this?  Am I missing some step along the way?
    Thanks!

    Isn't it obvious? AE does not support smart filters. It will only use the rasterized content of a PS layer. Hence you will have to rasterize the layer in PS to retain its appearance with all the effects applied. Look in the help which specific PSD features AE is able to support and translate.
    Mylenium

  • Every time I open a new illustrator file it says "print.ai" file unknown.  I can open previous work but no new files.  Any fixes?

    Every time I open a new illustrator file it says "print.ai" file unknown.  I can open previous work but no new files.  Any fixes?

    All nee AI files are based on document profiles, which are actually plain AI files.
    Print.ai is one of them. You may try and select a different profile to see if it's just the Print.ai
    But it may of course be all of them that somehow got corrupt.
    Could be that the files are corrupt or that Illustrator doesn't have access privileges.
    The files are located in your user folder. Find the exact location in this article:
    http://blogs.adobe.com/adobeillustrator/2009/05/startup_profiles_a_great_tool.html
    In case the files are completely corrupt you may try and rebuild the preferences or even do a complete reinstall.

  • Hi anyone. Can I buy an SD card reader for my old Powerbook G4, OSX, 10.4.11 and it's only USB. I've never needed one previously but I now need to update the firmware on my camera. Can I get one, if so which one's best? Many thanks.

    Hi anyone.
    Can I buy an SD card reader for my old Powerbook G4, OSX, 10.4.11 and it's only USB.
    I've never needed one previously but I now need to update the firmware on my camera.
    Can I get one, if so which one's best? Many thanks.

    Hello,
    If it is a PowerBook G4 with a PC Card slot, you have two possibilities. You could buy a USB card reader for SD, or a PC Card adapter (such as SanDisk's 6-in-1adapter). Please note that you are or may be limited to plain SD (that is, not SDHC) unless otherwise noted. For a USB reader, make sure that it has Mac support. BTW, is an SD card absolutely necessary for the firmware update; is there not a way of updating via cable? If you post back with the camera model, someone may be able to provide additional information.
    Jan

  • Hello I am using Ipad 4 and its charger is not working while I was using it few days before and it was working properly now it says that the cable does not support this Ipad Please Help me out.

    Hello I am using Ipad 4 and its charger is not working while I was using it few days before and it was working properly now it says that the cable does not support this Ipad Please Help me out.

    Try a reset:
    - Hold the home button and sleep/wake button down at the same time. When the Apple logo appears release both buttons then try and charge again.
    If issue persists try:
    - Another known working cable
    - Check the charging port for any damage or debris
    - You could also use a dry soft bristle toothbrush and gently brush it on the port to clean it of any debris that could be in there

  • TS3694 I tried to get rid of my jailbreak things like restoring my whole phone. It didn't work. Now it keeps showing the photo to connect to itunes so I did. It said to restore so I did. and it keeps doing the same thing over and over and over and over ag

    I tried to get rid of my jailbreak things like restoring my whole phone. It didn't work. Now it keeps showing the photo to connect to itunes so I did. It said to restore so I did. and it keeps doing the same thing over and over and over and over again. How do I fix it?

    Your phone is toast.  Contrary to what the lovely folks in the jalibreaking community say, attempting to restore the iPhone to "factory" condition does not always remove the jailbreak.  You'll need to contact those bozos and see if they can help you.
    Hint:  start saving for a new phone.

  • IOS 8 Slow..... Here's the fix.

    Here's the fix. http://cl.ly/372i3C3A3e26

    Nope - and it was set to not look for them.
    The final clue came when I tried hooking the drive directly to the computer, instead of to the airdisk. iTunes still hung. Then I disconnected the drive and tried to run it, and iTunes came up right away - but with an ! next to each song. Clearly it was trying to find/touch every file in the library on first startup.
    I didn't try plugging in the drive and leaving the hanging iTunes running for more than a few minutes, so it's possible that it would have recovered and launched. But after removing the XML file, restoring the library to my pre-7.7 version, I could hear it accessing the directly attached drive (and see it in disk activity in the monitor) for a few minutes (less than I'd left the hanging one trying), before it came up.
    Conclusion:
    1) 7.7 is definitely trying to touch/see all the files in the library on first launch (proved by the ! when they are missing).
    2) Disconnecting/interrupting the touch/see MAY have corrupted something (can't prove it).
    3) Since touching 10,000 files takes a LONG time even at 802.11n speeds (let alone b or g), it's worth the hassle to plug the drive in directly for the first time.
    4) Patience is a virtue

  • I have downloaded Viber to my iPhone 4s,  it was previously working but now displays a message saying i need to connect to the internet before i can make a call or anything else, My phone is connected but the app does not seem to recognise this?

    I have downloaded Viber to my iphone 4S,  it was previously working,  but as of today it has continually asked for an internet connection when i try to make a call or send a message.  It displays this message while connected to the internet at my home,  or with 3g.  my internet connections seems to work fine on other apps that require this.  I have tried to reinstall viber but i can not not setup my profile becauase the same message displays.  does anyone know how i can resolve this?

    Thanks, as it still will not work, I assume it is damaged and needs to be sent in for repairs.
    Tim

  • Java 7 release 25 will not work on Firefox 22 -- tried all the "fixes" and it works in IE and Chrome. What now?

    The newest release of Java (7.0.250) simply will not run on Firefox 22. I have tried all the "fixes" posted on the Mozilla site -- enabled in both the browser and the Java control panel. The new release of Java works just fine in IE and Chrome.

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.

  • If you can't burn CDs due to missing registry entries...here's the fix!

    This solution worked for me 1st time! It's not without some risk if you're not used to editing files, however if you take it slowly, and follow the steps exactly, all should go well.
    The solution to this issue is at: http://support.apple.com/kb/HT2615.
    If in Step 12 the UpperFilters entry is not there, then it must added back in. Do this by right clicking on the right side of the regedit screen, select "New", select "Multi-String Value", name it "UpperFilters". Your regedit window should now look exactly like the picture in the instructions link. Now continue with Step 12, modify your new "UpperFilters" by right clicking on it. Since you just added it, there will be no value data to delete so Step 14 can be ignored. Enter value data per Step 15 and hit enter. Click ok, reboot, and iTunes should work correctly without the error.
    Good luck...Paul

    I followed your steps and found I don't have upper or lower filters but I still have the problem. I never had this problem with earlier ITunes versions (I installed the latest version 10.0.1.22)

  • HT4972 why doesnt my wifi work anymore now that i downloaded the new update?

    after updating my phone to the new ios 6 the wifi doesnt work any more? any ideas on how to fix it?

    Is a Norton update available yet?
    If not, here's the process to roll back:
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, download and save Firefox 3.6 to your desktop for future installation. http://www.mozilla.com/firefox/all-older
    Close Firefox 4.
    You could install Firefox 3.6 over it (many have reported success) or you could uninstall Firefox first. If you uninstall, do not remove your personal data and settings, just the program.
    Unless you have installed an incompatible add-on, Firefox 3.6 should pick up where you left off. If there are serious issues, please post back with details.
    Note: I haven't actually tried this myself!

  • My Personal Hot Spot was working but now not appearing in the Cellular section , Only Cellular Data & MMS Appearing no Personal Hot Spot showing

    Dear Team ,
    Initially there was no Personal HotSpot appearing on my phone , but i configured it while going in the cellular section and it appeared on the main Setting options with On/Off button and it was Working Fine , (this was mentioned in the many discussions and that fixed my Issue) , but now Suddenly the Option of Personal Hot Spot has disappeared from the Menu , I have gone to cellular , then Cellular Data to on the Personal Hot spot but there only Appears , Cellular Data & MMS
    No Personal Hot Spot option is appearing or available.
    i have tried following steps to fix the issue as recommended in the Apple Support community blogs, :
    Reset Network settings
    Hard reset
    On/Off the phone
    Delete the Extra Profiles.
    snap shots are as follows , please fix this issue at earliest as its very disappointing and frustrating!.Thanks

    Hello arcalan.munir,
    Welcome to the Apple Support Communities!
    I understand that you are no longer seeing the option for Personal Hotspot on your iPhone. In this situation, Personal Hotspot may not be configured with your carrier. Please use the information in the attached article as a resource.
    iOS: Understanding Personal Hotspot - Apple Support
    Note: If you do not see the option for Personal Hotspot, confirm with your carrier that this feature is supported and your wireless plan is configured for Personal Hotspot. For additional troubleshooting, see this article.
    Cheers,
    Joe

  • Pages IWORK'08 spell check doesn't work--here's the fix

    Pages stopped spell checking. Some suggested deleting com.apple.iwork.pages.plist off the HD in case Pages was corrupted so it could rebuild the spell check feature but that was not necessary in my case.  Here is the painless fix.
    -Open a pages document
    -Go to Edit and SELECT ALL
    -Then go to INSPECTOR  text  (blue T) MORE and be sure language is set to English, then close out of Inspector
    -Go to EDIT, SPELLING and set “check spelling as you type”  or "Check spelling"
    Just remember that PAGES needs to know what you want to do so you have to SELECT ALL for it to check everything on the document.

    That is not sufficient if you have not also corrected your Text Styles to the appropriate language.
    Text is styled with a language, usually the default, just as it is with a font or color.
    Unless you update all your styles and use them, every time you reintroduce new text or use those like Free Form you will have text with either the wrong language or no language.
    Peter

  • Hi, I have the iPhone 4, 32GB, version 4.3.5 (8L1) and for some reason when I connect it to the laptop, it starts synchronising but never goes beyond step 1. I have tried evrything, but it does not work and now I cannot update the iPhone s/w. any clue?

    Hi, I have the iPhone 4, 32GB, version 4.3.5 (8L1) and for some reason when I connect it to the laptop, it starts synchronising but never goes beyond step 1. It goes on syncing forever, without actually doing anything. I have tried everything, wiped the phone numerous times, deleted all files from the laptop but still no resolution. As a result, the phone does not really synchronise.
    This started somewhere in May 2011 when I upgraded what proved to be a problematic s/w version and the phone has not recovered since.
    Now I cannot update the iPhone s/w any longer.
    Any clue?

    You may have to try deleting all the music from your phone (by going to Settings>General>Usage>Music, swipping All Music and tapping Delete), then sync it all back on with iTunes in order to fix this.

  • IPad 2 wifi not working.  Was working fine, now won't find the network.  Any suggestions?

    Help!  Bought an iPad 2 for my mother, brought it to Scotland (from Chicago); initially worked fine.  Wifi suddenly stopped working.  Wn't find the network.  My iPad 2 has no problems.  Reset the network settings, did a hard restart, reset all settings, rebooted the router.  Nothing's working.  I'm returning to the U.S. In four days.  Any help would be most appreciated.

    Patrick-
    Did your "hard restart" involve holding both buttons until the Apple logo appeared?
    Are you sure that Airplane Mode is OFF?
    The solution may be to swap iPads and leave the good one with your Mother.  If you erase all content and settings on both, you can restore the good one from your Mother's computer.
    When you get home you can do the same with the problem iPad and your computer.  If you haven't sorted it out by then, take it to the Apple Store Genius.
    Fred

Maybe you are looking for

  • How to use many conditions in query

    Hi all, i have a situation,must prepare a report to find availability of it devices.they are given the specific ip of devices. my query SELECT   Resultdate, [SERVICE]  ,[SERVICE TYPE] ,[IP] , DailyAvailability   FROM [Orion].[dbo].[DepartmentNodesNew

  • IPad Calendar sync with Microsoft Exchange problem

    I use Microsoft Exchange to sync my Google Calendars with my iPad & iPhone. I have a work, personal & business calendar. On my iPhone it sync all three calendars, but on my iPad it only sync my personal calendar. What can I do to fix this, if anythin

  • Linksys CHAT hung up on me TWICE...What gives?

    I am very angry right now.  After waiting 10-20 minutes TWICE, I was disconnected by a Linksys rep, one named Angelvel. How can I get a REAL chat?  I need help!

  • Need advice about design approach for query editing tool with JSF

    Hi ! I would like to propose in my application a way to allow end-user to create queries that could be executed on a some tables. I suppose that this kind of stuff is not new and would like to know if someone has to good design practice or example to

  • Anyone experiencing safari loading at a snail's pace?

    Starting today my macbook pro is running slow- half loading pages.  Any ideas for how to fix this. I updated my iphone today- not sure if that is related to the mac problem.