Create blog pages in HTML?

How do I create blog pages in a HTML site with visitor access after login?

Hi,
I think there is no other way than usind .htaccess to mod_rewrite your Dynamic URL and convert it to .HTML
you can read more here:
Dynamic Mod_Rewrite Just Made Easy
Mod Rewrite Dynamic URL's into Static URL's The Issue at Hand, There are two types of URLs: dynamic and...
Best Regards
Waleed Barakat
Developer-Online Creator and programmer

Similar Messages

  • Can/How can I create a page with all my blog pages RSS??

    Hello all.
    I have a website containing many seperate Blog pages according to their topics like News, Tech and Scifi.
    Is it possible to create a new page, that will contain the latest entries of all these blog pages a one "consolidated" page, maybe perhaps of RSS feed?
    Thanks and cheers

    Apple states
    How can I create a page that aggregates my podcasts?
    If you have multiple podcasts listed in the iTunes Store, the iTunes staff can create a single page that lists all of them in one place. We call this page an “artist page.” Note that a podcast can only appear on one artist page.
    To request an artist page, navigate to one of your podcasts, click on Report a Concern, and select Remove a Podcast. In the dialog box, explain that you would like an artist page, give us the exact name of the artist (please don’t include “Inc,” “LLC,” etc.), and list the exact feed URLs or links to your podcasts.
    at the bottom of this page
    http://www.apple.com/itunes/podcasts/creatorfaq.html
    I hope two is enough and if not that someone contacts me and maybe even changes the info on the above link.
    Thank you for your input!

  • How to create a popup help page in html db

    i'm trying to create a popup up help page in html db by having a help button from the main page and when clicked a popup page will appear... but can't seem to get it working...
    can somebody pls help me? thanks a bunch!!

    Hi Denes ,
    Need some more suggestion from you .
    I have incorporated your popup code in navigation 'Logout' link.
    Now after clicking on that the popup page appears fine .
    But i like to include two button in that popup page such a way that --
    after clicking 'Confirm Logout' button some database updation has been done and the child popup page unloads,but the parent page redirect to login page.But if cancel pressed then only child popup page unloads and no database action will will be carried out .
    Could you plz help on this .
    Cheers,
    Rosy

  • IWeb pages, blog pages, tags and html snippets

    I use Rage seo tool and Bluehost
    Can I add tags to blog pages to support seo?
    Now that Google bots look for "structured data" in pages, can I add an html snippet to pages containing something like:
    <div itemscope itemtype="http://schema.org/Organization">
       <span itemprop="name">Noosa Therapy Studio, Doonan</span>
       Located at
       <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
          <span itemprop="streetAddress">92 Marnie Cres</span>,
          <span itemprop="addressLocality">Doonan</span>,
          <span itemprop="addressRegion">Noosa</span>.
       </div>
      <img itemprop="logo" src="http://www.noosatherapy.com/Logo.png" />
       Phone: <span itemprop="telephone">(07) 5471 1752</span>
       <a href="http://noosatherapy.com/Therapies" itemprop="url">http://noosatherapy.com/Therapies</a>
    </div>
    Or am I on the wrong track?
    Thanks

    The code you provided is not meta code. You don't paste in the head of the webpage.
    Well, you can paste it there and the browser will render it.
    It's code that should be in the body of a webpage.
    And if you paste it there, make sure the info is correct.
    This :
    <a href="http://noosatherapy.com/Therapies" itemprop="url">http://noosatherapy.com/Therapies</a>
    should be :
    <a href="http://noosatherapy.com/Therapies.html" itemprop="url">http://noosatherapy.com/Therapies.html</a>
    And I wonder if SEO is so good.
    If I search for Noosa Therapy Studio Doonan
    http://www.google.com/search?q=Noosa+Therapy+Studio+Doonan
    I do find your post in this forum. And also your Google+ page. But no pages from you website.
    But if I search with :
    http://www.google.nl/search?q=Noosa+Therapy+Studio+Doonan
    I find two events from May last year :
    Noosa Therapy Studio Events
    Noosa Therapy Studio, Doonan opens for business
    Note that .nl is from the other side of the globe.
    No wonder I wasn't at the event.
    Also note that I used the words from your webpage: Noosa Therapy Studio Doonan
    It means I know about you. Because you advertised your business in the forum.
    Also, if I want to find one who does The Therapy in Doonan Queensland, I still do not find you :
    http://www.google.com/search?q=Noosa+Therapy+Doonan+Qld
    Perhaps your business name and domainname is not very unique. With 72,700 hits it looks like everybody is doing it in your area.

  • Can I create a blog page in Dreamweaver?

    Can I create a blog page in Dreamweaver?

    Yes and no.
    You could create the design you ultimately use for third party blogging software, like a Wordpress theme, in DW, but there's nothing built into DW that can create a blog in and of itself for you, no.

  • Unable to create a page content type

    Add-PSSnapin -Name Microsoft.Sharepoint.Powershell
    #$SiteURL = get-SPSite "http://srvr1:123/sites/ENGG/"
    $w = get-spweb "http://sRVR1:123/sites/ENGG/"
    $web = get-spweb "http://sRVR1:123/sites/ENGG/"
    try
    $cts =  $w.ContentTypes
    Write-Host "inside content types try block"
    $spId = new-object Microsoft.SharePoint.SPContentTypeId("0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF3900DCED8380ADA44ABB8411D56976A5F491")
    $spId
    $ct = new-object Microsoft.SharePoint.SPContentType($spId,$cts,"BIFPageCT")
    catch
      Write-Host "error occured in creation"
    Write-Host "going2 update web"
    $w.Update();
    #get all the ctypes from site collec
    ForEach($ctype in $w.ContentTypes)
    { #write-host $ctype.Name": "$ctype.ID
     if($ctype.Name -eq "BIFPageCT")
    {   write-host $ctype.Name": "$ctype.ID }else {  Write-Host "ctype not found" }}
     I  tried to create a  new content type in my new site collec in my portal. but it failed to  create.i have taken the content type id from my another site collc. where this content type is  successfully created!
    please help why i am getting content type not found error.

    Hi,
    We can use the following PowerShell script to create a page content type.
    $spWeb = Get-SPWeb http://sRVR1:123/sites/ENGG/
    $spWeb.AvailableContentTypes | Select Name
    $parent = $spWeb.AvailableContentTypes["Page"]
    $contentType = New-Object Microsoft.SharePoint.SPContentType -ArgumentList @($parent, $spWeb.ContentTypes, "BIFPageCT")
    $contentType.Group = "My Content Type"
    $contentType.Description = "BIF Page Content Type"
    $spWeb.ContentTypes.Add($contentType)
    $spWeb.Update()
    $spWeb.Dispose()
    Here is a blog for your reference:
    http://www.microsofttechnology.net/2012/03/how-to-create-content-type-site-column.html
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Font problem in excerpts on blog page

    Hi everyone!
    When I create a new blog entry, the font style that I choose is fine on the entries page, but not reflected in the excerpt on the main blog page. This wouldn't be a problem except that I and many of my readers are sight-impaired, and the font that won't change is very, very pale. I've tried everything I can think of to rectify this, but no luck! Is this something that I'm doing wrong?
    iMac   Mac OS X (10.4.6)  

    Patricia,
    I downloaded and modified your Blog.css file, you can download it here:
    http://www.geocities.com/[email protected]/landis_mdi/Blog.css
    I changed the font and made the font color darker. You need to do:
    1) Locate your Blog.css file in your iDisk, it should be in Blog_files folder.
    2) Rename the current Blog.css file to ~Blog.css. In case you would like to reverse the change.
    3) Place the modified Blog.css file in Blog_files folder.
    Open your main Blog.html and refresh the page to see if that's what you like.

  • Adding a photo gallery to a blog page?

    I see the last queries about being able to do this are from 2006.  I'm wondering if it is any easier now.  I'm creating a website for a film series project.  I used a 'blog' template so I could easily manage about 20 separate films (without having scores of pages to deal with).  Right now each of those 'blog' pages has a large number of free floating photos (shots from the film).  They take too long to load.  I'm wondering if I could create a photo gallery instead, ON the blog entry page, that would contain the pics, and allow for fast loads?
    Just wondering how one might create a photo gallery on a 'blog' entry page.
    Ben

    Having looked at your site, I would say that you layout is very artistic and would be completely ruined by using a photos template.
    DPI doesn't realy come into it as this is used for print. iWeb does have image optimization but its better to turn it off and reduce the image to the dimensions (in px) that it will appear on the web page before dragging it into the app.
    If you want to maximise the SEO and make the pages more interesting for us humans, I would add descriptive captions to the images and put them in the spaces between the staggered image layout.
    If you are comtemplating designing for mobile devices, you need to use every trick in the book to to reduce file sizes and cut content to the bone.
    I have been using responsive designs for quite a while now and learned a lot of hard lessons along the way on what works and what doesn't on mobile devices. Some more examples HERE.
    iPads are big enough for a traditional website to work on them as long as you pay attention to making the links and other user controls finger sized. I did figure out a way to make an iPhone compatible site using iWeb if you are interested...
    http://www.iwebformusicians.com/iWeb/Mobile-iWeb.html
    I must admit that I detest Wordpress although there are some responsive desgns available now. I did a test with one of the free ones but its a total pain and there doesn't appear to be any plugins for HTML5, responsive media players. I had to figure this out all on my own. If you click the Blog button on this page you should get there.

  • Photos on front blog page

    Hi. I know that in my blog, I have a choice in the inspector as to how many lines show up on the main blog page -- none or all of them. But what I can't figure out is it I can also show the photo(s) in the entry(ies) without making a person click on "read more."
    If you look at sites at blogger.com, you can just see everything without ever clicking, unless of course if you want to leave a comment.
    Just wondering if this functionality is somewhere and I missed it.
    Thanks a lot.
    Scott
    http://web.mac.com/scottkleinberg/iWeb/Site%204/Blog/Blog.html

    Hi. I know that in my blog, I have a choice in the
    inspector as to how many lines show up on the main
    blog page -- none or all of them. But what I can't
    figure out is it I can also show the photo(s) in the
    entry(ies) without making a person click on "read
    more."
    If you look at sites at blogger.com, you can just see
    everything without ever clicking, unless of course if
    you want to leave a comment.
    Just wondering if this functionality is somewhere and
    I missed it.
    Thanks a lot.
    Scott
    http://web.mac.com/scottkleinberg/iWeb/Site%204/Blog/B
    log.html
    I'm a beginner and have a photo on front blog page but nothing added to either 'entries' or 'archive'. Can't I just publish a blog page plus several photo pages without having to create 'entries' and 'archive' pages? Trying to make things simple for my first Web page. (Not using .Mac)
    John

  • Extending WebCenter Spaces 11.1.1.3: Creating New Page - IGNORE DUPLICATE

    Hi all,
    I am attempting to create a new group space page template for Spaces that has a floating div on the right side that will have content wrap around it. It should look similar in concept to the image in this link:
    http://css.maxdesign.com.au/floatutorial/tutorial0104.htm
    This seems like it should be simple enough but I need to allow dynamic content to be added each region with Oracle Composer. Currently when I am testing this, composer generates html tables around the different components and the content of the two regions overlaps each other. Has anyone successfully created a page template similar to this or have any ideas on how I might get it to work? Below is the current code I am using:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:pe="http://xmlns.oracle.com/adf/pageeditor"
    xmlns:cust="http://xmlns.oracle.com/adf/faces/customizable"
    xmlns:trh="http://myfaces.apache.org/trinidad/html">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1">
    <pe:changeModeLink id="cml1"/>
    <pe:pageCustomizable id="pageCustomizable1">
    <af:panelStretchLayout id="psl1">
    <f:facet name="center">
    <af:panelGroupLayout layout="scroll"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl1">
    <af:panelBox text="PanelBox1" id="pb1">
    <f:facet name="toolbar"/>
    <trh:tableLayout id="tl1" width="100%">
    <trh:rowLayout id="rl1">
    <trh:cellFormat id="cf1" width="20%" valign="top">
    <pe:layoutCustomizable id="lc1"
    showLayoutChanger="false"
    showIcon="false"
    type="oneColumn">
    <cust:panelCustomizable id="mainC"/>
    <f:facet name="contentA">
    <cust:panelCustomizable id="cnta"/>
    </f:facet>
    <f:facet name="contentB">
    <cust:panelCustomizable id="cntb"/>
    </f:facet>
    </pe:layoutCustomizable>
    </trh:cellFormat>
    <trh:cellFormat id="cf2" width="80%" valign="top">
    <div style="float:right">
    <pe:layoutCustomizable id="lc2"
    showLayoutChanger="false"
    showIcon="false"
    type="oneColumn">
    <cust:panelCustomizable id="mainC1"/>
    <f:facet name="contentA">
    <cust:panelCustomizable id="cnta1"/>
    </f:facet>
    <f:facet name="contentB">
    <cust:panelCustomizable id="cntb1"/>
    </f:facet>
    </pe:layoutCustomizable>
    </div>
    <pe:layoutCustomizable id="lc3"
    showLayoutChanger="false"
    showIcon="false"
    type="oneColumn">
    <cust:panelCustomizable id="mainC2"/>
    <f:facet name="contentA">
    <cust:panelCustomizable id="cnta2"/>
    </f:facet>
    <f:facet name="contentB">
    <cust:panelCustomizable id="cntb2"/>
    </f:facet>
    </pe:layoutCustomizable>
    </trh:cellFormat>
    </trh:rowLayout>
    </trh:tableLayout>
    </af:panelBox>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    <f:facet name="editor">
    <pe:pageEditorPanel id="pep1"/>
    </f:facet>
    </pe:pageCustomizable>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Edited by: user12002202 on Oct 7, 2010 11:11 AM

    Do you have a reference in your page binding to the template?
    Read following article: http://technology.amis.nl/blog/5711/the-adf-11g-area-template-for-micro-level-layout-design-patterns
    Specialy the note:
    >
    Note: the page template can have an associated page definition with data bindings. If that is the case, the template’s binding container is initialized and refrehsed along with the binding container for the page itself. The page’s page definition will have a <page path="reference to template’s page definition" > element in its executables section. This makes all the bindings in the template available in every page that uses the template. This in turn makes it easy to create a generic or at least reusable set of data bindings and attach it to many pages.

  • IWeb keeps crashing whenever i access the blog page

    Hello people,
    I have a big problem and this is getting very frustrating and tiring. I'm creating a website for a small company using iWeb 09 and iWeb keeps crashing when i select the blog page.
    At first i tried to delete the blog page. Sometime that too would result in a crash. Then i rebuilt it and as soon as i complete an entry with photos and work on the other pages when i go back to the blog page (not entry page) it crashes. Also going to archive crashes iWeb.
    I tried a few fixes already but the problem keeps coming back sooner or later. If i don't have a blog page on my website all is fine though.
    Here are the problem details:
    Process: iWeb [5879]
    Path: /Applications/iWeb.app/Contents/MacOS/iWeb
    Identifier: com.apple.iWeb
    Version: 3.0.1 (301)
    Build Info: iWeb-4750000~14
    Code Type: X86 (Native)
    Parent Process: launchd [268]
    Date/Time: 2009-05-07 20:02:32.135 +0300
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00000000000000b4
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.iWeb 0x001cd0a6 0x1000 + 1884326
    1 com.apple.iWeb.sfarchiving 0x006d6131 -[SFAXMLUnarchiver createObjectOfClass:fromNode:] + 881
    2 com.apple.iWeb 0x0003abaa 0x1000 + 236458
    3 com.apple.iWeb 0x00022c65 0x1000 + 138341
    4 com.apple.iWeb 0x00011aea 0x1000 + 68330
    5 com.apple.iWeb 0x00011791 0x1000 + 67473
    6 com.apple.iWeb 0x00099d92 0x1000 + 626066
    7 com.apple.iWeb 0x00008b29 0x1000 + 31529
    8 com.apple.AppKit 0x92a6c53b -[NSApplication sendAction:to:from:] + 112
    9 com.apple.sf.sfapplication 0x005e28fa -[SFAppApplication sendAction:to:from:] + 608
    10 com.apple.AppKit 0x92a6c478 -[NSControl sendAction:to:] + 108
    11 com.apple.AppKit 0x92a6c2fe -[NSCell _sendActionFrom:] + 169
    12 com.apple.AppKit 0x92a6b957 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1827
    13 com.apple.AppKit 0x92a6b1aa -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 541
    14 com.apple.AppKit 0x92a6aa64 -[NSControl mouseDown:] + 888
    15 com.apple.iWeb 0x00054a9e 0x1000 + 342686
    16 com.apple.AppKit 0x92a691a3 -[NSWindow sendEvent:] + 5381
    17 com.apple.AppKit 0x92a35d49 -[NSApplication sendEvent:] + 2941
    18 com.apple.sf.sfapplication 0x005ddf2b -[SFAppApplication sendEvent:] + 789
    19 com.apple.AppKit 0x9299369f -[NSApplication run] + 847
    20 com.apple.AppKit 0x929608a4 NSApplicationMain + 574
    21 com.apple.iWeb 0x0000b2d7 0x1000 + 41687
    22 com.apple.iWeb 0x00002e7c 0x1000 + 7804
    23 com.apple.iWeb 0x00002da9 0x1000 + 7593
    Thread 1:
    0 libSystem.B.dylib 0x913433ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x9136dd0d pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x9003bb32 glvmDoWork + 162
    3 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    4 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9133c1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x913439bc mach_msg + 72
    2 com.apple.CoreFoundation 0x95f2d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95f2dd34 CFRunLoopRun + 84
    4 com.apple.iLifeMediaBrowser 0x01716ae3 -[ILMediaBrowserPathWatcher(FSEvents) iLMBPathWatcherRunLoop] + 897
    5 com.apple.Foundation 0x939957ed -[NSThread main] + 45
    6 com.apple.Foundation 0x93995394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    8 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9136c906 kevent + 10
    1 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    2 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9138b6f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    2 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x913433ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x9136dd0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x954ceab9 fefragmentthread + 54
    3 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    4 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9133c20e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91343ce5 pthreadmutexlock + 569
    2 com.apple.Foundation 0x9399b063 -[NSLock lock] + 67
    3 SFWordProcessing 0x00eea07d -[SFWPSpellThread pRun:] + 229
    4 com.apple.Foundation 0x939957ed -[NSThread main] + 45
    5 com.apple.Foundation 0x93995394 _NSThread__main_ + 308
    6 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    7 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9133c1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x913439bc mach_msg + 72
    2 com.apple.CoreFoundation 0x95f2d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95f2dcd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x9405debe CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    6 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9133c226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9136e1ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x9136fa73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x939db75c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x939db570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x939db4d5 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x92a00d90 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x939957ed -[NSThread main] + 45
    8 com.apple.Foundation 0x93995394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    10 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x9133c1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x913439bc mach_msg + 72
    2 com.apple.CoreFoundation 0x95f2d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95f2dcd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x939f8d40 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x939957ed -[NSThread main] + 45
    6 com.apple.Foundation 0x93995394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    8 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x913433ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x9136dd0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x941e445c pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x941f6d8e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    5 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x913433ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x9136dd0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.vImage 0x912254ef vImageQueue_DequeueJob + 111
    3 com.apple.vImage 0x912257bc vImageWorkerThreadFunc + 124
    4 libSystem.B.dylib 0x9136d095 pthreadstart + 321
    5 libSystem.B.dylib 0x9136cf52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x27dede60 ecx: 0x9283b514 edx: 0x00000000
    edi: 0x00000000 esi: 0x2b8f7080 ebp: 0xbfffeb18 esp: 0xbfffea70
    ss: 0x0000001f efl: 0x00010246 eip: 0x001cd0a6 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x000000b4
    Binary Images:
    0x1000 - 0x3c1ffa com.apple.iWeb 3.0.1 (301) <221ff6a98c83925f65488b865fa8673d> /Applications/iWeb.app/Contents/MacOS/iWeb
    0x46f000 - 0x509ff4 com.apple.MobileMe 6 (1.0) <a7a93762d11cb22173a4620c2ac931c6> /Applications/iWeb.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobile Me
    0x56a000 - 0x5a2ffb com.apple.iWeb.SFAnimation 1.0 (0.0.1d1) <1a2030114f5fc15cb3244fd2cf9e2eb3> /Applications/iWeb.app/Contents/Frameworks/SFAnimation.framework/Versions/A/SFA nimation
    0x5ce000 - 0x66dffc com.apple.sf.sfapplication 1.0 (1.0) <e94adf9bf7563b1e601fb498b3c2b40e> /Applications/iWeb.app/Contents/Frameworks/SFApplication.framework/Versions/A/S FApplication
    0x6cc000 - 0x722fef com.apple.iWeb.sfarchiving 1.0 (0.0.1d1) <9b08fbb068d2e0bd3f71aeceac1c6d3b> /Applications/iWeb.app/Contents/Frameworks/SFArchiving.framework/Versions/A/SFA rchiving
    0x755000 - 0x79fff4 com.apple.iWeb.SFControls 1.0 (20030306_1) <ae70d9095811ae4fd9f758a858786510> /Applications/iWeb.app/Contents/Frameworks/SFControls.framework/Versions/A/SFCo ntrols
    0x7ce000 - 0x95afe2 com.apple.iWeb.sfdrawables 2.0 (2.0) <c2e4e46f854982638e73910d12f14487> /Applications/iWeb.app/Contents/Frameworks/SFDrawables.framework/Versions/A/SFD rawables
    0xa1c000 - 0xad2ff2 com.apple.iWeb.sfinspectors 1.0 (1.0) <ab53e9e3ff7b4f46ea43beaf368ede8d> /Applications/iWeb.app/Contents/Frameworks/SFInspectors.framework/Versions/A/SF Inspectors
    0xb2f000 - 0xb58ffb com.apple.iWeb.sflicense 1.0 (0.0.1d1) <5abadcdda2154ca9d0471c02d54da1dd> /Applications/iWeb.app/Contents/Frameworks/SFLicense.framework/Versions/A/SFLic ense
    0xb75000 - 0xbfdff5 com.apple.iWeb.proofreader 0 (1) <54dc829317141bf9481f87fdd81706a5> /Applications/iWeb.app/Contents/Frameworks/SFProofReader.framework/Versions/A/S FProofReader
    0xc0d000 - 0xd18fff com.apple.iWeb.sfrendering 1.0 (1.0) <ae238164db27cf364b80f4ae6b337663> /Applications/iWeb.app/Contents/Frameworks/SFRendering.framework/Versions/A/SFR endering
    0xd7e000 - 0xd97ffe com.apple.iWeb.sfstyles 1.0 (1.0) <80cb37c6d58ad0b23fe8c3c1d8a83f78> /Applications/iWeb.app/Contents/Frameworks/SFStyles.framework/Versions/A/SFStyl es
    0xda9000 - 0xe59ff7 com.apple.iWeb.sfutility 1.0 (0.0.1d1) <22d10ec617f9c69e943e787d2bad0086> /Applications/iWeb.app/Contents/Frameworks/SFUtility.framework/Versions/A/SFUti lity
    0xec9000 - 0x1134fef +SFWordProcessing ??? (???) <74e0956f02f28e08932ccf006ac5ca88> /Applications/iWeb.app/Contents/Frameworks/SFWordProcessing.framework/Versions/ A/SFWordProcessing
    0x1258000 - 0x14afffb com.apple.MessageFramework 3.5 (930.3) <548c39b875ebdc054eed49e9dd5238f3> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x1605000 - 0x1695ffb +com.panic.FTPKit 1.2 (1.2) <02d748276ba8e743f69708d595cf4c47> /Applications/iWeb.app/Contents/Frameworks/FTPKit.framework/Versions/A/FTPKit
    0x16db000 - 0x174bff7 com.apple.iLifeMediaBrowser 2.0.2 (321) <096200840dfe3556d984bed9e9e1e4bc> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1796000 - 0x17cefff com.apple.OSAKit 1.1 (55) <38257e261cc7dd391e4dee6a69861e49> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x17fe000 - 0x1826ffb com.apple.framework.Admin 3.6 (3.6) <eeea1aab3b50feb69cd15e6450a52645> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x1848000 - 0x1852fff libexslt.0.dylib ??? (???) <2d56b8c39848d8a524cb0ae8d6299f19> /usr/lib/libexslt.0.dylib
    0x1858000 - 0x185afff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x1861000 - 0x1885fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x189a000 - 0x1992fe0 com.apple.DiskImagesFramework 10.5.4 (195.2.2) <62a6764ff62868031f882857791ff1d6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x19f8000 - 0x1a2efff com.apple.MediaKit 9.1 (401) <36149a69962ed3101199093a6220ef74> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x1a3f000 - 0x1b08ff5 com.apple.DiscRecording 4.0.3 (4030.4.3) <f985693413a9d58893068d35568de054> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1b73000 - 0x1b9effb libcurl.4.dylib ??? (???) <54ada27deb3b4ff7043d8836264eca0d> /usr/lib/libcurl.4.dylib
    0x1bb0000 - 0x1bb2fff +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x1f7b000 - 0x1f7bfff +com.yazsoft.SDEnhancer ??? (1.0) <c4fed61e4fe04e072699c0bad4df5a1d> /Library/InputManagers/SpeedDownload Enhancer/SpeedDownloadEnhancer.bundle/Contents/MacOS/SpeedDownloadEnhancer
    0x1f80000 - 0x1f81ffd +com.1passwd.InputManager 2.9.11 (7371) <963f77b2b1759b7d6987caada09311a4> /Library/InputManagers/1PasswdIM/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
    0x1f86000 - 0x1f88fff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x26f72000 - 0x26f75fef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x26f7a000 - 0x26fdffde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x26fff000 - 0x27045fc3 com.apple.motion.component 1.0 (1.0) <77973a134e79426f853f2318e52a2207> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x2704b000 - 0x2704e02f +Motion ??? (???) <b5e862eee0ff4f86a78998e3e601a18c> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x27213000 - 0x2740bfff com.apple.RawCamera.bundle 2.0.13 (435) <083354ccec68bf7c9fc99523a5838f92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x27ce5000 - 0x27ceafff libFontStreams.A.dylib ??? (???) <ddb5c7893e2b29f1bd64e399225c145a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
    0x28046000 - 0x28062ff7 GLRendererFloat ??? (???) <dcdc2e0de7fb9a52d99e529c3688f26d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x28200000 - 0x28383fe3 GLEngine ??? (???) <bfbd7ce69ea896a6b38d6232b01cdeda> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x283b1000 - 0x28719fe8 com.apple.GeForce8xxxGLDriver 1.5.36 (5.3.6) <e5d9fd7873a13fc3acc278b534337527> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x29d54000 - 0x29d5afff com.apple.iLMBAperturePlugin 2.0.2 (94) <ef8ad0737e0bfe0212bf481687932efd> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x29d62000 - 0x29d63fff com.apple.iLMBAppDefPlugin 2.0.2 (94) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x29d69000 - 0x29d6afff com.apple.iLMBFolderPlugin 2.0.2 (94) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x29d70000 - 0x29d74fff com.apple.iLMBGarageBandPlugin 2.0.2 (94.1) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x29d7b000 - 0x29d86fff com.apple.iLMBiMoviePlugin 2.0.2 (94) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x2a65e000 - 0x2a66ffff com.apple.iLMBiPhoto8Plugin 2.0.2 (94) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x2a678000 - 0x2a680fff com.apple.iLMBiPhotoPlugin 2.0.2 (94) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x2a688000 - 0x2a690fff com.apple.iLMBiTunesPlugin 2.0.2 (94) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x2a698000 - 0x2a752fff com.apple.iTunesAccess 8.1.1 (8.1.1) <67baa90c9d0757862448edb02fefe7fe> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x2a772000 - 0x2a774fff com.apple.iLMBMoviesFolderPlugin 2.0.2 (94) <cbfc693badcbc6b464766a8363dd8f57> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x2a77a000 - 0x2a77cfff com.apple.iLMBPhotoBoothPlugin 2.0.2 (94) <a6dbe217570d12c173ee7cf5134d0c8b> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x2a8f1000 - 0x2a8f6ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90013ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90014000 - 0x904e5f3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x904e6000 - 0x904f6fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x904f7000 - 0x90503fff libbz2.1.0.dylib ??? (???) <cc1b7e3f5f4e2ff545157c368e09bc5e> /usr/lib/libbz2.1.0.dylib
    0x90504000 - 0x9053effe com.apple.securityfoundation 3.0.1 (35844) <2fbb6a1177ef98350b8aefc60737ba0e> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9053f000 - 0x90590ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90591000 - 0x90711fef com.apple.CoreAUC 3.02.0 (3.02.0) <e9c0220542fac5c62ef3b79aa791252f> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90712000 - 0x90714fff com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90715000 - 0x907e3ff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x907e4000 - 0x90816fff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90817000 - 0x9081afff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9081b000 - 0x90888ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x90889000 - 0x90908ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90909000 - 0x90909ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9090a000 - 0x90a5cff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90a5d000 - 0x90bbeff2 com.apple.CalendarStore 3.0.6 (847) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x90bbf000 - 0x90ca0fff com.apple.syncservices 3.1 (389.12) <e0c2241379300f52b12b479e53797016> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90ca1000 - 0x90ce0fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90d85000 - 0x90d8dfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90d8e000 - 0x90ec6fe7 com.apple.imageKit 1.0.2 (1.0) <2e354566521df8b1e3a78e9aeab5e6b4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90ec7000 - 0x90f21ff7 com.apple.CoreText 2.0.4 (???) <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90f22000 - 0x90f4afff libcups.2.dylib ??? (???) <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib
    0x90f4b000 - 0x90f9cfeb com.apple.framework.familycontrols 1.0.3 (1.0.3) <52c7ec091f6d3dc99ec42e1e185c38a7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90f9d000 - 0x90f9dffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90f9e000 - 0x9109ffe7 com.apple.PubSub 1.0.3 (65.1.2) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x910a0000 - 0x910aafeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x910ab000 - 0x9115dffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x9115e000 - 0x91164fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91165000 - 0x9122cff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9122d000 - 0x912e4ff3 com.apple.QTKit 7.6 (1290) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x912e5000 - 0x912eafff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x912eb000 - 0x9132ffeb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <29109fed9f54cbe3d3faea0603362719> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91330000 - 0x91337ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91338000 - 0x91339ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x9133a000 - 0x9133affb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9133b000 - 0x914a2ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x914a3000 - 0x914c2ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x914c3000 - 0x914c5ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x914c6000 - 0x914d5fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x914d6000 - 0x914dbfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <97878a73074e7da4fe31ea010a5d5ae1> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x914dc000 - 0x924b7ff6 com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x924bb000 - 0x92538fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92539000 - 0x92540ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x92541000 - 0x925c8ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x925c9000 - 0x925cdffd com.apple.AOSNotification 1.0.0 (68.10) <38239776860eed3c5265d4ae3c21dd73> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x925ce000 - 0x925e4fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x925e5000 - 0x92626fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92657000 - 0x92663ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92664000 - 0x9270bfeb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9270c000 - 0x92772ffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92773000 - 0x92773ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92774000 - 0x92854fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x92855000 - 0x928c7fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x928c8000 - 0x928c8ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x928c9000 - 0x928f2fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x928f3000 - 0x92911fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x92912000 - 0x9291ffe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92920000 - 0x92954fef com.apple.bom 9.0.1 (136.1.1) <e1f64b0dae30d560a1204c69c14751a0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92955000 - 0x92959fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9295a000 - 0x93158fef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93159000 - 0x931b2ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x931b3000 - 0x931b3ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x931b4000 - 0x93295ff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x93296000 - 0x932a7ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x932ad000 - 0x933e5ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x933e6000 - 0x936eefff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f2000 - 0x938c0ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9398b000 - 0x93c06fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93c11000 - 0x93c26ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93c27000 - 0x93c70fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93c71000 - 0x93c89ff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93c8a000 - 0x93c8ffff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93c90000 - 0x93c9bfe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93c9c000 - 0x9405afea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9405b000 - 0x940f8fe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x940f9000 - 0x94135fff com.apple.DAVKit 3.0.6 (653) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x94136000 - 0x941b0ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x941b1000 - 0x9427cfff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9427d000 - 0x942d9ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x942da000 - 0x942e1fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x942e2000 - 0x942e2ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x942e3000 - 0x94315ff7 com.apple.DotMacSyncManager 1.2.3 (305) <76f2a03fbb91d701cd8c1d1dde21b531> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x94316000 - 0x94316ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94317000 - 0x9434dfef libtidy.A.dylib ??? (???) <5351215b54226cc47eb1cd4b011cc2f3> /usr/lib/libtidy.A.dylib
    0x9434e000 - 0x94355fff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94356000 - 0x943a5fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x943be000 - 0x9444aff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9444b000 - 0x94aebfff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94b09000 - 0x94b31ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94b32000 - 0x94b37ffc com.apple.KerberosHelper 1.1 (1.0) <86b1b4589baa557d067d07efc01890d2> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x94b38000 - 0x94b82fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94b83000 - 0x94c16fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94c17000 - 0x95268fff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95269000 - 0x95327fff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95328000 - 0x95328fff com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95329000 - 0x953d9fff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x953da000 - 0x95777fef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95778000 - 0x957b2fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x957b3000 - 0x95ad8fe2 com.apple.QuickTime 7.6.0 (1290) <bc0920abbbaad03f5513ac7ffbd30633> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95ad9000 - 0x95b63fe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95b64000 - 0x95b8ffe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x95b90000 - 0x95e6aff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95e6b000 - 0x95ea9ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95eaa000 - 0x95eb9ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95eba000 - 0x95fedfff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x960e3000 - 0x9619dfe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9619e000 - 0x961bbff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x961bc000 - 0x961ebfe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x961ec000 - 0x965fcfef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x965fd000 - 0x966e2ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x966e3000 - 0x966e7fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x966e8000 - 0x9682eff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9682f000 - 0x9685cfeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9685d000 - 0x96894fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96895000 - 0x96a14fff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96a15000 - 0x96a54fff com.apple.CoreMediaIOServicesPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96a55000 - 0x96a5efff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96a5f000 - 0x96adcfeb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96add000 - 0x96b0effb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96b0f000 - 0x96b9afff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e04000 - 0x96e97ff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96eac000 - 0x96eb0fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x96eb1000 - 0x96ef3fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96ef4000 - 0x96f18feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x96f19000 - 0x96f25ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x96f26000 - 0x96f34ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96f35000 - 0x96f50ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96f51000 - 0x96f5cfff com.apple.dotMacLegacy 3.1 (246) <d335114af509bf38a7ead5274a93dfb1> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x96f5d000 - 0x96f7bff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96f7c000 - 0x96f7cffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x96f7d000 - 0x96fa1fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x96ff1000 - 0x96ff1ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96ff2000 - 0x9704fffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x970bf000 - 0x9727bff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9727c000 - 0x97294fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0xbad00000 - 0xbad01fff libLatin2Converter.dylib ??? (???) <6caf74309d37ccf41c0a06277d2e637b> /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I submitted this to Apple like 50 times today already.
    Also if i delete even the sole entry in the blog, and click to add another i get a crash.
    HELP PLS!

    robogee wrote:
    I have removed the iWeb "Domain" folder (which contains my iWeb pages) to the desktop, but it made no difference.
    Welcome to the discussions. It's the Domain file not a folder that you should try moving to the Desktop. Perhaps you meant "file", but at times there is confusion between iWeb's Domain file and the resulting published folder of HTML and media. You may have already seen this:
    Relocating the "Domain" file from ~/Library/Application Support/iWeb/Domain to the Desktop, launching, and replacing the old Domain file worked!
    ...quoted from _this thread_.
    robogee wrote:
    I have tried emailing Apple but the only response I get is to say that I have emailed Sales...
    Apple support options are HERE.
    By the way, your Public Profile indicates you're using Mac OS X (10.5.6) — upgrade to 10.5.7 or update your Public Profile.

  • Blog Page crashes ie9

    The next little irritant has to do with Blog Pages (i.e., http://photo.tutsplus.com/articles/shooting-articles/10-top-tips-for-capturing-the-winter- cold/), that have at least one "Comment," crashing ie9. The same page prior to a Comment being posted formats without issue and the Print button sends the page to the printer as expected
    At the same time, I am curious why "control" options are not available when printing within a Browser as they are when printing a PDF file -- i.e., ink control, color/BW, etc.

    Hello,
    Thank you very much for all the information provided. We have been able to reproduce the issue.
    Here is the technical information:
    IE renders webpages in different modes based on the standard used for creating the webpage. By default it opens the content in standard mode based on the value of tag <!DOCTYPE>. This tag is added by the webpage creator. It defines certain standard the HTML webpage is supposed to be developed in and hence IE picks this standard to render those webpages. However, if the webpage creator does not follow the standard which is specified, uncertain behavior may occur. The cases you have shared are those where such problem is coming and LeanPrint is unable to understand the content. For more information on compatibility mode, please refer: http://blogs.msdn.com/b/askie/archive/2009/03/23/understanding-compatibility-modes-in-inte rnet-explorer-8.aspx
    Workaround:
    You can enable the "Compatibility View" of IE9 by clicking on Menu item Tools -> Compatibility View. This will instruct IE9 to render the content in a compatible way and the problem should not come. Please try this out and let us know if it does not work for you.
    Also note that capturing the comments is not a part of the functionality. At present LeanPrint only captures the main article of the page. However, I have taken a note of this input.
    Thank you very much again and feel free to reach out to us.
    Thanks,
    Adobe LeanPrint Team

  • Using Adobe Muse to create master pages

    Hi,
    Is it possible to use Adobe Muse to create master pages for Sharepoint 2013?
    The Muse product creates the Javascript, css and html files, with the images etc.
    The Muse product looks ideal to create the master pages with no coding required.
    Nick

    For SharePoint 2013, yes you could absolutely use this tool to create your HTML (this post is in the 2010 forum, so just making sure).  In SP 2013 you can use the new Design Manager to upload HTML which then gets converted to a .NET Master Page. 
    So long as Muse turns out valid HTML, you should not have an issue.
    Brandon Atkinson
    Blog: http://brandonatkinson.blogspot.com

  • Recreate a blog page to link with existing entries

    My hard disk crashed a while ago, and although it was replaced under Applecare, some of my data was either corrupted at the time or subsequently and hasn’t copied back successfully. The problem I’m stuck with now is that I can’t get iWeb working again properly, and I need to find out if there’s a way to recreate a blog page that will link to the existing series of entries which show up ok in the edit entries area, just not on the lead blog page itself.
    Here’s more detailed info:
    I've copied the whole Site folder from my iDisk, but can't seem to force iWeb to read from it. I can find the Domain file in my user library, and tried removing it to make iWeb create a new one, which I hoped it would rebuild from the downloaded Site folder which I swapped in for the old one that appears to be corrupt. 
    However, iWeb is a stubborn little so-and-so, and I just can't get two key parts of the site I've built within it to now see their links. The main opening page of the website is a blog, and that is completely blank, even though the series of entries are present. The archive for this section is also blank. This is my biggest worry, as if I try to publish and the index page is blank then there's no way to navigate to the rest of the site.
    The second part that's playing up is also a blog, called Soul Blog, and for this one the blog page is partially there, but missing the list of entries (you can see the header section and a few Google ads down the right hand side). Again the entries are present, although several are missing their media (I think that may be a few files that were lost in trying to reinstall my data onto the replacement hard drive when mine crashed). On this one the archive seems fine.
    I've added here a series of screenshots to illustrate what I mean, and whereas with a normal page I could just rebuild it, I can't figure out how to make a blog page and tell it to access all of the existing entries the old one linked to. So if any of you have any idea on how to go about this I'd be eternally grateful! Here are the screenshots, and many thanks for any help.
    Sean

    iWeb doesn't have an integrated way of doing this (perhaps in iWeb 2.0?), so you'll have to do post-publishing editing. One approach is to use a Flash-based viewer...
    SimpleViewer is a free, customizable Flash image viewing application:
    http://www.airtightinteractive.com/simpleviewer/
    Here's an example integrated into an iWeb site:
    http://www.rowan-cottage.co.uk/Site/Events_Photos.html
    And here's a tutorial on how to do it:
    http://www.rowan-cottage.co.uk/Site/SimpleViewer.html
    An alternative viewer is:
    http://www.bananalbum.com/
    Here's a thread discussing various alternatives:
    http://discussions.apple.com/message.jspa?messageID=4403028#4403028
    Bear in mind that with such "viewers" you're not going to have complete flexibility on the placement of your thumbnails. For absolute control of thumbnail positioning and behaviour you would need, for example, a JavaScript script. Softpress' "Freeway Pro" web-design software incorporates a "Slave Show/Hide Image" JavaScript "Action":
    http://www.softpress.com/actionfiles/Slave_Show_HideImage/
    ...but then you would be moving away from being a pure iWeb site.

  • Blog page look/feel questions

    We have our site up and running in BC, and we have a functional blog page—and I say that loosely.  We do not have much code experience (correction:VERY little, if any), and have tried to mess with some code, but it just is a mess when we do.  Are there folks who can help us with the following:
    (1) Each time we add a new post to the blog the formatting is a nightmare.  We edit, change fonts, spacing, carefully bold what we want—update it, then the post looks nothing like we intended.  We have to go into the html side and search for the "styles" and try to individually change them?  It's a nightmare and so unbelievably tedious.  We're comfortable with designing and writing the posts.  Our discomfort comes when AFTER we've written and carefully edited it---it looks nothing like the post we wanted.
    (2) The archive list does not appear on our blog page at all.  It appears when someone chooses to open comments.  And then the formatting for the comments page is horrid.  We have no idea how to change the look of that.
    (3) Are there folks who can help us with this particular issue we're having that is all blog related?  We would be thrilled to speak with someone.  Thanks.

    Hi Sasegars,
    I am very new to posting, but I thought I might be able to point you in a direction (hopefully the right one). 
    1) It seems like you are trying to do the formatting from the blog post window.  It is much easier to do the formatting on the templates so that they apply to all of the posts, if they have similar formatting.  I am not sure if you know where to edit them, so here you go.  Dashboard --> Site Manager --> Module Templates and choose Blog Layout.   (I think this link goes there www.[yourdomain].com/AdminConsole/#!/Customize/BlogTemplates.aspx)  If I understand correctly, you want to edit the Blog Post Detail Layout.  This layout formats how the blog post looks when you click on a single post.  There are system {tag_...} that you can insert and move around to display the system field information.  I recommend editing in the html because the generated code is very garbled and unintelligible.
    FYI - The "styles" that you look for and change are inline css styles (3 types of css - external, internal and inline).  The styles can be edited in bulk and for the entire site on the external stylesheet.  It is the .css file in the file manager.  I would create my own and not mess with the modulestylesheets.css that BC creates. Create a new css file and add it the page template (I can explain this more, but it does not apply to this question.)
    2) The archive {tag_blogpostarchive} is likely not on the Overall Blog Layout or the Blog Post List Layout.  Go back to the blog templates and add the {tag_blogpostarchive} where you would like it to be.  It seems that the archive only shows for the past 12 months, but Sidney Mitchell (He knows his "stuff"; I just used his idea) has a great way to show more: see http://forums.adobe.com/message/4602294#4602294. As for the comments page, there is the Blog Comment List Layout or the layout in the system pages that can be edited.
    I hope I have pointed you in the correct direction.  Let me know if anything was confusing or above your coding level.  I will do what I can to help or refer you to resources that can.
    Oh, it is typically most useful to include a page url for others to look at.
    Cheers,
    Dave

Maybe you are looking for