Convert Folder to Subsite

I manage a school website. We are required by law to post all
"vendor compliance" documents which show any possible confilct with
members of the school board. The easiest way to do this is to scan
all the documents to .pdf files and drop them into folders A-Z. I
want to create one folder named Vendors with the 26 alphabet
folders inside it. Then I want the Vendors folder to be accessible
with one link from our school board page on the website.
I think this is sometimes called a subsite, but I'm not sure,
and I can't figure out how to make it work. Can anyone help? I DO
NOT want to create links to the some 2000 documents!

"mjhtx47" <[email protected]> wrote
> I think this is sometimes called a subsite, but I'm not
sure, and I can't
> figure out how to make it work. Can anyone help? I DO
NOT want to create
> links
> to the some 2000 documents!
Hi --
I think you're talking about a sub domain. The URL would look
something
like this: vendors.yourschool.edu.
Talk to your hosting company about how to set up a sub
domain. In DW you
will need to define a new site for the sub domain. You need
to do this
because the sub domain requires you to upload the files you
want on it
separately from the existing site.
When you've established the sub domain, copy/paste the files
you want in the
sub domain from the existing site. Make sure to do the
copy/paste from
within DW as this will preserve your links. Then on the
existing site you
can add a link to the sub domain.
Hope this helps.
John

Similar Messages

  • Keep folder name in converting folder to library

    Hi
    Why when you convert a folder in a library your library don't keep the name
    its not handy, 
    Is there a method to eschew to retype the same name
    thanks
    Attachments:
    Forum 000012.png ‏10 KB

    Hello,
    What you saw it's the normal behavior, effectively when converting a folder in a library, you will loose your name.
    I will do a suggestion.
    Regards,
    Nacer M. | Certified LabVIEW Architecte

  • How to import files and convert folder structure to collections hierarchy?

    My RAW files are organised on disc by date, e.g.
    2013
    01
    02
    etc
    2014
    01
    02
    etc
    2015
    01
    2015-01-05 Family outing
    2015-01-27 Walk along the Canal
    etc
    02
    2015-02-01 Visiting granny
    2015-02-05 Golf
    2015-02-07 Skating competition
    etc
    I would like to batch import these into Lightroom (Lightroom CC) and have the folder structure above replicated in Collection Sets and Collections (i.e. one collection set for each year, and within each one have a collection set per month, and within that individual collections for the folders)
    Is there a way to make this happen automatically?
    Many thanks,
    /alan

    Hi.
    Trash the iPhoto Library folder that you created on your Mac, or rename it "iPhoto Library damaged" if you may need some of its contents. Copy the iPhoto Library folder from the backup into your Pictures folder. Hold down the Option key as you launch iPhoto and select "Choose Library" from the dialog. Navigate to the good iPhoto Library folder and open. iPhoto should launch and open your library in exactly the same condition it was in when the backup was made. If all goes well you don't have to import anything.
    If the library is still missing items, you can try a database rebuild. Hold Command and Option while you launch, select the first 3 options in the dialog, and rebuild. This can fix a library with a slightly damaged database.
    If the library still isn't working you may have to create a new library (Option-Launch, select "Create") and import your Originals folder from the backup library. This will give you the pictures back without creating duplicates, but your albums and other items will not be recovered.
    Regards.

  • Acrobat 9 / Outlook 2007 - Convert  Mail Folder to PDF Crashes Outlook

    Procedure:
    Opened Outlook 2007, selected email folder, right clicked email folder, selected from menu: Convert "folder" to Adobe PDF, selected save
    Problem:
    After many successful such folder conversions, one email folder in particular caused Outlook 2007 to crash when half way through conversion
    Solution:
    Finally, upon about the 7th attempt, I noticed Outlook crashed when attempting to convert one particular email file (within the folder)
    The name of the offending email file was visible during the conversion process
    I reopened Outlook, examined the offending email and discovered it contained Japanese characters in the attachments
    I then deleted the offending email and recommenced the procedure
    All ran smoothly as per normal, Problem Solved!
    I hope this helps somebody out there

    I searched everywhere on the web for a solution and came up with nothing - so when I finally worked it out (simple in hindsight) I just had to make the post (my very 1st!).

  • Creative Zen sleek, folder based explori

    Ok, long story short. i upgraded my Zen sleeks firmware, and for my disapoint, i founded out that whit the new firmware i cant use the "Creative media explorer", and im "forced" to use ether the crappy Mediaplayer 0, or the the "drag and drop" function.
    The problem is, for example i got folder "AC/DC" where i have lot of ACDC music, some of them are named by only the songs name, some of them are like "AC/DC - Highway to hell", some of them "ACDC - ****" and some of them "AC-DC - ****", now when i transfer that folder to my player, i got artist "AC/DC", "ACDC" "AC-DC" etc etc. Now, is there anyway to get rid of that "Artist, album" etc based browsing, and start to browse my music by folders?
    Or, is there anyway to get the new firmware to work whit the creative media explorer? Since whit media explorer it was possible to convert folder names to "Artist names".
    thanks. Carl

    Cat, this firmware is also available on the Creative US site; though the US Sleek was MTP/Janus out of the box (and its specs require WinXP), the specs didn't show Audible support. So there's definitely also a version of this firmware available that's not subject to EU volume-limiting regulations.
    With the similarities between the Sleek and the Micro (similar controls, possibly similar chipsets?), does this indicate that an Audible upgrade is pending for Micro firmware (.x and/or 2.x)? And if so, will the 2.x upgrade also include the battery fixes in ..02?

  • Create HTML that links 100 PDF files in a folder

    I would like to publish my wife's recipes on our website, hoping she can then have access from the iPhone. I have about a 100 and really don't want to use iWeb to create 100 hyperlinks to a file, especially since she is continuously adding recipes.
    Does anyone have a hint that could help generate such a page?

    Does anyone have a hint that could help generate such a page?
    Try AppleScript, it's easier than you think. Here is a short script:
    -- start script
    on run
        tell application "Finder"
            -- ask for folder contains PDFs
            set recipesFolder to choose folder with prompt "Please select the folder that contains recipe PDFs"
            -- get all files name
            set recipeFileNames to name of every file in recipesFolder whose name extension is "pdf"
            -- convert folder path to POSIX so can be used with Unix command
            set posixFolderPath to POSIX path of recipesFolder
        end tell
        set DOCTYPE to "<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><title>My Recipes</title></head><body>"
        set closeTags to "</body></html>"
        -- write DOCTYPE
        do shell script "/bin/echo " & quoted form of DOCTYPE & " > " & quoted form of (posixFolderPath & "My Recipes.html")
        -- write page title
        do shell script "/bin/echo " & quoted form of "<br/>My Recipes<br/><br/>" & " >> " & quoted form of (posixFolderPath & "My Recipes.html")
        repeat with recipeFileName in recipeFileNames
            -- write recipes entries
            do shell script "/bin/echo '<li><a href=\"" & recipeFileName & "\">" & recipeFileName & "</a><br/>'" & " >> " & quoted form of (posixFolderPath & "My Recipes.html")
        end repeat
        -- write close tags
        do shell script "/bin/echo " & quoted form of closeTags & " >> " & quoted form of (posixFolderPath & "My Recipes.html")
    end run
    -- end script
    Launch Script Editor, it can be found in /Application/AppleScript/ folder, copy& paste the script, I added comments above each line. You can run the script from Script Editor or save it as an application (File menu --> Save as..). Run the script, it'll do the following:
    1) prompt you to locate the folder which contains the PDFs
    2) make 'My Recipes.html' file in the same folder, that way you can upload the whole folder to you host.
    Be sure you *do not* have any file with the name 'My Recipes.html'.
    *If you're unsure of anything post back or make back up your important stuff (aka everthing you home folder).*
    Now, the script generates a very raw page with a list of PDF files and links to them.
    But potentially, AppleScript can generate html page with different catagories... such as: vegan, veggies or carnivore dishes... or French, Thai or Indonesian dishes... etc, etc... great for searching!
    But, you need to add those key words in the PDF file's Spotlight Comments (in Finder select an item, then hit command+i, you'll see comments field at the top on info pane).
    Spotlight Comments is meta data for Finder to find things (data base indexing).
    Lastly, you can automate all these by using AppleScript's Folder Action

  • Why can I not open an unzipped keynote file folder on my iPad or MAC?

    Why does my keynote file get converted into a folder and get zipped when I try and e-mail it?  It didn't used to be like this?  It used to be just a .key file.
    Then as a result this creates a problem in trying to transfer the keynote file to another iPad.  The other iPad cannot pull the newly converted folder into Itunes because Itunes only allows you to upload a single file and not a folder.  Plus, I can't open the file on a Mac either.  It says keynote file not supported.
    Any suggestions?

    There was an option in the Old Keynote "Save new documents as packages". If it's off, the document would be automatically zipped. As a result, you couldn't "Show Package" on it.
    if you selected it, it would save as a package and you could "Show Package"
    This second one is what the new Keynote is doing and there's no option otherwise. SO, I believe you'll have to .zip the file yourself before emailing in order for it to send successfully. However, I'll have to play around a bit more specifically with the iPad interactions.
    OH, just thought about another option. Have you tried sharing via iCloud instead? It provides a link that can be pasted in an email and loaded from both Mac's and iPads (and PC's if they have a recent browser, it'll load in iWork for iCloud).
    Message was edited by: Kyn Drake

  • Only ConverterServlet.class is in the APPS directory from the currency converter sample?

    I have this problem, the deploytool won't extract files to iPlanet/ias6/ias/APPS directory when I deploy my bean which I intent to use rich client to access and has no web application. Today I took someone's advice and deployed the currency converter sample and found out only the ConverterServlet.class was extracted in my APPS/j2eeguide/converter folder. It is really strange as only the web application file was extracted. I am using AIX Unix with iAS 6.0 SP1 installed. I check the ksvradmin and kregedit and all is there. Please help.

    Hi, I don't know what the necessary patches are but I tried to deploy currency converter sample on my laptop which has iPlanet installed. The folders of ejb and servlet are there in the APPS. I upload the very ear file on my laptop to the AIX and then use j2eeappreg to deploy it. Guess what, no luck. Can I be sure that it is the problem of the AIX? I didn't set up the AIX enviroment so I will have to consult others if it is the AIX enviroment.

  • How can I open Nikon D5300 NEF RAW files in the DNG converter?

    I have the latest version of the DNG converter, but it won't recognize my NEF files. I have a Nikon D5300, which is on the list of supported cameras. I have a 64 bit W7 computer.

    You don't open in the DNG converter. You use it to batch convert, folder by folder, and the converted copies can then be opened in the ACR version you have.
    Two things to watch: One, don't try to convert single files, it won't work. The DNG converter operates on folders. Two, set the compatibility level to the ACR version you have.
    If it still doesn't work, the files may have been corrupted by an early version of Nikon Transfer (later versions fixed). There is a utility  to "uncorrupt" them if that's the case (Google it).

  • Convert .exec to avi, mp4, etc

    Hi. I have a Video_TS.VOB files on a DVD that i need to get into iMovie to edit. I tried downloading EasyWMV in the download section on the Apple website and i converted the .VOB files to .mp4. BUT....when i put it into iMovie, it cuts out the frames i need. And i check to see if the frames were in the original converted folder and played it from there, and it's cut out there too. But it is on the original DVD. Any help is appreciated.
    Thank you.

    Thank you all for your help. I have figured out a way and wanted to update this post to share it.
    Download Prism Video File Converter (free, from the Apple Download section). Convert the files you want to .mpg, or whatever you want them to. It will save them to your hard drive. Then upload the converted files to iDVD...edit ur movie how u want, and burn it to disc right from iDVD.
    =)

  • Virtual folder to LLB programati​cally

    Hello all,
    Is there any way to get the “convert folder to LLB(see attachment)” option programmatically?
    Thank you.
    Attachments:
    forum.jpg ‏205 KB

    Hi,
    Thank you for you auggestion. that was helpful. But making things to be easy I created .LVLIB  physically(i am new to invoke, property node).
    Now,(attachment will help)
    we are getting Incomplete Population and showing error 56003.
    "Invoke Node in Add Folder.vi:7->Add Folder.vi:6->Add Folder.vi:5->Add Folder.vi:4->Add Folder.vi:3->Add Folder.vi:2->Add Folder.vi:1->Project Creation Tool.vi"
    after further diggning into error 56003,(http://forums.ni.com/t5/LabVIEW/error-56003-buildi​ng-packed-library/td-p/3057332?device-view=desktop​...
    I found this may due to the conflict present during this automatic building.
    To have, sureity of above I tried removing all possible files which may have dependancies(all VI and may be CTL) and only kept files which are impossible to have dependancies (only kept .txt, images and .doc files)and then found it is working exactly want we wanted.
    Further I am finding about,
    1. how to solve this 'conflicts' automatically ? and
    2. why this is happening only when we are building under .lvlib ?
    Thank you for your time.
    Attachments:
    forum.jpg ‏270 KB

  • IPod not recognized in iTunes 7....continued, what I've done so far.

    My iPod mini is not recognized in iTunes 7...but it recognized by Windows and this problem persists on all computers which makes me think it's the software on my iPod since it plays perfectly and charges up every time.
    I have tried the following:
    1. Resetting
    2. Changing the Drive Letter from E to I
    3. Deleting the Temp folder (as per an article's instructions) but some files would not delete.
    4. Optimizing the drive with Norton Systemsworks
    5. Changing USB ports
    6. Removing and reinstalling iTunes.
    I have read suggestions to do "Error-Checking" I found this by right clicking on the drive and clicking properties and then tools. There are two options here: "Automatically fix file system errors" and "Scan for and attempt recovery of bad sectors". What should I do? Why would I want to recover "bad sectors"?
    Before this first started, I started up my computer when my iPod was plugged in and got this blue screen message:
    Checking file system on E:
    The type of the file system is FAT32.
    The volume is dirty.
    Volume Serial Number is 4360-F78C
    Read failure with status 0xc000009c at offset 0x79c000 for 0x1000 bytes.
    Read failure with status 0xc000009c at offset 0x79c000 for 0x1000 bytes.
    Folder \iPod_Control\Music\F03 has bad clusters.
    Bad clusters removed from folder.
    Unrecoverable error in folder \iPod_Control\Music\F03.
    Convert folder to file (Y/N)? Yes
    Convert lost chains to files (Y/N)? Yes
    507633664 bytes in 82 recovered files.
    Windows is verifying free space...
    Free space verification is complete.
    Windows has made corrections to the file system.
    4038922240 bytes total disk space.
    335872 bytes in 29 hidden files.
    24576 bytes in 6 folders.
    2213265408 bytes in 519 files.
    4096 bytes in bad sectors.
    1825288192 bytes available on disk.

    The solution was worked out on this thread:
    http://discussions.apple.com/thread.jspa?threadID=941509&tstart=0

  • Ipod mini not recognized by iTunes 7

    When I was at my Uncle's house downloading music, I did too many songs at once and it froze...just stopped updating but the iPod summary page still showed up.
    Now, on my dell laptop, my ipod is recognized by the USB drive because the drive folder is shown when it's plugged in and it IS charging, but it's not showing up with iTunes. Any clues, anyone? Any help at all would be great.

    Also, I just noticed this "record"...when I got back from my uncle's house I had the iPod plugged in before start up and before windows loaded, the computer gave me this. After this I changed the drive to I.
    Checking file system on E:
    The type of the file system is FAT32.
    The volume is dirty.
    Volume Serial Number is 4360-F78C
    Read failure with status 0xc000009c at offset 0x79c000 for 0x1000 bytes.
    Read failure with status 0xc000009c at offset 0x79c000 for 0x1000 bytes.
    Folder \iPod_Control\Music\F03 has bad clusters.
    Bad clusters removed from folder.
    Unrecoverable error in folder \iPod_Control\Music\F03.
    Convert folder to file (Y/N)? Yes
    Convert lost chains to files (Y/N)? Yes
    507633664 bytes in 82 recovered files.
    Windows is verifying free space...
    Free space verification is complete.
    Windows has made corrections to the file system.
    4038922240 bytes total disk space.
    335872 bytes in 29 hidden files.
    24576 bytes in 6 folders.
    2213265408 bytes in 519 files.
    4096 bytes in bad sectors.
    1825288192 bytes available on disk.

  • ITunes no longer recognises my iPod

    when i connect my iPod to my laptop with the USB cable, my iPod displays the charging screen, but iTunes doesn't put my iPod onto the "Devices" list, so i cannot sync my music. There is a connection between my laptop and iPod, but not between my iTunes and iPod. I would appreciate any help to solve this problem. Thank you.

    I just had an interesting experience!!!
    I looked in the root of the Ipod and found a file called "BOOTEX.LOG" which was created at some time when apparently my windows tried to check the ipod as a disk volume, like below:
    Checking file system on F:
    The type of the file system is FAT32.
    One of your disks needs to be checked for consistency. You
    may cancel the disk check, but it is strongly recommended
    that you continue.
    Windows will now check the disk.
    Volume Serial Number is 9356-5ED8
    Unrecoverable error in folder \iPod_Control\Music\F05.
    Convert folder to file (Y/N)? Yes
    The \iPod_Control\Music\F04\LPAK.mp3 entry contains a nonvalid link.
    The size of the \iPod_Control\Music\F04\LPAK.mp3 entry is not valid.
    The \iPod_Control\Music\F03\PCST.mp3 entry contains a nonvalid link.
    The size of the \iPod_Control\Music\F03\PCST.mp3 entry is not valid.
    Bad links in lost chain at cluster 13459 corrected.
    Convert lost chains to files (Y/N)? Yes
    678690816 bytes in 189 recovered files.
    Windows has made corrections to the file system.
    3946135552 bytes total disk space.
    180224 bytes in 11 hidden files.
    114688 bytes in 7 folders.
    3892215808 bytes in 1082 files.
    53608448 bytes available on disk.
    16384 bytes in each allocation unit.
    240853 total allocation units on disk.
    3272 allocation units available on disk.
    I removed the files
    LPAK.mp3 and
    PCST.mp3 as well as
    the bad directory \iPod_Control\Music\F05
    the file "bootex.log" as shwon above and then... My Ipod was recognised after more than one year of being out!
    Hope this helps well for others too!

  • Best practice for viewing short home videos on AppleTV?

    Please help me find a simple way to view short home videos taken on a digital video camera, photo camera or cell phone on my Apple TV.
    I've been using AppleTV to showcase my photos for a couple months now, but all the short little videos I take along the way have been gathering dust in a general folder. None of them are significant enough to warrant building a full on iMovie, and all are in Nikon's AVI format. To date I have about 300 of them, hoping that one day they won't just gather dust.
    As I understand it these are the recommended steps that Apple encourages:
    1) Import movies from camera onto hard disk (Aperture prompts me to do this when I import photos)
    2) Import all movies into iMovie
    3) Export for AppleTV (creating new projects for each video, individually!)
    4) Import into iTunes
    5) Sync with AppleTV
    This is awful. For comparison, here is my current workflow for photos to get them to show on AppleTV...
    1) Import photos into Aperture.
    Assuming iTunes is already running (and it mostly is), there's not even a step two. iTunes is set up to sync a "Recent Import" smart album from Aperture to AppleTV so everything else is behind the scenes. A few seconds after importing I'm viewing new photos on my AppleTV.
    Since AppleTV is actually built for video, I'm hoping for a revised workflow that can showcase my movies as quickly as it does photos.
    I'm currently not running a hacked version of the AppleTV OS, but would consider it if it simplifies the process. Automator workflows, Finder Folder Actions, and AppleScripts are also fair game.

    Thanks pvonk. I get that video is more complex than photos, but Apple still wrote its photo applications to accept all sorts of photo file types (even the many proprietary RAW formats). So I don't think it's crazy to question why this workflow isn't easier for video. Especially when Apple is the biggest champion of integrated video solutions.
    Right now, here's my best guess at a workable solution. Care to weigh in?
    Setup:
    1) Attach a folder action to a folder (let's say ~/Movies/Imported/)
    2) Folder-Action runs shell script that converts videos to mp4 via HandBrake's command line tool
    3) Shell script triggers another folder action upon HandBrake completion to pushes the completed file to a new folder (let's say ~/Movies/Converted/)
    4) "Converted" folder action to import to iTunes (perhaps Applescript? Automator?)
    ~ if one could automatically add a meta tag (let's say "AppleTV") they could be added to a smart album on iTunes that is set up to sync with AppleTV
    *Workflow after Setup:*
    1) Import all movies to a folder (~/Movies/Imported/)
    Does this sound about right? My shell scripting skills are less than adequate for this, so if there is a way to accomplish this with AppleScript, that'd be ideal.
    Any other suggestions to simplify the workflow? The setup here still seems overly complex for a normal user. I can't imagine the folks at Apple really excited about the hurdles involved in this either, so I hope that they're working out a solution already.

Maybe you are looking for

  • Problem with Telnet

    Hi, I am using Telnet from the terminal application. I can Telnet to any device except one which says "trying" and it just stays there. If I use hyperterminal from Paralles (Windows XP) I can connect without any problem. Does anyone have any idea how

  • FMS Audio (MP3) Glitches - Hosting Issue or Not

    I've got several webinars that an associate of mine helped me build several years ago in Flash MX 2004. They are about 40 minutes long, but have been broken into about 8 chapters (seperate .swf files). The .swf files connect to audio (mp3) streams ru

  • Multiple select option in the screen painter

    Hi all, I want to give multiple select option for a particular field in the screen painter. how to provide it. Nitin

  • Calendar events are showing up two days early on my iPhone, how do I make them show up on the right day?

    Notifications are showing in my notification centre that birthdays are 1 day before they actually occur. Is this a general fault or can it be fixed? Also, the birthdays have been entered as part of the contact information, if this has any bearing on

  • Opening a word doc by pushing a button in Captivate 3

    I want my students to be able to click a box to print out a word doc (handout) at the begining of a course. How/where do you place the word file to get it to work?? Or is there a better way to do this? Thanks