How to edit wwv_flow_custom_auth_std.login

Greetings!
i want to edit the login page created by defualt. reason is i wanted to fetch username and password from my created table e.d users_test table is created. fo that i saw in login page in page process login the code wirrtien under process is
wwv_flow_custom_auth_std.login(
P_UNAME => :P101_USERNAME,
P_PASSWORD => :P101_PASSWORD,
P_SESSION_ID => v('APP_SESSION'),
P_FLOW_PAGE => :APP_ID||':1'
so i want to edit wwv_flow_custom_auth_std.login. is that any way or there is some other way

You can write your package like this
create or replace package xxcustom_pkg as
function authenticate(p_username in varchar2, p_password in varchar2) 
return boolean;
function md5hash (p_input in varchar2) return varchar2;
end;
create or replace package body xxcustom_pkg as
-- wrapper function to compute the MD5 hash
function md5hash (p_input in varchar2) return varchar2 is
begin
return dbms_crypto.hash(utl_raw.cast_to_raw(p_input),2);
end md5hash;
function authenticate(p_username in varchar2, p_password in varchar2)
return boolean is
v_result integer := 0;
v_hash varchar2(32);
begin
v_hash := md5hash(p_username || p_password);
select 1
into v_result
from app_users
where upper(user_name) = upper(p_username)
and password_hash = v_hash;
return(v_result = 1);
exception
when no_data_found then
return false;
end authenticate;
end;You should change your app_users table where you need to store the hash value of the password
alter table app_users  add (password_hash raw(16));Assuming that you have user_name and password as the columns of table app_users
update app_users 
set password_hash = xxcustom_pkg.md5hash(upper(use_rname) || password);While creating or updating user you need to call
xxcustom_pkg.md5hashThen in the page login process put this
Declare
bresult boolean := FALSE;
begin
bresult :=xxcustom_pkg.authenticate(upper(:P101_USERNAME),:P101_PASSWROD);
IF bresult=TRUE THEN
wwv_flow_custom_auth_std.post_login
P_UNAME  => :P101_USERNAME,
P_PASSWORD => :P101_PASSWORD,
P_SESSION_ID => v('APP_SESSION'),
P_FLOW_PAGE => :APP_ID||':1'
else
owa_util.redirect_url('f?p=&APP_ID.:101:&SESSION.');
end if;
end;Hope this helps.
Thanks,
Mehabub

Similar Messages

  • How to edit webvpn login page with 7.2 version in ASA5510?

    Dear guys,
    As a solution for business, I have deployed webvpn with 7.2 version in ASA5510(Version 8.0 cannot be used in this case). Could you share some experiences in customizating login page of webvpn manually(not use ASDM)? for example, if I want to add some system tips or links in login page, how to do?
    Appreciate your kindly help and suggestion.
    Best Regards,
    David Wu

    Customizing login page of webvpn with 7.2 version of ASA is easy to be done and the following Url contains the dcument for customizing the webvpn login page for ASA version 7.2:
    http://www.cisco.com/en/US/docs/security/asa/asa72/configuration/guide/webvpn.html#wp1031868
    This document contains the step-by-step procedure for customizing the login page.

  • How to edit email account in blackberry 8900

    Dear all,
    I have installed my yahoo email address on my BB 8900, before some of a days I changed the password of my yahoo email address from PC, now I can not receive or send emails form BB, I tried to update the new password in BB but I have no idea about how to edit email account on BB 8900, I will be very appreciated if there anyone help me to solve my problems.
    Regards
    alobaydee
    Solved!
    Go to Solution.

    Login to your BIS account:
    there, find and edit your yahoo account. Either edit the password, or simply delete the account and re-add it again.
    Go to the Personal Email Set Up icon and log in.
    From your desktop PC:  http://www.blackberry.com/btsc/KB02830
    North American Carriers - scroll down to select your carrier
    WorldWide Carriers - Find your carrier on the list
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to authorize my Login.jsp file to create LoginContext, deployed in war

    I am currently doing a login process and I need to know how to give my Login.jsp file the permission to create a LoginContext. I packaged everything in a war file and deployed it to the server.
    Specifically this is the error that I am getting:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: access denied (javax.security.auth.AuthPermission createLoginContext.studentportal)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:384)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    root cause
    java.security.AccessControlException: access denied (javax.security.auth.AuthPermission createLoginContext.studentportal)
         java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         java.security.AccessController.checkPermission(AccessController.java:427)
         java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         javax.security.auth.login.LoginContext.init(LoginContext.java:224)
         javax.security.auth.login.LoginContext.(LoginContext.java:403)
         org.apache.jsp.Login_jsp._jspService(Login_jsp.java:55)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:336)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    note The full stack trace of the root cause is available in the Sun-Java-System/Application-Server logs.
    In my code in Login.jsp this is what I have at the top of the page:
    <%@ page language="Java" import="portal.*,javax.security.auth.login.*" %>
    <%
    String s = request.getParameter("loginButton");
    if (s != null) {
    out.println("The user attempted to login");
    String user = request.getParameter("username");
    String psw = request.getParameter("psw");
    AscCallbackHandler cbh = new AscCallbackHandler(user,psw);
    LoginContext ctx;
    try {
    ctx = new LoginContext("studentportal",cbh);
    } catch (LoginException  le) {
    out.println("Sorry, could NOT create context");
    }The admin page tells me that portal is deployed at location:
    ${com.sun.aas.instanceRoot}/applications/j2ee-modules/portal
    My entry in the server.policy file looks like so:
    grant codeBase "file:/home/jay/sun/Creator2_1/SunAppServer8/domains/creator/applications/j2ee-modules/portal/WEB-INF/-" {
    permission javax.security.auth.AuthPermission "createLoginContext.studentportal";
    permission javax.security.auth.AuthPermission "modifyPrincipals";
    permission javax.security.auth.AuthPermission "getLoginConfiguration";
    Which gives the error shown above
    Please help
    Message was edited by:
    jay_dawg
    Placing code tags

    java.lang.NoClassDefFoundError: org/jdom/JDOMException
         java.lang.Class.getDeclaredConstructors0(Native Method)
         java.lang.Class.privateGetDeclaredConstructors(Class.java:2357)
         java.lang.Class.getConstructor0(Class.java:2671)
         java.lang.Class.getConstructor(Class.java:1629)
         org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1164)
         org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1116)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2213)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2219)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:456)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
         org.apache.jasper.compiler.Generator.generate(Generator.java:3305)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:198)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:303)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)and following by this

  • How to edit the url of sites in new tab page of firefox

    If we open newtab in firefox 9 tabs are visible. How to edit the url address of the previously pinned tab.

    I found solution for this problem.
    1. Type ''about:config'' in firefox url and click enter.
    2. An alert will be shown on click on "I'll be careful, I promise!" button.
    3. Type ''browser.newtabpage.pinned'' in textbox and click enter.
    4. Right click and select '''Modify''' option to edit the url address.
    ''I want to change this url address''
    [{"url":"http://localhost:8080/Admin/login","title":null},]
    After change the url address in firefox is
    [{"url":"http://localhost:8080/Admin","title":"Admin"},]

  • How to edit PS Extension CSS;

    I am trying to edit the BG of the CC libraries extension assets (it's a simple CSS gradient) but saving the file will not let me use the extension anymore saying it has not been signed properly. Any ideas on how to edit this, or any extension?
    Imagine the possibilities.
    The default PS extensions are located in Photoshop/Contents/CEP/extensions/(com.adobe.DesignLibraryPanel.html)
    Thanks.

    Hi,
    I do not recommend you change Apex css files.
    Create your own theme and change css file on that.
    Or add your application page template header style that overwrite font size like
    <style>*{font-size:40px!important}</style>When you try login to xdb where is all images,css and js files use SYSTEM user.
    http://daust.blogspot.com/2006/03/where-are-images-of-application.html
    And Apex related question you should post to Application Express Forum
    Oracle Application Express (APEX)
    Regards,
    Jari

  • How to edit "license information for multiple logon" screen

    hey gurus
    i need to know how to edit or modify the 'license information for multiple logon" screen. this screen usually pops up when a user tries for a multiple logon to sap. We have activated the parameter 'login/disable_multi_gui_login' but we would like to modify the screen in such a way that only one radio button which says 'terminate this logon' should exist. we would prefer to remove the option of 'continue with this option and end any other logon'. Now i searched but i could not find anything to implement this so i am here and i need your advice and suggestions.
    thanks in advance.
    cheers.
    nate

    hey bernhard
    many thanks for your reply..i appreciate your help. its just that its not explicitly mentioned we cant modify the screen in the note.
    Is there any other note that specifically say so?
    thanks for your time buddy.
    regards

  • How to create a LOGIN Form & LOGIN ID & PASSWORD for END USERS

    hi,
    i have just created a Database and Forms & Reports using developer 6i.
    now i want to deleiver that Database to end users, but i dont know that how to create a LOGIN Form for the end users and also i want to assign each user a Login ID & Password.
    Plz help me to solve out this problem.

    1. Create the user accounts on the database CREATE USER ... IDENTIFIED BY...
    2. Grant CONNECT Role to the Users
    3. in the main form (the one which is being called initially at runtime) in the ON-LOGON-Trigger create a CALL_FORM() to the Login Form
    4. The Login Form will be called; build a Block with username, password and a Button
    5. In the Button call the LOGON Built-In
    6. Control will be passed to the initially called form again
    I also noticed a thread in here explaining this in more detail...
    Message was edited by:
    user434854

  • How to edit USER profiles ?

    Hi, friend
    i am newbee to JSP technology.
    NOw i made some customers database and when fire a query
    they are listed in one table.
    like below
    Customer_ID CustName CustCity Mobile
    now i want that when perticular customer id is clicked on the table displayed, it should open that customer page to be edit.
    How to achieve that ?
    i mean each CUSTOMER ID field should be in link ( hyperlink) format
    WHAT TO DO ? and HOW TO ACHIEVE IT
    and HOW TO EDIT DATA IF PAGE IS OPENED.
    PLEASE DEAR oneS.
    SOlve my confusion.
    Thanks

    I am posting my Both Pages to you
    ========================================
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ include file="dbServer.jsp"%>
    <%@ page errorPage="loginerror.jsp" %>
    <%@ page import="java.util.*" %>
    <%
            String user = (String)session.getAttribute("username");
            String dist =(String)session.getAttribute("district");
            String talu =(String)session.getAttribute("taluka");
            String vil =(String)session.getAttribute("village");
             if(session.isNew() || user != null)
            {    System.out.println("admin- session is new");    }
            else
                    response.sendRedirect("login.jsp");
    %>
    <!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=iso-8859-1" />
    <title>userSelection</title>
    <style type="text/css">
    <!--
    .style1 {font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    .style10 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
    .style11 {font-family: Arial, Helvetica, sans-serif; font-size: 10px; }
    .style15 {color: #660000}
    .style16 {font-size: 12px}
    .style19 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; }
    .style9 {font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    .style20 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; }
    .style21 {font-family: "Courier New", Courier, monospace; font-size: 12px; }
    .style22 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; }
    .style25 {font-size: 10px}
    -->
    </style>
    </head>
    <body>
    <form method=post name="form2" id="cid">
    <table width="100%" border="1" align="center" cellpadding="2" cellspacing="0">
        <tr>
            <td><div align="center"><span class="style1">Fortification System </span></div></td>
        </tr>
    </table>
    <table width="100%" height="72" border="1" cellpadding="2" cellspacing="0">
        <tr>
            <td bgcolor="#CCCCCC"> </td>
        </tr>
    </table>
    <table width="100%" border="1" align="center" cellpadding="2" cellspacing="0">
        <tr>
            <td width="9%" height="25" bgcolor="#FFFFCC"> </td>
            <td width="64%" bgcolor="#FFFFCC" class="style1"><div align="left">
                    <p><span class="style16">Welcome :</span> <strong><span class="style15"><%=user %></span> !</strong></p>
            </div></td>
            <td width="27%" bgcolor="#FFFFCC"><div align="left"><span class="style19"><a href="logout.jsp" class="style10">Logout</a></span></div></td>
        </tr>
    </table>
    <table width="44%" border="0" align="center" cellpadding="2" cellspacing="0" class="style10">
        <tr>
            <td width="51%" bgcolor="#CCFFFF" class="style11"> </td>
            <td width="49%" bgcolor="#CCFFFF" class="style11"> </td>
        </tr>
        <tr>
            <td colspan="2" bgcolor="#33FFFF"><div align="center" class="style20">Fair Price Shop Owners </div>      </td>
        </tr>
        <tr>
            <td bgcolor="#CCFFFF"> </td>
            <td bgcolor="#CCFFFF"> </td>
        </tr>
    </table>
    <p align="center" class="style21"><%=dist%> > <%=talu%> > <%=vil%> </p>
    <table width="84%" border="1" align="center" cellpadding="2" cellspacing="0">
    <tr bgcolor="#CEFEC2" class="style10">
        <td width="10%"><div align="left"><strong>FPS ID </strong></div></td>
        <td width="14%"><div align="left"><strong>ReceiveDate</strong></div></td>
        <td width="20%"><div align="left"><strong>Receive Quantity </strong></div></td>
        <td width="15%"><div align="left"><strong>Lot Number </strong></div></td>
        <td width="20%"><div align="left"><strong>Distribution Date </strong></div></td>
        <td width="21%"><div align="left"><strong>Quantity Supplied </strong></div></td>
    </tr>
    <%
            String q ="SELECT FPS_ID,RC_date,RC_Qty,Lot_Num,Dist_date,Qty_sup From receiver_master WHERE Operator_ID IN( SELECT Operator_ID from flour_operator_details WHERE Role_ID =2)";
            stmt = con.createStatement();
            rs =stmt.executeQuery(q);
            System.out.println(q);
            while(rs.next())
            int fpsid = rs.getInt("FPS_id");
            java.util.Date rc_date = rs.getDate("RC_date");
            float rc_qty = rs.getFloat("RC_Qty");
            String lot   = rs.getString("Lot_Num");
            java.util.Date dist_date=rs.getDate("Dist_date");
            float qty_sup = rs.getFloat("Qty_sup");
    %>
    <tr class="style10">
    <td ><div align="left"><span class="style10"><a href="editFPS.jsp?CustomerID=<%=fpsid %> "><%=fpsid%></span></a></div></td>
    <td><div align="left"><span class="style10"><%=rc_date.toString() %></span></div></td>
    <td><div align="left"><span class="style10"><%=rc_qty %></span></div></td>
    <td><div align="left"><span class="style10"><%=lot%></span></div></td>
    <td><div align="left"><span class="style10"><%=dist_date.toString()%></span></div></td>
    <td><div align="left"><span class="style10"><%=qty_sup %></span></div></td>
    </tr>
    <%    
    %>
    </table>
    <p align="center" class="style22"> </p>
    <p align="center" class="style22"> </p>
    <p align="center" class="style22"> </p>
    <p align="center" class="style22"> </p>
    <table width="100%" border="0" align="center" cellpadding="2" cellspacing="0">
        <tr>
            <td><div align="center"><span class="style9">All rights reserved@9879152949-Ghanshyam Rathod </span></div></td>
        </tr>
    </table>
    <p> </p>
    </form>
    </body>
    </html>================================================
    to get that Clicked ID i used this code
    but got null value
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ include file="dbServer.jsp"%>
    <%@ page errorPage="loginerror.jsp" %>
    <%@ page import="java.util.*" %>
    <%
            String user = (String)session.getAttribute("username");
            String dist =(String)session.getAttribute("district");
            String talu =(String)session.getAttribute("taluka");
            String vil =(String)session.getAttribute("village");
            String  cid   = (String)session.getAttribute("cid");
             if(session.isNew() || user != null)
            {    System.out.println("admin- session is new");    }
            else
                    response.sendRedirect("login.jsp");
    %>
    <%
            System.out.println("CUSTOMER ID SELECTED is :"+ cid);
            out.println("ID :="+cid);
    %>

  • How to edit a PDF in Photoshop CS4

    Hi there,
    I'm having some real trouble trying to figure out how to edit a PDF in photoshop cs4. So i need to edit/change text, move things around, that type of thing.
    I work in Windows.
    Could someone give me a bit a low down on how this is done?
    Much appreciated,
    Victoria

    You can open them but you will totally rasterize everything.
    PDFs are not intended to be edited. They are a final format but as
    mentioned you can use Acrobat for some minor text edits or use it to
    extract the images to Photoshop for further editing.
    Bob

  • How to edit JVC/Panasonic/Canon .mod video in Windows Movie Maker then upload to YouTube for sharing

    Quick View:
    Part 1: How to import .mod video to Windows Movie Maker
    Part 2: How to edit the video with Windows Movie Maker
    Part 3: How to upload your video to YouTube
    Know More:
    1. Which Camcorders record video in .MOD type?
    2. What file types are supported by Windows Movie Maker?
    3. What file types are supported by YouTube? 
    Part 1: How to import .mod video to Windows Movie Maker
    Step 1: Load files
    First copy the MOD file from your video camera to your hard drive, then download, install and run MOD Converter, click the "Add Files" button to browse your computer hard disc and load the MOD/TOD video files you want to convert to the program. 
    Step 2: Output Setting
    In the bottom of the main interface, select an output format supported by Windows Movie Maker for each video file and specify a directory on your computer to save the output files. 
    Step 3: Start convert
    Click "Start" button on right bottom of the main interface, you are allowed to start conversion. 
    Step 4: Import converted video to Windows Movie Maker
    Click on "File". Then click on "Import". A window will appear. In the window, navigate to the video clip you converted just now. Then double click on the file. You'll see the icon for the file in your Windows Movie Maker "Collections". 
    Part 2: How to edit the video with Windows Movie Maker
    Step 1: Add transitions and special effects
    In the Movie Tasks pane, under Edit Movie, click View video transitions. 
     Preview transitions by double-clicking them and watching the Preview Monitor. Once you've found a transition you like, drag it from the Video Transitions pane, under Edit Movie pane to the box between two of your clips. This inserts the transition between the two clips. 
    Step 2: Add titles and credits
    If you want to add a title before, after, or on top of a clip, click the clip on the storyboard or timeline.
    In the Movie Tasks pane, under Edit Movie, click Make titles or credits. 
    Step 3: Add Music
    In the Movie Tasks pane in Movie Maker, under Capture Video, click Import audio or music. 
     In the Import File dialog box, click the name of the song you want to use in the background. Then click Import. This adds your song to your collection but does not add it to your video. Drag the song from the collection to the video clip where you want the music to start playing. 
    Step 4: Add narration
    If you have a desktop computer, connect a microphone. Microphones are available from most electronics stores. If you have a portable computer, you can use the built-in microphone. However, you will get a better-quality recording if you connect an external microphone. In Movie Maker, click the Tools menu, and then click Narrate Timeline. On the timeline, click the clip you want to narrate. You can narrate clips one at a time, or you can narrate the entire movie all at once. If you narrate individual clips, you can rearrange them later and keep your narration synchronized. If the narration is too loud or too soft in comparison to the movie, right-click the narration on your timeline, and then click Volume. 
    Step 5: To save your movie to your computer
    In the Movie Tasks pane, under Finish Movie, click Save to my computer. 
     The Save Movie Wizard appears. On the Save Movie File page, type a name for your movie. You can also choose a folder to save it in by clicking the Browse button, but My Videos (the default) is usually the best place to save your movie. Then click Next. On the Movie Setting page, click Next to accept the default setting of Best quality for playback on my computer.
    Movie Maker saves your movie, which might take several minutes. On the Completing the Save Movie Wizard page, click Finish. If Play movie when I click Finish was selected (it is selected by default), the movie will automatically play in Windows Media Player. Now you can watch your videos anytime by opening your My Videos folder and double-clicking your movie. 
    Part 3: How to upload my video to YouTube
    A video file should meet the following requirements so that it can be uploaded to YouTube site.
    1. In an acceptable format: WMV, MPEG4, MOV, AVI and MPEG.
    2. Video length is shorter 10 minutes.
    3. File size is smaller than 1GB. 
    Step 1: Sign up a YouTube account or Gmail account, then click the Upload button on any YouTube web page. See the figure below: 
    Step 2: Type in the information of your video file, including Title, Description, Category and tags. To increase the chances that your video can be easily found, you should put as much information as possible. 
    Step 3: Set this video to be public or private. 
    Step 4: Click the "Upload a video" button. When you see the next window, click the "Browse" button to select the video file you want to upload. Then click the "Upload Video" button to upload it. After the upload is finished, you will see the completion page. See the figure below: 
    Step 5: Click "My Videos" and you will see the video. 
    Know More:
    1. Which Camcorders record video in .MOD type?
    MOD is the video file type used on many digital camcorders, such as the JVC Everio, the Canon FS100 and the Panasonic D-Snap SD-card camcorders. Accompanying the MOD video file, there exists MOI file that stands for the index file for MOD. 
    2. What file types are supported by Windows Movie Maker?
    You can import files with the following file name extensions into Windows Movie Maker to use in your project:
    Video files: .avi, .wmv, .mpeg, .mpg., .asf, m1v, .mp2, .mp2v, .mpe, , .mpv2, and .wm.
    Audio files: .mp3, .wav, wma, .mp2, .aiff, .aif, .aifc,.asf, .au,.mpa, and .snd.
    Picture files:.jpeg, .jpg, .jpe, .png, .bmp, .dib, .emf, .gif, .jfif,.tif, .tiff, and .wmf 
    3. What file types are supported by YouTube?
    YouTube accepts a wide range of video file formats.The video files below are all accepted by YouTube. Some video formats work best and are most compatible with certain computers, software or devices. Windows Media Video (.WMV)
    .3GP (cell phones)
    .AVI (windows)
    .MOV (mac)
    .MP4 (ipod/psp)
    .MPEG
    .FLV (adobe flash)
    .SWF (shockwave flash)v
    .MKV (h.264) If you do not think your current video file format is recognized by YouTube, you may get the best uploading results from converting your file to MPEG4 video with MP3 audio.

    I prefer this
    iPad Manager software, with the assistance of iPad Manager, you can make iPhone ringtone, connect your PC to iPad to backup iPad files to Computer directly, import computer file or folder to iPad. 
    Furthermore, it's easy to convert DVD/video to iPad. 
    This versatile iPad Manager can help you transfer videos, songs, photos from computer to iPad and from iPad to PC in fastest speed. Have a try with this tool and manage your iPad, iPod, iPhone in a much easier way. 
    * Convert DVD/video to iPad
    * Backup iPad files to PC
    * Import computer file or folder to iPad 
    iPod Manager
    iPod Video Converter
    DVD to iPhone Converter
    iPod Mate

  • How to edit an animated GIF in CS6

    I've looked all over but have yet to find a good tutorial on how to edit an existing GIF I've found on the web. What is the best way to take an existing animated GIF and add text or images on it in CS6? BTW there are lots of tutorials on how to create a gif from scratch from a video but they don't help on editing an existing GIF.

    try this tutorials..
    " http://www.yvelledesigneye.com/2012/05/31/cs6-photoshop-tutorials-tips-tricks/ "
    " http://www.pxleyes.com/video-tutorial/photoshop/17095/Use-the-New-Timeline-in-CS6-to-Creat e-an-Animated-GIF-from-a-Video-.html "

  • How to edit a file

    Ok I probably realise that I've missed something in the literature on installing arch somewhere along the way, but I've spent the last 3 hours trying to find how get past this stage to no avail.
    I've managed to realise I have a dhcp connection.
    For DHCP IP
    For this option, you need the dhcpcd package (already available on most installations). To make use of it, edit /etc/rc.conf like this:
    eth0="dhcp"
    INTERFACES=(eth0)
    ROUTES=(!gateway)
    but when i type "edit /etc/rc.conf" I get a colon
    I presume I'm in some kind of editor, but I can't see what I'm supposed to change and what commands to use inside the editor.
    Any help gratefully received

    bzzzz Arch is for competent Linux users - not knowing how to edit a file suggests that you do not fall into this category. If you wish to persevere and use Arch as a learning tool, then you need to be aware that you will be required to do most of the work yourself.
    See the wiki: https://wiki.archlinux.org/index.php/FA … se_Arch.3F

  • How to edit the content.opf  file of a FXL EPUB?

    I'm exporting a fixed layout epub and I cannot find out where the content.opf file is and how to edit it.  I'm trying to do the same thing that was done here: Indesign CC 2014 Fixed Layout export
    Can anyone point me in the right direction? I've googled to no end!
    Thanks,

    Please follow these steps to edit your EPUB:
    1. Download Sigil https://code.google.com/p/sigil/downloads/list
    2. Open your EPUB in this editor.
    3. In the book browser view on your left, look up for content.opf file. Edit this file and save your EPUB.
    Regards,
    Pooja
    InDesign Engineering

  • How to Edit information of existing vendors

    Hi All,
    How to edit the information of existing suppliers using Supplier Open Interface Import Program. This information is exists in PO_VENDORS table.
    I have successfully imported new Supplier with Status = NEW and now I want to edit it.
    Can anyone guide/help me ?
    regards
    Sanjay

    Hi Vik & Terry,
    Thanks for your update.
    I want to update Vendor Heder Information , for example, Vendor Type or Bill To & Ship To Location, and Vendor Site Information , For Example, Vendor Address.
    Such task should be accomplished only thru API , not thu Form.
    If you have any idea, let me know.
    regards
    Sanjay

Maybe you are looking for

  • About the microsoft loopback adapter settings

    In the minisap setup process, when I use the recommended loopback setting and change the ip to 10.10.0.10 and also change the host file. But If I do this , it's really slow for my minisap to run~~~ So I just change the ip to local host (127.0.0.1)aga

  • Playbook force safe search or block content for kids

    I just picked up a Playbook on sale aqnd am pretty happy with it. It's pretty lame on being able to adjust anything though. I have an 11 year old that sometimes likes to play with it, but of course Google and YouTube provide ALL SORTS of links and su

  • Problem with clearbox

    I want to disable in clearbox the function for change the picture with the mouse wheel but i don't know how.

  • Why is the iphone 5 often damaged when you buy it?

    why is the iphone 5 often damaged when you buy it?

  • Photoshop Elements 12 Green Screen Removal Help

    I have an image with a 'green screen' background. I am having troubles removing the green screen background. I have tried the magnetic lasso and other outlining methods that have not given me the desired result. I was wondering if anyone had any sugg