How to redirect a sub domain to a specific page in Sharepoint Online

Hi, 
  My Organisation has a O365 account, and hoisted the public website on it, now user requests to have a friendly url for a specific page on the public website.  I've added a sub domain on O365.  but i cant find ways to redirect this domain
to the page.  How can i do so? 

Hi,
If you need to redirect the sub domain to a specific page in SharePoint Online, you need to rename the Public Website with the sub domain.
Then configure the friendly URL for the page in the Public Website.
http://office.microsoft.com/en-001/office365-sharepoint-online-enterprise-help/upgrade-your-public-website-HA102801184.aspx?CTT=5&origin=HA102828142#_Step_5_%E2%80%93
Or you can use the managed metadata navigation for the Public Web site and configure the friendly URL for the page.
http://jeffkelly.com/2014/05/office-365-public-website-what-no-managed-metadata-mms-navigation/
In the meanwhile, you can post your question to the forum for Office 365: http://community.office365.com/en-us/f/default.aspx.
More experts will assist you, then you will get more information relation to SharePoint Online.
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • How to show property bag values of site collection in web part on landing page in sharepoint online?

    How to show property bag values of site collection in web part on landing page in sharepoint online - office 365?

    You can use JavaScript Client object model to read the property bag values. Example:
    function getWebProperty() {
    var ctx = new SP.ClientContext.get_current();
    var web = ctx.get_site().get_rootWeb();
    this.props =  web.get_allProperties();
    ctx.load(web);
    ctx.load(this.props); //need to load the properties explicitly
    ctx.executeQueryAsync(Function.createDelegate(this, gotProperty), Function.createDelegate(this, failedGettingProperty));
    function gotProperty() {
        var myPropBag = this.props;
        alert(myPropBag.get_fieldValues()["allowdesigner"]); //returns the value of the key allowdesigner
    function failedGettingProperty(args, sender)
         //handle errors here
    Source:
    http://sharepoint.stackexchange.com/questions/37198/grab-a-specific-property-bag-using-ecma-script
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • How To Redirect to a domain and lock a domain?

    Hi, if anyone can help me to make a target a URL using AS2 for example when anyone try to open my swf rather then the domain i selected another domain will open by it self and also if anyone try to decompile it will connect to the target URL... have any idea ? for example in flash secure optimizer they have domain lock also redirect to a domain but what i want is to do that with action script.. can any one help me out :?

    I'm a little confused by your question. When you add an 'Accepted Domain' your saying for you Org. "I want to accept email for this domain.". What this means is, your accepted domain needs to still be a valid, real domain. Is this domain a sub/
    child domain of your root? If this domain you added does not exist, obviously, you cannot create a new mailbox for this domain. I think what you want would be if you had a child domain setup in your Org. and you created a mailbox within that domain.

  • How to redirect from list edit form to another page using jquery in sharepoint 2013

    hi friends i have been trying to find a way to redirect from list edit form to another page using javascript and jquery
    i found lot of codes online but non of them are working for me.
    what i need is i have to save the data in the form and after that it has to redirect to another page. it has to get the url from hyperlink field of the item.
    please help me in this regards

    Not sure if you have gone through below links:
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPRedirectWithID
    http://blogs.askcts.com/2013/02/18/using-spservices-and-jquery-to-perform-a-redirect-from-a-sharepoint-list-newform-to-editform/
    Please ensure that you mark a question as Answered once you receive a satisfactory response.

  • How do I open a PDF to a specific page via the command line?

    Several questions about opening PDFs from the Mac OS X command line:
    1) How do I use the "open" command to open a PDF to a specific page? (I know I can open a document via: open doc_name.pdf)
    2) How do I use the "open" command to pass multiple arguments (page no, zoom scale, view mode, etc...) to open a PDF file in a specific manner?
    3) Does Preview handle the same parameters as Acrobat Reader? If not, what are the differences in options?
    I've spent hours searching for this answer and have come up dry. I've downloaded Adobe's "PDF Open Parameters" document -- it lists all of the parameters I need, however I can't get any of them to work from the command line.
    My goal: Open a PDF from the command line to a specific page. At first glance, I thought this would be simple to do and find -- however, after a lot of searching I haven't found an example on how to do it.
    Anyone have any experience doing this, and care to share?
    Much appreciated! ---> Kelsey

    I don't know of any way to do what you want using the 'open' command. It can probably be done with Applescript, which you could call from a shell script. The Preview application doesn't seem to be scriptable. I don't use Acrobat, so I can't tell you anything about that. Looking through the dictionaries of the apps I do have, it seems that Skim (another PDF viewer) has an AS 'page' class. Below are a couple of links that may get you started. Look for more specific guidance in Applescript forums.
    http://sourceforge.net/apps/mediawiki/skim-app/index.php?title=AppleScript
    http://links.tedpavlic.com/shell_scripts/skim

  • How to open  a tiff file on a specific page?

    Hi,
    I would like to open a tif file in internet explorer at a specific page.
    My tif file gets 3 pages.
    I succeed in opening it in internet explorer at the first page by just cliking on this link:
    But i would like to open the tif file directly at its second page.
    Does someone know how to do that?
    Thanks in advance for your help.
    Nicolas

    I'm not aware of a browser that supports TIF, so it's gotta be a plugin or helper app displaying it. It would certainly be a function of the plugin or helper app. If you were using the TIF embedded in a file with the object or embed tag to call a plugin, then I think it more likely there'd be some parameter (if it supports multi-page TIFs) to specify the page to jump to. But I think it unlikely that it would actually read a query string parameter, as I had suggested. No that it couldn't, just that I don't think it likely.
    But definitely, it's dependant on the viewer app/plugin. The problem is if you put this on a site and other users go to it, and you can't somehow explicitly specify which app they use to display the image, it could be any app/plugin: Quicktime or any of a dozen other image viewers that support TIF, and they may all work differently with regards to multi-page TIF support and displaying a particular page.

  • Cross domain call to Azure ASPX from SharePoint Online Site Collection

    We have a ASPX page hosted on Azure that is creating a Zip of documents from a SharePoint Document Library against IDs that we are passing it through query string. Next we are flushing this ZIP as a download response to the client
    browser so that user can save it somewhere on his machine. This is working as expected.
    Next we are calling this ASPX from our SharePoint Online Site Collection. Sometime it takes time to create the ZIP & return to the client and therefore we want to implement a Progress Image showing something is happening at the server. We
    have used window.open() method to call this ASPX and at the same time we are showing up the Progress Image. But due to same origin policy we are not able to track any window specific events in Internet Explorer to close the Progress Image when the response
    returns to the client.
    Please suggest a suitable workaround for this scenario. Any help would be greatly appreciated.
    Thank you in advance!
    Jitendra

    Hi Jitendra,
    According to your description, my understanding is that you want to call a aspx page hosted on Azure from SharePoint Online site and implement a progress image to show the progress happening at the server.
    In your scenario, if you want to call the aspx page on Azure to create zip and return to the client, the better way is createing a web service and call it in clinet side. You can add the progress status in the custom code and then judge the status to
    show correponding progress image.
    Here is a detailed article for your reference:
    How to Create and Deploy a Cloud Service
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • How to convert word documents to html page in sharepoint online 2013

    Hi,
    I am new SharePoint and still learning it.
    I have been tasked to do the following on office 365 E3 SharePoint 2013 Online edition.
    1) I have to create a Web page in asp.net
    2) This page needs to show document from a given SharePoint folder and bind them in a grid or dropdown on the asp .net web page
    3) On selecting the document from the drop down or gird (on asp .net webpage), I need to show the SharePoint word document as HTML on the webpage (something like word to html) Note: These SharePoint word document may contain Images, bullets, tables etc. 
    What I have been able to do till now
    1) I have been able to connect to SharePoint from ASP .net application.
    2) I have been able to retrieve document from a specific SharePoint folder.
    3) Read the document from SharePoint folder and bind them to a drop down on the asp .net page.
    What is missing?
    I am not aware about any API that SharePoint Online provides to convert Word document to HTML. Any code sample or reference on how to will be much appreciated. 
    I am not also not sure what is the best way of achieving the functionality this?
    Thanks 
    Krishna

    If this was SharePoint server then it would be easy however in O365 You need to create a app which will use the word automation service and below is  powershell which you can use for the conversion:-
    # This script will convert Docx to PDF using word automation and similarly it can be used to convert to HTML
    $wordFile="http://contoso/kick.docx"
    $pdfFile="http://contoso/kick.pdf"
    $wasp = Get-SPServiceApplicationProxy | where { $_.TypeName -eq "Word Automation Services Proxy" }
    $site = Get-SPSite "http://contoso"
    $ConvertJob = New-Object Microsoft.Office.Word.Server.Conversions.SyncConverter($wasp)
    $ConvertJob.UserToken = $site.UserToken
    $ConvertJob.Settings.UpdateFields = $false
    $ConvertJob.Settings.OutputFormat = "PDF"
    $ConvertJob.Convert($wordFile, $pdfFile)

  • Revision: How to make tab control stop on a specific page upon pressing Pause?

    I have a scrolling tab which scrolls through the tab pages until the user presses Pause. That works. Now I want the tab control to stop on a specific page once the user presses Pause. How to do this?

    Well, hopefully I can give a simpler explanation of my project. There is a tab control (right now of 3 pages). I have written code which flips (scrolls) through the pages, one page per second approx. There is also a Pause button. When the user presses it, the scrolling of pages stops and whatever page is shown at the time of Pausing is the page that is viewable. So that could be page 1, 2, or 3 given when the Pause button was pressed.
    But now, I would like to implement the feature that when the Pause button is pressed the tab control, through coding, has no choice but to show Page 1 (for example) or whichever page I restrict it to.
    Actually I think I've got a idea now after typing this out, but your suggestions are very welcome!
    I've attached screenshots of my code to this reply. The first two show Case States in my code (scrolling, not scrolling) and the 3rd isof the Front Panel and the tab panel itself.
    Attachments:
    TempScrolling.jpg ‏209 KB
    TempPausing.jpg ‏194 KB
    TempFrontPanel.jpg ‏156 KB

  • Domain forwarding to specific pages

    hello!
    I know this question was asked by someone else and is already answered but I cannot find that thread anymore. I did not bookmark it or something and finally gave up searching after 30 mins. I hope the one who answered it the first time will be so nice to do it again...
    I use domain forwarding from a registered domain to my .mac account. That works fine but I want to give friends the link to a specific page.
    The setting now is: www.domain.com --> http://web.mac.com/dotmacname/iWeb/sitename
    When I try to go to for example www.domain.com/certain_page.html all I get is the index.html. I do not want to show my .mac-url but still want to be able to give people the link to a specific page. What should I do to accomplish this?
    Thanx in advance!
    iMac (Intel Core Duo 2.0 GHz)   Mac OS X (10.4.6)  

    See if you domain registrar also offers "subdomain" forwarding. For a domain name http://www.domain.com, the "www" part is the subdomain. If subdomains are allowed, then you can configure these to forward anywhere just like the main domain name.
    Example:
    Here is my own personal domain: http://www.dirtdoog.com
    It forwards to http://web.mac.com/jwtseng/iWeb/
    But I also have several subdomains that are forwarded to specific pages...
    http://blog.dirtdoog.com <== goes directly to my blog
    http://guestmap.dirtdoog.com <== goes directly to the guestmap
    http://gallery.dirtdoog.com <== goes directly to the gallery
    http://funhouse.dirtdoog.com <== goes directly to the funhouse
    All of these subdomains point to specific pages of the same site. You can also forward subdomains to different sites altogether...
    http://travel.dirtdoog.com <== goes to my Homepages site.
    I'm sure you get the idea. Just ask your domain registrar for the details or look in your domain name account. I am with GoDaddy, so if you are too I can talk you through it.

  • How to redirect search results to a webapp detail page

    Hello there, I am in the process of creating an interconnected series of webapps and I am trying to get the list view of one webapp to display on the detail view of another webapp. This is a bit difficult due to the fact that the webapps are dynamic and users will be submitting them.
    Here is essentially what I am trying to do:
    On the list view of webapp#1 I have a hidden form, that when submitted should display the search results of webapp#2 on the detail page of webapp#1. In order for this to work I have redirected my search form results as such:
    As you can see I have replaced the redirect URL with that of the detail view of webapp#1. This method of redirect has failed to work, when the search is performed I am redirected to a 'page not found' page. I have discussed it with BC Support and they say that it cannot be done in this way. If there is anyone out there who has an idea of how to go about this, I would be grateful. Unfortunately the best way to get my desired results is to submit a search for the relevant itemid that displays a list of the correct webapp items. I also cannot create an inline search for the results directly on the detail page of webapp#1 because I don't want the page to reload. If you know of a way to achieve what I am trying to do I would be grateful.
    Thank you for any and all help!

    Hi Prakash,
    SharePoint indexes each list item with the display form of the items in the lists.
    Although the web part is added to the page, the items in the web part are still be indexed from the original list. That is because the web part is rendering the items from the database where the original list stores.
    So per my knowledge, we can only get the list items with the display form in the search results.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • After Spry validation how to redirect to a "you have successfully register" page

    I am helping a friend set up a webpage for her business.  You can see the website here www.themessagetext.com.  I used a Spry validation for the phone number and the checkbox.  One the validation is verified, I want the user to be redirected to a page that says that they have successfully register.  Right now it takes you to an ugly page.  It looks like an error page, but it says that you have successfully register.
    I am using Internet Explorer 7.  I am also using CS4 Dreamweaver.  I am also usingSpryValidationCheckbox.css - version 0.4 - Spry Pre-Release 1.6.1 and SpryValidationTextField.css - version 0.4 - Spry Pre-Release 1.6.1
    I am new to web design.  So if you can be as specific as possible I would appreciate it.  I don't even know where in the code it tells the form after it is submitted to redirect to this certain page. 

    Sorry I did post the wrong code for the wrong page.  Here is the code for the right page.  The more I thought about it I figured it was a design problem.  Should I post it somewhere else since this form is for Spry.
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>The Message Text</title>
    <style type="text/css">
    <!--
    body {
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #550459;
    background: #383737;
    font-family: "Times New Roman", Times, serif;
    .oneColElsCtr #container {
    width: 1024px;
    background: #FFFFFF;
    text-align: left; /* this overrides the text-align: center on the body element. */
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    height: 100%;
    .oneColElsCtr #mainContent {
    background-color: #FFF;
    height: 100%;
    color: #550459;
    font-size: 10px;
    font-weight: bold;
    .oneColElsCtr #container #mainContent table tr td #Table_01 tr td #web_registration_form #just_submit {
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    font-weight: bold;
    color: #550459;
    margin: 0px;
    padding: 0px;
    font-style: italic;
    height: 23px;
    vertical-align: baseline;
    border: 2px solid #999;
    background-color: #CCC;
    text-align: center;
    -->
    </style>
    <script src="SpryAssets/SpryValidationCheckbox.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    //-->
    </script>
    <link href="SpryAssets/SpryValidationCheckbox.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="oneColElsCtr">
    <div id="container">
      <div id="mainContent">
       <table id="Table_01" width="1024" height="869" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td colspan="11">
       <img src="images/websitenew.gif" width="1024" height="176" alt=""></td>
    </tr>
    <tr>
      <td colspan="3" rowspan="2">
       <img src="images/websitenew-03.gif" width="112" height="379" alt=""></td>
      <td colspan="2">
       <img src="images/websitenew_03.gif" width="38" height="19" alt=""></td>
      <td colspan="6" rowspan="2">
       <img src="images/websitenew-05.gif" width="874" height="379" alt=""></td>
    </tr>
    <tr>
      <td colspan="2">
       <img src="images/websitenew-06.gif" width="38" height="360" alt=""></td>
    </tr>
    <tr>
      <td rowspan="4">
       <img src="images/websitenew-07.gif" width="58" height="313" alt=""></td>
      <td colspan="3">
       <a href="contact_us.html">
        <img src="images/websitenew_07.gif" width="79" height="18" border="0" alt=""></a></td>
      <td colspan="2" rowspan="2">
       <img src="images/websitenew-09.gif" width="15" height="53" alt=""></td>
      <td>
       <a href="#">
        <img src="images/websitenew_09.gif" width="168" height="18" border="0" alt=""onclick="MM_openBrWindow('terms_and_conditions_pop_up.html','','width=400,height=60 0')"></a></td>
      <td rowspan="2">
       <img src="images/websitenew-11.gif" width="17" height="53" alt=""></td>
      <td>
       <a href="#">
        <img src="images/websitenew_11.gif" width="108" height="18" border="0" alt=""onclick="MM_openBrWindow('privacy_policy_pop_up.html','','scrollbars=yes,resizable= yes,width=400')"></a></td>
      <td colspan="2" rowspan="2">
       <img src="images/websitenew-13.gif" width="579" height="53" alt=""></td>
    </tr>
    <tr>
      <td colspan="3">
       <img src="images/websitenew-14.gif" width="79" height="35" alt=""></td>
      <td>
       <img src="images/websitenew-15.gif" width="168" height="35" alt=""></td>
      <td>
       <img src="images/websitenew-16.gif" width="108" height="35" alt=""></td>
    </tr>
    <tr>
      <td rowspan="2">
       <img src="images/websitenew-17.gif" width="2" height="260" alt=""></td>
      <td colspan="8" background="images/websitenew-18.gif" width="527" height="247" valign="top" alt="">
              <form action="http://platform.3cinteractive.com/web_registration.php " method="post" name="web_registration_form" id="web_registration_form" onsubmit="" >
       <input id="username" name="username" type="hidden" value="VGn5S7PDQkBwb7csFvX2JA=="/>
          <input id="password" name="password" type="hidden" value="ee7CQE1n8XALlcHYtpSV0Hm+lRNppZrVAe573Vysrq0="/>
          <input id="trigger_id" name="trigger_id" type="hidden" value="78354" />
          <span id="sprytextfield1">
             <input name="phone_number" id="phone_number" size="30"  />
             <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Must be 10 digits</span></span>
          <input id="just_submit" name="just_submit" type="submit"  value="Submit" />
    <br />
                        (Do Not Include Dashes)
                        <br />
                  <span id="sprycheckbox1">
                    <label>
                          <input type="checkbox" name="agre" id="agre" />
                        By selecting this box, I agree to <a href="#" onclick="MM_openBrWindow('terms_and_conditions_pop_up.html','','width=400,height=600')">t erms and conditions</a></label>
                        <span class="checkboxRequiredMsg">Please select box.</span></span>
                    </form>
            </td>
      <td rowspan="2">
       <img src="images/websitenew-19.gif" width="437" height="260" alt=""></td>
    </tr>
    <tr>
      <td colspan="8">
       <img src="images/websitenew-20.gif" width="527" height="13" alt=""></td>
    </tr>
    <tr>
      <td>
       <img src="images/spacer.gif" width="58" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="2" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="52" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="25" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="13" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="2" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="168" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="17" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="108" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="142" height="1" alt=""></td>
      <td>
       <img src="images/spacer.gif" width="437" height="1" alt=""></td>
    </tr>
    </table></td>
          </tr>
        </table>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var sprycheckbox1 = new Spry.Widget.ValidationCheckbox("sprycheckbox1");
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "phone_number", {format:"phone_custom", pattern:"0000000000"});
    //-->
    </script>
    </body>
    </html>

  • How to use external links to show a specific page with a parametrer ?

    Hi everybody,
    we discovered an annoying problem while we were developping applications who are sending emails after creating a new record. We are creating a valid APEX link which call our applications correctly, on the right page, and with the right parameter. The first time we log in, it works perfectly. The problem is when the user is trying to call an other record from the next email. It's not working unless we close our session. I guess it's a protection against hacking, but we can't ask the user to connect and disconnect every time they wants to watch a specific record directly from a mail ?
    The only way I can imagin to resolve this problem, is to open a page that will show all the newest entries in the table from a parameter. It could work for our applications that requires a lot travel between records.
    Do you have any other solution we could use ?
    Thanks
    LeinadJan
    Edited by: leinadjan on 2010-08-24 11:40

    Not the application, the page their are accessing.. Since you are using check-sums on the links and some sort of authentication, unless you build your authentication to allow a certain user access via e-mail, you will have issues.
    Have you seen this example of doing a survey through e-mail in APEX?: http://apex.oracle.com/pls/otn/f?p=9487:28:426474841717567::NO:28::
    It MIGHT offer you some help....
    Thank you,
    Tony Miller
    Webster, TX
    A lady came up to me on the street, pointed at my suede jacket and said "Do you know a cow was murdered to make that jacket?"
    "I didn't know there were any witnesses", I replied " Now I'll have to kill you too"

  • How do I add multiple audio webparts to a page in SharePoint 2013?

    I need to add multiple media player webparts with audio files to a page in SharePoint 2013 so users can click the play button, listen to the file, then vote for the audio they like best. The problem is I can only get one audio to play at a time, and only
    in certain browsers. I can get them to work intermittently in a Chrome browser, but not IE 10. When I publish the page and click the play arrow, it played the first time. Then I added two more audio player webparts to the page, and linked them to different
    audio files (m4a and mpg). Now only one audio player will work, not the other 2.

    Hi
    Have you used this codeplex webpart
    https://mpwp.codeplex.com/
    Amit Kotha

  • How can I create a contact form for sending emails in SharePoint Online?

    Dear Forum members,
    I´ve got a question about creating a custom contact form to send emails for a public site in SharePoint online.
    Could someone help us with some advise?
    In advance, thank you very much.
    Kind regards,
    Frits

    You can create Custom list and make alerts enable to send emails as soon as contact created.
    Bala

Maybe you are looking for

  • Problem with Printing Japanese

    Hi Experts, We have a Unicode enable Printer (I tried Printing Japanese Characters and others it works) and also SAP Unicode System I tried the following steps but it still doesnu2019t work, do I missed some configs?  I have read that I must used Tru

  • Getting error in smartform : LOOP_BILL : "IM_T_VBRK" is neither specified.

    I'm preparing a smartform & In Form Interface, I have declared these values: IM_FS_KNA1     TYPE     KNA1 IM_T_VBRK     TYPE     VBRK IM_T_VBRP     TYPE     VBRP In Global Definitions: IM_T_KNA1     TYPE TABLE OF     KNA1 IM_FS_VBRK     TYPE     VBRK

  • Permissions problems

    Running 10.5.6 now. Find that some apps crash out. Look around and find that permissions are screwed up, always with exactly the same files. Any ideas? Log follows: Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/CodeResourc

  • Writing full keyword hierarchy to masters

    I've assigned hierarchical keywords to the vast majority of my images and am looking for a way to write the full hierarchy when exporting. For example, I'll attach "sculptures", which defines the relationship "civilization" -> "objects" -> "scuplture

  • PC Not Recognizing the iPod's USB device

    I installed a new copy of Windows recently, and now when I connect my iPod to any USB port (doesn't seem to matter which) my PC will often not recognize it. It takes me to take the iPod out and put it back in for it to know that it's there. I believe