Where's a magician when you really need one?

Recently did a re-install of 10.3.9, but now it's not much fun because Sherlock doesn't work.
No matter what I enter into the search field, the response of "no results found" stays there. It's almost as though it loads the internet, but can't access information or something prevents it from searching. All the other channels do the same thing.
Been through the discussion posts and tried deleting various files to no avail.
Can anyone please suggest something that will work?
G4 Titanium   Mac OS X (10.3.9)  

That is a very nice and complete report of your problems and observations.
Thanks, I'm becoming very intimate with them. ;P
... related to having an older
version of Safari on their machines. I am wondering
if something similar could be causing you trouble.
Hard to say.
All I know is that running Safari 1.3 started off fine, then became progressively worse each time I used it. After the Re-install, I loaded 1.2 and it's been working very well... so I'm cautious about updating it.
...start the Console app and make sure
that the console log file is the one that opens on
your screen. Then, start Sherlock and do one of the
things that does not work. When a failure occurs,
something might be written to that log.
Nothing written in the first log that appears. However, in the Library log, there is this:
CurrentSet updated to 0 (Automatic)
2005-12-19 22:45:34.526 Internet Connect[301] Error: Unable to create connection ref for service id 1
2005-12-19 23:04:27.473 Sherlock[575] * -[NSCFDictionary setObject:forKey:]: attempt to insert nil value
2005-12-19 23:04:29.757 Sherlock[575] * -[NSCFDictionary setObject:forKey:]: attempt to insert nil value
2005-12-20 00:31:55.011 Sherlock[604] * -[NSCFDictionary setObject:forKey:]: attempt to insert nil val
And about 70 or so instances of this:
Incorrect start/end range ordering; fixing.
Range {0x0a4c, 0x0a4c} doesn't map to a codespace range.
Also an additional 70 or so instances of:
Can't create CMap Adobe-Identity-UCS2
And finally:
Range {0x2c, 0x2c} doesn't map to a codespace range.
Can't create CMap HANBIT-ForPDF-UCS2.
Can't create CMap HANBIT-ForPDF-UCS2.
Can't create CMap HANBIT-ForPDF-UCS2.
Can't create CMap HANBIT-ForPDF-UCS2.
z_alloc: 0 bytes in use out of 21392764 bytes overall; max 6442508.
2005-12-20 16:55:48.944 Sherlock[474] * -[NSCFDictionary setObject:forKey:]: attempt to insert nil value
2005-12-20 16:55:48.955 Sherlock[474] * -[NSCFDictionary setObject:forKey:]: attempt to insert nil value
2005-12-20 17:06:40.770 Sherlock[478] * -[NSCFDictionary setObject:forKey:]: attempt to insert nil value
2005-12-20 17:06:46.866 Sherlock[478] * -[NSCFDictionary setObject:forKey:]: attempt to insert nil value
2005-12-20 17:32:26.752 Internet Connect[331] Error: Unable to create connection ref for service id 1
I have no inkling as to what any of that actually means.
To do this, I would
need to have the output of your softwareupdate log
file, from the time that you re-installed 10.3.0 to
the present (I am assuming that you have used
Software Update. )
No.
After loading 10.3 from the retail kit for the first time, I dowloaded the updates manually from the Apple site (sorry, not very efficient, but I'm fairly new to Panther and didn't know about Software Update).
I don't know if here was an issue with Sherlock at that point because I didn't launch it.
After all upgrades were installed, I backed up the downloaded updates onto CD so I would have them in case of emergency. After the Re-install, the updates from 10.3 to 10.3.9 were enabled from the CD. Sherlock is the only app that is not working.
I will see if I can learn anything.
I'm very appreciative of the time you're spending on this.
BTW, I bought and thoroughly ran TechTool 4.1.1 according to the manufacturer's specs. While my machine is now running faster, the annoying problem is still there.
G4 Titanium   Mac OS X (10.3.9)  

Similar Messages

  • Need to change my password NOW, and where is a DBA when you really need one

    I'm attempting to teach myself SQL using the book "Murach's Oracle SQL and PL/SQL". They recommended downloading Oracle Express Edition. I downloaded Express Edition 11g. The book says it's applicable with all versions through 11g.
    Anyway, last Sunday I got a warning message, "ORA - 28002: The password will expire within 7 days.
    28002.00000 - "the password will expire within %s days"
    *Cause: The user's account is about to expire and the password needs to be changed
    *Action: change the password or contact the DBA
    Vendor code 28002
    I don't have a DBA; I'm trying to learn this stuff on my own. I've been corresponding with the book's author. He's been having me try different stuff
    (ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
    SELECT PROFILE FROM DBA_USERS WHERE USERNAME = SYSTEM;
    ALTER PROFILE <PROFILE_NAME> LIMIT PASSWORD_LIFE_TIME UNLIMITED; ) None of this worked. He finally wrote that I should access the Database Home Page to change the password for the existing users.
    Problem is, from the Oracle Database 10g Express Edition -> Go to Database Home Page, and that's not an option in my Oracle Database 11g Express Edition; my options are Get Help, Backup Database, Get Started, Restore Database, Run SQL Command Line, Start Database, and Stop Database.
    How can I change my password so my database doesn't lock up? The database is on my home computer, so if I can set it up so there is no password expiration time that would be preferrable.
    Thank you in advance for your help.

    Updating the profile after a password has expired is like closing the barn door after all the cows have left.
    Sure, the new cows won't be able to leave, new users created with the unlimited profile won't get the expired password problem but the 'escaped' cows still need to be fixed. Use a system or /as sysdba connection and set a new value for the user password.
    sqlplus /nolog
    conn /as sysdba
    ... connected ...
    alter user <username> identified by <new password> account unlock;
    conn <username>
    ... password ...
    ... connected ...
    alter user <username> identified by <a different password>;As soon as system (or sysdba) or any user with the DBA role fixes the user account <username> should be good to go. And can set his/her own password as well. Its your database, you get to be the DBA.
    Edited by: clcarter on Dec 3, 2012 12:57 PM
    fix code tag typos

  • Is it OK to use clone when you only need shallow copy?

    I created copy contructors for all of my libraries classes because I was afraid of using the clone() method.
    However, my copy constructors create shallow copies of the objects - which is probably the same as using clone().
    Before I go deleting all the copy constructors from all of my classes...
    Is there any reason not to use clone() in this case? Are there any gotchas with clone() when it comes to just a simple shallow copy (perhaps with simple arrays, simple object arrays, or collections) ?
    Thanks

    Another thing worth mentioning is that if you really need to have more control of the clone process, then just over-ride the clone method. In most cases the default Object.clone() method should be enough. BTW don't forget to use the Clonable interface for your class.
    The whole notion of a copy constructor is much more a C++ thing.

  • Where is the file when you export from share to you tube?

    1. where is the file when you export (share) to you tube?
    I want to use the moivie again in another movie or DVD menu or just to save it etc. I cant't find the location after uploading to you tube.
    The only way to this can not be "export to media" or devices and from there to you tube?
    2. Does it make any differances for the quality on you tube wich way you choise?
    thanks, bruce

    Yes, i found it there. In fact; a logic place...
    The second q. means the way you load upo; dirtectly from the menu share to you tube of first make a QT and from there to the sky.
    I quess there must be no differance but you never know...
    Thanks again.

  • Do you really need the shoes to make this product work?

    I just saw some information on the TV about this. My question; if anyone can help with it, is do you REALLY need the shoes to make this work. I mean all it is is a little disk and a wireless plug-in for the Nano. It would really help me out if someone can tell me.

    You do not need the shoes to make it work. Check out this thread for ways people have gotten the sensor to work with non-nike+ shoes: http://discussions.apple.com/thread.jspa?threadID=559827&tstart=75

  • Do You Really Need The Nike+sport shoes

    Do you really need the nike+sport shoes to have the kit work or could you just buy any type of shoe and find a way to make the sensor stick?

    i just cut a spot in the insole of my New Balance
    high tops. (i walk/run in them because my ankles are
    weak) just remeber to calibrate.
    well strengthen your ankles and start runnning!

  • Do you really need the 4-in-1 drivers

    Do you really need to install the 4-in-1 drivers if you are using windows 2000pro? What I notice is that windows 2000 pro install all the drivers but the agp drivers. Ihave the K7T TURBO 2 MOTHERBOARD.

    Do you have the abilty to backup or image your OS? If so bench mark your system using Sandra, PCMark and 3DMark, install the latest VIA Hyperion drivers and bench mark again.  I am confident that you will see an improvement.  The VIA drivers are written specifically for the chipset, like using Detonator drivers on NVidia cards.  If not rebuild you image from your back up.

  • Do You really Need a Screen Protector?

    I'd just like to know if you really need this, the GS has a different coating on their screen than the previous models. Do these protectors really work, do you need them on your GS for insurance?

    A screen protector on the new 3GS would defeat the purpose of the oleophobic coating. I have tried protectors on my Palms but I prefer bare back with the iPhone. Screen protectors are a pain to apply without leaving wrinkles and bubbles and you can never replicate the smooth feel of the glass. You will also lose a little bit of screen brightness as they will never be 100% transmitting. I carry the iPhone in my pocket with the screen facing my pants leg and my wallet on top without an unsightly bulge. I don't put keys or lose change in that pocket. I agree that if you are throwing the iphone into a bag, purse, or backpack with lots of sharp objects (like your eating utensils or Bowie knife set), a slip cover might be a good idea. I bought one but it was so tight and hard to remove that I don't use it. Maybe others can suggest a good case that preserves the slimness of the iPhone.

  • Do you really need an IDE?

    Do you really need to have an IDE for Java? Does it make things easier for a newbie?
    Thanks

    I hear what you're saying... I don't think BlueJ should be used to write HelloWorld, but after compiling something basic on the command line I think it can be a decent introduction to Java.
    I started programming a year ago and after a month or so of working in Notepad++ and the command line I used BlueJ until I felt I had outgrown it. It isn't anything spectacular, as you know, and is sort of buggy, but I still think it can aid in the learning of Java for someone new to the language.
    In particular I think BlueJ does a nice job of emphasizing the idea of objects -- having a visual representation of your classes as little UML-like diagrams that you can interactively play with is kind of cool. Being able to right-click to create Objects and see how they interact with each other is, in retrospect, I think, probably not a bad way to learn.
    http://bluej.org/images/screenshots/screen-small.jpg

  • With OSX firewall and firewall on router, do you really need Netbarrier?

    With the native firewall and what the router provides do you really need to spend the extra money. I understand the need for anti virus but... do you really need something like Netbarrier from Intego?

    I agree with Roam, but if you are still in doubt, check these out...
    ClamXAV, free Virus scanner...
    http://www.clamxav.com/
    Little Snitch, stops/alerts outgoing stuff...
    http://www.obdev.at/products/littlesnitch/index.html
    HenWen/Snort combo, that is a free MAJOR Firewall...
    http://seiryu.home.comcast.net/henwen.html
    Then the venerable old Brickhoues/Flying Buttress Firewall...
    http://personalpages.tds.net/~brian_hill/downloads.html
    WaterRoof is a firewall management frontend with bandwidth tuning, NAT setup, port redirection, dynamic rules tracking, predefined rule sets, wizard, logs, statistics and other features.
    http://www.macupdate.com/info.php/id/23317

  • Do you really need lion to run face time?

    Do you really need loin OS to run face time?  We just got a ipad2 and I'd like to talk to it but my macbook has leopard.  Any work arounds?

    Facetime on a Mac requires OSX 10.6.6 (Snow Leopard) or Lion.

  • How to have a close tab button when you have only one tab ?

    I'm using FF 24.0 on Win 7 enterprise x64.
    I would like to have an option to have a close tab button ("x") when you have only one tab.
    Is this possible ? How ?
    If not how to submit a feature request ? I did it 10+ times with feedback but didn't see any change.
    Thanks

    Thanks again for the "close button" addon advice. I tried it but no luck, the close button doesn't appear on tabs but in the toolbar (which I do not display).
    So the problem remains for me.

  • Terrible sales protocol on Apple TV - they don't tell you what you really need

    When I bought my AppleTV I was NOT told:
    - that I needed  2011 or later manufactured Mac laptop, to be able to stream from internet.  My 2010 machine can't do it.
    - that I needed a micro USB cable, unless I wanted to find myself with a "dead" device on a Saturday night, after a failed update.
    - that I would never be able to read the serial #,  printed in miniscule black type, on black background on the device.  What happened to the famous Apple design brilliance, with this device?
    Very unhappy about this product, will not recommend it to others.  Are there better places to spread the word to others, or provide actioned feedback to Apple?

    JanineGl wrote:
    When I bought my AppleTV I was NOT told:
    - that I needed  2011 or later manufactured Mac laptop, to be able to stream from internet.  My 2010 machine can't do it.
    The AppleTV does not require any computer to stream from the Internet.  I suspect what you really mean is that your old MAC is not support for AirPlay Mirroring.
    JanineGl wrote:
    - that I needed a micro USB cable, unless I wanted to find myself with a "dead" device on a Saturday night, after a failed update.
    Most people already have a microUSB cable, especially if they have other small portable electronic devices.

  • Where does it go when you click on the Calendar icon beside the date field?

    Hi,
    Does anybody know what page or region does it go when you click on the Calendar icon beside a date field? I need to know how it generates the list of values for year.
    Need your help. ASAP. If you need to know more about my inquiry please email me, [email protected]
    Thanks.

    It's a Date bean and it is UIX which generates the java script to pop open the dialog box and the UI. I donot think there will be any public document available on the implementation.

  • Do you really need a screen protector for iPad?

    So I know the iPad 4th gens have a really durable glass screen. Do I really need a screen protector? I have a case that covers the screen. It is an incpio.

    If you have a cover for it (your case) you shouldn't need a screen protector. I use Apple's Smart Cover and do not have a screen protector.

Maybe you are looking for

  • BAPI_PO_CREATE1 : Mapping  Manufacturer part number

    Hi All, Can any body guide me how to Map " Manufacturer part number " in this BAPI_PO_CREATE1. Thanks in Advance Cino C B

  • Drop datafile

    Hi mates, I dropped a newly created datafile in a tablespace that has two datafiles. The syntax used is : startup mount; alter database datafile 'c\oradata\ooo.df01' offline drop; DATABASE ALTERED. Now the datafile still shows as available in the DBA

  • Developer 6 Form

    * I would like to run the Forms on the Web without the default MDI window and toolbar, is it possible to hide these and customise your own? and how? * Do you include images, hyperlinks and list items as such when you developing the form or do you inc

  • Invalid Address

    BES user 8 years.  Have traveled out of state many a times with no issues.  Last week was in Las Vegas and received company mail all day long but when I did a reply and send I got a big fat red X and it stated Message included an invalid address.  Af

  • When rendering - low RAM usage

    When rendering in Premiere CS5, my machine won't use more than about 3GB of RAM. I have 16GB installed.   In the memory preference, I allow it to use up to 13GB.  Any idea why it isn't utilizing all of my RAM? Thank you!