Master page not picking up images associated in ISF file

Hi
I am using FM11. RH10 as part of TCS4.
Last year I had created a master page and settings file (ISF). We are now revising it.
Some of our styles have images associated with them (Style name > Format > Borders and Shading > Shading > Pattern).
My workflow:
1.   Open a blank RH project.
2.   Link FM book. All the FM files are imported. But there are no images in the Project Manager pod > Images folder yet.
3.   Associate and apply the ISF file. Images show up in the Images folder. But they have this X mark against them. So I assume they are just some sort of placeholders yet. I check the topic where these images are used. They are empty as well.
4.   Import the master page. I get a message that images are also imported. The X mark against the images are gone and they show up in the topic as well.
That is how it worked in the previous version, which was correct.
Now, that is not happening. Steps 1 to 3 work fine. But when I import the master page (Step 4), The confirmation message does not mention anything about the images.
In both cases, the ISF file, master page, and the images are all in the same folder. Now the only way to get the images work is by manually copying all the images to the RH project folder.
Can somebody please tell me why this is not working the way it used to work? From what I see, I am not doing anything different. I have even opened the master page in an XML editor and checked. I did not see any difference.
Sreekanth

Thanks for your quick reply, Jeff.
Tried that, still no luck.
Sreekanth

Similar Messages

  • Master pages not applying to site and subsites

    I am having an issue with a master page not applying to a site and subsites. The site is created using the community template and has the following hierarchy:
    TopLevel: SharePoint Central - server/SPCtrlv2/sitepages/welcome.aspx (webpart page)
    subsite1: Community - server/SPCtrlv2/community/sitepages/categories.aspx (community template)
    subsite2: Learn - server/SPCtrlv2/learn/pages/default.aspx (publisher template)
    subsite3: Showcase - server/SPCtrlv2/showcase/default.aspx (blog template)
    The community site was created and then the Welcome page was changed to point to the Welcome.aspx location. (not sure if that matters) When making the application from the top level via Site Settings > Look and Feel > Master Page > dropdown from
    Site Master Page (SPC_Global), the master is only applying to the Learn sub site. In SP Designer, the master page/ css files are not showing although they are on the site. (Using designer 2010)
    I was able to apply the master with no problem when the top level used the publisher site template. Unfortuately, the community template is not available at the sub site level so we created a new site with the community template at the top.
    Any guidance you can provide is much appreciated

    Hi,
    According to your description, you want to apply master page to all sub sites.
    Did you use SharePoint 2010 or SharePoint 2013?
    If you use SharePoint 2013, you may need to use SharePoint Designer 2013 to find the master page file.
    For applying master page to all subsites, I suggest you do as the followings:
    1. Make sure you have enabled the “Reset all subsites to inherit this site master page setting” in the Top Level “site
    setting”->”site master page setting”.
    2. Check whether you have enabled “Inherit site master page from parent of this site” in the “site setting”->” site master page setting” of each sub site.
    There are some detailed articles for your reference:
    http://davecoleman146.com/2011/06/28/apply-master-page-for-all-subsites-in-sharepoint-2010/
    http://msdn.microsoft.com/en-us/library/office/jj862339(v=office.15).aspx
    Best regards
    Patrick Liang
    TechNet Community Support

  • Custom HTML Master Page not updating when activating Feature via PowerShell

    I created a WSP to deploy a HTML Master Page.  I later have code that will publish this Master Page to create a .master, but I stripped this out just to simplify things.  My issue is with the first step - getting the HTML Master Page file to
    update by activating the feature using PowerShell.  I don't understand why it's not working - I'm not even using this Master Page currently.  Plus, oddly the master page does update if I go into the UI and deactivate/activate my feature. 
    I can easily reproduce this problem using the following steps:
    1. Created a SharePoint Empty Project named SharePointProject1
    2. Added a Module named Module1
    3. Added a HTML Master Page called MyMaster.html and updated the elements.xml file for the Module1 with the following:
     <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
      <Module Name="Module1" Url="_catalogs/masterPage/Test">
        <File Path="Module1\MyMaster.html" Url="MyMaster.html" ReplaceContent="TRUE" Level="Published" Type="GhostableInLibrary">
          <Property Name="Title" Value="My Master Page" />
          <Property Name="MasterPageDescription" Value="My Master Page" />
          <Property Name="UIVersion" Value=";#15;#" />
          <Property Name="HtmlDesignAssociated" Value="TRUE" />
          <Property Name="ContentType" Value="Html Master Page" />
        </File>
      </Module>
    </Elements>
    4. Deployed the WSP and activated the Feature containing Module1
    5. Updated the HTML Master Page
    6. Re-deployed the WSP
    7. Deactivated the feature and Reactivated the feature using PowerShell 
         => _catalogs/masterpage/test folder still has OLD file - Why??
        $deployFeatureId = "575ec423-1b20-404c-8b2c-d160426c53e7"
        Disable-SPFeature -Identity $deployFeatureId -Url
    http://sp2013local -confirm:$false
        Enable-SPFeature -Identity $deployFeatureId -Url
    http://sp2013local
    8. Deactivated the feature and Reactivated the feature through UI
         => _catalogs/masterpage/test folder now has the correct file
    I even added event receiver code to delete the HTML file on deactivation but that still didn't work.

    Hi Sagar,
    The second link isn't applicable for me because I'm not setting the Master Page for the site collection just yet.  I'm just trying to get the version to be correct in the master page library first.
    For the first link, I am trying to publish a Master Page, not a Page Layout.  I did try adding some similar code that I found from this article,
    http://www.eliostruyf.com/provision-your-html-designs-master-pages-page-layouts-to-sharepoint-2013/
    but the same result.  PowerShell is still copying an old version of the file to the Master Page Gallery, but the activating/deactivating the feature in the UI works fine. 
    Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
      <Module Name="Module1" Url="_catalogs/masterPage/Test">
        <File Path="Module1\MyMaster.html" Url="MyMaster.html" ReplaceContent="TRUE" Level="Draft" Type="GhostableInLibrary">
        </File>
      </Module>
    </Elements>
        public class Feature1EventReceiver : SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite site = (SPSite)properties.Feature.Parent;
                PublishMasterPage(site, "/_catalogs/masterpage/Test/MyMaster.html");
            public void PublishMasterPage(SPSite site, string filePath)
                SPFile file = site.RootWeb.GetFile(filePath);
                if (file.CheckOutType != SPFile.SPCheckOutType.None)
                    file.Item.Update();
                else
                    file.CheckOut();
                    file.Item.Update();
                file.CheckIn("Checked in by the branding deploy feature", SPCheckinType.MajorCheckIn);
                if (file.DocumentLibrary.EnableModeration)
                    file.Approve("Approved by the branding deploy feature");

  • I have my photos  iPhoto but my iPhoto library is empty. when clicked message reads could not be opened image capture cannot open files in the photo library format. How do I get my photos back into my library?

    I have my photos in  iPhoto but my iPhoto library is empty.When clicked message reads could not be opened image capture cannot open files in the photo library format. How do I get my photos back into my library?

    When what is clicked?
    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • Changing font/-size of a text field on master-pages not possible? (field prop)

    Hi,
    I would like to change the font and font-size of a textfield on a master page.
    I wonder if I do anything wrong, because the font-options (size, font etc.) are simple greyed out / not avaliable, when I click on my text field.
    It seems, there is any way to customize the font-properties of a textfield (only) on master-page.
    Well I guess it would work with java script in init-event ...  but really, why the hell it should not be possible simply to use the properties/text properties?!
    Please correct me if I am wrong. Do I do anything wrong or is it really not possible to customize font of a text field on master pages?

    Hi,
    I was just about to post, that I figured it out.
    Actually, I use Livecycle Designer in SAP (transaction SFP). There seems to be a bug (one of hundrets by the way).
    If I click on a field, that does not have text-property e.g. subform, text-option menu greys out.
    Afterwards it stay this way until I click/doubleclick into a simple text (not text field). From that moment on, text/font-option menu is available again, until I click on something without text. => So pay attention and click wisely
    coming soon: "SAP meets Livecycle Designer - a (Bug)Lovestory", hardcover 124 Pages. ; )
    by the way: SAP does not sopport interactive forms higher than Reader 8.1. Its statement "8.1 is fine enough for everything you need in a SAP/Adobe Interactive Form". So beware of using XFA higher than in 8.1. sad, but true ...

  • Deployed Custom Master Page Not Visible in Designer

    My team has created a custom master page and has packaged and deployed it as a feature. The custom master page file correctly appears in the master pages gallery via the Web UI, but it's not showing up in the Master Pages folder when the site is opened
    in Designer. What are we missing?

    Hi,
    when the master page was deployed by a sandbox solution please make sure that the master page is checked in and approved. SharePoint doesn't check in and approve files that was deployed by a sandbox solution. Also make sure that the correct content type
    is assigned. because otherwise you won't see it too.
    To set the content type of the master page on deployment correct you just need to simply add the following inside the <file>
    <Property Name="ContentType" Value="$Resources:cmscore,contenttype_masterpage_name;" />
    If the master page is a farm  you should also add the content type but it will be checked in automatically. I hope you are on root level of your site collection because the master page will not deployed to the sub sites.
    In SharePoint Designer you also have two different approaches to find the master page.
    Approach 1:
    Use the Master Page Entry on the navigation pane left. The Master Page will only show up if content type ins correctly set.
    Approach 2:
    Go to "All Files" -> _catalogs -> masterpage
    By using approach two you will see the same amount of files that you can review in SharePoint. You will also find the article pages in there.
    Hope this helps
    Kind regards
    Stefan
    http://www.n8d.at/blog
    Follow me on Twitter: StFBauer |
    n8design
    Microsoft Community Contributor 2011
    MCTS - SharePoint / WSS Configuration and Development

  • Change site master page not working in team site

    For an intranet site I have a heavily customized master page but want to retain the default v4 master for admin pages. I haven't activated publishing for the site but can access changesitemasterpage.aspx and set the site and system master page.
    Action:
    Set site master to custom, set system master to v4
    Expected result:
    Exactly what the description says:
    "The system master page will be used by administrative pages, lists, and document library views on this site."
    Actual result:
    ALL pages use the v4 master.
    The only way to get the custom master to work is to change the system master setting to "custom".  But then the styling interferes with the functionality of the admin pages. Is this another case of SP not doing what it says it's going to do,
    or is it broken?

    Hi  ,
    For your issue, there are two approaches you can refer to:
    1.Activate publishing feature, set custom master page for “Site Master Page”. The site master page will be used by all publishing pages - the pages that visitors to your website will see.
    2.Go to  C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\LAYOUTS,  you can find all the application pages in the folder (such as settings.aspx) . Open the aspx page
    and find the dynamicMasterPage attribute at the page tag, change the value to default.master instead of custom.master. (not recommend)
    Reference:
    http://social.technet.microsoft.com/Forums/en-US/93611bbb-e9b1-4ec0-8011-5b6fbc4e8b2c/change-master-page-in-team-site-in-share-point-2010?forum=sharepointcustomizationprevious 
    http://msdn.microsoft.com/en-us/library/office/ee537530(v=office.14).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Fields on the master page - NOT saving in Reader!

    I have forms that I've setup through Designer 7.1 and enabled through Acrobat 8. I'm currently using Reader 8 to open and fill in the forms. The fields that are on the master page (i.e., "Page ___ of ___" footer) DO NOT save, either in Reader 7 or 8. I can type in my info and it shows up just fine in the PDF preview pane (nothing seems to be blocking it and it is appropriately setup within a subform). I'm hoping this doesn't mean I have to go through all 800+ of my forms and redo what I've already created....

    Check the binding tab for the fields. They may not be bound. By default, when you add a field to a master page, it is not bound (i.e. default binding is "none").

  • Buttons on Master Page not exporting correctly

    I have a interactive catalog in InD CS5 with vector navigation buttons on the master page in the upper left hand corner.
    When I export this as an interactive pdf the buttons disappear. However if I copy the same buttons to different areas of the page they show up. Any ideas what is going on? (see images below, image one is the master page, image two is the pdf) I want the buttons to remain in the upper left corner, but it seems there is something wrong with the left side of the page.-?
    Thanks for any help!

    (thanks to CS5's inablitity to turn of spreads when exporting for interactive).
    http://indesignsecrets.com/interactive-pdf-from-indesign-cs5-always-has-spreads-on.php/com ment-page-1
    Read the comments!
    Bob

  • LR.3.3 Web module not picking up image edits

    When I create a slideshow in LR3.3, it does not pick up the edits that I made to the images. The only things it picks up are crop and maybe sharpening (hard to tell). Haven't had the problem before today. Any help will be appreciated.
    Thanks,
    John

    Pierluigi Vernetto, thanks for that link. Though it was for a web module consumption of the persistence package, I was able to adapt it for use by my ejb module.
    Here is my solution, under split-directory development workflow.
    Create the persistence module, place the persistence.xml in that module's META-INF.
    Create an Ant task in the build.xml to 'wlcompile' and JAR it to the EAR direcotries APP-INF/lib directory.
    Exclude the persistence module from the rest of the 'wlcompile' and 'appc' tasks.
    I was then able to inject it with annotation in my EJB module.
    dvohra16, thanks for that pointer. Now that I've been able to solve, the pressure is off (and shifted to other things). But I will surely check your option out. If I can get that working, it will be much easier than tinkering around with the build.xml and would be the normal flow of split-directory development workflow.
    As of now, I will say this thread as 'solved', but if I get it working the way you mention (on my sandbox project), I will surely come back and update this thread.
    Edited by: Vyoma on May 27, 2011 11:21 AM

  • Metadata tab in master page not there

    "Define your sitemap". I right clicked the master page just liked it asked and went to page properties but there was no metadata tab to allow me to add a prefix or suffix? NB  I have the latest version of Adobe Muse.

    I am having the same issue as the person above. Here is a screen shot of where I clicked on page properties: 
    As well as the screen I see:
    I too have the latest update of Adobe Muse CS6 (Release Version: v4.1, Build 8, Cl 774415.
    I do have the MetaData option if I put an image into one of the pages (any one of the pages), go back to the plan page, and right click on the main master. Yet, from what the tutorial says as well as your image I should be able to do it previous to doing that.
    Any help you can give me would be greatly appreciated!
    Thanks,
    Joni

  • Hyperlinks on master pages not working after distilling (InDesign CS4)

    Hello,
    We have started using weblinks in the PDF versions of my print magazine.
    As PDFs exported in InDesign are bloated, we use this workflow for creating the PDF issues:
    Export print-ready PDFs of layouts in InDesign CS4 (Mac)
    Combine PDFs into a single file in Acrobat 9.5.1
    Crop pages and export combined PDF as PostScript file
    Distill PostScript file in Distiller 9.5.1 using default "Smallest File Size" (with Page Thumbnails) setting
    We hyperlink all web addresses in the body copy.
    We also hyperlink the magazine's website address on the primary master page (A). All of the other master pages in the magazine are based on A-Master.
    We create hyperlinks by selecting the link, using the New Hyperlink command in the Hyperlink panel, and uncheck the Shared Hyperlink option.
    When we export the layouts using InDesign – either using our printer's settings or InDesign's Smallest File Size setting – the links contained on the master page work.
    But these links disappear when our PostScript file is distilled into a PDF.
    I know there is a bug in CS5.5 that can cause this problem. But is there any workaround or solution for this in CS4?
    Thanks.

    richard_cosgrove wrote:
    I managed to solve this problem by trashing the CompositeFont folder in InDesign's preferences and restarting InDesign.
    Why that should be causing the problems, I have no clue.
    Thanks for all the input and help.
    I'm having this exact same problem and would like to try your solution, but I can't find the "CompositeFont" folder
    I fround the Windows locations info below at http://helpx.adobe.com/indesign/kb/indesign-preferences-support-file-locations.html
    But I still didn't see any Composit Fonts folder. Do you have any suggestions on where I can look for this folder?
    Application "roaming data folder:"
    Win 7: C:\Users\[User Name]\AppData\Roaming\Adobe\InDesign\Version [#]\en_US
    Preference files saved into this location include the following:
    Color Settings: Record of the current application Color Settings, used to sync with other Adobe CMS enabled apps
    Composite Fonts folder
    Find-Change Queries folder: Contains user-defined find/change queries
    InDesign Defaults: Record of application defaults, as defined by user modifications
    Menu Sets folder: Contains user-defined Menu Sets
    Scripts folder: Location for user scripts to load into the Scripts panel
    Workspaces folder: Contains user-defined workspaces, as well as a copy of the Current Workspace

  • Syncing files constantly issue & page not found when trying to access a file on web

    Can anyone assist with syncing issue. Syncing runs all day and new files are not syncing. I can see the files in web browser (not in desktop APP) however when I try to access the files I get page not found.
    I went into archive (after reading all the forums I coudl find) and I think there are a couple of damaged files as when I tried to delete them I received an encountered 'error' and could not permanently delete.
    I need assistance to get my syncing fixed, and page not found fixed.
    Help!
    Thanks@

    There can be a number of causes for not being able to access file form web browser.  One, you might be writing to wrong directory.  Two, you might not have sufficient privileges to either write to directory or overwrite files already in that directory.  From your description, it's the latter of the two, so you need to get a hold of creative cloud support and get file/folder permissions fixed.  Good luck.

  • How to include Chart in Web Page not as seperate image file?

    Hi, I am using JCharts and am trying to figure out how (or if it is even possible) to create a chart and then place it in a web page. All the examples I've seen show you how to create a JPEG of the chart and then link to this image from your web page. Is it not possible to surround the JPEG chart with other HTML so that I can keep my web page logo and menu etc on the same page as the chart?
    I can't find any examples which show how to surround your images with HTML as JCharts creates a JPG file and returns that in the Http Response e.g. "ServletEncoderHelper.encodeJPEG13(axisChart, 1.0f, response);".
    My environment is Java 1.4.2, Struts and Tomcat 4.1.30.
    Is there a way of drawing charts directly into a web page rather than displaying them on a seperate page as an image file?
    many thanks in advance,
    James.

    If you understand html, you know that to display an image, you must provide a reference to the image's location within the html code (there's no way to embed the image itself, directly in the html).
    An image's reference is just an url of where the image can be loaded from. Provide an url which goes to your dynamic chart servlet and requests the appropriate chart (i.e., you may have to pass in certain parameters in the url).

  • HELP need urgently! Pages not loading ANY images in my document.

    Hi all,
    I am writing my thesis for my degree, and my document is quite large. I have ~40 images of various sizes, up to 300kB. Everything was fine last night, and I saved the pages document three times on three different storage devices because I'm paranoid about losing this work.
    I closed Pages last night after saving, and today when the document is opened, every single image has been replaced with a grey square containing a question mark.
    What I can't understand is that when I quick-look the document in finder, it still contains all the images just as it was last night.
    Help with this would be very much appreciated!
    Thanks in advance,
    Graham

    It doesn't say "include", that is the previous check box. It is just Save as.
    Saving to Word (really this export) is not perfect in Pages particularly if you have used any uniquely Pages features.
    Since I can't see what you have done, which is probably something you have not described, it really would be faster just to see the docuument. Currently I am suspecting it maybe inline graphics.
    Peter

Maybe you are looking for

  • Open sales orders for FD32

    Hi all, As everyone must be knowing in FD32 we can see Sales value ( Open sales orders + Open deliveries). For one of my customers i can see an amount in open sales orders field, but i could not find the SO in VA05 report. Can anyone help me to find

  • How to get audio and video in one file

    hi...I am "premiere beginner user" and I have a simple question , I think..:)...Every time when I am trying to export media out from my premiere (using media encoder) I get video file and some audio files, but what I need is only ONE file, that conta

  • Reading a unicode file and displaying it on jsp !!!!!

    I've one file that consists of unicode character. I've to read it and display it on the jsp page. I'm able to display it other contents but for unicode i'm unable to display it properly. Could anyone help me how to achieve this problem..... in advanc

  • Help with ejecting a CD

    Hi All, My iMac crashed with a CD in the drive at the weekend. Afterwards it would not turn on properly. The LED flashes and the fans come on but there is no video output. Having done some troubleshooting with an Apple support engineer I've discovere

  • FBRA: resetting not possible

    Hi, in transaction FBRA ( resetting of cleared items ) it is normally possible to choose between ‘only resetting’ and ‘Resetting and revers’. In some situations it occurs that the ‘Only resetting’ option is not available. Any hints on what might be t