Why is my publishing page blank?

I have a Macbook Pro (Leopard) and have just created a website and cannot publish it, cause the publishing page is white - empty - blank? Why is that?

Hi Roddy,
Thank you for your reply! Usually in my other mac I use the iweb FTP server to upload my other website and everything works great. But in this case, I have just solved it ... I re-installed the i-life '09 ...
Thanks again ...
Christina

Similar Messages

  • When I create a tablet/desktop/phone version of a site, why are all the pages blank?

    Hello, longtime listener/user, first time caller
    I've been using Muse since jumping on the Creative Cloud train a couple years ago, but to date all my experience had been in maintaining and updating a desktop version of a couple small sites.  I loved the idea of Muse being able to assist in the creation of separate desktop/tablet/mobile layouts (ie responsive design), and this past week was my first experience in using it as I worked on a ground-up rebuild of http://www.eridusociety.org.  I started with a Phone layout, with the intention of getting that right and then expanding outward to a tablet version, and once that was finished, adding a desktop layout.
    After completing the mobile site and testing it on Business Catalyst (thanks to all involved in that seamless integration, by the way), I clicked on the +Tablet button and proceeded to build out the tablet layout of the site.  To my dismay, all the pages it built were blank.  I tried deleting and re-doing it with different combinations of the options checked, to no avail.  Then I raced off to the nearest web browser and started searching - surely I missed a step, or the great collective brain of the internet could alert me to some way to achieve this.  Alas, no such luck. 
    The blank pages are intentional, and the way to populate those blank pages is to go back to the phone layout, open the page, then copy all the content, then switch back to the tablet layout, open the corresponding page on the tablet layout, and paste in the content from the source layout... and of course, rinse and repeat for the desktop layout as well (though for my workflow, I copied the finished tablet layout pages to create the desktop version).
    For me, starting with all the page elements from the source layout is much easier than starting from scratch on each and every page.  That way I know I have all the elements on the page, and I can add to (or subtract from) as well as modify the layout in fairly short order.  I've been driving myself a little crazy with all the bouncing back and forth between layouts to copy/paste elements as I work on my site, and for future reference I'd like to know if there's some way that can be avoided in the future?
    Ideally, I would like to see an option in the create layout dialog box to be able to copy content (and choose the source layout to copy from). 
    Beyond that, another great option for this dialog would be to let me choose to switch all the page links to the new layout.  That is, when it copies and pastes all the page content from source layout, Muse would then also update the links to pages within the site so that they link to that layout's pages.  So when I build a phone version and click +Tablet, I can check a box to copy page content from source, specify that source, and then check another box to update links for layout.  After Muse does its magic, I have a tablet layout that's already got page content on it, and it's linking to other pages on the tablet layout (and not to the source/phone layout pages).
    Thanks to everyone on the Muse team for a pretty great product, and to the people manning the Twitter account for responding to my tweet and directing me here.

    Sanjit, I think one of us is missing the point.  It could be me - is there some way to easily and quickly pop open multiple layouts and pages?  Because for me (running a 12-core Mac Pro with 64GB RAM and FirePro D700 GPU's), Muse lets me switch between one layout view and the next (not open them simultaneously), and takes several seconds to do this every single time.  Opening and closing pages (to create separate tabs/windows) is also incredibly tedious. 
    I can appreciate that select and drag works just as well as selecting all and using copy/paste shortcut keys, but that is the least time consuming part of the process.
    Without copying the page contents from the source layout and transpose internal page links to new layout, Muse falls short of the mark of making it really easy to build responsive sites.  It's kind of like trying to take a cab to a destination across town that makes you get out and walk halfway.  No matter quickly or easily the cab made it through town, it still only got you half way there.

  • Why is my detail page blank with no data from master page?

    Hello,
    I created master page that links to detail page - but when I click on the link I see the detail page empty from data.
    Do you know why? Thanks!
    This is the PHP code I'm using in the detail page:
    <?php require_once('../Connections/connection1.php'); ?>
    <?php
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "formUpdateSale")) {
      $updateSQL = sprintf("UPDATE neve_sale SET type=%s, area=%s, address=%s, built=%s, lot=%s, BR=%s, floor=%s, floorAll=%s, parking=%s, elevator=%s, price=%s, available=%s, `date`=%s, status=%s, details=%s, myDetails=%s, pic1=%s, pic2=%s, pic3=%s, pic4=%s, pic5=%s WHERE `primary`=%s",
                           GetSQLValueString($_POST['type'], "text"),
                           GetSQLValueString($_POST['area'], "text"),
                           GetSQLValueString($_POST['address'], "text"),
                           GetSQLValueString($_POST['built'], "int"),
                           GetSQLValueString($_POST['lot'], "int"),
                           GetSQLValueString($_POST['BR'], "int"),
                           GetSQLValueString($_POST['floor'], "int"),
                           GetSQLValueString($_POST['floorAll'], "int"),
                           GetSQLValueString($_POST['parking'], "text"),
                           GetSQLValueString($_POST['elevator'], "text"),
                           GetSQLValueString($_POST['price'], "int"),
                           GetSQLValueString($_POST['available'], "text"),
                           GetSQLValueString($_POST['date'], "date"),
                           GetSQLValueString($_POST['status'], "text"),
                           GetSQLValueString($_POST['details'], "text"),
                           GetSQLValueString($_POST['myDetails'], "text"),
                           GetSQLValueString($_POST['pic1'], "text"),
                           GetSQLValueString($_POST['pic2'], "text"),
                           GetSQLValueString($_POST['pic3'], "text"),
                           GetSQLValueString($_POST['pic4'], "text"),
                           GetSQLValueString($_POST['pic5'], "text"),
                           GetSQLValueString($_POST['primary'], "int"));
      mysql_select_db($database_connection1, $connection1);
      $Result1 = mysql_query($updateSQL, $connection1) or die(mysql_error());
      $updateGoTo = "admin-sales1.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    $colname_Recordset1 = "-1";
    if (isset($_GET['primary'])) {
      $colname_Recordset1 = (get_magic_quotes_gpc()) ? $_GET['primary'] : addslashes($_GET['primary']);
    mysql_select_db($database_connection1, $connection1);
    $query_Recordset1 = sprintf("SELECT * FROM neve_sale WHERE `primary` = %s", $colname_Recordset1);
    $Recordset1 = mysql_query($query_Recordset1, $connection1) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>

    11) opened iPhoto library package and I now have 'old masters' and 'Masters'
    12) several years seem to be missing from these two folders
    You got bitten by a nasty bug.
    The upgrade of your library got interrupted, and some of your photos are still in the "Old ..." folders.  There is no known fix for this, that can save your iPhoto library. We are still waiting for a bug fix from Apple. What you can do, copy out your original photos, that are still in the "Old Masters" and "Masters", and save these folders.
    Then restore your library from your most recent backup and use the saved "Old " folders  to reimport and add the newest photos, that are missing in your backup.
    The "years" folders in "Masters" and "Old Masters"  are the years, when the photos have been imported, not necessarily the years when the photos have been taken.

  • Why do some web pages blank out and how can I fix it - have emptied cached, enabled/disabled various whatevers and opened DNS servers per previous discussions.  Nothing's keeping zulily or vrbo open.  Appreciate help.

    Need help fixing web pages going blank after they open.  Thanks -

    Need help fixing web pages going blank after they open.  Thanks -

  • SP2013: How do I disable auto spell check on apppart when editing a publishing page?

     Each time I "checked in" a page it was common to receive a dialog reporting a huge number of spelling errors.but there is no error on page...it is taking "Apppart" list items errors and wherever we have that weppart on pages it
    is showing 123/124 spelling error(s) found.
    and i'm unable to remove those errors. Is it defualt sharepoint functionality to get error from webpart data (I think its default functionality) 
    or how can i avoide those errors from publishing page?
    Thanks in advance........

    Hi,
    have a look at this post here:
    https://cann0nf0dder.wordpress.com/2014/02/02/why-are-my-publishing-pages-saying-i-have-so-many-spelling-errors/
    Hope it helps.
    Best regards.

  • Why is the screen in my liquify page blank/white?  I used to be able to see the picture

    Why is the screen in my liquify page blank/white?  I used to be able to see the picture I was working on but now it just shows a white page...  I have photoshop CS4.  How do I fix it?

    are you zoomed in too far to see that part of the layer that has content?  Does the layer you have selected definitely have content?  Try using Ctrl/Cmd 0 to zoom back to fit to screen.

  • Why does Dreamweaver upload a blank page when i "put" a .php or .html file that I just edited. It's

    Why does Dreamweaver upload a blank page when i "put" a .php or .html file that I just edited. It's like Dreamweaver isn't putting the complete file. So when i check my work (refresh the page), it is now blank. This happens about 50 percent of the time and can occur with any of the websites I maintain. (If I pull out my macbookpro, i can edit and upload the page, but the screen is smaller and i would rather be at my desktop). I am using CS5 on a MacPro, operating system 10.7.5.

    I've never heard of that type of error before. If it were happening to me, here are a few things I would do...
    Verify it's DW
         Download Filezilla (free and very nice in reality) and make sure it uploads correctly from there to rule out connection issues
    Rebuild Site Cache
         From the Files window of your site, click the menu and go to Site > Recreate Site Cache
    Delete DW File Cache
         If the above does nothing, I'd kill my DW Cache File: http://forums.adobe.com/thread/494811
    Uninstall, clean, reinstall
         Uninstall the program, use the cleaner tool here: http://www.adobe.com/support/contact/cscleanertool.html to kill everything (Adobe leaves behind things that are picked up again in a normal uninstall/reinstall) then reinstall it.

  • Why is my privacy preference blank in Safari 5.1

    Why is my privacy preference blank in Safari 5.1. There is no way to manage cookies. It appears on my iMac but not my Macbook. Any imput on the issue appreciated.

    Safari preferences in Version 5.1 (6534.50) with respect to cookies have changed with this latest update. In July, the last time I reviewed cookies saved in Safari, I was able to delete cookies individually. This no longer appears to be possible in the latest update.
    In the Preferences > Privacy pane, there is a button "Remove All Website Data" which applies to "Cookies and other website data." I don't want to use this. I want to retain some cookies but not others. Under the "Remove all" button is another one, "Details" that applies to "[This many] websites stored cookies or other data." Clicking "Details" reveals a pane that shows all the website domains that stored data in Safari. Unlike the previous version of Safari, however, the pane does not show individual cookies set by the domains. It is possible only to review all the cookies set by a domain or none of them. This is a disadvantage. I very much prefer the previous version.
    Another change, I think (not sure), is that in the latest Safari, private browsing no longer appears to block new cookies. In the Safari help file, the Browsing privately page shows the following statement:
    "When Private Browsing is on, webpages are not added to the history list, the names of downloads are removed from the Downloads window after downloading is complete, AutoFill information isn’t saved, and searches are not added to the pop-up menu in the search field. Websites that store databases on your computer can’t modify the databases, so services normally available at such sites may work differently until you turn off Private Browsing. Any changes made to cookies are discarded when you turn off Private Browsing."
    The last sentences, in fact, imply, by omission, that new cookies may be added to Safari, even though private browsing is turned on.
    For these reason, I have abandoned Safari, and I will now use Firefox, which continues to allow reviewing and editing of the complete cookie list. If Apple reconsiders and makes it possible again to review all cookies individually, I will return to using Safari
    If someone know of a way to review cookies individually in the current version of Safari, please let me know. Or if I am incorrect about what the latest version of Safari permits with respect to cookies, kindly correct me.

  • Unable to Check In Publishing Page

    I am running into an issue with a custom page layout that I have created.  On this page layout I have a publishing html field, publishing image field, and a publishing summary links field.  The problem is when I check-in the publishing page
    as a draft the content in the publishing HTML fields does NOT save and redirects me to the root page in that web.
    I then checked the SharePoint ULS logs and found the following error.
    Time: 09/03/2010 11:47:20:18
    Process: w3wp.exe (0x1248)
    TID: 0x0C5C
    Area: CMS
    Category: Publishing Cache
    EventID: 98ee
    Level: High
    Description: Trying to store a checked out item (/EN-US/MEDICALPRODUCTS/PAGES/646.ASPX) in the object cache.  This may be because the checked out user is accessing the page, or it could be that the SharePoint system account has the item
    checked out.  To improve performance, you should set the portalsuperuseraccount property on the web application.  See the documentation for more information.
    I have tried to find more answers on the web but have been unsuccessful so far.  Has anybody seen this error before or got any possible ideas to try?  Thanks in advance for any help.
    Craig

    I am getting this same error in SharePoint Server 2013 when creating new publishing pages with a custom Page Layout created using Design Manager.  The page uses a custom Content Type isth a required column of "News Type" which I suspect is at the root. 
    The workaround is to Check In the newly Created page before adding any content, then check it out again.  why you cannot check it in after adding any more information than the Name is a mystery.
    David McKenzie

  • Creating publishing page in specific folder and with custom page layout using JSOM

    Hi!
    I have a site collection under my root, in which I have a page library with a folder inside. I want to create a publishing page inside the folder using JSOM. The API provides the following information on the three possible ways of how you can create a publishing
    page.
    PublishingPageInformation with all defaults.
    PublishingPageInformation.Name and PublishingPageInformation.PageLayoutListItem.
    PublishingPageInformation.Name, PublishingPageInformation.PageLayoutListItem and PublishingPageInformation.Folder.
    Source - SP.Publishing.PublishingPageInformation Properties (sp.publishing)
    Since I want to create the page in a specific folder in the page library, I have to go for the last option.
    I have a function call chain that look as follows:
    getLanguageID(webUrl, languageID)
    .then(function(resolveVal) {
    language = resolveVal;
    return checkPageExist();
    .then(getEditorialNewsFolderJSOM)
    .then(getAssociatedPageLayoutListItem)
    .then(addPublishingPage)
    The first two methods, 
    getEditorialNewsFolderJSOM
    getAssociatedPageLayoutListItem
    fetches the required data as SP.Folder- and SP.ListItem-objects.
    The problem occurs when
    addPublishingPage
    is called. This method, in turns calls this function. 
    var pageInfo = new SP.Publishing.PublishingPageInformation();
    pageInfo.set_name(publishPage.title);
    pageInfo.set_pageLayoutListItem(pageLayoutListItem);
    pageInfo.set_folder(editorialNewsFolder);
    pageCreationContext.newPage = pubWeb.addPublishingPage(pageInfo);
    clientContext.load(pageCreationContext.newPage);
    clientContext.executeQueryAsync(function() {
    publishPage.isPageCheckOut = true;
    resolve();
    }, function(error) {
    reject(precio.intranet.resource.errCreateContent_addPublishPage);
    The error happens when this function is called with the page information object.
    SP.Publishing.PublishingWeb.addPublishingPage(pageInformation)
    Error:
    Cannot read property '$2t_0' of undefined
    and it happens in SP.Runtime.js.
    I've tried this
    sample code from the MSDN-team, and added the pagelayout and folder properties, but it renders the same error.
    Creating a page directly in the page library with a blank SP.PublishingPageInformation object works perfectly fine!
    What could possibly be wrong? The error isn't something that I can debug myself since it happens in SP.Runtime.js, and the documentation for this is very sparse!
    Any help on how to resolve this issue would be helpful!

    Hi Vinay,
    This may be useful:
    https://blogs.oracle.com/jdevotnharvest/entry/remote_task_flow_vs_wsrp

  • Why is my itunes a blank screen?

    Why is my itunes a blank screen when i press the itunes app

    Hi Mikhailwong,
    When troubleshooting iTunes Store connection issues, the following articles provide the best information:
    First, try signing out of your account in Settings > iTunes & App Store. Once signed out, go ahead and sign back in.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    If the above did not resolve your issue, refer to the following:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    If you haven't been able to connect to the iTunes Store:
    - Make sure that your iOS software is up to date by connecting your iOS device to iTunes and clicking on Check for Update in your device's Summary page in iTunes.
    - Check and verify that you are in range of a Wi-Fi router or base station. If you are on a 3G capable device, make sure that cellular data is turned on from Settings > General > Cellular.
    - Check to make sure you have an active internet connection. You can check the User Guide for your device for help with connecting to the internet.
    - Check to make sure other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the internet.
    - Try resetting (turning off and then on again) your Wi-Fi router
    - If the issue still persists see, iOS: Troubleshooting Wi-Fi networks and connectionsor iOS: Troubleshooting Wi-Fi networks and connections.
    Thanks,
    Matt M.

  • Site Template and webparts in Publishing Pages

    Hi
    I've created a couple of webparts in SPD and added these to the pages in the Pages Library (Publish). I then export the site as a template (switching publish off first) and create a new sites from the template. Unfortunately the weparts are missing from
    the publish pages but are available in the new site Webparts Gallery. The Site Pages have the Webparts available but the Publishing pages dont. When I exported the SC root web I switched off publishing for the site.
    Why aren’t the weparts appearing on the page created in Pages Library. Ive switched on publishing now in the new site but its made no difference. ?
    I found this blog but it doesnt appear to provide a solution :http://blogs.technet.com/b/stefan_gossner/archive/2007/09/19/save-site-as-template-option-and-the-publishing-feature.aspx
    Thanks

    As I said, templates are not supported when you turn on publishing.  That's why there is no "save site as template" link after you turn on Publishing in a Site Collection.  I assume you are using one of the hacks to navigate directly
    to the page that lets you save the site as a template, since the link isn't there.  That will work for some sites, but clearly won't for yours.  There is no workaround.  Site Templates aren't supported in Publishing environments because they
    aren't reliable.  If you want Page layouts then you need publishing.  If you use publishing then you can't use site templates.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • I am getting I am getting nativehr 0x80070057 /nativehr nativestack /nativestack error when I change my publishing page layout in SharePoint 2010.

    Hello All,
    I am getting the following error when I tried to change the page layout of a publishing page in my site collection using SharePoint 2010.
      Here I am just trying to change the page layout to "Four Item Grid" page layout. But i am not sure why this error is coming up.
    I tried to search in the internet but no one has this kind of issue it seems.
     Can anybody help me in resolving this issue.

    I had this same problem when trying to change the layout on a publishing page.
    What I found by running some powershell script against the pages library is that the ows_PublishingPageLayout field actually referenced a layout url from another site. What had happend is that an author downloaded a copy of a page from one site and
    uploaded it to another site. Evidently when you do this the url reference to the page layout file does not get corrected (it's fully qualified)
    To fix this problem I wrote some powershell script to update the ows_PublishingPageLayout url so the site host url was corrected and did not have the old/original site's url.
        $SiteUrl = "http://your.site.url.here"
        $SPSite = New-Object Microsoft.SharePoint.SPSite($SiteUrl); 
        $OpenWeb = $SpSite.OpenWeb(); 
        $publishingWeb = [Microsoft.SharePoint.Publishing.PublishingWeb]::GetPublishingWeb($OpenWeb)    
        $AllPubLayouts = $publishingWeb.GetAvailablePageLayouts()
        $pages = $OpenWeb.Lists["Pages"]
       #view all page layouts
       foreach ($page in $pages.Items)
            if (!$page["ows_PublishingPageLayout"].ToString().Contains($SiteUrl))
                write-host $page.url
                write-host $page["ows_PublishingPageLayout"]    

  • After publishing page I get redirected to C Drive!

    Hi - I can connect to the server, make and edit but after
    publishing, Contribute redirects me to this page:
    C:\Program Files\Adobe\Adobe Contribute
    CS3\Configuration\Templates\Default.html
    Please help! It's SO ANNOYING!
    Thanks

    I don't have the answer, but I put a short sentence in that
    file you described and noticed the following:
    1. I created a new blanc page
    2. When I published this blank page the sentence I put in
    C:\Program Files\Adobe\Adobe Contribute
    CS3\Configuration\Templates\Default.html was visible for a very
    short time
    3. When I cancelled this blank page the sentence I put in
    C:\Program Files\Adobe\Adobe Contribute
    CS3\Configuration\Templates\Default.html was visible for a very
    short time
    It seems top me taht this delfault.html file is used to
    create a blank page, but strangely the sentence I put in doesn't
    appear visible ijn the draft or in the published new html file. My
    version of Contribute doesn't hang on this page, but passes without
    any problem to the page I created or the page I was when I
    cancelled the new page.
    Maybe you should contact Adobe and find out what the reason
    is for calling this file or try to reinstall the program.

  • Published page different than edited draft

    OK, this one is very interesting! I've edited the page, it
    looks great in draft form. I publish it and suddenly one of the
    edited parts has a different type style and even an extra word that
    does NOT exist in the edited draft!! How is this
    possible????

    What is the web address of the published site so we can see what you are referring to?
    While waiting for that:
    A common reason why formatting on a published page will not match what you see in iWeb is that objects (pictures, movies, text boxes, etc.) are overlapping. When the web browser goes to try and interpret that overlap the results can vary (this can effect the display of fonts as well).
    Go to the page in question in iWeb and click on 1 object. Go to Edit > Select All.
    You will see all the objects on the page with their boundaries activated. Move any items that are overlapping so they have their own space around them.

Maybe you are looking for

  • Win 7 pro 100% cpu with only a few programs running

    I have a 4.2 rating with a amd athlon 64 3400+ running at 2.41ghz, 2.5 gig ram in 32bit windows 7 pro.  My motherboard doesn't have windows 7 drivers which may contribute to the issue.  Asus k8N so I have no illusions that this computer should be lig

  • Amber Update still not available on my Lumia920

    Hi, I have a Nokia Lumia 920 (I think is unbranded) and I still didn't received the update Manufacturer Name: RM-821_eu_france_267 Mobile Operator: 000-FR Configuration ID: 150675 Label ID: 1232.5957.9200.10211.142 And the current firmware version is

  • How to get the restriction pass code for my iPad

    How to get restriction pas score for my ipad

  • M78 power supply replacement

    Hi, I need to replace one of my business' desktop PCs and I'm thinking about getting a an M78 (2111C3U) model. I read online where the power supply has a proprietary connector, so I was wondering if anyone has the part number or knows what a replacem

  • Is ATP for Multiple Plants possible????

    Hi Gurus, I have requirement like this we are having two SAP Systems in one Sales order is raised.. and tha will pass to 2nd system with ALE. in Second system actual Availability Check will run for the plant given in the line item of sale order. but