Same jena code loading ontology won't work in 11.2.0.2 in linux

Hi,
The sample code of loading univ-bench.owl ontology into database won't work in oracle 11..2.0.2 in my linux guest system. However, it is working perfectly in oracle 11.2.0.1 in windows environment. The error I got is:
WARN [main] (SimpleLog.java:93) - Could not set namespace prefix
java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
I recreated the table and model a couple of times accordint to a tutorial but it still failed. Is it an incompatibility issue? Thanks a lot.
Hong

Hi Zhe,
The sample code in Example 7-16 Load OWL Ontology and Perform OWLPrime inference doesn't work in 11.2.0.2 in my linux guest system. However, the code for incremental, batch or bulk loading in Example 7-17 Bulk Load OWL Ontology and Perform OWLPrime inference works like charm. The error for runnig the previous one is:
WARN [main] (SimpleLog.java:93) - Could not set namespace prefix
java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:440)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
     at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:837)
     at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:445)
     at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:191)
     at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:523)
     at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
     at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1010)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1315)
     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3576)
     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3677)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
     at oracle.spatial.rdf.client.jena.Oracle.executeSQL(Oracle.java:602)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNamespacePrefix(OraclePrefixMapping.java:202)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNsPrefix(OraclePrefixMapping.java:222)
     at com.hp.hpl.jena.rdf.arp.JenaHandler.startPrefixMapping(JenaHandler.java:94)
     at com.hp.hpl.jena.rdf.arp.impl.XMLHandler.startPrefixMapping(XMLHandler.java:110)
     at org.apache.xerces.parsers.AbstractSAXParser.startNamespaceMapping(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.startElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at com.hp.hpl.jena.rdf.arp.impl.RDFXMLParser.parse(RDFXMLParser.java:142)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:158)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:145)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:215)
     at com.hp.hpl.jena.rdf.model.impl.ModelCom.read(ModelCom.java:197)
     at myProject.LoadUniv3.main(LoadUniv3.java:24)
WARN [main] (SimpleLog.java:93) - Could not set namespace prefix rdf
java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:440)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
     at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:837)
     at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:445)
     at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:191)
     at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:523)
     at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
     at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1010)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1315)
     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3576)
     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3677)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
     at oracle.spatial.rdf.client.jena.Oracle.executeSQL(Oracle.java:602)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNamespacePrefix(OraclePrefixMapping.java:202)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNsPrefix(OraclePrefixMapping.java:222)
     at com.hp.hpl.jena.rdf.arp.JenaHandler.startPrefixMapping(JenaHandler.java:94)
     at com.hp.hpl.jena.rdf.arp.impl.XMLHandler.startPrefixMapping(XMLHandler.java:110)
     at org.apache.xerces.parsers.AbstractSAXParser.startNamespaceMapping(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.startElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at com.hp.hpl.jena.rdf.arp.impl.RDFXMLParser.parse(RDFXMLParser.java:142)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:158)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:145)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:215)
     at com.hp.hpl.jena.rdf.model.impl.ModelCom.read(ModelCom.java:197)
     at myProject.LoadUniv3.main(LoadUniv3.java:24)
WARN [main] (SimpleLog.java:93) - Could not set namespace prefix rdfs
java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:440)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
     at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:837)
     at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:445)
     at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:191)
     at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:523)
     at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
     at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1010)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1315)
     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3576)
     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3677)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
     at oracle.spatial.rdf.client.jena.Oracle.executeSQL(Oracle.java:602)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNamespacePrefix(OraclePrefixMapping.java:202)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNsPrefix(OraclePrefixMapping.java:222)
     at com.hp.hpl.jena.rdf.arp.JenaHandler.startPrefixMapping(JenaHandler.java:94)
     at com.hp.hpl.jena.rdf.arp.impl.XMLHandler.startPrefixMapping(XMLHandler.java:110)
     at org.apache.xerces.parsers.AbstractSAXParser.startNamespaceMapping(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.startElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at com.hp.hpl.jena.rdf.arp.impl.RDFXMLParser.parse(RDFXMLParser.java:142)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:158)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:145)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:215)
     at com.hp.hpl.jena.rdf.model.impl.ModelCom.read(ModelCom.java:197)
     at myProject.LoadUniv3.main(LoadUniv3.java:24)
WARN [main] (SimpleLog.java:93) - Could not set namespace prefix owl
java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:440)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
     at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:837)
     at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:445)
     at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:191)
     at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:523)
     at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
     at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1010)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1315)
     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3576)
     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3677)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
     at oracle.spatial.rdf.client.jena.Oracle.executeSQL(Oracle.java:602)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNamespacePrefix(OraclePrefixMapping.java:202)
     at oracle.spatial.rdf.client.jena.OraclePrefixMapping.setNsPrefix(OraclePrefixMapping.java:222)
     at com.hp.hpl.jena.rdf.arp.JenaHandler.startPrefixMapping(JenaHandler.java:94)
     at com.hp.hpl.jena.rdf.arp.impl.XMLHandler.startPrefixMapping(XMLHandler.java:110)
     at org.apache.xerces.parsers.AbstractSAXParser.startNamespaceMapping(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.handleStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLNamespaceBinder.startElement(Unknown Source)
     at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
     at com.hp.hpl.jena.rdf.arp.impl.RDFXMLParser.parse(RDFXMLParser.java:142)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:158)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:145)
     at com.hp.hpl.jena.rdf.arp.JenaReader.read(JenaReader.java:215)
     at com.hp.hpl.jena.rdf.model.impl.ModelCom.read(ModelCom.java:197)
     at myProject.LoadUniv3.main(LoadUniv3.java:24)
Exception in thread "main" java.lang.NoClassDefFoundError: com/hp/hpl/jena/sparql/algebra/opt/Rewrite
     at java.lang.ClassLoader.defineClass1(Native Method)
     at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
     at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
     at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
     at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
     at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
     at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
     at java.security.AccessController.doPrivileged(Native Method)
     at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
     at oracle.spatial.rdf.client.jena.QueryEngineSem.modifyOp(QueryEngineSem.java:179)
     at com.hp.hpl.jena.sparql.engine.QueryEngineBase.createPlan(QueryEngineBase.java:104)
     at com.hp.hpl.jena.sparql.engine.QueryEngineBase.getPlan(QueryEngineBase.java:97)
     at oracle.spatial.rdf.client.jena.QueryEngineSem$1.create(QueryEngineSem.java:202)
     at com.hp.hpl.jena.sparql.engine.QueryExecutionBase.getPlan(QueryExecutionBase.java:426)
     at com.hp.hpl.jena.sparql.engine.QueryExecutionBase.startQueryIterator(QueryExecutionBase.java:400)
     at com.hp.hpl.jena.sparql.engine.QueryExecutionBase.execResultSet(QueryExecutionBase.java:408)
     at com.hp.hpl.jena.sparql.engine.QueryExecutionBase.execSelect(QueryExecutionBase.java:135)
     at myProject.LoadUniv3.main(LoadUniv3.java:37)
Caused by: java.lang.ClassNotFoundException: com.hp.hpl.jena.sparql.algebra.opt.Rewrite
     at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
     at java.security.AccessController.doPrivileged(Native Method)
     at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
     ... 21 more
Thanks a lot.
Hong

Similar Messages

  • PDFMaker loads but won't work in Word 2013 - Acrobat XI and DC - Win 8.1 Pro

    OK, I opened a question that never got answered and it never was resolved...
    Just updated to Acrobat DC - same problem exists...
    I'm running Windows 8.1 Pro fully up to date..
    I've uninstalled and reinstalled Office 2013 Pro (I have an Office 365 subscription so it's the click-to-run install).
    I've uninstalled and reinstalled Acrobat Pro DC.
    I've rebooted (a full restart, not Win 8's fast boot restart) between each installation.
    I've tried this in multiple Office applications, none of them work EXCEPT for Outlook.
    For the following I will use Word as my examples...
    I've uninstalled all plug-ins and still it won't work.
    I've tried running Word as Administrator.... still won't work.
    OK... so this is what it looks like... as you can see the toolbar loads, but no icons...
    https://www.dropbox.com/s/wsbs4kon3z4e965/Word%20Acrobat%20Screenshot.jpg?dl=0
    When you click on those buttons... it goes through the motions as if it were creating the PDF... but no file is ever created...
    If I right-click on a Word document and select Convert to PDF - it goes through the motions of creating the PDF, asks me where to save... and then a dialog box named "Acrobat PDFMaker" comes up saying " {Exclamation Point Yellow Triangle Icon} An unexpected error occurred. PDFMaker was unable to produce the Adobe PDF."
    If I right-click on a text file... and select Covert to PDF,  it immediately pops open a PDF of the text file.  Same with any image file.
    This was all working perfectly up until out of nowhere it stopped working on January 26, 2015.  See my original posting here: Acrobat XI Pro Word 2013 add-in stopped working
    I can Print to PDF using the PDF Printer without any problems.
    Creating a PDF in Outlook, no problems...
    I'm hoping somebody can figure this one out... I'm completely stumped.... and I'm usually very good at troubleshooting stuff.

    Click to Run according to Microsoft: 
    https://technet.microsoft.com/en-us/library/jj219427.aspx
    "Click-to-Run is a Microsoft streaming and virtualization technology that reduces the time that is required to install Office and helps you run multiple versions of Office on the same computer. The streaming technology enables you to download and begin to use an Office product before the whole product is installed on your computer. The virtualization technology provides an isolated environment for Office to run on your computer. This isolated environment allows you to run the latest version of Office side-by-side with an earlier version of Office that is already installed on your computer."

  • Shockwave Appears to Load but won't work on website

    I used to be able to use the Car Configurator on the porsche website but now it won't load fully and hangs.  Go to www.porsche.com/usa/ and select "Build Your Porsche".  Select the model "Cayenne" and then select "3D" mode.  It starts to load Shockwave (the logo appears plus a status bar) but then hangs at 0% when trying to load the car image.
    I am running Windows 7, 32 bit, IE9 and the latest build of Shockwave - Shockwave has been uninstalled and reinstalled 3 times, including attempts to install earlier versions.  This used to work before I upgraded the Shockwave Player, and the Adobe site shows it is properly installed.  Tis also won't load on my office computer but WILL load on my Dad's computer, running Vista.  Porsche USA is baffled and can't duplicate the situation.

    Works for me - Win7 32-bit, Firefox - once I OK the download of the xtra package for Shockfiler from Tabuleiro

  • Dial with country code as prefix won't work

    Hey
    The Sony Z1 latest ROM have the issue, it can't dial when the phone number don't have + before the country code.

    jackychen wrote:
    Hey
    The Sony Z1 latest ROM have the issue, it can't dial when the phone number don't have + before the country code.
    If you actually use the country code, it has to be prefixed with +  (or two zeros)
    If you are calling a number in your home network/country and don't want to use the + sign, then omit the whole country code at all.
    It is not possible to call a number along with country code without + or 00 before this code, and this is not some xperia thing, it simply works this way (unless your operator have some different policy but I can only guess about it).
    When everything have failed already, try to read the manual.
    Kudos mean I am helpful. Am I for you? Then support me back

  • Import using develop presets won't work!

    Hi all,
    I just upgraded from LR2 to LR3. A lot to hate in this new version. But I suppose one needs to adjust and no doubt I will, but there is one thing that is about to drive me up the wall. Something I haven't been able to fix, so here I am, looking for a bit of help.
    Here's the problem:
    Because I don't like Lightroom's Sharpening & Noise Reduction settings, I used a preset in LR2 that I applied automatically when importing my images into LR. Now, with Lightroom 3 this just won't work properly and I get exclamation marks, indicating those images are not in the 2010 develop environment. I realised I was using my old presets, created in LR2, so that made sense. So I first deleted all my old presets and to make sure, I also deleted my metadata preset that I also apply on import. I couldn't find a way to delete those presets from within Lightroom by the way. So I just went to the library and trashed them manually...
    Next:
    I open LR3. Now I have no user presets anymore, of any kind. I then import the first image of today's shoot. In the develop module I make sure that I'm working in the 2010 process environment. I set Sharpening and Noise Reduction to what I want them to be and make them a preset. Then I made another preset for my metadata. But after importing the rest of today's shoot with the presets I have just created, it will not accept the 2010 settings and I get the exclamation mark with every image. I have checked that the culprit is not the metadata file. If I use only that to import an image and leave the Develop Settings on None, all is well, and the image is regarded as being in the 2010 process state. If I then *manually* apply my earlier created Noise Reduction/Sharpening preset, it accepts it and all is well. But as soon as I try to apply that same preset again when importing my images, then, when I go to the develop module, the image is suddenly in the 2003 environment again and I get the exclamation marks. I have tried everything I can think of but I cannot escape it any longer: I have been defeated by Lightroom 3. What on earth am I doing wrong here? Anybody?

    Yes, I get the same thing with the sliders being greyed out. Funny thing is that the sliders *are* set exactly as in my preset and when I click 'yes update' to 2010 standards, the settings don't change but only the sliders become accessible. The thing is that I really don't want to be doing that with every import, even if you can do the whole batch at once. What I don't understand is that when I import with the preset turned off and apply it in Lightroom's Develop Module, it accepts it without a problem but that when I use the same preset on import, it won't work properly.
    Now what the poster in the other thread said was:
    "When I saved a new preset and selected to also save the process version,  a line in the preset was created:  ProcessVersion = "5.7".  When I cut  and paste that into all my other presets then the sliders were all  active when I used them."
    I have no idea what he is talking about or how one would do that. When I create a preset I simply click the + sign and in the pop up window select what I want, give it a name and that's it.
    Edit: Sorry, I apparently overlooked the Process Version box in the preset panel! Must have been a case of not seeing the forest for the trees. Problem solved. Thanks.

  • Can Same tax code be assigned to 2 different wage types?

    HI Friends,
    Can you tell me if same tax code can be assigned to different wage types.
    Scenario is, my client is a group of 4 companies, of which one company gives Child education allowance twice in a year, where as other groups pay once in a year. Till now they used same wage type and this is maintained with Tax code SCEA as 1200. So, when the first company tried to give the allowance twice, system would consider exemption also twice, summing it to 2400.
    So, i created a new wagetype and assigned the same tax code (in table V_T7INT9) with exemption amount as 600, so that if my client enters allowance twice a year, they get exemption twice summing to 1200.
    But, i noticed that, the assignment had implications of the other wagetype with same tax code. System was not considering the exemption.
    Finally i could infer that, same tax code cannot be used for more than one wage type.
    Please help me in my inference. I dont know if im right!!!
    Regards,
    Pranitha

    Hi,
    Thanks for your information.
    Since, the companies have employees of all levels, same allowance groups will definitly be used by all the companies,.
    I will work out as per the scenario you told me and check the posiblities with the allowance group. but i think this is going to be a bit big exercise.
    I did work out with same different wagetypes and same tax code and this was not working fine. I knew there was some restriction & didnt knew what.
    My idea is, atleast to work out a reason to give to my client if something is not possible to give them. They just want a valid reason & im looking for one now.
    If anyone has any sugestions to give me, please do...
    Regards,
    Pranitha

  • Linked text inside table won't work - please help!

    Inside a 3 column table, I linked some text to a file in a different folder but the same site, and the links won't work.  I have linked text in a table before and it worked. I don't know if it's the table properties that is wrong or something else I've done, but I've read everything I can find and cannot come up with the reason why my links won't work.  can you help me?

    Sorry!  I should have done this first:
    http://www.corinthiaestates.com.php5-15.websitetestlink.com/pricing_and_availability.html
    Thanks for your help!

  • My game center won't load and shows up blank when I try to open it. I've already tried to close all the apps and restart it and it still won't work. Is their anyway to fix it without restoring it??

    My game center won't load and shows up blank when I try to open it. I've already closed all of my apps and restarted it and it still won't work. Is their anyway to fix it without restoring it and starting over??

    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - sign out and the sign back into Game Center
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • When try to connect my iPod touch 4th gen to my house Wifi it won't connect, it used to work fine but now it dosen't work, but it does say that the internet is available, but when I tap on it it just loads. all other devices work fine.

    When try to connect my iPod touch 4th gen to my house Wifi it won't connect, it used to work fine but now it dosen't work, but it does say that the internet is available, but when I tap on it it just loads. all other devices work fine.

    Does the iOS device connect to other networks? If yes that tend to indicate a problem with your network.
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network      
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem and it does not connect to any networks make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Mail settings (network) worked in 10.3.9, same settings won't work in 10.4.

    I run a G3 iMac at school (only Mac on a PC network) which has been able to access the internet, my school email and my MyWork folder on the school network. Last week I upgraded the OS to 10.4 (10.4.7) and typed in exactly the same Network settings as before. Internet and MyWork were fine but I could not send or receive email.
    I took my home eMac into school to try and had the same results; internet and MyWork are fine, Mail won't work.
    I reinstalled 10.3 on a partition of my iMac and (same Network settings) Mail is working fine.
    Any ideas on what 10.4 is doing differently from 10.3 that prevents Mail from working.

    Road Hazard: Try the instructions in this article. It is not possible to use the Panther installation disks to repair the permissions on a system which is experiencing this issue.
    scapesuiter: A Kihei is one of the models which make up the first slot-loading iMac machines. These came out in October 1999 and were discontinued in July 2000.
    (15253)

  • Firefox won't work unless I click a link twice, or it refuses to load a page

    Ever since I upgraded to 3.6.13, Firefox will often not load a webpage unless I click the link a second time. The first time, I'll click it and...it might work, but most likely it won't work and I won't notice it hasn't worked until about minute has gone by and it's done nothing. I saw that I had clicked it, because the link is highlighted..it just refused to do anything. So I'll click it again, and then it'll go.
    I've noticed this when I get a Page Not Found page. I go to click "Try Again", and I've seen that I clicked the button...but nothing happens, it doesn't even try to reload the page. I'll click it a second time, and then it'll go.
    This is so frustrating!

    I have the same problem on my website. It only happens in Firefox. IE, Chrome and Safari are working fine.
    Very strange behaviour. Check this page: http://1stlook.nl/webdesign-eindhoven.html
    You have to push the orange button twice. First time it only drops. Only if you click in the right corner it works???

  • Safari will not load!  Have uninstalled/reinstalled and still won't work

    Hi everyone
    I thought it would be a great idea to download AcidSearch so I could use Google (UK) in Safari. Unfortunately my Safari will now not load at all! I have deleted the SIMBL folders and also any reference to AcidSearch and still it won't work. I have also uninstalled and reinstalled Safari with no joy, and also even tried reinstalling AcidSearch.
    Here is my crash report:
    Process: Safari [1436]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0 (5530.17)
    Build Info: WebBrowser-55301700~2
    Code Type: X86 (Native)
    Parent Process: launchd [89]
    Interval Since Last Report: 329127 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 166214 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-06-20 21:02:07.361 +0100
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 8B9A1C9F-6F67-4CA8-8A75-8E8B9F44C0D0
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000020
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x948ba688 objc_msgSend + 24
    1 com.pozytron.AcidSearch 0x007826c3 +[ASAppLoader load] + 489
    2 libobjc.A.dylib 0x948b2bdf callloadmethods + 214
    3 libobjc.A.dylib 0x948ac0d3 load_images + 98
    4 dyld 0x8fe02e38 dyld::notifySingle(dyldimagestates, mach_header const*, char const*, long) + 328
    5 dyld 0x8fe0e7cf ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 287
    6 dyld 0x8fe0e8c9 ImageLoader::runInitializers(ImageLoader::LinkContext const&) + 57
    7 dyld 0x8fe02202 dyld::runInitializers(ImageLoader*) + 34
    8 dyld 0x8fe0bbdd dlopen + 605
    9 libSystem.B.dylib 0x965422c2 dlopen + 66
    10 com.apple.CoreFoundation 0x950b25d3 _CFBundleDlfcnLoadBundle + 307
    11 com.apple.CoreFoundation 0x950b2ef7 _CFBundleLoadExecutableAndReturnError + 567
    12 com.apple.Foundation 0x936b51e3 _NSBundleLoadCode + 259
    13 com.apple.Foundation 0x936b494b -[NSBundle loadAndReturnError:] + 331
    14 com.apple.Foundation 0x936b47fa -[NSBundle load] + 42
    15 com.apple.Foundation 0x936b47bd -[NSBundle principalClass] + 45
    16 net.culater.SIMBL 0x004f92ac +[SIMBL loadBundle:] + 570
    17 net.culater.SIMBL 0x004f8a02 +[SIMBL loadBundleAtPath:] + 269
    18 net.culater.SIMBL 0x004f88b8 +[SIMBL installPlugins:] + 332
    19 com.apple.Foundation 0x9368843a nsnotecallback + 106
    20 com.apple.CoreFoundation 0x950e664a __CFXNotificationPost + 362
    21 com.apple.CoreFoundation 0x950e6923 _CFXNotificationPostNotification + 179
    22 com.apple.Foundation 0x93685690 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    23 com.apple.Foundation 0x9368eee8 -[NSNotificationCenter postNotificationName:object:] + 56
    24 com.apple.AppKit 0x95c698ad -[NSApplication finishLaunching] + 515
    25 com.apple.AppKit 0x95c69333 -[NSApplication run] + 83
    26 com.apple.AppKit 0x95c36834 NSApplicationMain + 574
    27 com.apple.Safari 0x000032a2 0x1000 + 8866
    Thread 1:
    0 libSystem.B.dylib 0x9654046e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9656adcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x906ee584 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x906ea409 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x9656a155 pthreadstart + 321
    5 libSystem.B.dylib 0x9656a012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x96539286 machmsgtrap + 10
    1 libSystem.B.dylib 0x96540a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9510504e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95105c78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x96432298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x9656a155 pthreadstart + 321
    6 libSystem.B.dylib 0x9656a012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x965392ce semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96540da5 pthreadmutexlock + 569
    2 com.apple.Foundation 0x9368169c -[NSRecursiveLock lock] + 28
    3 com.apple.Foundation 0x9368ff52 +[NSBundle bundleForClass:] + 66
    4 com.pozytron.AcidSearch 0x0078bbfa -[PZFontView setUpFontMenu] + 215
    5 com.apple.Foundation 0x93688e0d -[NSThread main] + 45
    6 com.apple.Foundation 0x936889b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x9656a155 pthreadstart + 321
    8 libSystem.B.dylib 0x9656a012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa05340a0 ebx: 0x0078e511 ecx: 0x948bb64c edx: 0x00000000
    edi: 0x94904944 esi: 0x0058e690 ebp: 0xbfffec58 esp: 0xbfffec18
    ss: 0x0000001f efl: 0x00010286 eip: 0x948ba688 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000020
    Binary Images:
    0x1000 - 0x271ff2 com.apple.Safari 4.0 (5530.17) <f2a6090eab89fe9620270fc7f32156b9> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d0000 - 0x2dfffc SyndicationUI ??? (???) <4bfd6fbc102be03e5fb08374be0ca362> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x2ef000 - 0x3f5ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x4d4000 - 0x4d4fff +org.xlife.InquisitorLoader 3.2 (61) <2f33f2e326ba81af7329cd776e35cbe3> /Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/MacOS/Inquisitor
    0x4f7000 - 0x4f9fff +net.culater.SIMBL 0.8.2 (8) /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
    0x700000 - 0x722fff +org.xlife.InquisitorCore4 3.2 (61) <615a20eb9b623c03ee688eeed6788564> /Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/Resources/Inquisit orCore4.bundle/Contents/MacOS/InquisitorCore4
    0x735000 - 0x760ffb libcurl.3.dylib ??? (???) <54ada27deb3b4ff7043d8836264eca0d> /usr/lib/libcurl.3.dylib
    0x76a000 - 0x79dfe7 +com.pozytron.AcidSearch 0.62 (0.7b3) /Library/Application Support/SIMBL/Plugins/AcidSearch.bundle/Contents/MacOS/AcidSearch
    0x19c5000 - 0x1bccfef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x900bb000 - 0x900d6ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x900d7000 - 0x900f5fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x900f6000 - 0x90104ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x90105000 - 0x9015eff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9015f000 - 0x90177ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90178000 - 0x9017dfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <97878a73074e7da4fe31ea010a5d5ae1> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9017e000 - 0x9018effc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9018f000 - 0x9059ffef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x905a0000 - 0x905bfffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x905cc000 - 0x9064bff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9064c000 - 0x906c9fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x906e7000 - 0x90f77fff com.apple.WebCore 5530.18 (5530.18) <bed2e1280e908e17419ce0a159c19caa> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90f78000 - 0x90f88fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90f89000 - 0x90f96fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x910a4000 - 0x910eefe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x910ef000 - 0x91227fe7 com.apple.imageKit 1.0.2 (1.0) <2e354566521df8b1e3a78e9aeab5e6b4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91228000 - 0x9126afef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9126b000 - 0x912abfff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x91515000 - 0x91519fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9151a000 - 0x91529ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9152a000 - 0x9152dfff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9152e000 - 0x91836fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91837000 - 0x91864feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91865000 - 0x9193eff7 com.apple.WebKit 5530.18 (5530.18) <08df2c1fd856bd9b672993dacb18495a> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9193f000 - 0x919d2ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x919d3000 - 0x91a5dfe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91a5e000 - 0x91a5effa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91a5f000 - 0x91a88fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x91b41000 - 0x91b4bfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91b4c000 - 0x91b86ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91b87000 - 0x91c13ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91c14000 - 0x91c16ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c17000 - 0x91fd5fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92fe2000 - 0x92fe8fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92fe9000 - 0x930a0ff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x930a1000 - 0x930dbfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x930dc000 - 0x9311bfef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9311c000 - 0x9311cffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9311d000 - 0x9311dff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9311e000 - 0x9313bff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9313c000 - 0x9313cfff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9313d000 - 0x93174fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93175000 - 0x932aeff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x932af000 - 0x932b1fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x932b2000 - 0x932d6fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x932d7000 - 0x93429ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9342a000 - 0x9342cffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9342d000 - 0x93434fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x93435000 - 0x9357bff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9357c000 - 0x93591ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93592000 - 0x93625fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93678000 - 0x9367dfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9367e000 - 0x938fafe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x938fb000 - 0x939dcff7 libxml2.2.dylib ??? (???) <2f6b294896866822330a8888b7f53b75> /usr/lib/libxml2.2.dylib
    0x939dd000 - 0x93a2eff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93a2f000 - 0x93a3bffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93a3f000 - 0x93a3fffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93bd0000 - 0x93bd4fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93bd5000 - 0x93c8ffe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93c90000 - 0x94161fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94162000 - 0x941e9ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x941ea000 - 0x94371feb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94372000 - 0x94372ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94373000 - 0x943c2fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x943c3000 - 0x9448efff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9448f000 - 0x947b5fe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x947b6000 - 0x9485dfeb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9485e000 - 0x94867fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x948a5000 - 0x94985fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x9498e000 - 0x94d2bfef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94d2c000 - 0x94d33ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x94d34000 - 0x94d34ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94d6a000 - 0x94d75fe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94d76000 - 0x94d7efff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94d7f000 - 0x94daefe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94dc7000 - 0x94dccfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94dcd000 - 0x94dfeffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94dff000 - 0x94e0efff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x94e1c000 - 0x94e8efff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94e8f000 - 0x94ed8fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94ed9000 - 0x94f65ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94f99000 - 0x95049fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95073000 - 0x95091ff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95092000 - 0x951c5fef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x951c6000 - 0x951c7ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x951c8000 - 0x951c8ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x951c9000 - 0x951fbfff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x951fc000 - 0x951fcffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x951fd000 - 0x95263ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95264000 - 0x953e3fff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95457000 - 0x954b1ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x954b2000 - 0x954b2ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x954b3000 - 0x9578dff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95793000 - 0x957f0ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x957f1000 - 0x958b8ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x958b9000 - 0x959a1ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x959a2000 - 0x959a2ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x959a3000 - 0x959e1fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95b46000 - 0x95b7cfef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x95b7d000 - 0x95c2fffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x95c30000 - 0x9642efef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9642f000 - 0x964d3fec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x964d4000 - 0x964eafff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x964eb000 - 0x964f2ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x964f3000 - 0x9651efe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9651f000 - 0x96537fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96538000 - 0x9669fff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x9676f000 - 0x96940ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96941000 - 0x96afdff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96afe000 - 0x96b22feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x96b23000 - 0x96ba0feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96bf0000 - 0x96c6aff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96c6b000 - 0x9730bfe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9743d000 - 0x97499ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9749a000 - 0x974c3fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    If anyone has any ideas I'd be immensely gratefull as I miss my Safari!
    Thanks in advance
    Brian

    Hi Johnynutz, <br/>First of all try to check that security software is not blocking Firefox. A new version may not be recognised, and in these circumstances before attempting to start Firefox always check in Task Manager that no instance of Firefox.exe or plugincontainer is left running.
    Next It is probably worth seeing if you can open the Firefox profile manager, if so you may create a new profile for Firefox and try to restart it with that new profile. Standard reinstalls do not remove the profile (do NOT attempt profile removal unless you have backed it up)
    * see [[Use the Profile Manager to create and remove Firefox profiles#w_creating-a-profile]]_creating-a-profile
    If that fails then it is necessary to re-install firefox, and this time use a clean re-install. Note it is the program files that are being removed NOT the profile files. Do not use any option from Windows or Firefox that removes personal information, because that will destroy bookmarks and passwords etc.
    * see [[Troubleshoot and diagnose Firefox problems#w_7-reinstall-firefox]]_7-reinstall-firefox
    Try starting the new install with your original default profile,and the newly created one.
    Please post back with how you get on.

  • Two JavaScript widgets won't work on the same page [was: Not the first time]

    I ran into this a few months back and gave up on it. I have a page that has several javascripts running on it. They are:
    vnu_datestamp.js
    a flashing neon text script (inline)
    DW's own rollover image (MM_swapimgRestore) script (also inline)
    jquery1.2.2_pack.js
    overlapviewer.js
    lightbox.js (which also relies on scriptaculous.js, prototype.js and an "effects.js" to run)
    I know that's a "garbage pail" of javascripts to all be on the same page. Frankly I'm surprised that they don't all give me problems. But there is one.
    The lightbox and overlap viewer just will not play together.
    Depending on which one I list first in the header, the other one quits. Whichever one I lose goes from the image display effect to acting like a straight hyperlink to the designated image.
    It isn't a huge deal, but I'd like to be able to have the two of these on the same page and working. I have them running alone on other pages and can link to them, but it sort of defeats the purpose of making a web page to show the variety of things I can do for someone who whats a website built, if one or more of the things won't work.
    [Subject line edited by moderator for clarity]

    Please don't use cryptic subject lines for posts. The value of a forum is that other people might be searching for the answer to a similar problem. Meaningless subject lines prevent others from finding useful replies. They also discourage others who might be able to provide help more quickly if they knew what you're asking about.
    I've had a quick look at your page. Quite honestly, I find all the flashing rather nauseating, but if that's the way you want to design a page, it's your choice...
    The conflict is caused by the fact that overlapview.js seems to rely on jQuery, while lightbox.js relies on Prototype and script.aculo.us. Both jQuery and Prototype use $() as a shortcut, so you cannot mix the two libraries on the same page without taking special measures to prevent the conflict. In jQuery, you do this by loading all the jQuery, Prototype, and script.aculo.us libraries first, and then using the following script:
    jQuery.noConflict();
    Then load overlapview.js, replacing all instances of $ with jQuery. So, for example, the following line:
    $(t).fadeTo('normal', overlapviewer.endopacity, function(){
    needs to be rewritten like this:
    jQuery(t).fadeTo('normal', overlapviewer.endopacity, function(){

  • I just loaded Yosemite on my Mac and now adobe flash won't work in Safari  8.0.4 .  Does anyone have a solution ?

    I just loaded Yosemite on my Mac and now adobe flash won't work in Safari 8.0.4 . Does anyone have a solution ?

    If you can't install or update Flash, follow these instructions.
    If you have installed the latest version of Flash, please take each of the following steps that you haven't already tried. After each step, relaunch Safari and test.
    For a "blocked plug-in" error, see Step 4.
    For a "missing plug-in" error, start with Step 8.
    Back up all data before making any changes.
    Step 1
    You might have to log out or restart the computer before a Flash update takes effect.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Close the window. Then select
               ▹ System Preferences… ▹ Flash Player ▹ Advanced ▹ Delete All...
    In the sheet that opens, check the box marked
              Delete All Site Data and Settings
    then click Delete Data. Close the preference pane.
    Step 3
    If you're only having trouble with YouTube videos, log in to YouTube and load this page. You may see a link with the text "Leave the HTML5 Trial." If so, click that link.
    Step 4
    a. If you get a warning of a "blocked" or "outdated" plug-in, then select the Security tab in the Safari preferences window. In the list of plugins on the left, there should be one—and only one—entry for "Adobe Flash Player," showing the same version number that you installed. Select that entry. On the right there will be a list of websites for which you have specifically allowed Flash, if any. It's normal for the list to be empty. Below that is a menu labeled
              When visiting other websites
    From that menu, select either Allow or Ask.
    b. If you still get the alerts, then go back to the Flash Player preference pane and select the Advanced tab. Click Check Now. Quit and relaunch the browser.
    c. If the alerts still persist, triple-click anywhere in the line below on this page to select it:
    /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
    Right-click or control-click the highlighted text and select
              Services ▹ Open
    from the contextual menu.* A folder should open. Inside it, there should be a file named "XProtect.meta.plist". If that file is missing and you know why it's missing, restore it from a backup or copy it from another Mac running the same version of OS X. Otherwise, reinstall OS X.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 5
    In the Safari preferences window, select the Advanced tab and uncheck the box marked
              Stop plug-ins to save power
    Step 6
    Open this folder as in Step 4:
    /Library/Internet Plug-Ins
    Delete the following item, or anything with a similar name, if present:
              Flash Player (failing).plugin
    You may be prompted for your login password.
    Step 7
    Re-download and reinstall Flash. Download it from the domain "get.adobe.com". Don't click a link from any other website, including this one, because you can't trust links. They may be an attempt to trick you into installing malware masquerading as Flash. Type the address into the browser window. Never download a Flash update from anywhere else.
    Step 8
    If you get a "missing plug-in" error, select
              Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked 
              Allow (or Enable) plug-ins
    Then click the button marked
              Manage Website Settings...
    if present and make sure that the website is not blocked for Flash.
    Step 9
    Select
              Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.

  • In Windows 7 Itunes loads and runs fine. When I close it down and try to get back in it just sits there. It won't work until I reboot the computer.

    I am running WIndows7. I boot up load itunes and it runs fine.. all aspects. 
    When I close it down and try to get back in later it just sits there. It won't work until I reboot the computer.
    I have updated and reloaded several times. Nothing

    Let's see whether this file APSDaemon.exe is the problem here.
    Close your iTunes.
    Press Ctrl-Alt-Del key and choose Task Manager. In the "Processes" Tab, select the file APSDaemon.exe and click End Prosses button, then close the task manager window.
    Now open itunes and see if it is working?
    If that works, make sure you do this below to prevent same problem after restarting windows:
    Go to. START button, type in
    MSCONFIG
    Hit ENTER
    Click STARTUP Tab, Uncheck "Apple Push", click OK.
    Restart Windows.

Maybe you are looking for