Password Protect Entire Gallery Page

I know you can protect individual albums but is there a way to password protect the whole gallery page ?
thanks

No. You can't password protect the entire MobileMe gallery as a unit but can protect each gallery individually with the same user name and password. '
If you want to make it convenient for visitors to have access to each gallery you could create an iWeb site with a page of hyperlinks to each of the protected MMe Galleries. Each hyperlink can be set to open in a new window so all it would take to get back to the page of hyperlinks would be to close the gallery window.

Similar Messages

  • Iweb and using mobileme password protected photo gallery

    I am trying to create a website. How can I access a password protected photo gallery by using MobileMe gallery widget in iweb. I need this capability. The unprotected galleries display using the MobileMe widget. Any suggestions?

    Welcome to the discussions. Try this...
    • Temporarily unprotect the Gallery
    • The Gallery should now appear in the list of available Galleries — add it
    • Protect the Gallery

  • How can I add password protection to a Pages document on the iPad?

    Is there any way to add password protection to a Pages document on the iPad? 

    File->Export... and check the encrypt box
    (if you Export as PDF...., click: [Show Details]

  • Help in Setting Password Protection to a Page in DW MX2004

    I need to add password protection to a page.  How do I do this in DW MX2004?
    Any help would be appreciated.
    Dreawmweaver newbie.

    Depends on the following:
    What kind of server are you on - Linux or Windows?
    How secure do you need this to be?
    How many pages do you want to protect?
    How many unique usernames  & passwords do you need?
    If your requirements are simple, start by contacting your host.  They may provide  an Admin Panel from which you could set up a password protected folder.
    Or do a Google search for .htaccess and .htpasswd.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Password Protecting a Muse page

    I made a site in Adobe Muse, and would like to password protect a few pages. Ideally, have to type a password every time the URL is accessed (i.e. if someone copy/pastes the link, they would still have to type the password in). Also, I would like a different username and passwords for each page. If someone knows how to create a directory in Muse also, this might solve all my problems.
    Here's Where I Came Up Short So Far:
    - First Solution: Using htaccess and htpasswrd
    Muse creates all its pages with no subdirectories, and no option to create a subdirectories. Which is how most forums described solving the problem. When I uploaded the 'htaccess' and 'htaccess' files to the domain, it caused an error on the main page.
    - Second Solution: Use Widget from Muse-Themes.com
    http://widgets-musethemes.businesscatalyst.com/tb005.html
    I am willing to drop a few bucks to download this, however, this widget only asks for a password when clicking on the link. It doesn't actually protect the url itself. This means anyone can copy and paste the URL into a browser and it will load with no security.
    NOTES
    - It doesn't need to be super secure, but would like to not make the URLs easily accessed to the public.
    - The pages will have links to a DropBox, which will change every few months. Meaning I'll have to do updates to the site. Would prefer to only have to update my Muse file when this occurs.
    Let me know if you need more info, I hope I articulated this semi-clearly. Any help is greatly appreciated!

    Hi,
    You could create all you unprotected pages in one Muse site which you upload to your public folder.
    Then create a new Muse site with your protected pages and upload this to a new folder created in your public folder (which you could password protect in CPanel).
    Obviously, a bit of a headache having 2 ftp folders for one site, and the menu links. But it works
    Hope this helps

  • PASSWORD protect an INDIVIDUAL PAGE

    IWEB certainly is a useful publishing tool, but I have come up against an issue. Is it possible to password protect an individual page of a site? I can't seem to find a way to do this?

    My understanding is no. You can create a second site that is password protected and link to a page within that site. Remember the password protection only works aon pages posted to your .Mac account.

  • I WANT TO PASSWORD PROTECT MY HOME PAGE ON I WEB..

    I WANT TO PASSWORD PROTECT MY HOME PAGE ON I WEB..
    I used to use a free bit of code called GateKeeper but it wont work on the Mac server any ideas anyone, the wrong people are viewing my photos.
    PAW

    SW1 Lady wrote:
    ...but it wont work on the Mac server
    iWeb's integrated password protection will work on Apple's MobileMe server. See this doc:
    _Protecting a site with a password_.

  • Password protect a single page on a site

    Hi,
    Please culd someone advise me on the best and simplist way of password protecting a single page on a site? I've done some research and there seems to be a fair bit of conflicting information. I just need anyone that clicks on a certain link to be prompted for a password and if possible be able to change the password on a monthly basis (i'd prefer it if my client could do this as well).
    Many thanks
    Regards
    Rob

    Below is a simple username/password page if you only have a handful of clients where a database is over-kill.
    It uses php so your hosting provider will need to be able to handle php. This will work with any of the following combination of the username and passsword.
    Pink, Elephant
    Blue, Sky
    Fat, Pig
    You can change the usernames and passwords in the php code below to suit yourself and you can add addtional usernames and passwords to the php. You can change the url they will be sent to once they enter the correct combination of username and password.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <?php
    if (array_key_exists('ewTest' , $_POST)) {
    $username = trim($_POST['username']);
    $password = trim($_POST['password']);
    if (($username == "Pink") && ($password == "Elephant"))
    $response = "Youre welcome! <a href='http://www.bbc.co.uk'>Enter Here</a>";
    elseif (($username == "Blue") && ($password == "Sky"))
    $response = "Youre welcome! <a href='http://www.itv.co.uk'>Enter Here</a>";
    elseif (($username == "Fat") && ($password == "Pig"))
    $response = "Youre welcome! <a href='http://www.adobe.com'>Enter Here</a>";
    else {
    $response = "Sorry, you do note have permission to access this webpage!";
    ?>
    <style type="text/css">
    #wrapper {
    width: 250px;
    padding: 20px;
    margin: 20px auto;
    background-color:#CCC;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 11px;
    #wrapper p {
    margin: 0 0 0 0;
    padding: 0;
    text-align: center;
    input {
    width: 250px;
    input#submit {
    width: 100px;
    margin: 15px 0 0 0;
    </style>
    </head>
    <body>
    <div id="wrapper">
    <p style="margin-bottom: 10px;">Please enter your Username & Password below. (Case sensitive)</p>
    <form id="form1" name="form1" method="post" action="passtest.php">
    <label>Username</label><br />
    <input type="text" name="username" id="username" value=""/><br />
    <label>Password</label><br />
    <input type="text" name="password" id="password" value=""/><br />
    <input type="submit" name="ewTest" id="submit" value="Submit" />
    </form>
    <p style="margin-top: 10px;">
    <?php if(isset($response)) echo $response;?>
    </p>
    </div>
    </body>
    </html>

  • Password protecting a gallery?

    Hello all,
    This is my first post in the Apple support discussions!
    I was wondering if there is a way to password a specific gallery in iWeb '08, and not the whole site?
    I'm a photographer and would like to be able to have client specific galleries that are password protected, so only myself and the client can access their galleries.
    I publish to Mobileme.
    Message was edited by: Pixel GIrl

    Welcome to the Apple Discussions. Since only an entire site can be password protected your option is to create a new site for each client with just the photo gallery page(s) in it. You can then add a hyperlink to that gallery on your public site.
    If you would want to have each private gallery/site in the navbar of the public site create a blank page for each client and named for that client. Then add the code in this demo page to an HTML snippet:
    Redirect. When a client clicks on the navbar link he will immediately be taken to the protected site.
    You can put a similar blank page on the protected sites pointing back to the public site.
    OT

  • How do you password protect web gallery

    Iphoto is easy to protect. How do you password protect your movies in webgallery? The help menu is not very clear

    The best I can figure out is that if you post your movie to the Gallery, but do not select the option to "Show project on Web Gallery home page," the video will not show on your home page for random visitors. When the movie is done posting, you can send the direct link of your video to whomever you want by copying it from the confirmation page after the video uploads. Not perfect, but the only option I see right now.

  • Is there a way to password protect a photo page in iWeb?

    My website is open to whoever wants to look at it but I do photography work for clients and would like to password protect their photos. Is there anyway I can password protect just my photo gallery page in iWeb? Thanks!

    If you publish to a server other than MobileMe you can password protect any directory - either by using Webshell or via the .htaccess. If you use the latter method, the data can be compiled using a generator....
    http://tools.dynamicdrive.com/password/
    MobileMe users need to create a new site for the protected content. This site can appear to be part of the main one if it is included in a text based navigation as an external hyperlink or by using a snippet code with the default navigation. This was answered by Cyclosaurus in this topic....
    https://discussions.apple.com/message/15027923#15027923

  • Password protecting documents in Pages

    Is it possible to save a document in Pages (1.0.2) with password protection?

    Stephen - This is not possible. I use this workaround for the one or two files I really need to password protect: I use Disk Utility to create a new disk image. I choose the size I want (5 meg is good enough) and select the option to encrypt it. This makes a disk image that requires a password to view. Once it's open, I can put any files I want on it.
    This won't be a good solution if you want to send someone a password protected file or have other needs.
    Incidentally: Since iPods have no security, when I backup my entire personal folder to it, I do it onto the same kind of encrypted image. This should be very safe in case I lose my iPod.

  • How to Password protect doc in pages

    How do I password protect a doc in pages?

    I'll assume you mean Pages 5 on Mac:
    Menu > File > Set Password…
    But think very carefully before doing it, the only person you are probably going to lock out from the document is yourself and there is no sensible way of getting back in other than a very expensive Russion cracking app, that will do so by sheer brute force, which will take ages.
    Peter

  • Password protect a gallery

    Is it possible to password protect a photo album or gallery on my iweb 08 site?
    Thanks,
    Mark

    iweb will see published iphoto gallery if it's not passworded in it's menu.
    I would possibly use a sample photo and a text block hyper linked to the web gallery address.
    Another approach might be to create a "sub" site(s) passworded and link to them.
    good luck

  • How to create a password protected file using pages

    Hi I wanna know how to password protect a pages document on iPad?
    thanks

    How To Encrypt A Folder With Password Protection In Mac

Maybe you are looking for

  • Colour management - embedded profiles

    Could anyone assist as I haven't had this problem in CS5 photoshop but when I upgraded to CS6 photoshop I followed the recommended settings like using ProPhoto RBG. I edit in the working space colour management but not always have the same results on

  • Resolution of TNS_ADMIN Environment variable

    In ODAC Release 3 the managed ODP supports TNS_ADMIN environment variable. As it nowhere found in the documentation and judging from this thread it is an undocumented leftover feature that can be removed anytime. Are there are any plans on removing t

  • How do you change a background image in an HBox control via actionscript?

    Hi All, I would like to change the background image of a HBox control when the user clicks on a tab (tabnavigator control). I call a function on the 'activate' method of a VBox control, within the TabNavigator. So for each of the tabs when a tab is s

  • Enabling security for  OEM Grid Control 11g fails

    Hi Experts, One of my Customer is referring the below command to secure OMS and it fails. emctl secure oms [-sysman_pwd <sysman password>] [-reg_pwd <registration password>] [-host <hostname>] [-slb_port <slb port>] [-slb_console_port <slb console po

  • Determine European customer by VAT reg. number [EU STCEG]

    Hi! I work in international company. For one of the countries VAT procedures, in order to know which VAT code to use, I need to know if it is a european customer. I need to determine to which country the VAT reg. number belongs. For example, I take F