File/image usage

show which images, pages, etc are currently being used in a
site? I have a large site that is now over it's size limit
(hosting), and I'm sure I have old things in there that I no longer
need. Is there a way to check?
Thanks,
Sandy

> show which images, pages, etc are currently being used
in a site? I have a
> large site that is now over it's size limit (hosting),
and I'm sure I have old
> things in there that I no longer need. Is there a way to
check?
dw menu-->site-->check links.
after fixing broken links, change pulldown to show "orphan
files"
that list will show files that dw can't find any links for.
NOTE- files linked by server side scripts, third-party
JavaScript, and other
things will be seen as orphans, even though the files are in
use.
Also- you need to run this a couple of times, and recreate
site cache each
time. Say you delete an html page- the images used in that
page are not
orphans first time, they are second time.
suggest:
Make a current backup copy of the local site folder
Move the orphan files, don't delete them till positive.
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • File system usage report chart generation - automated via reports and email

    Hello,
    I have requirement where I have to generate a monthly file system usage chart (just like a tablespace total_mb, used_mb, free_mb....) and mail it directly to the client.....
    Any ideas or suggestions would be welcome....
    Thanks,
    S.

    It's a pretty open-ended question, because a number of things can be causing slow performance.  You mention needing to look at ODBC connection performance - I found that using ODBC drivers for iSeries was very slow in the past.  You might want to look at using the JDBC driver in the IBM JTOpen Toolkit - it made a big difference for us when we were querying iSeries in the past.
    When you refer to "reports" in this thread's title, do you mean reports from ColdFusion Report Builder?  Or to just ColdFusion .cfm pages?  How complex are these reports?  How much information is displayed, especially in tabular form?  Just rendering huge HTML tables (as in thousands of rows of data) will often cause browsers to become temporarily unresponsive or hang.  If you provide more details, we might better be able to target where the "pain point" really is.
    -Carl V.

  • How do you use a dmg file image to download windows through boot camp?

    after reaching my limits in finding the answer to this problem/question i have, i finally decided to post it for everyone to feel my pain
    so i dont know if i would be spanked or something but i downloaded a windows xp sp3 from the internet through torrent
    it was originally an iso file so i changed it to a dmg by using disk utility
    now heres the problem:
    after that, i opened the dmg file image and mounted the virtual drive
    then when i started up the boot camp installation and clicked the "Start Installation" after about fifteen seconds it said that it couldn't find any disk installers!
    AARRGG
    it would be awesome if someone could help me
    and this other question that i did not mention above is:
    when you run windows xp on Parallels, is it slower than when you use windows on a PC or through boot camp?
    thanks and hope you have a nice day

    Hi and welcome to Discussions,
    so i dont know if i would be spanked or something but i downloaded a windows xp sp3 from the internet through torrent
    I don't spank you for that but I also don't comment on it as maybe this post will be deleted soon !
    it was originally an iso file so i changed it to a dmg by using disk utility
    now heres the problem:
    after that, i opened the dmg file image and mounted the virtual drive
    then when i started up the boot camp installation and clicked the "Start Installation" after about fifteen seconds it said that it couldn't find any disk installers!
    The BootCamp Assistant requires Windows to be on a bootable CD/DVD and will not work with any kind of images, iso or dmg.
    when you run windows xp on Parallels, is it slower than when you use windows on a PC or through boot camp?
    Yes, since it is not running 'natively' , using the real hardware, but it is running on a virtualized environment.
    How much slower really depends on the kind of programs you use in Windows, with typical Business/Office programs you might not even notice any slower performance, but with programs that depend on having access to the 'real' hardware, you will notice the slowness often right down to be un-useable.
    thanks and hope you have a nice day
    You too
    Stefan

  • Error message when I try to copy new files (images, documents) to mac from flash drive/SD card

    I am recieving an error message when I try to copy new files (images, documents) to mac from flash drive/SD card. The message is saying "operation cannot be completed because an item already exists with that name." They are brand new therefore not the same name? I cannot even put them in a brand new folder...  How can I fix this?
    Please help me!

    You don't need to recover the system.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy — do not type — the following line into the Terminal window, then press the space bar:
    dot_clean -m
    Switch to the Finder and drag the icon of the flash drive into the Terminal window. Some text will appear after what you entered. Press return.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear. Then quit Terminal and try the copy again.

  • My Illustrator file icons don't match what the actual file image is. How can I fix this?

    I'm using Illustrator 5.0 with MAC OS 10.8.4 and the Illustrator file icons are different thatn the actual file image. It's using the same image for 5 different files. THey all started out the same, but I edited them and then did a save as, but the file icon image didn't update. How can I fix this? I tried resaving the files and copying the files, but it didn't work.
    Thanks
    Michelle

    Are you on CS5 or the very old AI5, which a few vinyl cut shops may have?
    Do a save as , and enable PDF Compatible. That usually helps if the icons are blank, but may help you.
    If that don't help do a command I on the file, select the icon, and hit the delete key to see if anything happens.

  • Diadem file (image) to database

    Greetings all,
    Recently we've found a problem with our application. Instead of exporting report images to a network unit we'll have to save them in a database.
    Until now, we saved them to a network drive without any problem. We're able to access our database and insert text values from the application, but now we need to save files (images). This is where things become complicated. DIAdem offers a textStream object, but not a inputstream that allows to read a byte array...
    So, anyone had a problem like this and found a solution? I've found some samples of something similar on NI site, but all of them are for labview...
    Any help is greatly appreciated,
    Tomas
    Solved!
    Go to Solution.

    Sub Base64StringToFile(ByRef vCode, ByVal fullFilePath)
    if FileExist(fullFilePath) then
    FileDelete(fullFilePath)
    end if
    Dim oXML : Set oXML = CreateObject("Msxml2.DOMDocument.3.0")
    dim oNode : Set oNode = oXML.CreateElement("base64")
    oNode.dataType = "bin.base64"
    oNode.text = vCode
    Dim BinaryStream : Set BinaryStream = CreateObject("ADODB.Stream")
    BinaryStream.Type = 1
    BinaryStream.Open
    BinaryStream.Write oNode.nodeTypedValue
    BinaryStream.SaveToFile fullFilePath
    Set BinaryStream = Nothing
    Set oNode = Nothing
    Set oXML = Nothing
    End Sub
    Sub Base64FileToString(ByVal fullFilePath, ByRef vCode)
    Dim BinaryStream : Set BinaryStream = CreateObject("ADODB.Stream")
    BinaryStream.Type = 1
    BinaryStream.Open
    BinaryStream.LoadFromFile(fullFilePath)
    Dim oXML : Set oXML = CreateObject("Msxml2.DOMDocument.3.0")
    dim oNode : Set oNode = oXML.CreateElement("base64")
    oNode.dataType = "bin.base64"
    oNode.nodeTypedValue = BinaryStream.Read()
    vCode = oNode.text
    End Sub
     I used those two methods to read binary file and put it into base64 string. Maybe this helps.

  • Maverick OS: file index preview, delete but file image remains in preview.

    Anyone having same issue? Or have I found a bug?
    In 'Folder' file view lists, which there are 4 options to view, found in 'top left corner' of folder view: '4 square' - 'Stack' - '3 Coloumn' and 'Index file preview'.
    In the 'Index file preview' setting where the highlighted file appears in the preview window at the top of folder.
    If I delete a sleceted file, the deleted file image remains in 'file viewer window' above! (the file is sent to trash).
    This deleted file then throws ones highlighted slected file names out of sync with what image appears in the 'preview window'.
    This can lead to a mis deletation if you dont keep an eye on file name and corosponding preview image above.
    If I select file 'ascending or desending' in any of the file properties like 'name - date or kind' this does 'correct - reset' preview stacking images - but I'm sure this isnt how it should be?
    Thoughts?
    Jpvfx

    Hi tonmeno,
    Yes this is a hard issue to explain in words alone, but you sound like you are having the same concerns.
    Have I found a solution? No, not really.
    However, I think it only affects those files that were copied across in the Maverick update - this does not affect new folders generated after the Mavericks install. (?)
    What I did find was, lets says I'm in one of those old folders. I delete images or files not required (as we note the preview image remains) if I then go to the 'Change item arrangement' the (six tiny squares with a down arrow icon button), next to the '4 in a line viewing option' buttons (top left of finder window). Then select say arrange as 'name' I now get a reshuffled list of true files contents (previews corrected). But this is no way a fix.
    Not sure I can say the Finder is slow? 
    This sure is a strange one - And as we've both noted this can lead to unnecessary file deletion!
    Come-on Apple :-) we can't be the only ones? I'm running 2010 Macbook pro - on 10.9 with everything else up to date.
    I believe its a bug. 

  • Save and File Attachment usage rights for adobe reader

    With Acrobat Pro is there any way to save a pdf that has both save usage rights and file attachment usage rights?
    It seems that if I save the pdf with save the form data usage rights then I can no longer use createDataObject or setDataObjectContents methods when viewing with adobe reader or acrobat.
    createDataObject and setDataObjectContents require 'File Attachment' usage rights, which from the behavior I am getting totally disjoint from the save usage rights.
    I have no trouble using submitForm method with save usage rights applied to the pdf.

    Thanks for the replies, I also want to verify that a pdf created with acrobat that uses createDataObject or setDataObjectContents will no longer function properly in acrobat after saving the pdf with the additional usage permissions.  Is there any documentation that points to what  functions are crippled by saving the pdf with the various choices of  extensions enabled?  It seems as if I save the pdf with any type of extended usage rights for reader, then the pdf functions as if it was opened by adobe reader even if I have it open in acrobat?

  • Raw file image...

    I was importing raw file image to lightroom, after few seconds the image automatic help me to change the original colour but when I'm using JEPG doesn't have this problem.
    How to fix it?

    When Lightroom first loads a raw image it displays the JPEG preview that is part of the raw file. That JPEG preview will include in-camera settings. Lightroom then builds and displays a preview of the raw image data. That preview does not include the camera settings. It is that way by design, and it cannot be changed.
    The best way to compensate for that is to adjust one of your "normal" images until it looks the way it should. Save those settings as your default settings. From that point onward those settings will be applied whenever you import images into Lightroom. Then, for special situations, you can create presets that can be applied additionally.

  • When I try to open images I am getting this message: "The file "image.jpg" couldn't be opened because you don't have permission to view it." "Which I've tried - but it's not responding, plus its with all images now. Can anyone help?

    When I try to open images I am getting this message: "The file “image.jpg” couldn’t be opened because you don’t have permission to view it." "Which I've tried - but it's not responding, plus its with all images now. Can anyone help?

    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.iBooksX
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash. Relaunch the application and test.
    *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.

  • When I start MacBook Pro13 shows gray Screen and flashing file Image with question mark

    When I start MacBook Pro13 shows gray Screen and flashing file Image with question mark , it's brand new I just receive it from Apple Store .

    Startup Manager to select Startup disk.
    http://support.apple.com/kb/HT1310
    Repair Disk
    Steps 2 through 8
    http://support.apple.com/kb/PH5836

  • I moved my FCP events and projects folder onto my external hard drive and now everything is gone on FCP.  When I tried to reload those folders onto FCP nothing happened.  I still get the missing files image.

    I moved my FCP events and projects folder onto my external hard drive and now everything is gone on FCP.  When I tried to reload those folders onto FCP nothing happened.  I still get the missing files image.  When I try to import the folders manually something pops up that says it is incompatable.  It is possible to retrieve everything that was lost?

    "When I tried to reload those folders onto FCP nothing happened"
    Brownale6 how can  u reload folder in to FCP.
    As you said folders are moved to external disk but have you checked it should be like this
    For Event
    external disk>Final Cut Events>your event folder.  
    For project
    external disk>Final Cut Projects>your project folder.

  • Can't create the file "images/Dawings_By_Student_files/rss.xml." The disk may be damaged or full, or you may not have sufficient access privileges.

    I added two drawings to the web site I was working on in iweb..then tried to publish the changes and it gives me this "Can’t create the file “images/Dawings_By_Student_files/rss.xml.” The disk may be damaged or full, or you may not have sufficient access privileges."  Help I have no idea what to do.

    Try the troubleshooting steps under "Fix iWeb" here...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html

  • How do you permanently delete a file image in the catalogue

    how do you permanently delete a file image in the ?

    Highlight the image, press the delete key, in the dialog that appears click the button that says, "Delete from disk."
    If you want to delete multiple images you can go through your images and when one is highlighted that you want to delete press the X key. That will mark the image for deletion. After you have gone through the images on Windows you can press Ctrl/backspace to display the same dialogue I described above. And you can choose to remove the marked images from the catalog or to delete them from your disk.

  • Safari web-browser file/image upload - How to disable/hide 'Photo library option'

    I am using IPAD Air and want to disable Photo Library option from file/image upload (choose file HTML controls).
    In short click photo from camera and then upload using safari browser only no other option require to upload file.
    Is there any way to disable "Photo Library" option while doing camera click & upload and allow upload from camera only?
    Thanks in advance

    Hi Poovi,
    You can try below js code in your master page. It may help you.
    Note : you have to replace GUID in below code with GUID of your document library.
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"
    type="text/javascript"></
    script>
    <script type="text/javascript">
        $(document).ready( function () {
            if (location.href.indexOf('F0023430-B616-455F-9045-3ERT59713456') >= 0) {    // you must need to change GUID of your lib here    
                $("label:contains('Add as a new version to existing files')").prev('input').hide();
                $("label:contains('Add as a new version to existing files')").hide();
    </script>
    Thanks, Please mark it as an answer if it helps.

Maybe you are looking for