Create login

Hi again all. How can I create a login to access a certain page on my site? Thank you forum.. You rock!!!!

If you publish your iWeb site to MobileMe, see this Apple doc:
_iWeb 3.0 Help — Protecting a site with a password_
And this old thread about protecting a certain page:
...Found by doing THIS.
By the way, according to THIS previous post, you're using iWeb '09. This is the +"Previous to iWeb '08"+ forum — the +"iWeb '09"+ forum is here:
http://discussions.apple.com/forum.jspa?forumID=1309

Similar Messages

  • In fedora 8, firfox browser is not opening in newly created login but opening in old login

    in Fedora 8, previously created root and user login are able to open firefox browser. But any newly created login unable to open it. It starts but ended without any message and opening browser. But the processes of firefox running behind. What to do ?

    Hi Bala,
    If you go to transaction SE80 -> Repository Information System -> Other objects -> Transactions and you search for SOAMANAGER, you get into the screen where you can modify attributes for this transaction. Please check if there are strange values entered in there... Or maybe SAPGUI for HTML is not selected.
    Kind regards,
    Mark

  • Failed to create LOGIN from a domain account on SQL Server 2012

    Hello,
    My environment is like,
    A Domian Controller (with the domain name: CONTOSO) hosted by a Windows Server 2008 R2.   --- Server 1
    A SQL Server 2012 x64 runs on another Windows Server 2008 R2 (this Server has been added into the CONTOSO domain).  --- Server 2
    I am trying to create a SQL login on Server 2 with the statement shown below:
    CREATE LOGIN "CONTOSO\domain_group_b" FROM WINDOWS;
    while, an error occurred,
    Msg 15401, Level 16, State 1, Line 1
    Windows NT user or group 'CONTOSO\domain_group_b' not found. Check the name again.
    I've made sure that the domain group account "domain_group_b" has been created on Server 1.
    Is anything else needed to be done?

    Pretty pretty sorry for my bad explanation in English.
    Yes, the Server 2 (the actual name of this server is "SQL-A", the Server 1's name is "DC") has been a member of CONTOSO. 
    I typo the domain name CONTOSO as CONTSO, but I keep using CONTSO everywhere.
    These two servers are hosted by Hyper-V.
    I could login on server2 by the domain user "domain_user_b".
    It seems that neither the domain group, "domain_group_b" nor the domain user, "domain_user_b" cannot be associated when creating a SQL login.
    SQL-A captures:

  • How to create Login Pane

    Hello Friends>
    I want to create Login Page. but main problem is when user click Login Button it checks for validity & display next page but if user click Back Buton of Browser it goes to Login PAge. It should not b like that because if agin user click next button it enters. Pls provide mi solution for this.
    THNKS & REGARDS

    try this
    Make all the pages Jsp pages which are pure html pages
    and add this
    response.setHeader( "Pragma", "no-cache" );
    response.addHeader( "Cache-Control", "must-revalidate" );
    response.addHeader( "Cache-Control", "no-cache" );
    response.addHeader( "Cache-Control", "no-store" );
    response.setDateHeader("Expires", 0);

  • Need help in finding open source for creating Login component

    hi
    Pls any one help me out in finding some good open source for creating login component for my application
    i have heard about josso but i am not able to find how to use it if anyone can help in setting up josso i wil be very thankful to that person and also if anyone can help me finding some other open source i will be very grateful ,,
    Pls help its very urgent and i am running short of time

    DECODE(l.attribute_category, 'Coverage Template Header', l.attribute3) Penalty_Bonus,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute1) Mon_Break_Start,
    DECODE(l.attribute_category, 'Transaction Type', l.attribute1) Split_Covering,Uh oh, the dreaded entity attibute value, or generic, data model.
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:10678084117056
    I am afraid slow performance is a built in feature of this database design, not much you can do in queries.
    You could possibly create the views as materialized views and query those instead.
    Quote from the linked article
    But, how does it perform? Miserably, terribly, horribly. A simple "select
    first_name, last_name from person" query is transformed into a 3-table join with
    aggregates and all. Further, if the attributes are "NULLABLE" - that is, there
    might not be a row in OBJECT_ATTRIBUTES for some attributes, you may have to
    outer join instead of just joining which in some cases can remove more optimal
    query plans from consideration.
    Writing queries might look pretty straightforward, but it's impossible to do in
    a performant fashion.

  • [Create Login] Provisioning Error: event handler/adapter could not be found

    Hello,
    I am running a fresh install of OIM 9.0.3 (installed yesterday) on a Windows XP Machine running:
    Weblogic 813 SP6
    JDK142 11,
    MSSQL 2000 SP3a I have a test resource, a simple MSSQL Table with a few fields, which I used the connector pack to install and connect. I imported the resource without any issues. However, when I attempt to Create Login on the resource, it gives me the following error:
    "An error occurred while retrying one of the tasks
    Create Login: Event Handler not found"When I check the details of Create Login (in my To-Do List for xelsysadm):
    Error Details
    The class file for event handler/adapter "adpDBCREATELOGIN" could not be found.I am very new to this system, and I really don't know where to begin trouble shooting this issue. Any ideas on what might be wrong with the system? It could be anywhere from missing a step in the beginning of the installation to doing something incorrectly. Any pointers on where I can start troubleshooting as to why I can't provision would be very helpful and much appreciated!
    Thanks

    Did you compile the adapters? When you import them from XML they must be compiled before you can use them. Go to the Design Console -> Dev tools -> Adapter Manager and compile them there.

  • To create login form using swing with sqlserver as backend

    hi.
    can anybody send me code to create login form using swings .
    thnaks in advance..
    sj

    You do realise that you can't create Swing on a JSP page?
    You have to use HTML.
    If you want to use Swing, the java must be running at the client end, which means you need an Applet, and a completely different forum.

  • SQLException when execute CREATE LOGIN Command

    Dear Friends,
    I have connected the MSSQL Server Database through java program using the following connection code.
    String loginName = "login1";
    String password = "pass1";
    String connectionString = "jdbc:sqlserver://C-1120\\SQLEXPRESS:1433;databaseName=TESTDB2;applicationName=SQLConnectionExpress;"
    DriverManager.registerDriver (new com.microsoft.sqlserver.jdbc.SQLServerDriver());
    conn = DriverManager.getConnection(connectionString, userName,pass);
    String selectQry = "CREATE LOGIN TEST_LOGIN1 WITH PASSWORD = 'PASSWORD1'";
    stmt = conn.createStatement();
    stmt.execute(selectQry);When i execute the above program, i got following SQLExpection,
    com.microsoft.sqlserver.jdbc.SQLServerException: User does not have permission to perform this action.
    If i execute the same command (CREATE LOGIN) using the above loginName (login1) in MS SQL Server, it executes fine.
    But if i execute through program I got an above exception.
    Could any one pls help me to solve this issue?
    Thanks in advance...

    i got it. Hade to put security off in enterprise manager.

  • Unable to create login page

    i m trying to create login page for oracle adf (HTML) but while compile the application i am getting below error message
    [01:58:01 PM] ERROR: Unable to create user "oracleadf". Reason: MBean invoke failed: weblogic.management.utils.InvalidParameterException: [Security:090282]password cannot be null
    i m using below reference
    http://www.youtube.com/watch?v=C14FmuhTt8I
    please help me out.

    Hi arun,
    yes i provided but i found one strange this,
    when i entered my password in password then in the confirm password field.
    then confirm password field get frezzed then i click on save button after that both the password field get null automatically.

  • How to create Login page in Jdev11.1.1.4

    Hi All,
    can anyone please share how to create Login Page in Jdev11.1.1.4
    TIA,
    Bob
    Edited by: Bob on Feb 18, 2011 12:40 AM

    Bob,
    [url http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/adding_security.htm#BABDEICH]The documentation tells you how.
    John

  • Create login page using jsp, servlet  & Oracle

    hi,
    i need the sample application for creating login page using jsp, servlet & Oracle,can you please post one sample application.
    thanks
    sona

    See
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/adfstrutsj2eesec.pdf
    Frank

  • Creating login screens in java

    hello.
    this is james mcfadden. i am trying to create a login screen in java. the problem i have is this: i am completely new to GUI programming. i know that i have to use strings. the code shown below is incomplete and when i try to compile it i get the following errors. how do i go about fixing these errors?
    ----jGRASP exec: javac -g X:\CP4B Project\LogOn.java
    LogOn.java:11: ']' expected
    username[0]="Administrator";
    ^
    LogOn.java:11: <identifier> expected
    username[0]="Administrator";
    ^
    LogOn.java:12: ']' expected
    username[1]="Ann Smyth";
    ^
    LogOn.java:12: <identifier> expected
    username[1]="Ann Smyth";
    ^
    LogOn.java:13: ']' expected
    username[2]="John Murphy";
    ^
    LogOn.java:13: <identifier> expected
    username[2]="John Murphy";
    ^
    LogOn.java:14: ']' expected
    username[3]="James McFadden";
    ^
    LogOn.java:14: <identifier> expected
    username[3]="James McFadden";
    ^
    LogOn.java:15: ']' expected
    username[4]="Frankie Ferry";
    ^
    LogOn.java:15: <identifier> expected
    username[4]="Frankie Ferry";
    ^
    LogOn.java:16: ']' expected
    username[5]="Daniel McKimm";
    ^
    LogOn.java:16: <identifier> expected
    username[5]="Daniel McKimm";
    ^
    LogOn.java:17: ']' expected
    username[6]="Stephen Doohan";
    ^
    LogOn.java:17: <identifier> expected
    username[6]="Stephen Doohan";
    ^
    LogOn.java:18: ']' expected
    username[7]="James Ferry";
    ^
    LogOn.java:18: <identifier> expected
    username[7]="James Ferry";
    ^
    LogOn.java:19: ']' expected
    username[8]="Liam Cannon";
    ^
    LogOn.java:19: <identifier> expected
    username[8]="Liam Cannon";
    ^
    LogOn.java:20: ']' expected
    username[9]="Ciaran Ferry";
    ^
    LogOn.java:20: <identifier> expected
    username[9]="Ciaran Ferry";
    ^
    LogOn.java:21: ']' expected
    username[10]="Ciaran McGee";
    ^
    LogOn.java:21: <identifier> expected
    username[10]="Ciaran McGee";
    ^
    LogOn.java:23: ']' expected
    password[0]="0";
    ^
    LogOn.java:23: <identifier> expected
    password[0]="0";
    ^
    LogOn.java:24: ']' expected
    password[1]="1";
    ^
    LogOn.java:24: <identifier> expected
    password[1]="1";
    ^
    LogOn.java:25: ']' expected
    password[2]="2";
    ^
    LogOn.java:25: <identifier> expected
    password[2]="2";
    ^
    LogOn.java:26: ']' expected
    password[3]="3";
    ^
    LogOn.java:26: <identifier> expected
    password[3]="3";
    ^
    LogOn.java:27: ']' expected
    password[4]="4";
    ^
    LogOn.java:27: <identifier> expected
    password[4]="4";
    ^
    LogOn.java:28: ']' expected
    password[5]="5";
    ^
    LogOn.java:28: <identifier> expected
    password[5]="5";
    ^
    LogOn.java:29: ']' expected
    password[6]="6";
    ^
    LogOn.java:29: <identifier> expected
    password[6]="6";
    ^
    LogOn.java:30: ']' expected
    password[7]="7";
    ^
    LogOn.java:30: <identifier> expected
    password[7]="7";
    ^
    LogOn.java:31: ']' expected
    password[8]="8";
    ^
    LogOn.java:31: <identifier> expected
    password[8]="8";
    ^
    LogOn.java:32: ']' expected
    password[9]="9";
    ^
    LogOn.java:32: <identifier> expected
    password[9]="9";
    ^
    LogOn.java:33: ']' expected
    password[10]="10";
    ^
    LogOn.java:33: <identifier> expected
    password[10]="10";
    ^
    LogOn.java:57: <identifier> expected
         button1.addActionListener(new ActionListener(){
    ^
    LogOn.java:72: ';' expected
    ^
    46 errors
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class LogOn extends JPanel{
         private static JTextField username=null;
         private static JPasswordField password=null;
         private static JButton button1=null;
       private static JButton button2=null;
         String[] username=new String[11];
       username[0]="Administrator";
       username[1]="Ann Smyth";
       username[2]="John Murphy";
       username[3]="James McFadden";
       username[4]="Frankie Ferry";
       username[5]="Daniel McKimm";
       username[6]="Stephen Doohan";
       username[7]="James Ferry";
       username[8]="Liam Cannon";
       username[9]="Ciaran Ferry";
       username[10]="Ciaran McGee";
       String[] password=new String[11];
       password[0]="0";
       password[1]="1";
       password[2]="2";
       password[3]="3";
       password[4]="4";
       password[5]="5";
       password[6]="6";
       password[7]="7";
       password[8]="8";
       password[9]="9";
       password[10]="10";
       public LogOn(){
              setSize(260,160);
              username=new JTextField(15);
            password=new JPasswordField(15);
              JLabel usernameLabel=new JLabel("Username: ");
              JLabel passwordLabel=new JLabel("Password: ");
              add(usernameLabel);
              add(username);
              add(passwordLabel);
              add(password);
              setVisible(true);
              button1=new JButton("Ok");
              add(button1);
            button2=new JButton("Cancel");
              add(button2);
              JFrame frame=new JFrame("Welcome to Home Entertainment");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
            frame.pack();
            frame.setVisible(true);
         button1.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 try{
                        Demo d = new Demo();
                        d.getChoice();
                   catch(Exception ex){}
         button2.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 System.exit(0);
    }

    1. You initialize your array before your constructor.
    2. You have the same names for your arrays as for your TextFields
    3. You did not close your anon Listeners.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MyLogOnScreen extends JPanel{
         private static JTextField username=null;
         private static JPasswordField password=null;
         private static JButton button1=null;
        private static JButton button2=null;
         String[] usernameArray=new String[11];
        String[] passwordArray=new String[11];
       public MyLogOnScreen(){
            usernameArray[0]="Administrator";
            usernameArray[1]="Ann Smyth";
            usernameArray[2]="John Murphy";
            usernameArray[3]="James McFadden";
            usernameArray[4]="Frankie Ferry";
            usernameArray[5]="Daniel McKimm";
            usernameArray[6]="Stephen Doohan";
            usernameArray[7]="James Ferry";
            usernameArray[8]="Liam Cannon";
            usernameArray[9]="Ciaran Ferry";
            usernameArray[10]="Ciaran McGee";
            passwordArray[0]="0";
            passwordArray[1]="1";
            passwordArray[2]="2";
            passwordArray[3]="3";
            passwordArray[4]="4";
            passwordArray[5]="5";
            passwordArray[6]="6";
            passwordArray[7]="7";
            passwordArray[8]="8";
            passwordArray[9]="9";
            passwordArray[10]="10";
              setSize(260,160);
              username=new JTextField(15);
            password=new JPasswordField(15);
              JLabel usernameLabel=new JLabel("Username: ");
              JLabel passwordLabel=new JLabel("Password: ");
              add(usernameLabel);
              add(username);
              add(passwordLabel);
              add(password);
              setVisible(true);
              button1=new JButton("Ok");
              add(button1);
            button2=new JButton("Cancel");
              add(button2);
              JFrame frame=new JFrame("Welcome to Home Entertainment");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
            frame.pack();
            frame.setVisible(true);
         button1.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 try{
                        Demo d = new Demo();
                        d.getChoice();
                   catch(Exception ex){}
         button2.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 System.exit(0);
    }

  • Creating login page - direct users to a unique file based on unique id?

    Hello - I am in the process of creating a login page that will direct users to a unique page based on their unique id.  I would normally go to Server Behaviors>User Auth>Log In User, but that gives me the option of browsing only one file for all usernames and that's not what I need.  So basically, if the user logs in with the Caterpillars username, it takes them directly to the Caterpillars page and if they log in with the Butterflies username, it takes them to the Butterflies page (yes, it's a preschool with goofy classroom names!).  If it matters, I'm using MySql and the page is .php.  I tried to upload the php, but it gave me an error "the content type of this attachment is not allowed" - not sure what that's all about - sorry.
    Thanks in advance!!

    I was trying to do the latter - store the path for each individual file (catepillars.html, butterflies.html, etc) in the database with the login info.
    My problem is that I can't get it to direct to that page in the code.  My understanding is that I have to tell it in within this code <?php echo $row_MM_Username['login']; ?> that if username is caterpillars then they go directly to caterpillars.html...
    For your desire you don't need extra database fields, recordsets, session variables or anything else if you want to direct username to a static username.html file
    Instead use a dynamic META redirect in <head> of success.php page based on session variable for Username and append .html to the username.
    <META http-equiv="refresh" content="0;URL=http://example.com/<?php echo $SESSION['MM_Username']; ?>.html">
    You could add the show if users is logged in server behavior to success.php and wrap the meta redirect in it so that if the user is logged in then you are redirected to username.html or just add a restrict access SB so that you can not visit success.php (and be redirected to username.html) unless you are logged in.
    Does that solve your problem?
    It may have been easier to explain if your original inquiry mentioned that you wanted logged in users to go to a static .html page based on their username like username.html (sighs). FWIW I would still follow my original recommendation of using one dynamic file to display different users info on one page because as mentioned you only have to maintain one file vs. multiple static files.

  • How to create login page for application with jheadstart

    Is there a how to section for jheadstart?
    After reviewing the jheadstart developer's guide. I am still left with lot of questions:
    1. how to create a login page to allow access to an application using username/password from a database table
    2. how to change the title graphic (jheadstart demo) to (my application)
    3. how to execute a query by hitting enter instead of a mouse clicking a button
    Any suggestion to search for such practical questions in this forum or other blogs and such is appreciated.

    Mahin,
    You can set Authentication Schemes for your applications. If you are using Application Express Authentication, you can create additional users from here:
    1. From Application Express home, click Manage Application Express users.
    2. Click Create to create users. To create end user, select "no" to developer and admin.
    - Christina

  • Problem creating login page in portal webapplication

    Hi all,
    I have been working with ADF for quite some years. Now, I have found webcenter portal on my path.
    I'm telling you this is square one all over again.......trying to figure out why the most simple things do not work like they should. like this one
    I'm on a project that has to build a new portal application. when you start it, you should be taken to a page where you have to log in.
    This is the only public page in the portal app. after logging in, you will see the start page of the portal app. From here you can go to other pages through a menu tree on the left side of the page (=within the page template).
    Anyway, I seem to no even get this to work........
    I have made two pages. a loginPage and a landingPage. I know you get a login.jspx and a home.jspx for free, but I want to make my own since I had problems attaching my custom pagetemplate. Some other thing that doesn't work........
    Anyway, I have made these two pages within the faces-config.xml I have tied the login_success action to my landingPage and the logout_success to the loginPage. I have also altered the login.html to redirect to my loginPage.jspx instead of the login.jspx On the loginPage Ideally, I would like to drag a login taskflow with a page-fragment where I have two inputfields and a button, which are connected to the o_w_s_l_LoginBackingBean. But that is for later, since it doesn't even work when I have put those two inputfields and button directly on my loginPage.jspx
    I have tried several different configurations using both the pages.xml file and the jazn-data.xml, but to no avail.
    What am I doing wrong? in the pages.xml, what should be the one with home as it's id? should both the loginPage and the landingPage be in there?
    Even when I manage to get the loginPage first at startup, the button (who's action is pointing to the doLogin of the o_w_s_l_LoginBackingBean) does nothing. Also nothing in the logs.
    Can anyone please tell me how I can get this to work?
    thanks a lot in advance.....

    Hi fisherman,
    custom login page can be created and it can be used in your custom template by simply creating your own login class :o_w_s_l_LoginBackingBean instead of using the default one.
    otherwise the second type of solution is :
    create a subform and write the following type of code in your jspx/jsff page.
    <af:subform id="sub_id">
    <af:panelFormLayout id="pt_pfl1" >
    <af:panelGroupLayout id="pgl1" layout="vertical" >
    <table>
    <tr>
    <td width="50%">
    <af:activeOutputText value="username"
    id="aot199"/>
    </td>
    </tr>
    <tr>
    <td width="50%">
    <af:inputText id="pt_it1" simple="true"
    value="#{o_w_s_l_LoginBackingBean.userName}"
    />
    </td>
    </tr><tr>
    <td width="50%">
    <af:activeOutputText value="password"
    id="aot198"/>
    </td>
    </tr>
    <tr>
    <td width="50%">
    <af:inputText id="pt_it2" simple="true"
    value="#{o_w_s_l_LoginBackingBean.password}"
    columns="30" secret="true"
    />
    </td>
    </tr>
    </table>
    </af:panelGroupLayout>
    </af:panelFormLayout>
    <af:spacer width="3" height="3" id="pt_s2"/>
    <af:panelGroupLayout id="pt_pgl14" layout="horizontal" halign="end" >
    <af:commandButton id="pt_logincb"
    action="#{o_w_s_l_LoginBackingBean.doLogin}"
    >
    </af:commandButton>
    this is a sample code,may be some errors are present.but it should work definity if you mention the login success page in faces-config.xml.
    Hope ,it will help you.
    Regards,
    Hoque

  • Create  login user group??

    How do I create a login "user group" in Tiger.
    I'm trying to create a login user group and assign individual users to that group for permission privileges.
    Thx

    The easiest way to set Groups, Users, Rights etc, is with Sharepoints...
    http://www.hornware.com/sharepoints/
    The other way would be with NetInfo Manager, but that requires a lot more knowledge... and Sharepoints is just a GUI into it's settings and other settings.
    Assuming this "login group" is via Networking!?

Maybe you are looking for