Two people working on the same IWeb-page and still keep our own work saved.

Hi! I work together with a girlfriend buliding webpages in IWeb. Is it possible for us to exchange work when both of us is edithing the same webpage - and both of us have other pages one our own that we rader not share/update/change/edit/overwrite/delete,...?

Yes. Are you referring to pages in the same site or separate sites?
For separate sites the shared site would need to be it in its own domain.site2 file. Then follow the directions in this MacWorld online article: Managing an iWeb site from multiple Macs
The important caveat to this is that both of you cannot work on the site at the same time and plenty of time must pass between one of you finishing their work and the other starting up. It's just the nature of the beast. Otherwise you would have to pass the domain.sites2 file/package back and forth between your two Macs.
If your two Macs are connected together on the same LAN you could place the domain file on an external HD attached to one of the Macs so both would have access to the same file. Again, both of you could not work on the site at the same time.
The other sites would then be in a separate domain file.
If you're referring to pages in the same site it can be done by having the jointly managed pages in one site and your pages in a separate site and her pages in a separate site.
Then in the joint site add blank pages representing your pages and her pages. In each blank page put the following code in an HTML snippet:
<script type="text/javascript">
parent.window.location = "URL TO PAGE ON SITE YOU WANT TO REDIRECT TO"; </script>
Thanks to Cyclosaurus for this code
On each of your sites you would add blank pages representing the joint page and each other pages with the same redirect code.
Now you can edit and change your pages at any time, publish as she can also with her pages. For the joint pages you will have to use one of the methods I described above for separate site.
See this demo page for more about the Redirect method: Redirect.
OT

Similar Messages

  • Can you work on the same iweb page on 2 different computers?

    hi, i usually work on my imac doing my iweb pages, i would like to work on a second ibook that is in the house. i've tried and tried but can't find a way for the ibook one to pick up the pages. it has the same .mac idisk folder as the other mac with the iweb backup but won't start up with the iweb pages, the iweb starts up blank asking for its first page.
    is there a way?
    thanks

    Chuck thanks, I found I can do it from that post, all you need to do is copy the iweb main folder to a USB mini, then I replace the iWeb folder in the next machine... it works great, you just have to remember to update it when you leave one machine and add the update to the next.

  • I have an icloud account with two other users besides myself.  We share the same game center.  We want our own. My two children want their own Clash of Clans account!  What do I do?

    I have an icloud account with two other users besides myself.  We share the same game center.  We want our own. My two children want their own Clash of Clans account!  What do I do?

    Log out of Gamecenter and try downloading CoC again. if it doesn't prompt you with a new village, try downloading with a different apple id. if that doesn't work, you would need a new device to create a new village and transferring it to your sons device using the code in the CoC settings.

  • I would like to import two different cf cards from two different cameras into the same project/folder and have them be in order of the times they were taken, is there a trick?

    I would like to import two different cf cards from two different cameras into the same project/folder and have them be in the order of the times they were taken, any ideas on how to do this?

    Just import them normally and sort the project by date. They will fall into place. If you tried this and it isn;t happening then make sure the data and times on the two cameras are identical and make sure you are sorting by date and time and nothing else.

  • HT5622 I have two iPhones synced with the same Apple ID and so the contacts are being shared in both of them. Is there any way to revert this?? The reason is that if I delete some contact from one device then it automatically erases from the second one as

    I have two iPhones synced with the same Apple ID and so the contacts are being shared in both of them. Is there any way to revert this?? The reason is that if I delete some contact from one device then it automatically erases from the second one as well

    Yes, you stop using the same Apple ID under Settings > iCloud.

  • Can two I-4phones have the same user name and password?, Can two I-4phones have the same user name and password?

    Can my husband and I share the same user name and password on our I-4 phones?

    Yes.. but it can introduce complications.
    If you're going to use the same Apple ID for iCloud, contacts, calendars, and photo stream are all shared if enabled.

  • HT5624 My husband and I share an Itunes account so use the same email address and password.  Our iphones are now connected and we get each other's messages and share each other's contacts.  How can we stop this happening?

    My husband and I share an Itunes account so use the same email address and password.  Our iphones are now connected and we get each other's messages and share each other's contacts.  How can we stop this happening?

    A couple of different approached:
    Create a second AppleID for one of you that includes the email address and phone number you wish to use for messaging, but do not apply it to the iTunes and app store (just keep the current one). My wife and I do this and it works quite well. Also allows for easier syncing of Contacts , notes etc. using icloud if you wish to do that.
    Add additional emails/phone numbers to the existing account and change the Send/Receive settings for Messages. this will not fix the Contcts isues for you however.

  • If I have a MacBook Air, can I download digital copies of movies onto another computer that uses the same iTunes account and still get the movies on my MacBook?

    If I have a MacBook Air, can I download digital copies of movies onto another computer that uses the same iTunes account and still get the movies on my MacBook?

    In most countries with a lot of movies yes you can, just like how iCloud works with apps/music

  • Two Flex app on the same web page + BlazeDS

    Hi,
    On our welcome page, we have two small apps that display advertisement; they are both identical and use BlazeDS. When the welcome pas shows, I always have one of the app that receives this fault :
    [RPC Fault faultString="Detected duplicate HTTP-based FlexSessions, generally due to the remote host disabling session cookies. Session cookies must be enabled to manage the client connection correctly." faultCode="Server.Processing.DuplicateSessionDetected" faultDetail="null"]
    I feel the problem comes from the fact that two apps from the same page access the same service at the same time. Am I wrong?

    Hi. I believe you are right. Using a HTTP sniffer such as Charles to look at the HTTP headers would tell us exactly what is happening but I think we can assume that you are in the ballpark.
    If the server gets a request with no session cookie header, I think it will create a new session and then send a Set-Cookie header on the response with the new session id. It is likely that if both your apps are making their initial requests to the server at roughly the same time that neither of the requests has a session cookie header. In that case the server is probably creating two sessions, one for each request and that is likely causing problems.
    While I haven't tested this particular scenario, I have been doing some testing around session cookie handling in BlazeDS recently. I would see if you can workaround this problem by already having a HTTP session established with the server before either of your apps runs. One way to do this would be by having a jsp page redirect to your welcome page. The call to the jsp page would cause a session to get created on the server. The server would return a Set-Cookie header with the new session id. The browser would then request the welcome page sending a session cookie header on the request. Your apps would load. Each app would make its initial request to the server only this time the requests would contain a session cookie header for the same valid HTTP session. . . and you would avoid getting duplicate session detected errors. . . at least that's I hope would happen.
    If I have some free time I will try running through this scenario (having two small apps on the same page) and report back.
    Hope that helps.
    -Alex

  • I have two laptops authorized with the same itunes account.  One computer is not working, so I want to know how I can access my playlists, etc. that are one that computer on the working one?

    I have two laptops authorized with the same itunes account.  However, there are different playlists on each laptop.  One laptop is messed up and I cannot get on the internet with it, so I was able to deauthorize it from the itunes account.   I thought that would bring the playlists over to the other computer, but it did not.  Is there a way to do it?

    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
     Cheers, Tom

  • Currently I have two iPads connected to the same Apple ID and one connected to Game Center. I want to connect the second iPad to Game Center so that I do not lose my progress on apps like Clash of Clans.

    Currently I have two iPads connected to the same apple iPad. One is connected to game center(iPad air) one the other(iPad 2) is not connected to Game Center. How can I connect the iPad 2 Clash of Clan progress to game center when I already have another clash from iPad air connected?

    You cannot transfer content between two accounts. The sooner you make the conversion, the better. Just pick the new one and start using it(buying music etc).
    *A lot of people open new accounts when their email changes or they have a new email. You can just access your apple id account and change the primary email that you use to log in along with other details.

  • Linking between two IFRAME tags on the same JSP page

    I have a JSP (lets call it �PAGE_A.jsp�) that contains a table� the <TD> tags hold IFRAME tags with an initial �src� referencing a �blank.jsp��

    <!-- Report View Table-->
    <table width="100%">
    <tr>
    <td>
    <iframe id='report_view' name="report_view" width='60%' height="500" frameborder="0" src='blank.jsp'>
    </td>
    <td align="left">
    <iframe id='drilldown_view' name="drilldown_view" width='40%' height="500" frameborder="0" src='blank.jsp'>
    </td>
    </tr>
    </table>

    At a point, the user initiates a call to a servlet, and the output (PAGE_B.jsp) is returned to the first IFRAME �report_view�.
    PAGE_B.jsp contains HTML anchor tags that call the servlet again, this time the return target is the second IFRAME �drilldown_view� :
    ( Some Text).
    Clicking the link produces the desired page to be generated and displayed in the correct IFRAME running IE 5.5, however, the same code under NETSCAPE 7.x causes the �linked� page to open in a new browser window.
    I have deduced that this effect may be due to the NETSCAPE browser �thinking� that the targeted IFRAME (�drilldown_view�) should be a �child� of the IFRAME that contains the link (�report_view�), instead of another IFRAME belonging to PAGE_A.jsp. Under this circumstance, NETSCAPE cannot find the �target�, and thus redirects to a new browser window.
    Q: Is there a way to specify the �parent� of the �iframe� in the anchor�s �target� attribute?

    target in a link shouldn't care, as long as the IFRAME is in the same window... It should be able to find it.
    Otherwise, you could explore using Javascript to get a reference to the object by specifying the path:
    var oIFrame = top.document.getElementById('drilldown_view');
    oIFrame.src = 'somepage.html';
    that could work.. I've used that type of thing before.

  • Two Identical forms on the same JSP page.???

    Hi want to have two identical submit forms on the same form but for some reason a get a javascript error when i add the second form to the JSP page... can you help me...

    I assume you meant "two identical submit buttons", instead of "two identical submit forms". Seeing your description of the problem, I believe you can reproduce it with a pure .html page, that is, a page containing not JSP code. So it is not a problem in JSP domain proper.
    I was going to direct you to the Technologies>>Internet>>Dynamic Services forum at
    http://forums.oracle.com/forums/thread.jsp?forum=95
    Then I found you have posted the same question as thread 298169 there.

  • Can I get multiple videos to run on the same iweb page?

    Hi there
    Am about to embark on a project which involves uploading several video clips + commentary to one web page - just wondered whether this is possible in iweb? And, if so, how?
    Ideally, I'd like to position them in adjacent pairs - like in the 'photo page' formats… but so they'd play in that position (is there a simple way of getting them to do that?
    Or, should I upload to youtube and embed - I've had problems trying to do that previously.
    Hope that all makes sense - and thanks in advance for your advice!

    It doesn't make sense to have more than one movie file per page unless they are tiny files.
    If you put too much stuff on a page it will take a long time to load and will probably lock up in Internet Explorer. Unless all your viewers are using Macs with Safari, you have to keep your pages real simple and/or optimize your files before upload.

  • TS4079 Siri is not working since 7.0 upgrade - if I turn Siri off it works with voice command. Microphone functions with other apps just fine. I have gone through the trouble shooting page and still nothing. I read others are having the same issue.

    I have restarted the phone and reset it - Siri still not working. It does not pick up any voice - just lists some options.

    I have no idea what may have caused your MacBook to stop working, but from your description it kind of sounds like it may have started before you ran Software Update and installed the new Apps. Just the general slow feeling and bugginess is what tips me off. You said that you weren't sure if you had closed all open windows, that doesn't matter if the computer restarts itself. It automatically closes all other open applications when restarting.
    As to your data being retrievable, if when you take it in they do a fresh install of the OS, then no, it will not be unless you want to pay several thousand dollars to a software retrieval company.
    I am glad to hear that you have taken into the Apple Store to get it fixed, and that you have all of your purchased music backed up to your iPod. You should be able to just transfer it all back to iTunes once you get your computer back should it be necessary.
    As a side note, the proper place for this topic would probably in the MacBook forums, not iTunes since there is no evidence that iTunes started the issue.

Maybe you are looking for