Ps has older ver. of java - how to update?

I'm using Ps CS5 updated, on win7pro x64
Scans show 2 java prog files that are outdated and newer versions are available like I have for internet explorer.
1. Seems important to update these? or not to worry because seldom used?
2. Will newer java ver. "break" the uses Adobe has? I assume it is for web access to Adobe from within Ps app running.
3. How does one "update" the Adobe location version? Normal Java updates do not affect the Adobe locations. Can I just copy/paste to replace the Adobe location with a new version from Java folder location? or is there an install req'd?
4. windows add/remove does not list the Adobe locations but does show the new 32 & 64 bit versions (up to date) for internet explorer.
5. Is there an Adobe technical web page to go to to get answers and file and instructions? My search found nothing.
Doug.S

The "scanner" I used was on-line, but safe and highly regarded, Secunia
http://secunia.com/vulnerability_scanning/online/?task=load
been using this for years and is a good source to check for important security updates
Scan found this info about file locations of older java  (I'm only showing the bad one(s) in Ps):
This installation of Sun Java JRE 1.6.x / 6.x is insecure and potentially exposes your system to security threats!
The detected version installed on your system is 6.0.180.7, however, the latest patched version released by the vendor, fixing one or more vulnerabilities, is 6.0.290.3.
Installed on Your System in:
C:\ProgramData\Adobe\CS5\jre\bin\java.exe
This installation of Sun Java JRE 1.6.x / 6.x is insecure and potentially exposes your system to security threats!
The detected version installed on your system is 6.0.180.7, however, the latest patched version released by the vendor, fixing one or more vulnerabilities, is 6.0.290.3.
Installed on Your System in:
C:\Users\All Users\Adobe\CS5\jre\bin\java.exe
Looks to me like it is installed by Adobe??  as doing a download/update from Java does not update these locations
This is a nearly new PC and I installed Ps about a month ago from my DVD orig purchased from Adobe shortly after CS5 was released....and turned Ps "off"/"deactivated" in old PC and then installed and activated on this PC.
I suppose if Ps never uses this java.exe then no worry but I suspect anytime I go direct to www via Ps, then sometimes it uses java????
Do all of you also have java.exe in Adobe folders?  How did it get there?
I don't have any plugins added to Ps by me....except optional from Adobe; such as twain for scanner.
Doug.S

Similar Messages

  • My ipod touch 3g got V4.2.1 and I want IOS 5 but it said that my ipod has the lates version. How I update my ipod to IOS 5?

    My ipod touch 3G got V4.2.1 and I want IOS 5 but it said that my ipod has the lates version. How I Update To Ipod IOS 5?

    According to the requirements it appears you may be able to run it if you don't have the 8GB version.
    The 8GB version was actually a snazzed up second gen with newer iOS software.
    If it doesn't see it, the hardware probably doesn't support it.
    First make sure you've updated iTunes, then check it again, and if it doesn't show, it probably won't run on it due to the hardware being too slow to handle it.
    Check this discussion link for more info.
    https://discussions.apple.com/message/16394913#16394913

  • Java - how to update settings table

    I have this table which is used to store settings into Oracle database
    I want to update the settings with java. I use this java code to update the settings:
    public void updateDBSettings() throws SQLException {
            //here the values from the updatedSettingsMap will be inserted into the database
                String storedPassword = null;       
                String SQL_Statement = null;
                if (ds == null) throw new SQLException();     
           Connection conn = ds.getConnection();
                if (conn == null) throw new SQLException();     
           try {
                conn.setAutoCommit(false);
                boolean committed = false;
                    try {
                           SQL_Statement = "UPDATE GLOBALSETTINGS" +
                                           "   SET settingValue = case" +
                                           "              when settingName = 'SessionTTL' = then ?" +
                                           "              when settingName = 'MaxUsersActive' = then ?" +
                                           "              else settingValue" +
                                           "            end" +
                                           "WHERE settingName in ('SessionTTL', 'MaxUsersActive');";
                           PreparedStatement updateQuery = conn.prepareStatement(SQL_Statement);
                           updateQuery.setString(1, "20");
                           updateQuery.setString(2, "40");
                           updateQuery.executeQuery();
                           conn.commit();
                           committed = true;
                     } finally {
                           if (!committed) conn.rollback();
                    finally {              
                    conn.close();
           }    When I try to run the code get this error stack in glassfish
    javax.faces.el.EvaluationException: java.sql.SQLSyntaxErrorException: ORA-00905: missing keyword
         at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at javax.faces.component.UICommand.broadcast(UICommand.java:315)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)
         at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:81)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
         at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1542)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:281)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
         at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)
         at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)
         at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
         at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
         at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
         at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
         at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
         at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
         at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
         at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
         at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
         at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.sql.SQLSyntaxErrorException: ORA-00905: missing keyword
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:445)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:879)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:450)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:192)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1044)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1329)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3584)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3628)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1493)
         at com.sun.gjc.spi.jdbc40.PreparedStatementWrapper40.executeQuery(PreparedStatementWrapper40.java:642)
         at com.DX_57.SM_57.Application.updateDBSettings(Application.java:132)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:601)
         at javax.el.BeanELResolver.invokeMethod(BeanELResolver.java:779)
         at javax.el.BeanELResolver.invoke(BeanELResolver.java:528)
         at javax.el.CompositeELResolver.invoke(CompositeELResolver.java:257)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:248)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:302)
         at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
         at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
         ... 32 more
    Can you help me to correct the SQL statement?
    Best wishes
    Peter

    UPDATE GLOBALSETTINGS
       SET settingValue = case
                            when settingName = 'SessionTTL'  then '100'
                            when settingName = 'MaxUsersActive'  then '20'
                            else settingValue
                          endThe result is:
    Error starting at line 1 in command:
    UPDATE GLOBALSETTINGS
       SET settingValue = case
                            when settingName = 'SessionTTL'  then '100'
                            when settingName = 'MaxUsersActive'  then '20'
                            else settingValue
                          end
    Error at Command Line:5 Column:29
    Error report:
    SQL Error: ORA-00904: "SETTINGVALUE": invalid identifier
    00904. 00000 -  "%s: invalid identifier"
    *Cause:   
    *Action:Is there other way to update the table values with one SQL query?
    Edited by: user10484841 on Mar 16, 2012 8:51 AM
    Edited by: user10484841 on Mar 16, 2012 8:52 AM

  • How to update schema-base xmltype by dba?error ORA-19007

    Hi ,
    Connect to db using user 'u1', register schema to LOCAL and update schema-base xmltype success. Then I login in db as dba, update xmltype occus ORA-19007. If I register the schema to GLOBAL, using dba to update xmltype has no problem. But how to update schema-base xmltype who's schema is register as LOCAL by dba?
    connect to db using user ‘U1’:
    declare
    begin
    dbms_xmlschema.registerSchema(
    'http://www.oradev.com/myschetest.xsd',
    '<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oradev.com/myschetest.xsd"
    xmlns:sch="http://www.oradev.com/myschetest.xsd"
    version="1.0" elementFormDefault="qualified">
    <element name = "Employee">
    <complexType>
    <sequence>
    <element name = "EmployeeId" type = "positiveInteger"/>
    <element name = "FirstName" type = "string"/>
    <element name = "LastName" type = "string"/>
    <element name = "Salary" type = "positiveInteger"/>
    </sequence>
    </complexType>
    </element>
    </schema>',TRUE, TRUE, FALSE, FALSE);
    end;
    SCHEMA register as LOCAL.
    create table globtest(id number, content sys.xmltype)XMLTYPE content STORE AS OBJECT RELATIONAL XMLSCHEMA "http://www.oradev.com/myschetest.xsd" ELEMENT "Employee";
    It's OK.
    insert into globtest values(1, sys.XMLType.createXML('<Employee xmlns="http://www.oradev.com/myschetest.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oradev.com/myschetest.xsd http://www.oradev.com/myschetest.xsd"><EmployeeId>1234</EmployeeId><FirstName>Ravi</FirstName><LastName>Murthy</LastName><Salary>100</Salary></Employee>'));
    It's OK.
    update U1.globtest set content = sys.XMLType.createXML('<Employee xmlns="http://www.oradev.com/myschetest.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oradev.com/myschetest.xsd http://www.oradev.com/myschetest.xsd"><EmployeeId>1234</EmployeeId><FirstName>'||unistr('\0080\0081')||unistr('\0085')||'Ravi</FirstName><LastName>Murthy</LastName><Salary>100</Salary></Employee>') where id=1;
    It's OK.
    but when i login in as dba,
    using above update sql. It has probleam.ORA-19007.
    How can i using dba to update this LOCAL schema-base xmltype? Thanks a lot.

    User 'U1' is created by:
    create user u1 identified by u1;
    grant dba to u1;
    Is there any other privilege need to be grant to u1?

  • HI,  I need to jre 1.6 update 26 on my mac system to make some aaplication work. However latest available is jre 1.6 update 29. Could you suggest how I can get jre 1.6 update 26? I tried downloading older version on java. COuldn't find it on your site.

    HI,  I need to jre 1.6 update 26 on my mac system to make some aaplication work. However latest available is jre 1.6 update 29. Could you suggest how I can get jre 1.6 update 26? I tried downloading older version on java. COuldn't find it on your site.

    What are you missing?
    I inherited this app and signing the third party jars is how it was setup, I was wondering the same thing too, why was it necessary to sign the third party jars?
    The applet runs in either JRE 1.6.0_13 or JRE 1.6.0_27 depending on the other Java apps the user uses. JRE 1.6.0_13 does not have the mixed code security (so it is like is disable), but JRE 1.6.0_27 does have the mixed code security and the applet will not launch with mixed code security enable, so we have to disable it. With all the hacking going on in the last two years, is important to improve security; so this is a must.
    Yes, I always clear up the cache.
    Any idea on how to resolve this problem?

  • Run time errors on new java;  how do i get older version?

    i keep getting runtime errors on the new java version i'm tire of it i can't play my pogo games lol. how do i get an older version of java?

    Uninstall the JDK/JRE you are using (I presume J2SE 6.0). To do this : Control Panel > Add/Remove Programs > then remove JRE 6.0 and JDK 6.0.
    Visit http://java.sun.com/javase/downloads/previous.jsp and download the previous jdk that works fine for you. Install it and try your game.
    Hope That Helps

  • How do i install an older version of Java SE 6 Runtime to open Illustrator CS

    How do i install an older version of Java SE 6 Runtime to open Illustrator CS and why can't I update Illustrator instead?

    Hello helenennnnnn,
    you could use Java Archive Downloads - Java SE 6 for example.
    Good luck!
    Hans-Günter
    P.S.
    To get an answer to your other question you should use Google - because of the great number of various possibilities - with a search like (searchwords are hidden in the link) Google

  • HT5642 my iphone has the software 6.1.3  the latest and i want to put on it the older the 6.0 how do i do it

    my iphone has the software 6.1.3  the latest and i want to put on it the older the 6.0 how do i do it

    That is not supported by Apple, once you move up in an iOS version you cannot downgrade.  The files for the lower iOS are no longer available.

  • How do I get different and older versions of java plugin to work

    I want to use firefox at my work, my company uses a program that uses java. But the programmers at my company aren't really good and when they check for the java plugin they check for the specific jre-6u21 instead of the generic with 6uXX. Sometimes I have to use another version of the program that requieres Version=1,4,2,06. They work fine with iexplorer.
    If I update to the current version (update 24) Firefox can't find the plugin. Explorer just gives a warning that you might be missing important security updates.
    Can Firefox give a warning or run with the latest version instead of looking for the missing plugins?

    This is what Oracle has to say about the problem: [http://www.java.com/en/download/faq/other_jreversions.xml Download older versions of Java]
    If you install an older version in Firefox it will be listed in Tools | Add-ons | Plugins and you can disable it there. But as Oracle mentions, using older versions potentially exposes your system to attack such as the one mentioned here: [http://www.h-online.com/open/news/item/Java-SE-6-Update-24-fixes-floating-point-bug-1190818.html Floating Point Bug]

  • Installing older version of Java on OSX Lion

    I am trying to install an older version of Java on OSX lion 10.7.3. The latest update conflicts with matlab, I want to revert to java version 1.6.0_37. I have downloaded the version I want but when I try to install it ( click on the *.pkg file) I get the message : A newer version of this package has already been installed
    Any work arounds?

    Give Shane Ross' blog entry a read:
    http://lfhd.blogspot.com/2006/10/versions.html
    It is on a different topic but see how he tricks the software into installing without removing an old version. You might could do the same if you follow those steps.

  • I have downloaded the latest pages  update on my iPad, but my iMac still has version 4.3 and I cannot find out how to update it only desktop. When I try to send something from my iPad pages to via email to be opened on my desktop in Pages, it won't open P

    I have downloaded the latest pages update on my iPad, but my iMac still has Pages version 4.3, and I cannot find out how to update it on my desktop. When I try to send something from my iPad pages via email to be opened on my desktop in Pages, it won't open in Pages. I get a message that it can't be opened because the version is too old. I sent the document as a PDF and it worked. But I want to be able to use Pages back and forth. HOw do I update the Pages version on my desktop iMac?

    The file format used by the iOS versions of the iWork apps can only be read by the new iWork apps on your Mac - i.e. Keynote 6, Pages 5 & Numbers 3. Those versions for the Mac require Mavericks, OS X 10.9. The "too old" error on a Mac comes if you are trying to open an iWork '08 or earlier file in the newest apps. If you do have the newest apps you can open the files from your iPad.
    If you can't or don't want to upgrade to Mavericks & the newest iWork apps your best option would be to export/share the files from the iPad to a type an older version of iWork can read such as Word, text, Excel, etc.
    Or contact AppleCare. They made this mess, let them fix it.

  • TS3489 Can the older version of Java be restored to the Mac OS X 10.4.11?  I have a new MacBook, but I like using my older desktop model for certain things.

    Although I have a new MacBook,  I also have an older desktop Mac OS X 10.4.11 (which I still use) that just recently "stated" the older Java plug-in has been removed and the newer version needs to be installed.  The Mac OS X 10.4.11 doe not appear to be compatible with the updated version of Java.   Prior to this week, my grandchildren have been able to play some online early childhood games with this computer and I have been able to watch the occasional YouTube video.  Can the older version of Java be restored to the Mac OS X 10.4.11?

    I'm not familiar enough with the Mac to know where your history is. Hopefully another Mac user can chime in.
    You can download your preferred language version of Firefox 3.6.28 here:
    http://www.mozilla.org/firefox/all-older

  • EntrySet has private access in java.util.Hashtable

    Hi friends,
    While i try to retrieve the data from the hashtable through a JSP page, i'm getting the error saying "E:\Tomcat 5.0\work\Catalina\localhost\dd\org\apache\jsp\disp_jsp.java:55: entrySet has private access in java.util.Hashtable
    Iterator i = h.entrySet.iterator();
    For your reference the code goes like this,
    <% Hashtable h = (Hashtable) session.getAttribute("hash");
    Iterator i = h.entrySet.iterator();
    while(i.hasNext())
    %>
    <tr><td>
    <% String st = i.next().toString();
    String k[] = st.split("=");     
    out.println(k[0]); %>
    </td><td><%
    out.println(k[1]); %></td></tr><% } %>
    can anyone tell me how to get rid of this error quickly please.. Thanks in advance...
    Regards,
    Prakash.

    Iterator i = h.entrySet.iterator();Iterator i = h.entrySet().iterator();

  • HT5559 Oracle has updated java 7 to update 13. Re-enabling java 6 failed

    Oracle has updated java 7 to update 13. Re-enabling java 6 cannot be completed with mentioned commands in artikel HR5559. Can anybody help me?

    William Lloyd wrote:
    You need to run Java 7 at this point, as Java 6 has been disabled due to security risks and there's no current version available that will run on 10.8.
    That's not true. If you already have Java SE 6 installed it will run Lion and Mountain Lion.  The latest update was provided last Tuesday Java for OS X 2013-001.
    The update disables the Java 6 applet plug-in, but does not destroy it. It can be re-enabled using Apple instructions: "Java for OS X 2013-001: How to re-enable the Apple-provided Java SE 6 applet plug-in and Web Start functionality".
    @eoever,
    The instructions you cited has worked for many others, so I'm not certain why it isn't working for you. Did you previously have Java SE 6 installed and did you update it with 2013-001?

  • Deitel, Java How To Program exercise question

    Hi, :)
    I'm new to programming and I'm using the Java How To Program Fourth Edition from Deitel and Deitel as my text. I've run into a problem with Exercise 2.16 Where I'm asked:
    "Write an application that asks the user to enter two numbers, obtains the numbers from the user and prints the sum, product, difference, and quotient of the numbers."
    From that I have written this code:
    // Exercise 2.16
    /* An application that asks the user to enter two numbers, obtains the numbers from the use and prints the sum,
    product, difference and quotient of the numbers. Using the techniques shown in Fig 2.9 */
    //Java extension packages
    import javax.swing.JOptionPane;
    public class Exercise2_16{
         //Main method
         public static void main(String args[]){
         String firstNumber, secondNumber;                          //introduce variables
         int number1, number2, sum, product, difference, quotient;          //introduce variables
         firstNumber=JOptionPane.showInputDialog("Enter first integer:");     //Create input window
         secondNumber=JOptionPane.showInputDialog("Enter second integer:");     //Create input window
         number1=Integer.parseInt(firstNumber);                         //String to integer
         number2=Integer.parseInt(secondNumber);                         //String to integer
         //perform operations
         sum = number1+number2;
         product = number1*number2;
         difference = number1-number2;
         quotient = number1/number2;
         //Display results
         JOptionPane.showMessageDialog(null, "The sum is " + sum,
         "The product is " + product, "The difference is " + difference,
         "The quotient is " + quotient, "Results", JOptionPane.INFORMATION_MESSAGE);
         //End program
         System.exit(0);
         }//End main method
    }//end class Exercise2_16
    When I compile this code I get an error and I can't figure out why. Any help is really appreciated as I'm stumped and given the simplicity of the app I'm kinda bummed it has me stuck :(.

    I substituted your line and this is the error I'm receiving now:
    F:\jdk1.3\Learning Java>javac Exercise2_16.java
    Exercise2_16.java:32: unclosed string literal
    JOptionPane.showMessageDialog(null, "The sum is " + sum + ", The product is" + product + ",
    The difference is" + difference + ", The quotient is" + quotient + ", \"Results\", JOptionPane.INFORMATION_MESSAGE);
    ^
    Exercise2_16.java:35: ')' expected
    System.exit(0);
    ^
    2 errors
    It doesn't really matter to me if there are returns but maybe for readability there should be and so I learn how to as well.

Maybe you are looking for

  • I think I need to do a clean install...

    ... but I barely know what that means. Still have the "lampshade" flat-panel iMac, running 10.4.11 -- which I believe is the latest one this computer will run ?? I love it and don't plan to get rid of it for quite awhile yet. The only reason I think

  • How can I update Camera Raw in Photoshop CC 2014?

    I purchased and installed Creative Cloud Photography Plan two weeks ago.  I have Photoshop CC 2014.0.0 release.  The Camera Raw plug in is 8.0.0.137. The Creative Cloud Desktop app says that Photoshop CC (2014) is up to date.  The updates link in Pho

  • Clip video effects suddenly aren't working on already-exported project!

    I exported an iMovie 11 project to iTunes, and then realized I didn't apply color changes to it. I went back into iMovie, then trimmed a clip and it gave me the usual "you have edited your project, you'll have to finalize it again", or whatever it us

  • Raw Support for the X Pro 1 from Fuji

    Does anybody has an idea how to integrate Raw Files from the XPRO1 from Fuji? I use MBP with 10.8.5 and keep Aperture 3.4.5 until I am sure all issues that appeared once are fixed or Aperture 4 will be available. So the question further would be if 3

  • Security Filter Error

    Hi When i refresh my security filter i am getting an error saying cache size limit reached. can anybody tell me wer do i adjust my security filter chache size Thanks Abe Edited by: user11884591 on Sep 10, 2009 11:21 AM