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

Similar Messages

  • 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

  • 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]

  • How to set Password protection in excel using java

    Dear all,
    I have no idea to write a java program that how to set password protection in excel. Please give me some solution using java tools. Thank a lot!
    Regards,
    kzyo

    Dear Bamkin ,
    I used your code and paste it in my program. The error is as the follow:
    Code:
         stmnt = c.createStatement();
                   String query = "select StudentNumber, Email, New_Email_Address from [Sheet1$] where Len(New_Email_Address) > 0";
                   System.out.println(query);
                   rs = stmnt.executeQuery(query);
                   stmnt.executeUpdate("SET PASSWORD=PASSWORD('Test')");
    Error:
    (Remark: Invalid SQL statement)
    java.sql.SQLException: [Microsoft][ODBC Excel Driver] �����I SQL ���q���G�a����'DELETE'�A'INSERT'�A'PROCEDURE'�A'SELECT' �� 'UPDATE' �B
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6958)
         at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7115)
         at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(JdbcOdbc.java:3111)
         at sun.jdbc.odbc.JdbcOdbcStatement.execute(JdbcOdbcStatement.java:338)
         at sun.jdbc.odbc.JdbcOdbcStatement.executeUpdate(JdbcOdbcStatement.java:288)
         at hk.gov.edb.util.ExcelHandle.updateNewEmail(ExcelHandle.java:414)
         at hk.gov.edb.core.AppMain.doUpdate(AppMain.java:369)
         at hk.gov.edb.core.AppMain$7.construct(AppMain.java:584)
         at hk.gov.edb.util.SwingWorker$2.run(SwingWorker.java:127)
         at java.lang.Thread.run(Thread.java:595)

  • 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>

  • 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

  • Help - Trying to password protect a section of a DW CS4 website

    Iam not sure how to proceed. I have one section that is for employees and I need to password protect it. I don't need it to be indvidual passwords. One will do.
    Thank you for your help. I am completely lost.

    Log into your host control panel and depending on what version your host is running, you should see a way to password protect a folder. You will then assign a username and password. Put all of the files you want to protect into that folder.
    You could also use server side scripting and a database to secure specific pages, but that sounds like overkill for your needs.

  • 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.

  • 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

  • How to set password protection in iphone5 for yahoo mail app

    I have password protection for my iPhone5. Is it possible to set a seperate password protection for my Yahoo mail account?

    no. but if you protect your iPhone with a password, I don't think you need a separate one just for your email.

  • 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.

  • Help! I Password Protected My Zen

    Hi, I'm new here and I new help. While fooling around with my Creative Zen Vision W 30gig player the other I managed to password protect the videos and some pictures. I have no idea what I plugged in for the password and now can't view this protected stuff. I feel pretty dumb. I've tried a reboot, reinstalled the firmware but nothing's worked. Am I doomed to a reformat?
    Anita

    i'm afraid so it will end up to that.
    http://storeyourpicture.com/images/s...lectronics.jpg

  • Help with setting up a new html page

    Following the tutorial and it tells me to select 'structure' on the insert tab when setting up a new html page.  I do not have the 'structure' option.  Help please.

    If you don't have the Structure option, you probably don't have Dreamweaver CC. The tutorial is designed for CC. It won't work with earlier versions of Dreamweaver.
    If you're using Dreamweaver CS6, you might be interested in this six-part written tutorial series: http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1_cs6.edu.html.

Maybe you are looking for

  • Can I sync contacts and calendars with iTunes Match enabled?

    I'm getting an iPhone in a couple of weeks and really want iTunes match but the more I read about it the more I'm wondering whether it'll be worth the hassle. I've loads of old CD rips at 128 kbps and protected iTunes files, also at 128 kbps, and wha

  • How do I set CFBundleVersion in AIR

    Hello, I am making an AIR app for my client. When my client upload the iTunes Connect to submit their app again( because it have some error at the first time), they received an error. It said ERROR ITMS-9000: "Redundant Binary Upload. There already e

  • Mail missing plug-in after update to 10.6.6

    Since I updated to OSX 10.6.6 Mail shows 'missing plug-in' when I create an outgoing message with an attachment. I have also been prompted for passwords when sending email. Is there a fix?

  • Best way to write a fall-through switch statement?

    I am trying to write the equivalent of a C-style switch statement. The attached VI has 2 ways of accomplishing this. Is there a better way? What are the pros/cons of the two ways shown in the VI? Attachments: switch_statement.vi ‏42 KB

  • Cancellation of Billing Invoice

    Hi, I want to put a check in my system that untill and unless the J1IIN doc is cancelled,we cannot cancel VF01 doc.Is there any user exit/check for this? Kindly guide Regards Somnath