Trouble w/Safari on eBay and slow running

I hope I'm in the proper place for posting this question/problem. I'm not able to use some drop-down menus nor print shipping labels directly thru my eBay/Paypal account, any more. This has occurred just in the last week. Through questions I posted at eBay they say I should upgrade my browser because of new security updates they have made, however, after I did some checking, all browser updates seem to be only for OSX Tiger & Leopard. Does this mean I need to upgrade from Panther or is there another way? If I do need to upgrade, which OS system is the least expensive and do I need to get the complete retail set ? I did this with Panther (which came loaded into my machine when I bought it used) and I never used itI I feel like I wasted $80. It seems, also, like I spend an awfully long time watching that colorful little wheel going around waiting for things to load. This has been going on about six months or so. I have an external hard drive connected but I don't boot that up except for old OS9 programs and files, occationally. I also opened up a network to get files off my old iMac but it's not permanently connected. I realize I'm behind the technological times here. I just got this computer (used) a year ago and I really don't want to, nor can I afford to buy another, right now. I am hoping to be able to upgrade for the least cost possible. Hope someone can help me out with some inexpensive suggestions and some answers.

You could also try the Firefox 2 Browser.
"...which OS system is the least expensive..."
If your Mac meets the Tiger System Requirements, the Full Retail Version, of the Tiger Install DVD, is available from Apple Phone Sales 1-800-692-7753, for $129.00.
If your Mac meets the Leopard System Requirements, the Full Retail Version, of the Leopard Install DVD, can be purchased at The Apple Store (U.S.).
"...do I need to get the complete retail set ?"
Yes.
Additional info in these links.
Using OS X Install CDs/DVDs On Multiple Macs
What's A Computer Specific Mac OS X Release
Software Update, Upgrade: What's The Difference?
"...I spend an awfully long time watching that colorful little wheel going around waiting for things to load."
What size is the Hard Drive, and how much free space is available?
Insufficient available space, can cause performance issues, system corruption, and possible loss of data.
Depending on Mac system usage habits, it is a general recommendation, to keep 10% to as much as 20%, of the Total capacity, available at all times.
Review the suggestions, in the documents that I have linked to below.
Authored by Dr Smoke:
Problems From Insufficient RAM And Free Hard Disk Space
Freeing Space On Your Mac OS X Startup Disk
Have you ever run any routine Maintenance procedures, as suggested in the articles linked to below?
Kappy's Personal Suggestions for OS X Maintenance, authored by Kappy
Mac OS X 10.3/10.4: System Maintenance, authored by Gulliver
Maintaining Mac OS X, authored by Dr Smoke
Is the Mac shutdown overnight, or does it run 24/7?
If you turn the Mac off nightly, the Background Maintenance Tasks, are never run.
As littleshoulders posted, these can also be run, using a Third-Party utility, or manually using Terminal, to run the CRON Commands.
I use MacJanitor, when necessary.
INSTRUCTIONS TO RUN CRON MANUAL COMMANDS
Quit all applications/programs.
Navigate to HD > Applications > Utilities.
Double click on Terminal, to open.
At the prompt, type:
sudo periodic daily
Press Return.
Enter your Admin password when prompted, then press Return.
This will execute the daily script that is sheduled to run every night.
When completed, repeat this procedure, but change the command to:
sudo periodic weekly
This one rebuilds a database or two, and usually takes somewhat longer to complete. It is scheduled to run once a week.
Repeat again, with command:
sudo periodic monthly
Or they can all be run in one pass, which is preferable, with this command:
sudo periodic daily weekly monthly
When the tasks complete, and return to the prompt, you may quit Terminal.
Restart the Mac, and run Repair Permissions.
TO REPAIR PERMISSIONS ON THE STARTUP DISK
1.Open Disk Utility, located in Applications/Utilities, and select the startup disk in the left column.
2.Click First Aid.
3.Click Verify Disk Permissions to test permissions or Repair Disk Permissions to test and repair permissions. (I never "Verify". Just run "Repair".)
Rerun RP, until the only messages reported, are listed here Spurious Permissions Errors Using: 10.3.x, authored by Michael Conniff.
When "Repair Permissions" is complete. Quit "Disk Utility".
ali b

Similar Messages

  • &, &&, and @s causing ORACLE Database Project issues And SLOW Run

    Hello I am encountering an issue while "Run"ing functions/sp/packages from an ORACLE DATABASE PROJECT.
    We are supporting a legacy application that utilizes HTP.PRINT. We decided that it would be nice to have it as an Oracle Database Project but when we save the file it is croaking at us.
    We are using
    ODTwithODAC1110720
    Visual Studio 2008
    Oracle 10g r2
    The specific issue happens when an @ is the first line in the file and when utilizing && in javascript (all being emitted from HTP.Print). Now I know we can work around these limitations (escaping the &s and wrapping the line) but is there any way to get these to work in the IDE w/o the escaping and such?
    For instance:
    In visual Studio Create a Function1 as such
    DROP FUNCTION FUNCTION1;
    CREATE FUNCTION FUNCTION1 (
      PARAM1 IN NUMBER) RETURN NUMBER IS
    BEGIN
    HTP.PRINT ('    if (popupStatus == 1 && okDisabled==false) {');
             htp.print('
    <style>
    @media printfooter; {
    }   etc etc etc   ');
      RETURN PARAM1;
    END FUNCTION1;
    /You will get this result:
    Connected.
    ------ Running '***\Project1\Functions\Script1.sql' @**.** ------
    Function dropped.
    SP2-0310: unable to open file "media.sql"
    Enter value for okdisabled:
    Operation canceled by user
    -- this locks the file
    If I go ahead and hit OK (in a new unlocked file)
    SP2-0310: unable to open file "media.sql"
    Enter value for okdisabled: old   5: HTP.PRINT ('      if (popupStatus == 1 && okDisabled==false) {');
    new   5: HTP.PRINT ('      if (popupStatus == 1 ==false) {');
    **/You will notice that when the function is created it just skips the & and @s
    FUNCTION FUNCTION1 (
      PARAM1 IN NUMBER) RETURN NUMBER IS
    BEGIN
    HTP.PRINT ('    if (popupStatus == 1 ==false) {');
             htp.print('
    <style>
    }   etc etc etc   ');
      RETURN PARAM1;
    END FUNCTION1;and just a little insult to injury on this, each "run" takes upwards to 20-25 seconds from Visual studio (this is a deal breaker for us to use the tool -- when SQL Developer takes mere moments) -- is there a configuration setting awry?
    So I guess the questions are these (sorry for the ramble)
    1) How, in the VS 2008 IDE, can we accommdate & and && and @s without escaping/workarounds? (these work fine in developer)
    a) I have noticed that the escape character work around is ONE way ... thus if I have the package body in the Oracle Database Project, add "set escape \ " then escape all of my & and && and @s it works. but... the code is saved in Oracle without the escape characters (understandable) but if it changes in Oracle then I push the changes down I lose all of my escape characters.
    2) Why does each RUN take so long? working in developer & even the Server Explorer edited function are almost instantaneous.
    -- I want to add, during my escape character tests EACH RUN took upwards to 30-45 seconds, so for 4 small simple test cases it was approaching 2 minutes of just save time...
    so far these two shortcomings are barrier for our company to utilize these features (it's hard to try to sell the dept. on anything that doesn't handle escapes well AND -- the big AND -- takes entirely too long to save). any advise?
    thnx
    Edited by: tanging on Jul 1, 2010 4:47 AM

    we can just set the escape character and it works fine,
    set escape '~'
    create or replace ....when/if we have to pull down from production level we'll have to be mindful to change & and @s to have a preceding escape character (and add the set escape to the top) --> which is a step back from SQL Developer which handles this flawlessly.
    now the timing -- I believe it to be a timing issue on our network (therefore I've wasted your time). We have a default shared drive that is anything but speedy and our "default" homes in Visual Studio pointed to the shared drive. While the project/solution were on our local drives - the temp drive was the slow default. Changing that locally seems to have made the timing issue go away. (although on the first save of the body spec after the change and reboot it took 35 seconds but on subsequent runs it Ran in acceptable time limits).

  • Satellite A300-1MV slow boot up and slow running

    I have recently bought an Satellite A300-1MV it runs vista,
    I have the trial Mcafee running and the other pre-installed software that came on the laptop. My problem is that on boot up the computer seems to take a ridiculous amount of time to boot up, once past the vista orb it says please wait which lasts about a minute untill the password request appears.
    I had a look in the problemreports in control panel and found that the toshiba tempro program was hanging on boot up so disabled it but didn't seem to have any effect, I also find that when for example you double click on a photo thumbnail to view it, it takes about 30 seconds to appear on the full screen allthough the window is shown on the start menu bar at the bottom allmost straight away.
    I have defragged the hard drive, scandisk, memory checked, virus checked etc.. I compared it to a friends laptop dell that has less memory but same spec processor and vista and that appears to work 10 times faster.. any ideas?, I do wonder if its a toshiba program causing the problem.
    I do though have a problem with acrobat reader opening of its own accord and telling me it can't read the file ( don't know what file)
    I have uninstalled this and reinstalled but still have the same issue!...HELP!!!
    Cheers

    Hello
    Very nice thread about slow start up you can find under http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=134947
    To be honest I don't like McAfee and I have installed other antivirus application that needs much more resources. Please read this interesting thread and let me know what do you think about it.

  • Safari extremely choppy and slow after long use

    Hello people. First of all my specs:
    Earlly 2011   15" Macbook pro; 2.0 Ghz i7 Processor; 8GB RAM; 500GB HDD with 140GB free;
    When I switch on my mac and use safari it works fine. Always enough free RAM. After about 5 hours of use safari starts to chop when i scroll. This happens mostly when i open a link in a new tab and it is still loading. In extreme cases i right click on a link and the pop up menu takes about 3 to 5 seconds to appear. I thought RAM was a problem but about 2GB was free so that wasnt it. This is always the situation, ram always available. I have used programs like iBosstUp to cleanup files in my mac. I have emptied recylcle bin. I have reset Safari. My mac is using the latest OS lion 10.7.3. I usually open upto 20 tabs at the same time thats why I got 8 GB. I am now thinking of going up to 16GB(no debate here: it is 100% possible i reserched). But I dont want to find this problem there again after the upgrade. Another issue, when I have loads of tabs opened, the tabs load fine but when i click on any one of them, the page is completely blank  and reappears about a second or two after. Sometimes the tabs load when I click on them, yet they are supposed to load in the background. If free ram was very low then I was going to assume virtual memory was in use therefore the pages taking time to appear..
    Please help. Thank you in advance

    Hey LpoolEd,
    Thanks for the question. If I understand correctly, Safari has slow performance and there is an issue with automatic login. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    Safari 5.0.1 or later: Slow or partial webpage loading, or webpage cannot be found
    OS X Yosemite: Login Options pane of Users & Groups preferences
    Thanks for using Apple Support Communities.
    Have a great day,
    Mario

  • Visual spikes and slow running.

    Hello, I'm experiencing a problem on my iMac.
    The system seems to operate a little slow in comparison to 1 month ago when everything was running smoothly.
    My main concern is that the visuals have spikes. Meaning, the animations of everything (system icons popping, running video, applications) are freezing for a bit (less than a second) while enabled or active.
    I am a new mac user so i don't really know what i should do.
    I'm using a 3.2 GHz Intel Core i5 with 8 GB ddr3 memory, on OS X 10.8.5.
    Thanks in advance.

    after having repaired laptops for years in the past, a tiny drop that isnt seen gets somewhere........checks out fine.....but the residue later causes a fault.
    Its not their fault, I used to have to deal with that quite a bit,.......someone would come back upset that its "still bad", but in fact what happens is the creeping havoc of a spill pops its head up somewhere ELSE which before "checked out just fine"
    logical, Ive seen it often myself firsthand........ yet frustrating .
    This is why all spills are havoc, not merely due to damage, but it 'creeps'.  You can fix it, but find out later a drop "fell" somewhere now its got a NEW problem.

  • Trouble connecting to wireless networks and slow connection.

    For the past three weeks or so I've been experience difficulty connecting to networks I previously had no trouble connecting to. I'm only able to go about 15 feet or so away from a wireless router before my speed either drops through to the floor or the connection is lost entirely. I've tried looking through forums all over the internet, but I wondered if anybody had any insight into what I could do to get my wi-fi back up to speed?
    Thanks!

    Try the steps in the blog post How I fixed my dropping wireless Airport connection problem in Snow Leopard to see if any of them help.
    Good Luck.

  • My new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help

    my new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help
    my iphone4 is 10 times faster
    i have backed up on itunes and restored but still no luck
    even siri is lagging

    my new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help
    my iphone4 is 10 times faster
    i have backed up on itunes and restored but still no luck
    even siri is lagging

  • Safari Running Slower and Slower

    Hello...No idea why, but Safari is running slower and slower lately for me on my MacBook Pro.
    Any suggestions on how I may be able to troubleshoot this?
    Thank you.

    The following usually works on both Tiger and Leopard:
    (First, if yours is an Intel Mac, check that Safari is not running in Rosetta, which is enough to slow it to a crawl.)
    Empty Safari's cache (from the Safari menu), then close Safari.
    Go to Home/Library/Safari and delete the following files:
    form values
    download.plist
    Then go to Home/Library/Preferences and delete
    com.apple.Safari.plist
    Repair permissions (in Disk Utility).
    Start up Safari again, and things should have improved.
    If not, MacFixit have published a very detailed (very!) article on speeding up a slow Safari, here:
    http://www.macfixit.com/article.php?story=20070416000657464
    Many, including me, have also followed the advice given by others here to add DNS codes to their Network Settings, with good results in terms of speed-up:
    Open System Preferences/Network. Double click on your connection type, or select it in the drop-down menu. Click on TCP/IP and in the box marked 'DNS Servers' enter the following two numbers:
    208.67.222.222
    208.67.220.220
    Click on Apply Now and close the window.
    Restart Safari, and repair permissions.

  • Can't open safari and computer runs very slow on macbook pro

    I cant open my safari on my macbook pro and it runs very slow

    http://support.apple.com/kb/TS3408

  • I allowed Apple updates about two weeks ago and now Safari is way too slow.  I have tried using Airport and Ethernet and the problem is the same.  Yesterday, I updgraded to Safari 5.1 and the problem is now worse.  Any solutions?

    I allowed Apple updates about two weeks ago and now Safari is way too slow.   I have tried using Airport and Ethernet and the problem is the same.  Yesterday, I upgraded to Safari 5.1 and now the problem is worse.  Any solutions?

    I can't stand peremptory affirmations like "Nothing is wrong with Safari".
    Thousands of users can't be wrong (see the discussions).
    If I read you the right way, it's never software' fault, it's the user who's the culprit.
    Amazing!
    In this very case, the fact is we can't give to "christinefromfonthill" a good solution because weren't sitting in front of her Mac.
    You give her a good advice which could, perhaps, lead to an improvement.
    But must also admit that Safari is a very slow browser compared to Firefox or Chrome.
    And you can't ignore all the problems which arose when upgrading to Lion and were related to the new build and specs of Safari 5.1.
    The best example is the apparition of "garbage type" (use of Last Resort font) when reading numerous sites. This never occured before and is the direct consequence of Safari compliance to Web Open Type. This standard prohibits the use of Type 1 Postscript Fonts and is the reason why so many people are in trouble.
    I use a Mac for more than 25 years.
    I am a very "clean" user who hates the bells and whistles of third party.
    My Mac is always up-to-date and despite all my Mac loving care, I run into some problems.
    Imagine the nightmare which can occurs for the vulgum pecus who isn't, by definition, a power user aware of all the requirements for running a System in optimal conditions.
    May be Safari is one step in advance on its time but lambda users are paying the price for it.

  • Java kills my Safari and slows computer

    Everytime I run into Java (script or applet) while surfing on Safari it takes forever to load (at least 3-4 minutes) then slows down every other application until I quit Safari (i.e. copying and pasting in Word takes 5x as long if Safari is running in the background-but only after loading Java). I have all my Safari and Java updates installed. I have emptied my cache, cleared my history, trashed my safari icons folder and set it to read only, I've turned off all my auto-fill preferences, and I even trashed and reinstalled Safari, preferences and all. I have always had issues with Safari and Java, but things seem to be worse since I upgraded to Tiger. Only have this problem on my Powerbook, my G4 tower (which is 3 years older) has no problem loading or running Java, even after the Tiger upgrade. I thought it might be a memory thing, so I ran a hardware test, but everything passed. Any thoughts?

    Nevermind. I found my answer! I just cleared my Java cache (duh!) If anyone else has a similar problem go to: Applications>Utilities>Java> and open your plug-in settings, click the cache tab and click clear. Worked like a charm. Java loads instantly now, and no slowing down other apps either!! Woo-Hoo! I unchecked "enable caching" to keep it from happening again, of course you can limit your cache size too.

  • Safari 3.1 and Security update on PowerPC G5 dual 2.5 now super slow HELP !

    I installed the safari update and security update today and now my Mac is running Slower then it ever has. I have a PowerPC G5 Dual 2.5 liquid cooled 2.5gigs of ram. I ran the hardware test disk and all checked out fine I really have no idea what to do and this machine is running like a hog. I would appreciate any help anyone might have for me.

    If your Safari keeps crashing, or if you are updating Safari (or just have):
    Input Managers and other plug-ins from third parties can do as much harm as good. They use a security loophole to reach right into your applications' code and change that code as the application starts up. If Safari is crashing, the very first thing to do is clear out your InputManagers folders (both in your own Library and in the top-level Library), log out and log back in, and try again.
    So, disable all third party add-ons before updating Safari, as they may not have been updated yet for the new version. Add them back one by one. If something goes awry, remove it again and check on the software manufacturer's website for news of an update to match your version of Safari.
    Most errors reported here after an update are due to an unrepaired or undetected inherent fault in the system, and/or a third party ad-on. Add-on that have been frequently mentioned here, among others, for causing such problems are Piclens, Saft, AcidSearch and Pithhelmet. If you have them, trash them and go the developer's sites to see if new versions are available for Safari 3.1.
    You should also ensure, if you are running Tiger 10.4.11, that you have downloaded and installed the correct version for your Mac of Security Update 2008-002. Like all security updates, this requires a restart and a permission repair.
    As Leopard also uses Safari 3.1, much of the above may well also apply to Leopard, but is not guaranteed. Moreover:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Safari in Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1
    To reiterate, Input Managers reach right into an application and alter its code. This puts the behavior of the affected application outside the control and responsibility of its developers: a recipe for problems. That's not to say that issues absolutely will ensue as a result of Input Managers, but you, as a user, must decide. If the functionality of a specific Input Manager or set thereof is really important to you, you may well choose to assume the associated risk.
    Again, the advice is to remove all Input Managers from the following directories:
    • /Library/InputManagers
    • ~/Library/InputManagers
    especially prior to system updates (they can always be added back one-by-one later).
    Additionally try this:
    Empty Safari's cache (from the Safari menu), then close Safari.
    Go to Home/Library/Safari and delete the following files:
    form values
    download.plist
    Then go to Home/Library/Preferences and delete
    com.apple.Safari.plist
    Repair permissions.
    Start up Safari again, and things should have improved.
    If not, MacFixit have published a very detailed (very!) article on speeding up a slow Safari, here:
    http://www.macfixit.com/article.php?story=20070416000657464

  • I have a macbook and was having trouble with safari so I removed it and am trying to re-download but it says snow leopard and lion are too big. which version of safari can i download?

    I have a macbook and was having trouble with safari so I removed it and am trying to re-download but it says snow leopard and lion are too big. which version of safari can i download?

    Which operating system are you running? Not sure, click the apple on the left of the menu bar, the click about this mac. It will say version 10.6.x or 10.7.x.

  • Safari issues opening ebay and other sites

    Why is Safari inconsistent when opening some ebay pages? I also have issues logging into captial one and household bank credit card management pages????

    I experience similar problems with eBay and Bank of America (after login, I cannot get the selected accounts page to open).
    In most cases, the problem first asserts itself by a very slow or stopped progress bar; then the error dialog says something about not being able to interpret the page coding, or it may simply say timed out or server not responding.
    If I then start Firefox and access the very same pages, those same sites work perfectly (latest version of Firefox).
    My guess is that Safari is not using standard HTML, or perhaps those websites that don't load have started using somet newer coding that Safari does not interpret properly.
    Anyway, I've made Firefox my default browser for the time being.

  • Safari constantly freezes and is slow.  Just fix it Apple.  Who do you think you are, Microsoft?

    Safari constantly freezes and is incredably slow.  I have tried every "fix" on the Internet. Nothing works.  Just fix it Apple.  Stop pretending it is not a problem. 

    *********** PROBLEMS FIXED ************
    I have spent the last month trying to get my iPad 2 running like it did before 8.0 and 8.1. Finally chatted with Apple support for two hours trying many things. Then I  followed their instructions to do a full factory reset, reinstalled all my apps, and recreated all of my email accounts.
    Nothing, nothing, nothing worked! My iPad still runs crappy and web browsing (on any browser) was still tortuously slow and choppy.
    Then I tried this..... I put the iPad on a shelf,  went out and bought a Surface Pro 3. Now my tablet is running with lightning speed with an abundance of apps, and the user interface is performing great!
    Bye Bye Apple.

Maybe you are looking for

  • 9.0.3 plsql web service bug?

    I've been building plsql web services for several days, and everything has been fine. I've been adding new functions on the database side, and editing my web services using the JDev wizard. Now it's all stopped working, and I'm getting an "unexpected

  • User-Defined tasks per application server

    Hi guys, In the Central Systems Administration, I am able to create user-defined tasks for our production system. These tasks appear in the SOLUTION_MANAGER main window as tasks on the system. My question is, how can I create a user-defined task for

  • How are the Basis Config Steps involved in sending an SMS through Workflows

    Hi Every one, WE are implementing sending SMS's through workflows what are the various Configs that need to be maintained.. Regards, Raj

  • I lost my music when I tried to authorize my iPod for my new MacBook Pro.  Is there any way to get it back?

    I was able to get a MacBook Pro for college this year and I tried to transfer my music from my iPod Nano to my laptop.  Everything was going smoothy until I had to autherize my laptop for the music.  To do this I had to enter my Apple ID and password

  • Importing from desktop to LR

    i have pictures on my desktop that i am trying to import into LR.  On the import page, I have chosen source, destination and copy. However the import button at the bottom right is greyed out.  How do I import  thanks you joanlvh1