Safari Caching

Okay.... I'm incredibly frustrated, but perhaps someone here is genius enough to save my day.
I'm hosting www.howcanidomore.com
it loads GREAT in firefox. (i hear it loads fine in IE as well, and I'm not worried about chrome yet)
Loads fine at first in safari- but once you refresh or click something like Home or Articles (in the category bar in the center of the page, in red) - then the pictures do not load. Once you have discovered a broken picture, if you refresh - the photos will load again. I have already received a complaint about broken photos.
Please note- there is a resizer script (timthumb.php) and I am hosted on godaddy. I know that the resizer script has something to do with this, but I'm not sure if it's a combination of things....or what exactly. The funny thing is that this will only happen in Safari, so - is there any sort of scripting I can do to bypass whatever it is that Safari does that other browsers don't do when either accessing scripts, or caching pages, or whatever is the cause? I am 99.99% sure that all of my permissions are correct,
Unfortunately, the people at godaddy can't provide me with the Apache error codes that would make this a lot easier. - Notice that if you right click and open a broken photo in a new tab - you will see an error.
If you need to view the script from timthumb, i can provide that.
If you want to take this topic into email, I will resolve the topic as solved once it is so.
Thanks!
Message was edited by: juanvaljuan
Message was edited by: juanvaljuan

is there any sort of scripting I can do to bypass whatever it is that Safari does that other browsers don't do when either accessing scripts, or caching pages, or whatever is the cause?
Maybe, but first we'd have to know the actual cause of the problem, and since most of us aren't web developers, you'll have to determine that first before anyone could possibly help you.
Mulder

Similar Messages

  • Is it possible to find readable info in safari cache

    We are using Safari the OS is Leopard.
    I wondered if it is possible to view a web page off line from the Safari Cache in a readable form for non techies. We know the date & time we visited the page
    The information we want is the kind of info we can view in the activity window of Safari after we have visited a web page. I have tried cachediskinspector but it doesn't work in Leopard although it seems that it would give the info I am looking for
    Thanks for your help

    thank you both for taking the trouble to reply
    I had already tried filejuicer without any success - I need to be able to open something for a certain time & date. I emailed the person who developed the programme & he said that filejuicer wouldn't be able to do what I needed although he thought there should be a way of finding what I need
    Tried the history hound & that doesn't seem to give what I need either - I need to know what was on the webpage when I visited rather than a list of sites I visited have tried cachediskinspector using tiger & that would give me exactly what I need but it hasn't been updated for use on Leopard
    If anyone else has any ideas I would be REALLY grateful
    thanks again

  • How to move safari cache file to another location

    How do I do this?  I want to either move it to a RAM drive, or to an SSD drive that is inserted into the Expresscard 34 slot.
    My safari cache is about 6 GB... I hold about 175 tabs open at all times and the constant background refreshing can make things freeze up.
    Or I could turn in off via the Develop Menu...

    Better to never move system files from the location they presently. Safari may not launch at all.
    Best to select: Disable Caches from the Develop menu.

  • Clearing Safari Cache Automatically when it Quits

    I work for a school district that uses Safari 2.0.4 on eMac’s running 10.4.7 and 10.4.8 and the students have their network home folders located on a 10.4.8 Server.
    I would like to have Safari clear its cache every time a student quits Safari or logs out, but don’t see a way to have this done automatically. Is there a script or utility out there that clears the cache automatically?
    Thanks for the help!

    Hello again,
    Ok, let's give this a go then
    Personally, for editing scripts I like to use the command line 'vi' editor, but for starting with that may scare you off so lets use the regular TextEditor application for the time being.
    Fire up TextEditor and open a new document. Change the type of the document to be a plain text file. This can be done via the Format menu -> Make Plain Text option (if it says Make Rich Text, then the file is already in plain text mode).
    In the editor, copy and paste the following, but remove the line numbers I've added:
    1 #!/bin/bash
    2
    3 logFile=/tmp/SafariCleanerLog.txt
    4
    5 echo "-----------------" >> $logFile
    6 echo `date` >> $logFile
    7 echo "" >> $logFile
    8 echo "Deleting Safari cache files in: $HOME/Library/Caches/Safari/" >> $logFile 2>&1
    9 echo "" >> $logFile
    10
    11 rm -rf $HOME/Library/Caches/Safari/* >> $logFile 2>&1
    Some lines may appear to wrap around in the webpage, so use the line numbers as your guide to know if something is supposed to fit on one line or not.
    This is what it does:
    - The 1st line indicates what particular shell application to use to execute this script (/bin/bash in this case)
    - The 3rd creates a variable that I'm using to store the path to a log file for what this script is doing
    - Lines 5 to 9 append some logging information to the logfile we've decided to report to
    - Line 11 does the actual deletion of the Safari cache files. rm is short for remove, aka delete, and the -rf means recursively (i.e. all subdirectories in the Safari cache folder) and forceably (i.e. don't askif you are sure for each and every file). The cryptic 2>&1 at the very end is to make any error messages that rm might generate appear in our logfile. If you try out the commands to see how they work, please please please be very careful with rm, once a file has been rm'ed its gone - it doesn't go to the Trashcan
    Note that if you want to see more about what each of these commands do, you can use the man pages either from the Terminal itself or here. ('echo' is a built-in command to bash, so you would need to read the bash manpage for information on that)
    Ok, so now we have a script. Save that on your Desktop with a name that makes sense for you (e.g. SafariCacheCleaner.sh - sh is the standard extension used to indicate something is a script, it's not required)
    Now we need to execute a few Terminal commands to make this work when a student logs out. Fire up the Terminal from /Applications/Utilities/Terminal.app
    The first thing we need is somewhere to place the script that is out of bounds to regular users, students, etc. OS X already has an area for scripts in /Library/Scripts/, so you may want to create your own area under this folder. For example, I created a 'Custom' folder via the following:
    sudo mkdir /Library/Scripts/Custom
    You may want to replace Custom with something else, like SchoolAdmin for instance. sudo is a command that gives the executor temporary administration rights. When you press return after typing the above command, you will be asked for a password - enter the password for your current user account and press return (note that you will not see anything appear in the Terminal while you are typing, this is a security feature).
    Next up, we need to copy the script to this location and give it the correct permissions to be executed:
    sudo cp ~/Desktop/SafariCacheCleaner.sh /Library/Scripts/Custom/
    sudo chmod 755 /Library/Scripts/Custom/SafariCacheCleaner.sh
    In this case, sudo will probably not prompt you for the password as it trusts access for a few minutes. If you leave things for, say, 10 minutes, it would ask you for your password again.
    cp is the command for copying files/folders.
    chmod is used to change permissions on a file. In this case, 7 means the owner of the file can write/read/execute the file, the first 5 means anyone in the same unix group as the owner can read/execute the file and the second 5 means everyone else can read/execute it.
    Lastly, we need to tell OS X that we want this script to run everytime a user logs out. This can be done with the following command (this is one long line that the browser may wrap):
    sudo defaults write com.apple.loginwindow LogoutHook /Library/Scripts/Custom/SafariCacheReset.sh
    Hopefully, that should be it. You can test it out by logging out of your account and logging back in. The /Users/YourUsername/Library/Caches/Safari/ should be sparkling clean now.
    I've tried to be a bit verbose to explain what's going on, so it's not as complex as it may look at first.
    If you have any questions at all, feel free to ask - it's better to be sure of what you are doing when it comes to the Terminal sometimes.

  • My MacBook uses Mac OS X Version 10.6.8. I am unable to access some websites, such as Facebllk, Gooogle, etc, but I can access other websites such as MSN, Amazon. I have emptied the Safari cache with no change. Appreciate any help.

    My MacBook uses Mac OS X Version 10.6.8. I am unable to access some websites, such as Facebook and Google, but I can access other sites such as MSN and Amazon.  I have emptied the Safari cache with no change.  Appreciate any help in solving this problem.

    My MacBook uses Mac OS X Version 10.6.8. I am unable to access some websites, such as Facebook and Google, but I can access other sites such as MSN and Amazon.  I have emptied the Safari cache with no change.  Appreciate any help in solving this problem.

  • About Safari cache and iPhoto library fragmentation...

    Some days back, with the help of iDefrag I found out that my entire HD was badly fragmented inspite of having 95GBs free space. So I decided to do what an average mac user does to fix this... I backed up everything my my TM drive and restore the entire from there. Then I ran iDefrag and things were neat. A lot of my speed related issues are not solved.
    However, I do notice that Safari cache and iPhoto library are always reported as fragmented portions on the HD by iDefrag. Infact, I often see the colored ball - wait indicator when switching tabs in safari or when I work with photos in iPhoto. I dont mind clearing the cache of safari. i'm somewhat worried about my iPhoto library. I have all my personal and family pics in one library as thats easier to maintain.
    I just want to know what is the ideal thing for a mac user to do here...
    PS: noticed that even linux virtual disk of vmware is completely fragmented, which i made after i restored with TM.

    Watch your CPU usage via the +Activity Monitor+ app (in your Applications/Utilities folder).
    When it starts, select either +All Processes+ or +Active Processes+ in the toolbar, and sort the list by the +% CPU+ column, so the highest numbers are on top, and select the CPU tab towards the bottom.
    For this purpose, also select +View > Update Frequency > Less Often+ from the Menubar.
    Various processes will "spike" up and down normally as they do things, then are idle, so you need to watch it for a while and get a feel for the processes that are using the most CPU, and the +% Idle+ at the bottom.
    When the slowdown occurs, see if something changes significantly, especially if the +% idle+ goes to near zero. If that happens, see what process(es) are using the most CPU.
    If the process(es) involved aren't familiar to you, post their names here (and or check this out: http://triviaware.com/macprocess/all)
    You may also want to select the +System Memory+ tab towards the bottom. Keep an eye on the total of Free and Inactive memory (if they're near zero, you may need more), and the +Page outs+ (if that's high, it's another indication you may need more memory).
    And see this Apple Support article: Mac OS X: Reading system memory usage in Activity Monitor

  • Safari cache not appearing in old time machine backups

    I'm looking for the safari cache to restore something from old history/bookmarks from last year although it doesn't exist on the time machine back ups, even searching in other locations... Could this be some Snow Leopard => Lion conflict or restriction??
    This is the one I'm currently looking at and trying to find the old version of...
    I can find this folder by simply typing 'Safari' into spotlight but when searching on time machine, it doesn't seem to exist.. a security measure perhaps?? I have no other reason that this isn't being backed up like in the exlusion preferences.
    Any help greatly received.
    Thanks, Ed

    can you try restarting your computer then try deleting it again?
    if it does not help, have a read to these links
    http://forums.appleinsider.com/showthread.php?t=80598
    http://support.apple.com/kb/HT1427
    https://discussions.apple.com/message/17519859
    what i usually do is format the external hard drive. i know i'm gonna loose data but as long as you know that all the important files are present on you computer, should be no issues.

  • IPhone Safari Cache Query/Offline Webpage Access

    Hi,
    OK so I'm thinking of getting an iPhone to replace my Windows based PCC phone.
    One of the things I use most is my eBook reader which I know is not supported by the iPhone and I can't find any software that I can use at present.
    I've had an idea and wanted to run it by anyone who can either try it or has an answer.
    What I thought of was publishing my eBook as a single page on my home website. Then I could use Safari to access the book as a HTML page and read it from there.
    My question is :- would I need to be constantly connected to the web (via Edge or Wifi) in order to read the book or could I just connect initially, have Safari cache the entire book as a web page and then read it 'offline'
    I'm particularly interested in whether I could 'reload' the book page after closing Safari e.g would Safari load the cached page.
    The books aren't very big, certainly less than a couple of meg so I'd hope Safari can cope.
    I definately be looking to keep the entire book to a single page so Safari only has to cache it once.
    Any suggestings, views, comments appreciated.
    NIALL 8-)

    Yep, that did it. Thanks!
    Must have turned it off or something...

  • How to stop Safari caching?

    When I visit this discussion group in Safari on my iPhone using the link,
    http://discussions.apple.com/forum.jspa?forumID=1274, I often get old versions of the page.
    Is there some way to force Safari to stop caching and get the latest page?

    nedhamilton wrote:
    Is there some way to force Safari to stop caching and get the latest page?
    There is not. However, you can clear your Safari cache in Settting > Safari > Clear Cache

  • My keypad keeps disappearing when using google -- but only in the horizontal position.  In vertical, it works fine.  I have powered off and on, checked that Safari Instant is on, and cleared Safari cache.  Any help will be appreciated.

    My keypad keeps disappearing when using google -- but only in the horizontal position.   Vertically, it works fine.  I have powered off and then back on.  I have checked that Safari instant is on, and I have cleared Safari cache.  Nothing has worked so far.

    Okay -- it fixed itself.  Without any intervention, after all else had failed, and I was willing to live evermore with vertical searches.  If only everything else in my house mysteriously recovered from the broken state.
    Have no idea what was/is going on with the disappearing keypad.

  • Safari Caches (advanced question)

    Hi,
    I've developed a bad habit lately, and that's leaving my browser open and running 24/7. I open a few pages I want to read, but don't get round to it, so I just leave it open. I probably had it running for a week just recently.
    Whether what happened next is a coincidence or not I don't know, but one day last week, my mac ran deadly slow. It was barely usable. I ran xbench, a performance tester, and got a score of 24 instead of over 120! I looked everywhere to find out what was killing the system but to no avail. The next day, everything appeared to be fine, and has been since, although there's been the odd occasion where it's lead me to believe that there's still a problem. Last resort would be to reinstall the OS.
    Anyway, I started to look into Safari's Caches. I'm running Safari 4.0.3 and this is my current Safari Cache folder:
    http://lh3.ggpht.com/J7HU2sJiEY/TMxp0e8VI2I/AAAAAAAAAU0/dwU786YhfKY/Safari%20Cache.jpg
    But I found tons of other files that look like caches, here:
    http://lh6.ggpht.com/J7HU2sJiE_Y/TMxp5l3Td8I/AAAAAAAAAU4/G5TnFkNkEo/s640/Caches.jpg
    Opened up here:
    http://lh6.ggpht.com/J7HU2sJiEY/TMxp7OyxuCI/AAAAAAAAAU8/IlAA6fluUHk/Old%20Safari%20Cache%3F.jpg
    and here:
    http://lh5.ggpht.com/J7HU2sJiEY/TMxp8faHqBI/AAAAAAAAAVA/HyqlZQga0Qs/Other%20Cache.jpg
    Now, what the heck are all these doing there, and can I delete them? There's over 1.3GB of them!!!
    Did previous versions operate differently? What happens when you empty the Cache?

    Hi,
    If you are running Safari 4.0.3, you need to update Safari. That's an outdated version and could be why you are experiencing problems.
    Click your Apple menu  Software Update.
    After the updates are installed, repair permissions.
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Another way to empty the Safari cache is to open a Finder window select your Home Folder in the Sidebar on the left. Then open the Library folder, then the Caches folder, then the com.apple.Safari folder. Move the cache.db file from the com.apple.Safari folder to the Trash. Relaunch Safari.
    Emptying the cache and deleting History will help Safari's performance by clearing out temporary files.
    Carolyn

  • I want to empty the Safari cache in OS 10.8.5, but cannot find the cache in the drop down menus. Where is it? Or do I go to preferences-privacy and select remove all cookies and website data?

    I received a 'bogus' email saying I had a virus and to click to scan my entire OS. I did not click - I trashed the email.
    I wanted to empty my cache but couldn't find it (OS 8.10.8.5) -- In the main menu, under Safari, the only thing I found was to select preferences, then privacy -- where a window showed an option of removing some or all cookies and other website data.
    Is that what I should do or is there a cache somewhere on the laptop?
    Thanks

    You were scammed. There's nothing wrong with your computer. You don't need to empty the cache.
    Helpful Links Regarding Malware Problems
    If you are having an immediate problem with ads popping up see The Safe Mac » Adware Removal Guide and AdwareMedic. If you require anti-virus protection Thomas Reed recommends using ClamXAV. (Thank you to Thomas Reed for this recommendation.)
    Open Safari, select Preferences from the Safari menu. Click on Extensions icon in the toolbar. Disable all Extensions. If this stops your problem, then re-enable them one by one until the problem returns. Now remove that extension as it is causing the problem.
    The following comes from user stevejobsfan0123. I have made minor changes to adapt to this presentation.
    Fix Some Browser Pop-ups That Take Over Safari.
    Common pop-ups include a message saying the government has seized your computer and you must pay to have it released (often called "Moneypak"), or a phony message saying that your computer has been infected, and you need to call a tech support number (sometimes claiming to be Apple) to get it resolved. First, understand that these pop-ups are not caused by a virus and your computer has not been affected. This "hijack" is limited to your web browser. Also understand that these messages are scams, so do not pay any money, call the listed number, or provide any personal information. This article will outline the solution to dismiss the pop-up.
    Quit Safari
    Usually, these pop-ups will not go away by either clicking "OK" or "Cancel." Furthermore, several menus in the menu bar may become disabled and show in gray, including the option to quit Safari. You will likely have to force quit Safari. To do this, press Command + option + esc, select Safari, and press Force Quit.
    Relaunch Safari
    If you relaunch Safari, the page will reopen. To prevent this from happening, hold down the 'Shift' key while opening Safari. This will prevent windows from the last time Safari was running from reopening.
    This will not work in all cases. The shift key must be held at the right time, and in some cases, even if done correctly, the window reappears. In these circumstances, after force quitting Safari, turn off Wi-Fi or disconnect Ethernet, depending on how you connect to the Internet. Then relaunch Safari normally. It will try to reload the malicious webpage, but without a connection, it won't be able to. Navigate away from that page by entering a different URL, i.e. www.apple.com, and trying to load it. Now you can reconnect to the Internet, and the page you entered will appear rather than the malicious one.

  • Mobile Safari cache - Correct page not displaying on "back"

    Frequently when I am browsing a site I will 1) go to the home page, 2) tap a link to a subpage on that site and then 3) tap the back button to return to the home page.  I am finding that frequently the home page will be a cached version from, usually, the previous day and not the most current home page.  I've experienced this on many sites.  I've tried to "fix" this by Clearing History and Clearing Cookies and Data but it keeps happening, although not all the time.  I think that this started with iOS 5, but I'm not sure.  Any ideas as to why this is happening?

    You are not the first user to report this problem with Safari and iOS 5. Here is a rather lengthy discussion about the issue. There maybe something in here that will help you.
    https://discussions.apple.com/thread/3385843?start=0&tstart=0
    I don't know that I have seen a fix for it yet. You could download another browser - I use iCab Mobile and Atomic and they both have far more to offer that Safari does. I know this does not solve the problem - but it may end the frustration.

  • How can I clear the Safari cache without removing cookies?

    Safari preferences seem to only allow you to delete all website data. Is there a way of clearing the cache but leaving cookies and browsing history?
    I have Safari version 6.0.5 and OSX 10.8.4. Thanks.

    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    http://support.apple.com/kb/PH11926
    Best.

  • How do I empty Safari cache in Mavericks?

    How do I empty Sarari cache in Mavericks?  I can't get some websites to open.

    Safari / History / Clear History.

Maybe you are looking for

  • Import cannot be resolved

    Hi All,     Our NWDS always shows that certain import which generated by meta data cannot be found or resolved. For instance "import com.xx.sc_os_sale.dc_ws_styleinfo.comp.wdp.IPrivateStyleInfoComp;" I can find the code file in my local path "D:\Docu

  • When adding a Webi to a Promotion Management Job many extra Objects are added

    Hi Experts , Environment : BI 4.0 SP6 , no patches We have webi reports based on .UNX and .UNV When we are creating a job to promote reports based on .UNV , .UNX Business layers and connections are getting added to the job. We found that , webi repor

  • Upload into Database

    Hi, I'm trying to find out how the PL/SQL "procedure upload" actually uploads a file from a users hard disk into a remote database. I presume this doesn't use ftp, but some other mechanism. Can anyone shed any light on this please? TIA - Julian.

  • Work list for Invoice List

    Hello, I have an issue with the work list (VF24) for invoice list. I have two billing doc: #10 billing type F2 (posted to FI) #11 billing type F2 (posted to FI) I created an invoice list for these two invoices: #91 billing type LR Later I have a thir

  • AE render for realtime HD in Premiere

    Hi all, I'm working on a show shot on p2, 720p 23.976 mxf files. Editing is going great, but I'm doing some After Effects work that needs to be brought into the Premiere project. What format can i render to in AE that will allow realtime playback in