[DW-CS3] Login User passing parameter

Hi. Why this line of code does not work?
$MM_redirectLoginSuccess = "admin/editar.php?id_col=<?php
echo $_GET['id_col']; ?>";
Im trying to create a login user page and i need to send an
url parameter to open an specific page content. The above code is
the variable url to redirect in case of a success login but fails
when i try to send the "id_col" parameter. If i write just the next
line it works fine:
$MM_redirectLoginSuccess = "admin/editar.php";
This is the code generated by the Login User Server Behavior
in DW.
Thanks for help.

geschenk wrote:
> in this case its not a DW issue?
> >>
>
> I´m pretty certain this *is* a DW issue -- we had
exactly this problem with
> the Dreamweaver Developer Toolbox, means if folks had a
"user" table, it even
> completely ruined their Developer Toolbox configuration
file. When crawling
> through DW´s "configuration" files I noticed that
DW is using this very term
> internally all over the place, and to me it seems that
we´re having a naming
> conflict here
Dreamweaver certainly isn't the issue that the OP is
experiencing. Their issue is occurring when they run the page from
the server, that's where the error is occurring.
Danilo Celic
| Extending Knowledge Daily :
http://CommunityMX.com/
| Adobe Community Expert

Similar Messages

  • Dreamweaver CS3 Login user issue

    Hey , i am pretty new to PHP and MYSQL. I have a login page
    that uses Dreamweaver CS3's Log In User built in function. However,
    when succesfully logged in, I want to create a page that says Hello
    John, or Welcome Bob according to the user that logs in and have
    been unsuccessful so far. I go to the correct page but it says
    Welcome ( Blank Space)
    any thoughts? i tried this
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15398&sliceId=2
    and that doesnt work for me either.....
    what am i missing here? any help is greatly
    appreciated

    sundap wrote:
    > Hey , i am pretty new to PHP and MYSQL. I have a login
    page that uses
    > Dreamweaver CS3's Log In User built in function.
    However, when succesfully
    > logged in, I want to create a page that says Hello John,
    or Welcome Bob
    > according to the user that logs in and have been
    unsuccessful so far. I go to
    > the correct page but it says Welcome ( Blank Space)
    >
    > any thoughts? i tried this
    >
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15398&sliceId=2
    >
    > and that doesnt work for me either.....
    What does doesn't work mean?
    Once the user has logged in, can you output the MM_Username
    session variable to the page (in particular the page that the log
    in user behavior has set for a successful log in)? You can do that
    by simply selecting it in the Bindings panel and dragging into the
    design view then previewing the page (after you've logged in of
    course).
    Also to get better responses (and more folks looking at it),
    you should probably post this in the Dreamweaver Application dev
    group:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=263&entercat= y
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | Adobe Community Expert

  • Login user/pass for Cisco 1751-V

    Goodevening to everyone!
    i'm new in the world of router and i need to do a port forward with my router (Cisco 1751-V). i don't know exactly what i must do, but i read at PortForwarding.com that i must login in my router for set the port, but i don't know how to do that!!
    also i'm Italian and i have only a little experience with English language!
    If someone could help me i'll be very happy of this!!
    Thanks in advance!

    If you want to configure the router through the Cisco IOS command-line interface (CLI), you must connect the router console port to a terminal or PC. The cable and adapter required for this connection are included with the router.
    To configure the router with a PC, the PC must have some type of terminal emulation software installed. The software should be configured with the following parameters: 9600 baud, 8 data bits, no parity, 1 stop bit, no flow control. Refer to the Cisco 1700 Router Software Configuration Guide for detailed information about configuring the router using Cisco IOS software.
    This link should start you in the right direction:
    http://www.cisco.com/en/US/products/hw/routers/ps221/products_installation_guide_chapter09186a0080091694.html#wp1015235
    Please rate helpful posts.

  • How can I pass dynamic value as a user input parameter in discoverer?

    Hi,
    I have a requirement for a discoverer report like this: The report will display only details for Suppliers that have expired (or soon to be) Insurance details. That is the Expiration Date is less than or equal to the day the report is being run plus any days specified in the Number of Days in the Future Parameter.
    The sample code as:
    SELECT s.segment1 vendor_number
    ,s.vendor_name
    ,flv1.meaning classification
    ,pca.certificate_number
    ,pca.certifying_agency
    ,pca.expiration_date
    ,flv2.meaning status
    FROM ap_suppliers s
    ,pos_bus_class_attr pca
    ,fnd_lookup_values flv1
    ,fnd_lookup_values flv2
    WHERE pca.vendor_id = s.vendor_id
    AND flv1.lookup_code = pca.lookup_code
    AND flv1.lookup_type = pca.lookup_type
    AND flv2.lookup_code = pca.class_status
    AND flv2.lookup_type = 'POS_BUS_CLASS_STATUSES'
    AND pca.expiration_date <= trunc(sysdate) + <No. of Days in the Future>
    order by pca.expiration_date asc
    Now the parameter is Number of Days in the Future (Enter the number days in the future to extract the data. This will default to 0).
    Is it possible in discoverer to do so as in query i do that like a condition as pca.expiration_date <= trunc(sysdate) + <No. of Days in the Future>.
    How can I pass <No. of Days in the Future> as a user input parameter in discoverer?
    Please help.

    Hi,
    All you need to do is to create the condition in the discoverer instead of in the query.
    Create a custom folder containing the following sq (note that i removed the condition)l:
    SELECT s.segment1 vendor_number
    ,s.vendor_name
    ,flv1.meaning classification
    ,pca.certificate_number
    ,pca.certifying_agency
    ,pca.expiration_date
    ,flv2.meaning status
    FROM ap_suppliers s
    ,pos_bus_class_attr pca
    ,fnd_lookup_values flv1
    ,fnd_lookup_values flv2
    WHERE pca.vendor_id = s.vendor_id
    AND flv1.lookup_code = pca.lookup_code
    AND flv1.lookup_type = pca.lookup_type
    AND flv2.lookup_code = pca.class_status
    AND flv2.lookup_type = 'POS_BUS_CLASS_STATUSES'
    Then create a discoverer report using this folder using all fields.
    Create a new calculation as (use this exact syntax):
    Sysdate + :No_of_Days_in_the_Future
    Create a new condition:
    pca.expiration_date <= <your calculation>
    To complete it add a sort as you did in the SQL.
    That's it.
    Tamir

  • How to auto login and pass data (parameter) to ApEx at the same time

    Does anybody know how to automatically login to apex (e.g. from JSP page) and pass a parameter value at the same time? I can use wwv_flow_custom_auth_std to login, I can even choose a page but I cannot pass any data (at least I do not know how). If I use f?p URL syntax I can pass data but there is no way to pass login/password information.
    Any idea? Thanks Jaros

    Jaros -
    You could copy your login page and make the new page "public". On the new page, add a process before the login process that sets the value of application item FSP_AFTER_LOGIN_URL to the report page URL (with the arguments), e.g.,   :FSP_AFTER_LOGIN_URL := 'f?p=&APP_ID.:100:&SESSION.::NO::P100_X,P100_Y:&RPT_VALUE1.,&RPT_VALUE2.';Create application-level items RPT_VALUE1 and RPT_VALUE2 in the application.
    From your external page, POST to this new "login" page, passing values for the username, password, rpt_value1, and rpt_value2 items.
    Let us know if it works.
    Scott

  • How to save the Created by name instead of saving  login user name

    Hi All,
    I done Without log in Jsp page to open one responsibility without login .
    here created one column Created by here user can view list of values in username . it EAM module work request page .
    my issue is while creating the work request Created by name saving in to the database but requirement is user needs to select using created by LOV that username needs to be save on data base .
    once open the application created by name is coming as a login name using controller i removed the created by i set the created by name in PR is lovevent .
    front end its working fine but while saving login user name is saving i need to save the created by name based on the lov .
    can any one help to overcome this issue......
    Thanks in Advance.....
    Kumar

    Hi,
    Thanks For Reply
    It is a Standard Page and created by column Passing in the package while inserting the data FND_GLOBAL.UserID.
    I have One more option i need to pass the created by as perameter in Jsp Page based on that user i need to get the password using (Encrprit ) command .
    Is it Possible to do in Passing the Parameter OAF to JSP page .and how to Encrprit the password to avoid entering the password .
    I hope U understand My Requirement..
    Regards,
    Kumar

  • Passing Parameter from Web Page to Form 6i

    Dear All,
    We are using 9i AS with Form 6i. I want to created a web page for user login and called my application By passing value
    window.open("http://hrtest/dev60cgi/ifcgi60.exe?form=login_form.fmx&width=1000&height=700&
    userid=logme/logme1@test","","width=1000,height=700,top=0,left=0,location=no,directories=no,
    status=no,menubar=no,toolbar=no,maximize=yes,resizable=yes")
    and it successfully run.
    I want to pass additional parameter to my login_form.fmx from web page like User Shift entered by user on logon ?
    Please help me out.
    Regards,
    Khurram

    I got the clue
    pass parameter in your UR
    as
    //hrtest/dev60cgi/ifcgi60.exe?form=LOGIN_FORM_Para.fmx&width=1000&height=700&userid=power/power1@hrtest&otherparams=PAKISTAN=ALLAH"
    Define a :PARAMETER.PAKISTAN on Form
    and write following trigger
    BEGIN
    if :PARAMETER.PAKISTAN = 'ALLAH' then
    message('ALLAH HO AKBAR');
    message('ALLAH HO AKBAR');
    message(:PARAMETER.PAKISTAN||' HO AKBAR');
    message(:PARAMETER.PAKISTAN||' HO AKBAR');
    else
    message('INSH'||:PARAMETER.PAKISTAN);
    message('INSH'||:PARAMETER.PAKISTAN);
    end if;
    END;
    Regards
    Khurram Altaf | Assistant Manager ERP
    Enterprise Resource Planning Department
    Kohinoor Textiles Mills Ltd
    Peshawar Road, Rawalpindi.
    +92.51.5473940-44 ext 250 | +92.333.5256626
    e-mail: [email protected] | web: www.kmlg.com

  • How to let mmp_smtp support  virtual domain authentication by user/pass

    my mmp had configured 2 virtual domain ,one is mmp1.soft.com,other is mmp2.soft.com
    i can send mail by mmp use the user/pass format : mmp1user/pass , which is sotred in o=mmp1.soft.com,o=isp in ldap,and the format [email protected]/pass which is stored in o=mmp2.soft.com,o=isp in ldap,
    but i can't send mail use the format: mmp2user/pass.
    the pop is work fine.
    the following is my config file:
    more PopProxyAService.cfg
    default:LdapUrl "ldap://mmp1.soft.com:389/o=internet"
    default:LogDir /var/Sun/ims52/mmp-mail2/log
    default:LogLevel 10
    default:BindDN   "cn=Directory Manager"
    default:BindPass "soft"
    default:BacksidePort 8110
    default:ConnLimits 0.0.0.0|0.0.0.0:20
    default:VirtualDomainFile /var/Sun/ims52/mmp-mail2/vdmap.cfg
    default:DefaultDomain mmp1.oft.com
    default:SearchFormat (uid=%U)
    default:VirtualDomainDelim @
    default:CanonicalVirtualDomainDelim @
    default:AuthCacheTTL 1
    default:LdapCacheTTL 1
    default:HostedDomains yes
    more vdmap.cfg
    vdmap mmp2 192.192.192.192
    mmp2:DefaultDomain mmp2.soft.com
    mmp2:BindDN "cn=Directory Manager"
    mmp2:BindPass "oft"
    mmp2:LdapUrl "ldap://mmp2.soft.com:389/o=internet"
    more SmtpProxyAService.cfg
    default:LdapUrl "ldap://mmp1.soft.com:389/o=internet"
    default:LogDir /var/Sun/ims52/mmp-mail2/log
    default:LogLevel 10
    default:BindDN   "cn=Directory Manager"
    default:BindPass "soft"
    default:ConnLimits 0.0.0.0|0.0.0.0:20
    default:VirtualDomainFile /var/Sun/ims52/mmp-mail2/vdmapsmtp.cfg
    default:DefaultDomain mmp2.soft.com
    default:SmtpProxyPassword soft..ssl
    default:LdapCacheTTL 1
    default:SmtpRelays mmp1
    more vdmapsmtp.cfg
    vdmap mmp2 192.192.192.192
    mmp2:DefaultDomain mmp2.soft.com
    mmp2:BindDN "cn=Directory Manager"
    mmp2:BindPass "soft"
    mmp2:LdapUrl "ldap://mmp.soft.com:389/o=internet"
    mmp2:LdapCacheTTL 1
    mmp2:AuthCacheTTL 1
    mmp2:SearchFormat (uid=%s)what's the error with my configuration?
    Does the virtual domain is supproted by mmp_smtp,and does user can auth to smtp by user/pass ,but not by user@domain/pass ?
    thanks in advance!
    null

    ok,let's discuss with data.
    i want to migrate another domain "soft.com" to my current Messaging Server,
    i have created the new host domain : soft.com ,and the user "testmail" belongs to that domain.
    the following show the process of my login.
    220 ESMTP Messaging Multiplexor (iPlanet Messaging Server 5.2 (built Feb 21 2002)
    helo soft.com
    250 mail2
    auth login
    334 VXNlcm5hbWU6
    dGVzdG1haWw= (which is "testmail" after base64 decode)
    334 UGFzc3dvcmQ6
    cGFzczR0ZXN0bWFpbA== (which is "pass4testmail" after base64 decode)
    535 5.7.8 Bad username or password (Authentication failed).
    220 ESMTP Messaging Multiplexor (iPlanet Messaging Server 5.2 (built Feb 21 2002)
    helo soft.com
    250 mail2
    auth login
    334 VXNlcm5hbWU6
    dGVzdG1haWxAc29mdC5jb20=  (which is "[email protected]" after base64 decode)
    334 UGFzc3dvcmQ6
    cGFzczR0ZXN0bWFpbA== (which is "pass4testmail" after base64 decode)
    235 2.7.0 login authentication successful.
    mail from:[email protected]
    250 2.5.0 Address Ok.
    quit
    221 2.3.0 Bye received. Goodbye.becase i start the ssl connection for user to send and receive mail ,so i have to use mmp as smtp/pop/imap proxy. i don't want the user of domian "soft.com" need modify any of their mail client after the migration ,that means,the user of domain "soft.com" can login use "testmail",but not "[email protected]".
    i don't know whether i have described my question clearly,thanks for endure my lame english~ ! :)

  • How to Pass parameter to Custom Scheduler dynamically

    hi ,
    I am new to OIM.
    Need your help in passing parameters dynamically to Custom Scheduler.
    I have created Custom Scheduler by extending Task Support.
    I have registered the plugin through API , using PlatformService.registerPlugin() method.
    As I need to send the parameter(s) to this CustomScheduler, I have defined them in Metadata (CustomScheduleTask.xml) file as below and got it imported into DB
    through weblogicImportMetadata.sh script by providing the path of the file.
    <scheduledTasks xmlns="http://xmlns.oracle.com/oim/scheduler">
    <task>
    <name>CustomScheduleTask</name>
    <class>org.schedule.custom.task.CustomScheduleTask</class>
    <description>Fetch details of the given user_id</description>
    <retry>5</retry>
    <parameters>
    <string-param required="true" helpText="Login Name">Login Name</string-param>
    </parameters>
    </task>
    </scheduledTasks>
    Iam able to import this plugin as well as register the plugin successfully. Now I have defined a job to which this Custom SchedulerTask is mapped.
    Now in order to run this job(schedule task) I need to provide Login name( or id) which needs to be send as a parameter for the scheduler to get executed.
    But while defining the job with this Schedule Task on OIM console, I was not able to define or pass parameter to this job. hence parameter is null in
    CustomSchedule 's execute method .
    Kindly help me how to pass parameter dynamically while running the scheduler from OIM console so that the execute method would be able to receive it.
    Thank you in Advance.
    Regards,
    Kumar

    Hi,
    When you have created the schedule job for your custom schedule task, you should see your Login Name textfield in the schedule task. If not, then there verify your schedule task xml.
    In your schedule class code, add:
    public void execute(HashMap arg0) {
              final String METHOD_NAME = "execute :: ";
              logger.debug(CLASS_NAME + METHOD_NAME + "Entering Method - execute");
              try {
                   String LoginName = arg0.get("Login Name");
    Regards,
    Sunny

  • Error while Editing universe connection to SSO fromusing user/pass

    Hi guys,
    I created a universe on top of Bex Query using Universe Designer 4.0 (not information design tool 4.0)...i created a relational connection using SAP client as middleware.
    when i use my SAP credentials to connect to BW system the connection works fine i.e.Authentication Mode: "use specified user and password"
    But when i use SSO as the authentication mode, a huge error appears
    I am unable to copy paste the error here.
    DBD:Error Reading URI Found:.................
    Anyone has encountered this problem yet?
    Any Help is highly appreciated.
    Thanks in Advance,
    Sheikh Hassan Ayub

    Thank you for the quick reply  Surendra Chikine.
    Would you kindly elaborate your solution?
    In my case i am logging into Universe Designer using my ID, but for creating the connection i used a "back ground user/pass".
    So according to you:
    Delete the SAP or Active Directory (AD) user account that is failing to SSO. ---> delete my user id from CMC?
    Login to BIlaunchpad as the SAP or AD user to receate the account in the CMC ---> recreate my ID again in CMC?
    Retry the Test Connection in Universe Design Tool with the SSO option.--->and test the connection?
    Please elaborate your answer. That will be highly appreciated.
    Regards,
    Sheikh Hassan Ayub

  • Passing parameter to report title

    I am working with drill down report. My master ( Source ) report has
    Emp #, Emp Name, Address columns.
    I have prompt on Emp Name column. My second (target) has other employee details and report title is “ Individual Detail report for Employee” but my user is asking they want to display report name with employee name .( passing parameter to report title) . I mean in source report if I click on “Roy Rine” target report should display with following title
    “Individual Detail report for Roy Rine”
    Can I do this one with OBIEE? Please help me.
    Thanks for your time

    Its working but it is repeating names . i mean i have 4 people hvae name "Roy Jermon" . if i click on this column
    report is displaying ' INDIVIDUAL REPORT FOR ROY JERMON ROY JERMON ROY JERMON ROY JERMON"
    is ther any way we can control for only one time even if we have mutiple values.
    i am really appriciate for your time.

  • Pass parameter through standard page "import xml content and actions"

    Dear Portal experts,
    As you know, a standard portal page is configured to allow the import of XML file. It is located in the portal in the path system admin -> transport -> xml content and actions -> import
    I configured a quick link u201Cimportu201D to the page so now the link http://myserver:port/irj/portal/import allows me to access directly to this screen.
    What I would like to do now is to pass the parameter related to u201Cfile nameu201D through this screen meaning that I would like that http://myserver:port/irj/portal/ import/filename=C:\test.xml  fills automatically the fields u201CXML fileu201D with  C:\test.xml 
    Please do you know how to achieve this ?
    Thank you very much and regards

    hi,
    @Maksim :
    When user launch an URL like http://myserver:port/irj/portal/ import/*filename=C:\test.xml, he is requested to provide username and password; as this link is a shortcut for the upload xml page, there is a check of authorization and only portal admin that have authorization and permission on this page/iview will be able to upload xml file through the URL. Hope this clarify.
    @Kumar :
    thank you for your answer. What a pity to not be able to pass parameter through standard portal page/iview particularly knowing that we can pass paramater through many kinds of iviews (transactional iview, url iview, VC iview...). I explored some option on file com.sap.portal.ivs.init.par but this was unsuccessful. However, thanks to this [link bellow|http://wiki.sdn.sap.com/wiki/display/Snippets/ComponenttouploadXMLfilewithPCD+objects], I was able to upload through URL the XML file.
    The problem is that I can upload only XML file that are stored in the server not in the local user computer. My requirement is to be able to upload local XML file stored on user's computer.
    If someone could provide and idea/solution, I would be very grateful.
    Cheers

  • Can i pass parameter or global variable in view from 6i form

    hi master
    sir can i pass parameter or global variable in view from 6i form
    i use view for some diff column calculation within the date then i use
    where date between data1 and date2
    in view but view not create
    please give me idea how i pass external value in view
    thank
    aamir

    Hi Antony!
    I feel it may not produce the right results if you
    dont include the where clause and using only group by
    in view.You felt? Please clear, logical thoughts put here, not feelings.
    (It may very well have all the Debit, Credit
    for all the Accid where as the user wants only for
    r some date range)Data range is determinated in Form by user, so if view should give final data set then you must back
    on Ranjana first question: How to pass parameter or global variable to view from 6i form?
    And also as Ranjit pointed out, If you have only
    accid, sum(debit), sum(credit) in View, wheres this
    enddate ??Of course, column entdate (or enddate?) must be included in view...
    Cheers!

  • Urgent : Get OS login user in the report

    FACTS
    D.B 9i
    AS 10g
    Report 10g
    PROBLEM
    I implement a report where it generate a PDF output contain private employee Details and send it to his email
    But I want to run this report in our internal web site,
    Where user login by his ID to the network and then open the internal web site, where he can ask for his details by click a link that will open/call the report Directly
    (without using a form to call that report ).
    When report is called the connection to DB is done by a guest user which have a required roles to get the employee details.
    NOW:
    my report should get the login user to network ( Windows OS user ).
    And base on it Query for his details and send it to his email.
    Note that : Login user to network = his ID in D.B = email ID
    And since the report is run in the AS (mid tire) then I can't get OS user login.
    Is there a way that in the report it self I can get the OS login ID of the client. ???
    Note:
    I don't want to user Developer forms.
    Where I can use the webutil to get user login ID of the Client and pass it to the report and run the Report.
    My requirement is to run the report direct ( URL ).
    Therefore :
    Is there a way that in the report it self I can get the OS login ID of the client. ???
    Or any idea can help in my issue/ case
    Plz help.

    i use it but since my report run in the AS (mid tire) then
    it will return the user of AS not the Client OS user.

  • Passing Parameter in SQL

    How to Passing parameter in SQL.For Example,Table name=&From_Clause.It will asking table name at runtime.How to assign table name based on user.

    Hi,
    796776 wrote:
    It will returm error.what problem in this
    Select * From Emp a,
    (SELECT CASE
    WHEN USER = :UserType
    THEN 'scott.Dept'
    ELSE 'scott.order'
    END AS b
    FROM dual)
    Where a.DeptNo= b.DeptNo &WhereClauseIt's hard to guess, from an example like this with so many errors, exactly what you're trying to do.
    Please post a description of the problem, including CREATE TABLE and INSERT statments for any tables you need (unless you can state the problem using commonly available tables, such as those in the data dictionary or the scott schema), a few values of a parameter (or examples of different user names, if USER acts like a parameter) and the results you want from the same data for each value.
    For example
    "In addition to the scott.dept table, I have a table called my_dept: CREATE TABLE my_dept ...
    which has this data: INSERT INTO my_dept ...
    I need a script such that, when user scott runs it, the results are ...
    but when any other user runs it, the results are ..
    As you can see, the difference is ..."
    Table names must be explicitly given when a SQL statement is compiled. That's why I usggested a preliminary query; so by the time you compiled the main query, the table name would be known and could be passed in a substitution variable.
    If you really want to do it in one query, you can do a UNION of two queries, one of which returns nothing because of the parameter. It's not very efficient.

Maybe you are looking for