Where do i put my .8bf files in CC

Hi all
I am sorry - I know this is pretty basic!
Where on a Windows 7 64 bit system do I put my .8bf files?
I did a search of my programs files folder (not x86) and it came up with a folder that had some files in (C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\Filters) but when I put filters in to that folder they still dont show up in the filters menu in photoshop.
I realise it is entirely possible that the filters I am trying arent compatible with CC (they worked with CS5.5) but I want to know that I am at least trying the correct folder.
TIA
John

Thanks JJMack.
I had already tried the folder you suggest (as it appeared the most obvious). It was when that didnt appear to work that I did a search that found the other path.
I now realise that the problem would appear to be that the filter I was trying to move is probably not compatible as other filters I have put in the folder you suggested are working.
So that was the long answer.....
The short answer is that you were right, and thank you very much!
Cheers
John

Similar Messages

  • For WebLogic 5.1, where should I put my class files for my JavaBeans?

    With JBuilder4, I have built an application with JSP and a few Java Beans (Those JavaBeans are instantiated in those JSP files). There are no EJBs. The package name is called 'onlinetrade'. I have tested the application on JBuilder's web server, it works pretty well.
    Now I am moving this application to WegLogic 5.1. I have encountered a problem with WebLogic 5.1
    and do not know where I should place my JavaBean class files --
    Originally, the JSP files for my application are in package path-- ..onlinetrade\jsp
    and the class files for my beans are in the package path -- ..onlinetrade\jsp\bean\*.class
    Now, with WebLogic 5.1,
    1) I have put my JSP files in
    C:\weblogic\myserver\public_html\onlinetrade\jsp
    2) I have created subdirectory and put my bean class files in
    C:\weblogic\myserver\classfiles\onlinetrade\jsp\bean
    When I started weblogic and the first page - login.jsp page can be up and accessed. But when I login and forward to another JSP page called 'controller.jsp', where a bean is instantiated, I got the following error
    Compilation of 'C:\weblogic\myserver\classfiles\jsp_servlet\_onlinetrade\_jsp\__controller.java' failed:
    C:\weblogic\myserver\classfiles\jsp_servlet\_onlinetrade\_jsp\__controller.java:210: cannot access jsp_servlet._onlinetrade._jsp.registerBean
    probably occurred due to an error in /onlinetrade/jsp/controller.jsp line 53:
    registerBean registerBeanInstance = new registerBean();
    I know the javac is working, and a java file is created upon the JSP page, but the problem is -- the bean class files cannot be found!!!
    Where should I create the package path and put my bean class file so that my JSP pages can pick them up?
    Any help is greatly appreciated!
    Thanks.
    --Tim

    I have mine in WEB-INF/classes

  • Where do I put the .jar file for the database connection?

    I am trying to connect to an Oracle 11g database. I see under the coldfusion settings summary that the java version is 1.7.0_55. So I downloaded the ojdbc7.jar file from Abode.com. Now the question is where do I put it so that coldfusion can access it?
    Of course I need to set up the database connection (which I still don't have the connection string for), but I still need to know where to put the ojdbc.jar file.
    Thanks.

    jasonwryan wrote:What does the man page say?
           The  program  has builtin defaults and temperature thresholds but users
           can   specify   their   own    settings    in    configuration    files
           /etc/default/i8kmon  and  ~/.i8kmon.   The daemon defines 4 states with
           different fan speeds ({0 0}, {1 0}, {1 1}, {2 2}) and  for  each  state
           are  defined  the temperature thresholds which cause the switching to a
           higher or lower  state.  Furthermore  each  state  can  have  different
           thresholds  for operation on ac power or battery.  For example the fol‐
           lowing configuration:
    I've put the following file in /etc/default/i8kmon:
    # Run as daemon, override with --daemon option
    set config(daemon) 0
    # Automatic fan control, override with --auto option
    set config(auto) 1
    # Report status on stdout, override with --verbose option
    set config(verbose) 1
    # Status check timeout (seconds), override with --timeout option
    set config(timeout) 1
    # Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
    set config(0) {{-1 0} -1 50 -1 50
    set config(1) {{-1 1} 50 70 50 70}
    set config(3) {{-1 2} 70 128 70 128}
    But it doesn't seem to do anything. I'm running a Dell Inspiron 3521 with no dedicated GPU, so it only has one fan. I was somehow able to get i8kmon to work in Ubuntu by putting this config in /etc/i8kmon, but can't get it to work in Arch. Putting it in /etc/i8kmon and /etc/default/i8kmon doesn't do anything.

  • What is directory where I can put in jar file without specify classpath ?

    hi,
    Is there any directory in weblogic similar to the directory of WEB-INF/lib/ where I can throw a jar file in without specify classpath explicitly.
    The reason I'm looking for such directory is :
    -- I do not want to specify classpath explicitly
    -- I'd like it outside of an application so that it stay even if the application redeployed.
    Thanks

    Hi Aacc,
    The domain library directory that you are looking for is usually $DOMAIN_DIR/lib, for example "C:\Oracle\WLS_Middleware10.3.4\user_projects\domains\test_domain_1\lib" (Windows) or "/u01/weblogic/domains/my_domain/lib" (Linux/Unix).
    The jars located in this directory will be picked up and added dynamically to the end of the server classpath at server startup. The jars will be ordered lexically in the classpath. The domain library directory is one mechanism that can be used for adding application libraries to the server classpath.
    You can override the $DOMAIN_DIR/lib directory using the -Dweblogic.ext.dirs system property during startup. This property specifies a list of directories to pick up jars from and dynamically append to the end of the server classpath using java.io.File.pathSeparator as the delimiter between path entries.
    -Cris

  • Where should I put the configuration file?

    Hi
    I'm developping a web application using IBM's websphere as my application server. My application reads configuration information from a properties file.
    My question is: what's the right location to put the configuration file? Should I provide a fixed path, or should I just put in the webserver's execute directory?
    Thanks in advance
    Pedro

    I'd consider what the configuration file is cheifly
    tied to.
    If there are only a small number of parameters then
    put them into the web.xml as initial parameters and
    access then via servlet cotext.
    If they are tied to some class, then I'd put the
    properties file next to the relevant class file and
    use getClass().getResourceAsStream().
    If they relate to the web-app as a whole, I'd put
    them in the WEB-INF directory and access then using
    getServletContext().getResourceAsStream("WEB-INF/xxx.p
    roperties");The one thing you definitely shouldn't do is use an
    absolute file path.Thanks for the reply.
    Forgive my ignorance, but how can I access getServletContext from my web application?
    Thanks again!

  • Where do I put the Jakarta files standard.jar and jstl.jar when developing with JSF 2.0 in OEPE using web logic server

    hi everybody, I am wondering what should i do with the standard.jar and jstl.jar files when using we logic. I tried putting both files into
    the directory c:\oracle\middleware\oracle_home\user_projects\domains\base_domain\bin.  I don't know if this is correct.  Thanks in
    in advance for the help.

    Anyways I found this link on www.oracle.com website by the same author of the book I am reading Deepak Vohra - Templating with JSF 2.0 Facelets.
    although here he is using Weblogic 11g although I don't think it makes a difference.  have a look at the Setting up the Environment section
    where he says to download the jstl.jar and standard.jar files.
    http://www.oracle.com/technetwork/articles/java/facelets-454361.html

  • Where does iWeb put my media files?

    I used iMovie 6.0.1 to send a QT movie to iWeb, which then was published to my .Mac account successfully (albeit slowly). I would like to also put this movie on a different site I have, without re-exporting from iMovie, since this took a bit of time on my powerbook. If I just copy-paste from iWeb, I get a .mov file, but one that cannot be moved (or viewed) to a PC. The original file is many MBs, but this .mov file is only ~500kB.
    Does anyone know where iWeb puts this exported media file? I'd like to get my hands on the original without re-exporting. Thanks for the help!
    15" Rev D Powerbook   Mac OS X (10.4.4)  

    look in username/library/application support/iWeb
    there is a package there named domain.
    control click on it and "show package"
    from there you will the the files and can copy one out.
    make sure you copy and and not move it
    good luck
    2.5 g5   Mac OS X (10.4.3)  

  • Where do I put my Iweb Files?

    I am making a web site in I-web where would i drop my files on to my server
    Its mac osx 10.5 server
    I am running on a Power mac g4 400MH at 1 gb of ram

    Put them into the /Library/WebServer/Documents/ folder.
    (47625)

  • Where put the JAR File jakarta-regexp-1.3.jar ?

    I'download jakarta-regexp-1.3.jar file from jakarta-apach site for validate a email adress..
    But i did not find any doc to telle me where put this file..
    I put it in the jre subdirectory of my sdk directory but the javac compiler
    do not recognize this part of my code import org.apache.regexp.* ..I try the lib directory of the tomcat and it was same..
    Where should i put this jar file ..
    By the way i 'm coding on linux for jakarta-tomcat server..
    Could some body help me ?

    DON'T CROSS POST:
    http://forum.java.sun.com/thread.jsp?thread=461653&foru
    =33&message=2116135
    http://forum.java.sun.com/thread.jsp?thread=461654&foru
    =45&message=2115945
    http://forum.java.sun.com/thread.jsp?thread=461653&foru
    =33&message=2115943
    http://forum.java.sun.com/thread.jsp?thread=461652&foru
    =1&message=2115941Ooops, didn't see it, ehmmmz
    I re-draw my answer, first learn some posting etiquette, then people might help.

  • Anyconnect 4 as 802.1x supplicant replacement for Windows - where to put config xml file?

    I want to try out Anyconnect NAM as a 802.1x supplicant replacement in Windows 8.1
    And I have made myself a fine little config xml file that I want to test.
    But where do I put that config file?
    Should I rename it to something special, or should Anyconnect NAM have some extra startup parameters?
    Thank you.

    The file must be called "configuration.xml" and if you already installed NAM, then put the file in \Users\All Users\Cisco\Cisco AnyConnect Secure Mobility Client\Network Access Manager\newConfigfiles\ and restart the anyconnect service
    If instead you are creating an install package for deploying, you can put the configuration in a directory named Profiles/NAM/  together with the msi package, the installation will import the config itself.when you run the msi file.

  • Where do i put external libraries?

    I have some oracle classes that I use for XML generation. Where do I put the jar file so that
    Weblogic can use them? Do I reference it in the CLASSPATH variable, or can I put the jar file in the
    weblogic directory structure?
    Thanks in advance,
    Josh Cimino
    Software Developer
    Mxi Technologies Ltd.
    1430 Blair Place, Suite 800
    Ottawa, ON, Canada
    K1J 9N2
    E: [email protected]
    T: 613.747.4698 ext 479
    F: 613.747.1909
    www.mxi.com
    "From the flight line to the bottom line"
    [att1.html]

    Thanks!
    "Dimitri Rakitine" <[email protected]> wrote in message
    news:[email protected]..
    http://www.onjava.com/pub/a/onjava/2001/06/26/ejb.html
    Josh Cimino <[email protected]> wrote:
    What if I have a session bean that uses external libraries? There is no
    web-inf/lib directory for an EJB.
    "Renaud Waldura" <[email protected]> wrote in message
    news:3bd348b5$[email protected]..
    If your application is packaged correctly it should be in WEB-INF/lib.
    If
    not, well, let's just say it's probably worth your time to package it
    correctly. I know it sounds harsh, but really it's worth it.
    --Renaud
    "Josh Cimino" <[email protected]> wrote in message
    news:3bcaf5f6$[email protected]..
    I have some oracle classes that I use for XML generation. Where do I
    put
    the jar file so that
    Weblogic can use them? Do I reference it in the CLASSPATH variable,
    or
    can
    I put the jar file in the
    weblogic directory structure?
    Thanks in advance,
    Josh Cimino
    Software Developer
    Mxi Technologies Ltd.
    1430 Blair Place, Suite 800
    Ottawa, ON, Canada
    K1J 9N2
    E: [email protected]
    T: 613.747.4698 ext 479
    F: 613.747.1909
    www.mxi.com
    "From the flight line to the bottom line"
    Dimitri

  • Where can I find the wsdl file ?

    Hi,
    i want to know the real path of the wsdl files. in other words, after putting the axis directiry in the JBoss server/all/deploy, the axis server generate a wsdl file from a wsdd file. where does it put the wsdl file.
    Please help.
    Thanks.
    Ahmed

    It doesn't create a file on the file system but generates the wsdl on the fly when requested.

  • Where i should put external java library so UDF can import directly ?

    Hi All,
    I have some scenario using UDF and this code required a lot of external jar file. Please
    advise me where i should put this JAR file so i can import directly from UDF without need to import using Import Archive ?
    Thank you and best Regards
    Fernand

    Hi,
    is there any other alternative rather than put in into import archive ? like i copy all ther Jar file into certain
    directory in XI server and restart ther server so automatically, i can import insite my UDF wihout import archive ?
    Thank you and Best Regards
    Fernand

  • Where Do You Put The Un-Ziped Files For...

    The manual is unclear.
    Where Do You Put The Un-Ziped Files for Contact Sheet X in CS4.

    CSX v1.4.2 README
    INSTALLATION:
    If there are previous versions of CSX, be sure to remove them at
    this time. Failure to do so may result in 'Copy' errors during installation.
    Unzip the CSX zip file into a temporary directory. It's location is
    unimportant EXCEPT DO NOT unzip it anywhere your Photoshop application tree.
    Run the InstallCSX script in the top-level directory. You can do this by:
    1) double clicking it
    2) dragging it onto a PS application
    3) running it from inside PS via File->Scripts->Browse
    If your OS is Vista, you will probably need to start Photoshop using
    'Run as administrator' because the installation script needs to install
    CSX into Photoshop folders that are normally protected.
    If you have more than one installation of Photoshop on your computer, you'll
    need to run the installation script for each copy of Photoshop.
    When the installation is complete, you can removed the contents that you
    unzipped before.
    MANUAL INSTALLATION:
    You don't need to do this if you ran the InstallCSX script.
    If there are previous versions of this script, be sure to remove them at
    this time.
    Unzip the distrubution file in your Photoshop Presets/Scripts directory and
    restart Photoshop. "CSX-1_4_2.jsx" should appear in your File->Scripts menu
    in CS2.
    With CS3 and CS4, CSX should appear under File->Automate menu as
    'Contact Sheet X v1.4.2...'.

  • Where to put the properties file

    I am a new user of NetBeans6.0, I am making a simple application for user registration. I have coded everything but when I run project I get error caused by the dao.properties file load problem.
    I have put the dao.properties file inside the classes directory(where all java class files are build after running the project) of my web application directory( I didn't create this directory though, it is automatically created by IDE), I think there is a problem with its path.
    where should I put the dao.properties file so that when I run the project the Tomcat automatically find it and also, what the settings I should do?
    actually, I have referred to BalusC'd  DAO tutorial: the data layer but that comes in use when we are working off the IDEs, In my case since I am using Netbeans so it may be different from that one.
    if someone already done that then please let me know

    ok, but will it work if I upload the project in a remote host?
    lets talk besides IDE, as in your DAO tutorial you have instructed to put the properties file somewhere in root of the classpaths. ok, it will work on a local computer cause there is classpath setting but since remote host doesn't know about that property file and we cant set classpath at remote host(I am not sure though if we can) then how will it work at remote host.
    how the server at remote host comes to know about that property file?
    In my case since I have made the project using IDE and everything regarding classpaths have been set automatically(IDE done itself), but at remote host these sort of settings are not done then how the project will run?
    if I have described my problem incorrectly then please consider it as it is supposed to be.

Maybe you are looking for

  • Can't import photos from my camera since the update, says file is unrecognizeable

    Since the recent photos update, I can no longer import photos from my Kodak Easyshare camera. Previously all I had to do was plug it into the Mac, turn it on and it would import with no problems. Now it is telling me that the files are unreadable or

  • Problem upload file with ftp

    Hi, I'd like to upload a file with an ftp. I declared a method using an url as follow : public static void uploadFile(File fileToMove_p, String newFileName_p) { try { URL url_l = new URL("ftp://[uid]:[pwd]@localhost/" + newFileName_p); URLConnection

  • Set flag in DB if the date is 5 days in the past

    I've written some code using SQL that checks today's date and compares is to an entry in the database, which I have called EndDate.  If the EndDate is within 60 days an email will be generated. If data in the database is 60 days or more in the future

  • ATV sees deleted podcasts in itunes

    I'm not sure if I should put this in the itunes discussion or here. When I have my ATV looking at my itunes library it sees podcasts that I have deleted. If I go to play them I get a message that it cannot play them, which makes sense because they ar

  • Can't get icons on toolbar remove when drag to customize toolbar

    I open the Customize Toolbar, drag a pre-existing icon down to the customize screen and it won't remove from toolbar. others read directions and thought that was the process also