Can I set up a password protected webpage within my site? CS4

Can I set up a password protected webpage within my site? I'm using CS4 and would like to create an orphaned page for internal use only.  Is there any way you can set up a password protect on one page within an otherwise public website?
Any help would be much appreciated.
Cheers

The simplest way to achieve this would be to enable password protection for a certain subdirectory by using .htaccess. As long as you / your provider is using apache as web server this can be setup within minutes, all you need is a ftp client (plenty of freeware ones out there),
and here's a tutorial on how to do it: http://www.javascriptkit.com/howto/htaccess3.shtml Google will list many more if you search for "htaccess password"
Or, send your provider an email, he might be willing to do it for you, maybe even for free, since it doesnt take more than 5 minutes to set up.

Similar Messages

  • How can I set up a password protected webpage in Muse?

    I was asked to password protect one area of a website, so that only registered users who have the password can enter and look at or download the pdfs stored there

    Hello,
    Please refer to the links below that have suggestions for same question.
    https://forums.adobe.com/message/4406164
    Can I create a password protected page for member's only?
    https://forums.adobe.com/thread/1044919
    Password Protecting a Muse page
    Regards
    Vivek

  • How can you set up a password protected folder in OSX 10.8.2

    I'm trying to set up password protected folder on a new mac desktop. Version 10.8.2
    I have done this before in Mountain Lion and previous OS versions by creating a "Disk Image" in the disk utitlity. It's been easy. But in this newer version, it doesn't give me the same options that I've seen in the past nor see on many online posts. And when I try to create, it just gives me an error message saying there is not enough space, which is crazy as there is over 500GB open.
    Any ideas?
    Thanks

    It still works in Disk Utility (DU):
    1. Determine one file that shall be inside the DMG, e.g. one on the Desktop (obviously, you can delete it later again). say it's xyz.jpg.
    2. In DU, without a drive selected, click New Image.
    3. Expand to Finder-like view by clicking on the arrow next to Save As.
    4. Click on xyz.jpg, even if greyed out. It will show up under Save As with the .dmg suffix.
    5. In the bottom part, select Name, Size, and all other parameters. You want encryption, so pick one, then click Create.
    6. Next, enter and remember your password. Probably you will NOT want it to be remembered in Keychain...
    7. That's it: at the same location as xyz.jpg you now have xyz.dmg. In the Finder it's open, and you can manage its content until you eject it.

  • Craeting a password protected webpage

    How do I create a password protected webpage using
    dreamweaver 8

    > How do I create a password protected webpage using
    dreamweaver 8
    to suggest a method- you need to supply more info.
    do you want a common user/pass for all users, all with the
    same access
    rights?
    or- do you want different access rights for different groups
    of people, such
    as user/moderator/admin tied into a database?
    What type of server and what type of scripting can be used
    Lastly- take a look in your site's hosting control panel if
    there is one.
    Most hosting cp will have a set up to password protect
    directories, and
    create authorized users who are allowed access.

  • Logging into password protected webpage

    I downloaded Safari 3.2.3 for windows to check on a new site design that I'm working on. The site is hosted on an IIS7 Windows server and is password protected.
    In Safari I get the username / password box, yet no matter how many times I enter the correct credentials it just keeps saying incorrect login or password.
    The IIS login works fine in Firefox and IE. I've set IIS to accept plain text as well as the standard Windows integrated authenticated, but Safari still refuses to log in.

    > How do I create a password protected webpage using
    dreamweaver 8
    to suggest a method- you need to supply more info.
    do you want a common user/pass for all users, all with the
    same access
    rights?
    or- do you want different access rights for different groups
    of people, such
    as user/moderator/admin tied into a database?
    What type of server and what type of scripting can be used
    Lastly- take a look in your site's hosting control panel if
    there is one.
    Most hosting cp will have a set up to password protect
    directories, and
    create authorized users who are allowed access.

  • Internet Explorer will not open a password-protected webpage

    I've asked this question in the General Discussion forum but
    did not find a solution. I am using DW8.0.2 / MySQL 4.1 / PHP5.1 to
    create PHP login and restricted access webpages. Locally (i.e.
    Windows XP / IIS5.0), they all function properly no matter what
    browser I use. However, on my ISP's server that running Linux /
    Apache, Internet Explorer 6.x or 7.x will not open the
    password-protected webpages - all the other php pages open and
    function properly. I can use Opera, Netscape, or Firefox and the
    pw_protected webpages open fine - just not in IE.
    I've tried cookies on / off, popup blocker on / off, and
    changed my PHP login scripting - all to no avail. Any one have any
    ideas why IE won't open a PHP-scripted pw-protected webpage while
    all other browsers can?

    Thanks for your suggestion. I've added the site to IE's
    Trusted Zone... but no luck. And to test further, I've turned off
    EVERY 'disable' feature I could in IE and still no joy.
    Could the problem be how IE proceses (or doesn't process) my
    PHP logon scripts and possibly does not pass the session on to
    Apache (the server is a Linux box running Apache)? I'm enclosing my
    scripts for review and hopefully for a discovery of why this is
    happening only in IE and not the other browsers.
    Here is my logon script:
    <?php
    // *** Start the session
    session_start();
    // *** Validate request to log in to this site.
    $FF_LoginAction = $HTTP_SERVER_VARS['PHP_SELF'];
    if (isset($HTTP_SERVER_VARS['QUERY_STRING']) &&
    $HTTP_SERVER_VARS['QUERY_STRING']!="") $FF_LoginAction .=
    "?".htmlentities($HTTP_SERVER_VARS['QUERY_STRING']);
    if (isset($HTTP_POST_VARS['Username'])) {
    $FF_valUsername=$HTTP_POST_VARS['Username'];
    $FF_valPassword=$HTTP_POST_VARS['Password'];
    $FF_fldUserAuthorization="Status";
    $FF_redirectLoginSuccess="bulletin_edit.php";
    $FF_redirectLoginFailed="access_error.html";
    $FF_rsUser_Source="SELECT Username, Password ";
    if ($FF_fldUserAuthorization != "") $FF_rsUser_Source .= ","
    . $FF_fldUserAuthorization;
    $FF_rsUser_Source .= " FROM tblaccess WHERE Username='" .
    $FF_valUsername . "' AND Password='" . $FF_valPassword . "'";
    mysql_select_db($database_leathernecks, $leathernecks);
    $FF_rsUser=mysql_query($FF_rsUser_Source, $leathernecks) or
    die(mysql_error());
    $row_FF_rsUser = mysql_fetch_assoc($FF_rsUser);
    if(mysql_num_rows($FF_rsUser) > 0) {
    // username and password match - this is a valid user
    $MM_Username=$FF_valUsername;
    session_register("MM_Username");
    if ($FF_fldUserAuthorization != "") {
    $MM_UserAuthorization=$row_FF_rsUser[$FF_fldUserAuthorization];
    } else {
    $MM_UserAuthorization="";
    session_register("MM_UserAuthorization");
    if (isset($accessdenied) && false) {
    $FF_redirectLoginSuccess = $accessdenied;
    mysql_free_result($FF_rsUser);
    session_register("FF_login_failed");
    $FF_login_failed = false;
    header ("Location: $FF_redirectLoginSuccess");
    exit;
    mysql_free_result($FF_rsUser);
    session_register("FF_login_failed");
    $FF_login_failed = true;
    header ("Location: $FF_redirectLoginFailed");
    exit;
    ?>
    And here is the script that appears on each restricted
    webpage:
    <?php
    // *** Restrict Access To Page: Grant or deny access to this
    page
    $FF_authorizedUsers=" edit";
    $FF_authFailedURL="access_error.html";
    $FF_grantAccess=0;
    session_start();
    if (isset($HTTP_SESSION_VARS["MM_Username"])) {
    if (false ||
    !(isset($HTTP_SESSION_VARS["MM_UserAuthorization"])) ||
    $HTTP_SESSION_VARS["MM_UserAuthorization"]=="" ||
    strpos($FF_authorizedUsers,
    $HTTP_SESSION_VARS["MM_UserAuthorization"])) {
    $FF_grantAccess = 1;
    if (!$FF_grantAccess) {
    $FF_qsChar = "?";
    if (strpos($FF_authFailedURL, "?")) $FF_qsChar = "&";
    $FF_referrer = "Restricted Area";
    $FF_authFailedURL = $FF_authFailedURL . $FF_qsChar .
    "accessdenied=" . urlencode($FF_referrer);
    header("Location: $FF_authFailedURL");
    exit;
    ?>
    Any ideas, suggestions or help is greatly appreciated.

  • How can I set up a password to open each email account to keep privacy?

    Hello,
    Different members of the family are using the same ipad. How can I set up a password for each email account to keep privacy ?
    Thanks
    Dx

    You can not - it's a single-account device, including email, so you can't set up seperate passwords for seperate emails. All or nothing, I'm afraid.

  • Can I set up a password for when renting movies from my Apple TV without having to sign out?

    Can I set up a password when renting movies from my Apple TV without having to sign out?

    Is there an issue just signing out?  It's a chore entering itunes store password sometimes I agree but there's no way to set a local password on AppleTV - though it's a good idea as you could have a simpler one than for itunes store.
    Ordinarily I enter my password for rentals though AppleTV ususally asks if I want it to remember it automatically.  If you sign out and sign back in you should get the option. 

  • How can I make a document password protective in Business Bluprint?

    Dear Folks,
    How can I make a document password protective in Solar01.
    Regards.

    Hi Nabi,
    Before uploading the document in SOLAR01 make it password protected. Your requirement will be met.
    best regds,
    Alagammai.

  • Can I create a login/password protection in Muse for a HTML5 page or two?

    Hi,
    I'm new to Muse.  Can I create a login/password protection for
    one of my pages in Muse?
    thanks,

    PASSWORD PROTECTING A PAGE WITH A NICE BOX DESIGNED INTO YOUR PAGE
    FINALLY, I'VE FOUND AN ANSWER TO PASSWORDING A PAGE OR SECTION WITH ADOBE MUSE WITH GREAT SIMPLICITY AND ALLOWING YOU TO 'DESIGN' THE PASSWORD BOX INTO YOUR PAGE!!!
    Even better is that you don't HAVE to have username AND password (although you could if you wanted to), so just a simple PASSWORD box and enter button DESIGNED BY YOU WITHIN YOUR PAGE, rather than nasty popups etc.  Importantly, the password itself is NOT within the source code of your page either!!
    The solution is at Jotform.com. I believe you can do this with a FREE ACCOUNT, although it's SUCH a great service for Musers that I paid for a proper account.
    Before you do this, create a page on your site saying "Wrong Password. Please go away" or something to that effect. You'll need it for when they enter the wrong password.
    So, in Jotform, you just create a new form and:
    1. Drag on a password box (it's in the power tools section)
    2. Select it and go to Conditions
    3. Go to Change Thank You URL after submission
    4. Enter: If [name of your password box] field EQUALS TO [enter your password]
    5. In the "Then redirect to" box, enter the URL of your protected page and click save
    6. In the resulting box click "ADD A NEW CONDITION" and do the SAME as stets 3 to 5 but this time say NOT EQUALS TO" with your same password and in the "Then redirect to" box, enter the URL of your WRONG PASSWORD page and click save
    7. Embed the button on your page and you're done!!!
    If you want to mess about with the EXACT alignment of a right aligned button and text box, you can go to Preferences and in the box which allows you to add your own custom CSS, enter the following code and mess about with the values until it's perfect for you:
    .form-buttons-wrapper { padding-top:3px !important; }#id_2 {margin-left: -50px !important;}
    Here's an example, built in Muse: www.hileytv.com/about.html
    I hope this helps my fellow Musers!
    Marcus

  • As an administrator can I set a time limit and control having inappropriate sites displayed on my "administrator" usage?

    as an administrator can I set a time limit and control having inappropriate sites displayed on my "administrator" usage?

    Parental Controls can be used to set time limits, to allow the computer to be used only within specific hours of the day, and to block certain Web sites (or to allow only certain Web sites). However, they can be applied to a Standard account only, not to an admin account.

  • The password save prompt box does not appear on logging in to certain password protected webpages; is there another way of adding their passwords to Firefox sync?

    Dear Firefox tech supporter,
    I am Currently running:
    Firefox v6.0.2;
    Windows 7 fully updated at 19 Sept 2011 15:45 GMT;
    Norton Internet Security 2011 (using Identity Safe) fully updated at same time as Windows 7;
    Extensions to Firefox-
    Norton Toolbar 2011.7.1.3;
    Symantec IPS 3.1;
    Add to Amazon Wish List Button 7.1;
    Minimap Addon 0.3.13
    Plugins
    The usual suspects from Microsoft, Adobe, Wacom, Apple and Google, all of which are checked and no updates currently found.
    With webpages such as <https://shop.avanquest.com/members/?company_rs=51>, PayPal and Windows Live e.g. after correct login details are entered into the online form and login is performed successfully. The "key" symbol does not appear to the left of the "awesome bar", neither does the password save pop up box and so the login details for the site cannot be saved in Firefox sync.
    This is not specific to https secure sites, as I have been able to save the passwords for several https secure sites and conversely, I have been unable to save the passwords for some http non secure URLs. I have ensured that, whilst trying to enter a page or site into Firefox sync, it has the only tab open.
    There does not seem to be a way of manually entering website details (URL, User Name, Password etc.) into Firefox Sync; how can I save the password details for such sites?
    Thanks in advance for your help,
    Chris Morris

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.com/kb/Private+Browsing
    To see all History and Cookie settings, choose:
    *Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    *Deselect: [ ] "Always use private browsing mode"
    *Tools > Options > Security: Passwords: "Remember passwords for sites"
    See also:
    *http://kb.mozillazine.org/User_name_and_password_not_remembered
    *Saved Password Editor: https://addons.mozilla.org/firefox/addon/saved-password-editor/

  • Why can't I save my password protected file in a password protected folder?

    I've just encrypted my folder which contains password protected files. I've attempted to save a new password protected file (Word document) but have had to save it to my desktop because when I try to save the file to the folder I receive a message: "Word cannot save or create this file. The disk may be full [which it is not] or write-protected [which it is]". Sooooooo. Does this mean I can only password protect the folder and not the files? Which is really annoying because I really do need the two levels of security. Please can someone help?

    File Vault is not in Disk Utility.  It is in System Preferences/Security/FileVault.

  • Can time machine files be password protected?

    My college-aged daughter has a Macbook Pro and a portable external hard drive (Mini-G) that she uses as a back up drive with Time Machine. I am concerned that if she lost her external drive or if it were stolen, the files on the drive would be accessible to anyone (I can get to them with my MBP). The computer itself is password protected but the back up drive is not. Does anyone know how I can password-protect the drive or do something else for security?
    Thanks

    the mac way to do this is to enable filevault on her home directory. then the home directory will be kept in an encrypted disk image which nobody can open without a password. same will be true for the backups of that home directory on the TM drive. but filevault has some unpleasant limitations for TM. you can't use TM interface to restore files ina filevaulted home directory and it's only backed up when you log out.
    the only other option is to use full disk encryption like PGP.
    I think it works with Time machine but I'm really not sure on this.
    https://www.pgp.com/products/wholediskencryption/index.html

  • How can I offer individual password protected pdfs on my site.

    I am building a site for a client of mine.  His business is a music talent agency.  He would like that on the page of the individual artist, there be a link to download a pdf that only that artist can download if he/she enters a correct password.  I think from reading other posts that I can simply offer a pdf download link and have that pdf password protected when I initially create the pdf itself in adobe acrobat.  Are there other ways of doing this or is that the best route to go?  All responses appreciated.

    Hi,
    For protecting PDFs, I am afraid you do need Acrobat, and here's how you accomplish applying password protection: http://tv.adobe.com/watch/acrobat-tips-and-tricks/protecting-your-pdf-using-a-password/
    With this approach, you may have to reassign unique passwords to PDFs and ensure right passwords are communicated to the right people (there is not sign-in option) - that may be a bit of challenge.
    Alternatively, with some basic scripting you could allow right people to download the right PDFs. This will need some mapping at the DB level.
    Or, you could also leverage social media and use the OAuth mechanism to ensure that the users log in via social sites to download PDFs that are unique to them. Look forward to your thoughts.
    Regards,
    Suhas Yogin

Maybe you are looking for

  • DVD rip to iPod on Windows

    Im sorry, i have seen this asked before, but the only ones i saw were ways with mac programs. Can somebody give me a link or tell me a step by step way to rip my DVDs and then convert them to a iPod format that is completely free, and i can convert a

  • ToDo Items Not Appearing In Published iCal Calendar

    We are a group of homeschool, high school students using iCal together. We each have MobileMe and use it to publish our calendars. Some published calendars show the users todo list, some don't. We have checked to make sure that todo items are publish

  • How to display HTML pages always in first rank in search result?

    I have a sharepoint 2010 site where search is configured, but when it is displaying the search result some time it is  showing the pdf files  in the first order and the html pages in the second order, I need to display html pages always in the first

  • Restoring Units of Measure

    I recently deleted a number of Unit of Measure values.  Unfortunately, I deleted approximately 5 of them that were in use.  I have identified which ones we need to reenter.  Question - would it be better to restore all unit of measure values that wer

  • Blob (bfile)+ ole2

    hello gurus i would like to know how is possible within Oracle Forms (i am still using 6i) to retrieve a MS office document stored in an oracle DB and showing it using ole2 automation. I miss just the step of retrieving from DB and loading it into me