Help! How do I edit my pages after re-installing iweb?

I upgraded my hard drive and thus had to re-install my os and software.
how do i now edit my .mac sites that i originally created with iweb before i re-installed everything?
ahhhh!! please help.

You need to have a copy of the Domain file that created the sites.
http://homepage.mac.com/thgewecke/iwebdata.html

Similar Messages

  • How to redirect a JSP page after the session is killed

    Hello!
    I am quite new to JSP. I have a question about how to redirect a jsp page after the session is killed. Could anyone help?
    thanks a lot in advance!

    You can't, directly. There's no connection betweenthe server and browser.
    even after invalidating the session. we can do it
    directly using the statement
    response.sendRedirect("....");
    or we can use the meta refresh tag.if session is invalidated and if we try to do response.sendRedirect(".. ") it throws IllegalStateException

  • TS4036 I can not find my photos or contacts.  Help how do I get them back after a icloud back-up was done due to needed a new phone..

    I cannot find my photos or contacts.  Help how do I get them back after a iclound backup was done due to needed to get a new iphone.  HELP

    I believe I had leopard and I was having issues getting errors of system not being supported. I contacted Apple and was advised I needed to upgrade to snow leopard. My laptop is from 2009 and I haven't done anything to it till now. The apple rep also stated I should do a fresh install when putting snow leopard on so my laptop would run faster. Apple rep told me to get a external hard drive to put my info on it so the fresh install would reset everything to like it was brand new. I had someone help me with getting everything on the EHD.. doing the right format and such and then once that was done I put in the CD for snow leopard and hit install. Which brings me to now, with everything but my pictures. I have the EHD plugged in... now what? What do I do? I have looked in the EHD in iphoto and it was all standard images *not my pictures but images of a check mark or an arrow again not actual pictures. I don't see a folder pictures and i looked for images and found nothing. I have Applications, Included Free Designs, Library, System, User Guides and Information and Users, those are my options and non of those have a "pictures"
    I have iPhoto '09 version 8.1.2 & Mac OS X version 10.6.3

  • How do I edit php pages within contribute

    I have a page that I have made PHP.  The purpose is to display different parts of the page based on the subscription level of the client.  So there are 4 subscription levels and 4 section of the page.  Now I want to edit one of the 4 sections which are html code.  It displays the page correctly, however once I select edit the page is recognized php and shows a little box icon and not html.
    I use contribute to edit the HTML portions of the page??
    John  -

    Hi,
         You can use the option of editing the web page in an external application for making changes in php page.
         I had couple of questions - How are you displaying the different sections of the web page? Is it depending on the subscription level of a user - which you are controlling via php? And, is the HTML code in the web page generated by the php code?

  • Contribute will not edit web page after installing Security Update 2007-004

    I have been unable to edit my web site with Contribute 3.11 after I installed the 2007-004 Security update. When I select the web page to edit the spinning beach ball appears and if I look in top it shows Contribute using 100% of the system. I have to do a force quit on it to be able to do anything.
    Has anyone else noticed a problem with this or have a possible solution? Thank you.
    Intel 20 in iMac   Mac OS X (10.4.9)   Powerbook 15in 1.67

    You might want to ask in the forums where Contribute users and Adobe hang out, if you haven't already:
    http://www.adobe.com/support/forums/

  • How to redirect to different page after login in APEX 4.1

    Dear All,
    Here my Requirement is,When the users login,
    when they entered their username and password and pressed login button,
    they have to redirected to different pages based on the type of user.
    Here my LOGIN_TABLE has following 3 columns,
    1.Username
    2.Password
    3.Type.
    The TYPE has 2 values, employee and admin.
    when the type is admin they should be redirected to page 2,
    reaining i.e employee users has to be redirected to page 3.
    How can I do this? please give some suggestion.
    Thank you.
    regards,
    Gurujothi

    Dear Christian,
    Thank you for your reply,
    I would like to explain something,
    When I using the following function,
    *create or replace FUNCTION custom_auth_g (
    p_username IN VARCHAR2,
    p_password IN VARCHAR2)
    RETURN BOOLEAN IS
    BEGIN
    FOR c1 IN (SELECT 1
    FROM login_table
    WHERE upper(username) = upper(p_username)
    AND upper(password) = upper(p_password))
    LOOP
    RETURN TRUE;
    END LOOP;
    RETURN FALSE;
    END;*
    When login, It checks in the login_table table and if the username is exist with the pass word it successfully entered inside the application.
    for all users only one page which we set.
    My Login_table also contains type which has 2 type as I mentined above.
    But As I mentioned earliar based on the user type it has to be redirected to 2 different page.
    I found this Package but I cant understand,Can you please Explain?
    *create or replace PACKAGE app_security_pkg
    AS
    PROCEDURE add_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    FUNCTION get_hash
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN VARCHAR2;
    PROCEDURE valid_user2
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    FUNCTION valid_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN BOOLEAN;
    END app_security_pkg;*
    *create or replace PACKAGE BODY app_security_pkg
    AS
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    IS
    lv_goto_page NUMBER DEFAULT 1;
    BEGIN
    -- This logic is a demonstration of how to redirect
    -- to different pages depending on who successfully
    -- authenticates. In my example, it simply demonstrates
    -- the ADMIN user going to page 1 and all other users going
    -- to page 2. Add you own logic here to detrmin which page
    -- a user should be directed to post authentication.
    IF UPPER(p_uname) = 'ADMIN'
    THEN
    lv_goto_page := 1;
    ELSE
    lv_goto_page := 2;
    END IF;
    APEX_UTIL.SET_SESSION_STATE('FSP_AFTER_LOGIN_URL');
    wwv_flow_custom_auth_std.login
    p_uname => p_uname,
    p_password => p_password,
    p_session_id => p_session_id,
    p_flow_page => p_flow_page || ':' || lv_goto_page
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE;
    END login;
    PROCEDURE add_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    AS
    BEGIN
    INSERT INTO app_users (username, PASSWORD)
    VALUES (UPPER (p_username),
    get_hash (TRIM (p_username), p_password));
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    ROLLBACK;
    RAISE;
    END add_user;
    -- Function to Perform a oneway hash of the users
    -- passwords. This cannot be reversed. This exmaple
    -- is a very week hash and if been used on a production
    -- system, you may want to use a stronger hash algorithm.
    -- Read the Documentation for more info on DBMS_CRYPTO as
    -- this is the supported package from Oracle and
    -- DBMS_OBFUSCATION_TOOLKIT is now depricated.
    FUNCTION get_hash (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN VARCHAR2
    AS
    BEGIN
    RETURN DBMS_OBFUSCATION_TOOLKIT.md5 (
    input_string => UPPER (p_username)
    || '/'
    || UPPER (p_password));
    END get_hash;
    PROCEDURE valid_user2 (p_username IN VARCHAR2, p_password IN VARCHAR2)
    AS
    v_dummy VARCHAR2 (1);
    BEGIN
    SELECT '1'
    INTO v_dummy
    FROM app_users
    WHERE UPPER (username) = UPPER (p_username)
    AND PASSWORD = get_hash (p_username, p_password);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN raise_application_error (-20000, 'Invalid username / password.');
    END valid_user2;
    FUNCTION valid_user (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN BOOLEAN
    AS
    BEGIN
    valid_user2 (UPPER (p_username), p_password);
    RETURN TRUE;
    EXCEPTION
    WHEN OTHERS
    THEN RETURN FALSE;
    END valid_user;
    END app_security_pkg;*
    And you said "assign an URL to FSP_AFTER_LOGIN_URL, depending on the Type column",
    Where to assign,Could you please Explain?
    Thank you.

  • How can I edit a working WordPress site installed on a working local server in "Live Mode"?

    Although I can successfully edit the site in "Design" mode, it's pointless when I just see "PHP" icons everywhere thus I'm editing blindly hoping the edits turn out after constantly saving and then heading over to the WordPress site and reloading the page.
    If I can't do this whatsoever in Dreamweaver, what program can do it?

    There is a DW Extension called WP Site Designer -- I have never tried it.
    WordPress Site Designer for Dreamweaver | DW Extensions | ExtendStudio
    Nancy O.

  • How view and edit source code before publish to iWeb

    I noted the following iWeb page plays music when it opens: http://homepage.mac.com/kkirkster/maya_test/
    How does one change the source code in iWeb before it is published so that such a change as he did works in opening a blog page?
    Dennis
    Power Mac G5   Mac OS X (10.4.4)  

    I could as easily edited the iWeb slideshow.html page but I wanted to test the features of the newer slide show.
    The page was uploaded to my .Mac account (iDisk) and then copied to my Desktop. I edited the images to reduce their file size and edited the page code and reposted the entire thing (drag and drop) in my iDisk Sites (Homepage) folder.
    The page was to test the features of the new javascript slide show and is S&G stuff.
    Being a dial-up user (very slow) I wanted to give the value of the new slide show without the added bloat of the new iWeb software.
    Here is the iWeb version with the same music code pasted into the slideshow.html page:
    http://web.mac.com/kkirkster/iWeb/Maya/Maya.html
    Once the first page loads completely a viewer can click on the "Start Slideshow" button and view the images and listen to very bad MIDI music.
    Simple copy/paste of some object and embed tag code using Text Edit (set to plain text).
    So. I'll make some slide show pages using iWeb and add a bit of simple code and then repost the page at my Homepage site.
    Less bloat. More filling!

  • How to check Edition of SCCM 2012 got installed ?

    Microsoft has two different System Center Suite 2012 licensing models
    System Center 2012 Standard 
    System Center 2012 Datacenter
    After installation How do I check what Edition of SCCM 2012 got installed?

    These are only licensing models. You do not select which to install. There is no difference in the binaries or after installation (it's not like Window Server where you can see this in Control Panel).
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Some files in "DOCUMENTS" icon in dock won't open. Get msg saying You need a newer version of Pages to open this document." Have Pages 4.1 installed.  Same files will open ok from Finder, Pages App. Recently sync'd with ipad2 (Pages) after iOS5 installed.

    Some files in "DOCUMENTS" icon in dock won't open. Get msg saying "You need a newer version of Pages to open this document." Already have Pages 4.1 installed.  Same files will open ok from Finder/Pages App./selected file. Prob not noted until recently after sync'd with ipad2 (Pages) when I installed iOS5. Anyone-- please?!

    You have 2 versions of Pages on your Mac.
    Pages 5.2 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.2 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Older versions of Pages 5 can not open files from later versions of Pages 5.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud and opened in a newer version of Pages is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed almost 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Rate/review Pages 5.2 in the App Store.
    Peter

  • How can i edit photo page?

    I´ve tried to figure out a good way to display my photography portfolio using iweb, but I haven´t found a good way to do it.
    What I want to try is using the photopage, but with modifications. I would like to remove the numbers indicating how many images there are, and place a selfmade button for next and previous. Is this possible?
    Can I edit the text, font and color?
    Can I edit the size of the photo?
    Thanks!

    Yes. You set the photo size in the FAE export, upload the folder that's produced to the server and then use iFrame code in an HTML snippet to add to any page you'd like. I suggest you create a test site that you can use to experiment with, publishing to a folder on your Desktop to see how it works before adding to your site. Once you get it like you want just copy the snippet form the test site to the page in your regular site.
    What should I add to what codeplate to get the autoviewer and not the postcardviewer?
    You select the theme when you go to export the photos from iPhoto via the File->Export->Flash Album Exporter menu path.
    Click to view full size
    OT

  • How to remove data from page after submitting the page?

    Hi,
    I am using API to create person record.After submitting the create page the data are still
    showing on that page.
    How to remove data after submitting the page?
    Please suggest.
    Regards,
    Sagarika

    Abdul,
    Your solution is perfect if the UIX beans on the page do not have BC4J binding with a VO attribute, otherwise, Sumit's soution is appropriate.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                               

  • Problem in how to stop displaying previous page after Logout

    <%
    // I invalidate all my session when i logout and comes on Login.jsp page but if i go back still it open
    previous pages
    How i can stop these
    i am adding these line in avery jsp page
    1)
    response.setHeader("pragma","no-cache");
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Cache-Control","no-store");
    response.addDateHeader("Expires", 0);
    response.setDateHeader("max-age", 0);
    response.setIntHeader ("Expires", -1); //prevents caching at the proxy server
    response.addHeader("cache-Control", "private"); //IE5.x only;
    %>
    2) and in Logout.jsp
    response.sendRedirect("Login.jsp");
    session.invalidate();
    session.removeAttribute("viv");
    still on reaching login page i can move to previous page by clicking back button

    Hi sreenathreddy.
    I am doing exactly what you are talking about.
    On load of each jsp page, I check to see if I am still in session. If i am not, i redirect the user to the login page saying his session has expired.. This works perfectly fine in the sense that after I log out, if I directly type in the url or click on any other link from history, it redirects you to the login page.
    But my problem sitll remained that after logging out, if i clicked the back button, it would still take me to the previous page even though none of the links on that page would work.
    So i added all the response.SetHeaders that are mentioned in this discussion.
    Now the scenario is such that, when i press the back button after logging out, it tells me that the page has expired and i have to resubmit the form.
    There are two problems with this
    1. at this point , if i refresh my page, it still gets the details from the server and even though i am invalidating the session and all the user details, and checking to see if the session is invalidated,it still somehow manages to get all the details(i dont know where that info is stored)
    2. even if the person has not logged out. ie in the middle of a perfectly valid session and clicks on the back button, he is warned that the session has expired.
    please do reply
    thanks
    ritesh

  • How to redirect to a page after login fails?

    Since I am working on an automated login from Forms I would like the login page to redirect to an error page if the login fails. I can't seem to find an option for this.
    I am using a public page that branches to 101 with BRANCH_TO_PAGE_ACCEPT, but when login fails I see this login page.
    Instead of that I would like to redirect to a public page that shows a message.
    How can I do this?
    Wendy

    A login failure is when the user and/or pass is not correct. I do not want to show page 101 but a different page when this happens.
    I am using the default login page but I am calling it with BRANCH_TO_PAGE_ACCEPT so the user never sees it and I want to keep it that way....

  • How to tRetrieving a web page after login

    I have a requirement to connect to a site and get an html content. This need to be implemented using URLConnection.
    But the problem is that I need to sucessfully complete a login form first, inorder to reach that page. so how I can do this login programatically?
    Can I first connect to the login url to submit the data and use the same connection object to go to the next page. Is it the way I should do it? I mean this will take care of all the cookies, headers etc that the remote server needs for the second time?
    TIA,
    dw

    By login page, do you mean an actualy web page that contains login information or a basic authentication popup. If it is basic authentication, then you can just pass the user name and password as part of the header.

Maybe you are looking for

  • Error while deleting loc - Object variable or With block variable not set

    I could not delete some of the existing locations in the HyperionFDM and it results in the error Object variable or With block variable not set. I verified that the Server has the apps and subfolder which is needed for this application \\servername\d

  • Problem to print with HP Color LaserJet CP3525 (PCL 6) on Server

    Hi, I have a printer HP Color LaserJet CP3525 in a server, and I installed with the correct drivers for that but the printing output is strange. I'm trying to print in A4 paper, and everything is just printed in 1/4 of the page. The most strange is t

  • SFSY-FORMPAGES not displayed in XSF output

    I am trying to display a smartform as an html output using XSF output option.  However, I am unable to display the total no. of pages.  I am using SFSY-FORMPAGES to display Page x of y.  Does anybody have a suggestion to solve this issue?  We are in

  • Execute MenuItem

    Dear all, I need to automate the comment enabling ("Comments->Enable for commenting in Adobe Reader") using Acrobat 8.0 in windows(operating system).  Kindly help me how to automate that process through javascript or vbscript without manual interacti

  • FILESIZE in exp

    Hi, FILESIZE is in which unity for exp commande in 10g ? Is it in Mb, Kb, Gb or elese ? Meny thanks.