Lycos.tripod Cgi/Perl Form

I tried using a CGI/Perl form tutorial type thing from
lycos.tripod support but I couldnt get it fully functional. The
site i have uploaded is
HERE and the page I
need the CGI/Perl to work on is
Join Us. I
made it functional enough where is if you click SUBMIT it tells me
that its going to run the CGI-BIN Script but it then just refreshes
the page after I created the "Thank You" page and the "error" page.
I was wondering if anyone could get me a step by step process
on how to do this correctly because other than that my site is
almost fully functional and free :).
Thank you in advance (btw I am not that good with technical
terms so if you can make it basic)

> The site i have uploaded is
>
http://www.cielodefisa.tripod.com
and the page I need the CGI/Perl to work on
> is
http://www.cielodefisa.tripod.com/JoinUs.html.
Those links are 404 not found.
On a guess-
http://cielodefisa.tripod.com/JoinUs.html
does work.
http://www.thesitewizard.com/faqs/feedbackform.shtml#missingfile
check for the chfeedback file not being uploaded to correct
directory, and
that there isn't a "thankyou" page specified in the form,
afaik.
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • Help with web form script. PHP, CGI, Perl???

    anyone willing to help with a web form script? I have a form built, but cant seem to figure out the scripting! Should I be using Perl, CGI, PHP... What do I need to enable? I am a complete novice when it comes to scripts. Looking for a little friendly help.

    Here is a simple bit of PHP to stick in the page your form posts to. You would need to edit the first three variables to your liking, and add the html you want to serve afterwards:
    <pre>
    <?php
    $emailFrom = '[email protected]';
    $emailTo = '[email protected]';
    $emailSubject = 'Subject';
    $date = date('l, \t\h\e dS \o\f F, Y \a\t g:i A');
    $browser = $HTTPSERVER_VARS['HTTP_USERAGENT'];
    $hostname = $HTTPSERVER_VARS['REMOTEADDR'];
    $message = "$date\n\nAddress: $hostname\nBrowser: $browser\n\n";
    foreach ($_POST as $key => $value) {
    $message .= $key . ": " . $value . "\n";
    $mailResult = mail($emailTo,$emailSubject,$message,"From: $emailFrom");
    ?>
    </pre>
    This script will grab the server's date and the submitter's address and browser type. It will then list the name and value of each form field you have put on your form.
    Also, this script expects your form method="post".
    Lastly, you can offer alternate text later on in your html page based on the success of the above script with a snippet like this:
    <pre><?php
    if ($mailResult) {
    echo "Your comments have been received thank you.";
    } else {
    echo "There was an error. Please try again or contact us using an alternate method.";
    ?></pre>

  • HTML 98: Learn HTML, CGI, Perl, Unix and Security, Mar19th-20th / San F

    --- HTML '98 ---
    Learn the Languages of the World Wide Web
    March 19th - 20th
    Hyatt Regency Hotel - San Francisco, CA
    Please, do not reply to this message. Use the address
    at the end of this message. Thank you.
    HTML '98 is divided into four main training sessions:
    - HTML Basics Tutorial - UNIX & Security for the World Wide Web
    - Building CGI Scripts - JAVA Tutorial.
    ======== March 19th ========
    ==> Reception (8:45am)
    ==> Session I (9am - 12:30) ** HTML Basics Tutorial **
    This section will teach you the basics of HTML for building Web Sites
    on the WWW. You'll learn:
    - how to write the code from basic page design and format styles
    - building tables, links, interactive maps, frames and forms
    - adding audio and video to Web Sites
    You'll walk away from this session with the expertise to build Web
    pages using HTML for publication on the World Wide Web.
    ***Who should attend: Beginners to HTML and programming for the Web.
    ==> Lunch (12:30 - 1:15pm)
    ==> Reception (1:00pm)
    ==> Session II (1:15pm - 5:00pm) ** Building Scripts **
    In this course, you'll learn how to create scripts to:
    - process forms
    - build on-line database facilities
    Using Perl and CGI (Common Gateway Interface) you'll walk away from
    this session with the skills to use programs in the advanced
    programming languages of the WWW that interface and support HTML
    creations.
    ***Who should attend: Those with knowledge of HTML and attendees
    of the HTML Basics Tutorial Session.
    ======== March 20th ========
    ==> Reception (8:45am)
    ==> Session III (9am - 12:30) ** UNIX & Security for the WWW **
    UNIX is a popular and reliable operating system for managing Internet
    applications. This section reviews:
    - how to upload and manage your Web site in Unix
    - the basic commands for establishing and using UNIX to administer and
    support Web Sites and Internet-related programs.
    - Unix file editing, security and access permissions
    You'll walk away with the expertise to upload and download HTML files
    and scripts to your server for publication on the World Wide Web;
    editing files directly on the server using UNIX tools and setting up
    UNIX file permissions.
    In the Security section, you'll learn all about:
    - Firewalls and the safeguards to protect internal proprietary data
    from outside sources
    - encryption technology and HTTP servers that support encryption,
    - basic set-up and usage procedures.
    ***Who should attend: Those with knowledge of HTML and attendees
    of the HTML Basics Tutorial Session and CGI Scripts session.
    ==> Lunch (12:30 - 1:00pm)
    ==> Reception (1:00pm)
    ==> Session IV (1:15pm - 5:00pm) ** JAVA Tutorial **
    In this session you'll learn :
    - how to write, compile and execute JAVA applets
    - implementation of Object Oriented code using JAVA
    - JAVA class libraries.
    You'll learn the effective use of multimedia, graphics and animation
    in JAVA and JAVA Scripts. Find out how to handle error conditions and
    make your JAVA program robust and maintainable.
    ***Who should attend: Those with knowledge of HTML and
    attendees of the HTML Basics Tutorial Session, Building Scripts and
    UNIX for World Wide Web and Security session.
    -----------------xxx-----------------
    Pricing: ** LEARN IT ALL ** FULL SEMINAR (all sessions): $580.00
    ------- One Session: $220.00 Two Sessions: $350.00
    Three Sessions: $480.00
    *** Group discounts and non-profit rates are available. ***
    For more information about HTML '98 or to register for the tutorial:
    call (703) 461-3688, email: [email protected]
    Register online at: http://www.eih.com
    To receive the HTML '98 Seminar Information Kit, please call us at
    (703) 461-3688 or email us at [email protected]. Please include your name,
    company/organization name, telephone and FAX number. Thank you.
    EIH Corporation
    Corporate Training Division
    8000 Towers Crescent Drive
    Tysons Corner
    Vienna, VA 22182
    Fax: (703) 760-7899
    Email: [email protected]

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • CGI/perl skript doesn't run

    Hi ! I am facing problem in running a Perl CGI Script on Weblogic
    Application Server
    I set the CGIServlet Property in the Weblogic Properties file as
    # cgi configuration weblogic.httpd.register.cgi-bin=weblogic.servlet.CGIServlet
    weblogic.httpd.initArgs.cgi-bin=\
    cgiDir=/home/candreol/cvs/gameseeker/javapart/gameseekerlogin/WEB-INF/cgi-bin,\
    *.pl=/usr/bin/perl,\ *.class=/usr/local/jdk1.3.0_02/bin/java
    BUT the script is found but NOT EXECUTED. I see only the source code in the browser.
    Do you know why ?
    Thank you!
    Christophe

    Hi.
    Looks like you are running WLS 5.1 (correct me if I'm wrong). What service pack level
    are you running? There have been several CGIServlet bug fixes in the service packs,
    including sp11 (the latest). If you aren't on sp11 then try applying that sp first.
    Also, are there any errors/exceptions in the weblogic.log file?
    Thanks,
    Michael
    christophe wrote:
    Hi ! I am facing problem in running a Perl CGI Script on Weblogic
    Application Server
    I set the CGIServlet Property in the Weblogic Properties file as
    # cgi configuration weblogic.httpd.register.cgi-bin=weblogic.servlet.CGIServlet
    weblogic.httpd.initArgs.cgi-bin=\
    cgiDir=/home/candreol/cvs/gameseeker/javapart/gameseekerlogin/WEB-INF/cgi-bin,\
    *.pl=/usr/bin/perl,\ *.class=/usr/local/jdk1.3.0_02/bin/java
    BUT the script is found but NOT EXECUTED. I see only the source code in the browser.
    Do you know why ?
    Thank you!
    Christophe--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • How do o execute cgi-perl scripts on ipad2

    I have the "for perl" app installed; works fine.
    What do I need to do to execute a .cgi script?

    You can't.

  • Problems with cgi "file" form

    Hello,
    I'm having problems with setting up the cgi program in labview to allow
    users upload a file by using the html file form. I have set up the form
    file, so users can enter the location of the file in their computer and
    then submit that file. However, the only thing that I seem to be
    getting out of the contents of the action vi is the location of that
    file and not that file itself. I will be very appreciated if someone
    can help me or possibly send me an example vi for setting up a file
    form. Thanks for your help....
    Regards,
    Ali

    you probably have path problems.  use the trace() function to help debug your flash.

  • Cgi-bin, form set-up

    I want to create a registry on our website wherein a customer can setup his/her own registry page, type in what products he/she wants, their quantities, etc.
    I understand that to do this one has first to have a "cgi-bin" file on their site to which all such forms point.
    I currently cannot find any cgi-bin folder on our site. So, am I correct in stating I need one, and if so, how do I go about creating same?
    Bill

    First you mention cgi processing of scripts and then databases? There is no necessary connection between the two.
    cgi form processing has largely been replaced by PHP or other server side languages. Again, there is no connection between PHP/ASP and server-side includes. You can have one without the other.
    You will have to find out from your host what they offer. You will also need to determine what it is that you want to do. Two separate yet equally important questions.

  • Perl/CGI driving me nuts

    Hi
    I want to get cgi working with perl scripts.
    I have made the following changes to httpd.conf
    AddHandler cgi-script cgi pl
    I want the cgi/perl scripts to be in the folder cgi-new
    So I add
    ScriptAlias /cgi-new/ "/Library/Webserver/CGI-New/"
    and do the following
    <Directory "/Library/WebServer/CGI-New/">
    SetHandler cgi-script
    Options ExecCGI
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    Yet when I try to run a perl script in that folder I am told I do not have permissions
    The logs say
    Options ExecCGI is off in this directory: /Library/Webserver/CGI-New/test.pl
    So apparently the server can't tell that it is allowed to execute perl scripts in that folder.
    I cant understand what I am missing. As far as I can tell I have set all the variables. I have also using ServerAdmin checked CGI-execution in the options tab.
    Grateful for any help on the topic

    I've done some checking.
    cgi-bin works fine
    but executing perl scripts from cgi-new does not.
    Both directories have the same ownership, all perl scripts are executable. They have the same ownership in both catalogues. If its in cgi-bin it executes, if its it cgi-new I get a 403 error about not being allowed.
    The cgi-new has a directory listing in httpd.con as follows
    <Directory "/Library/Webserver/CGI-New/">
    Options Indexes FollowSymlinks Multiviews ExecCGI
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    the ScriptAliases says
    ScriptAliasMatch ^/cgi-new/((?!(?i:webobjects)).*$) "/Library/WebServer/CGI-New/$1"
    So the question remains..why am I not allowed in? As far as I can tell these settings should work, but obviously I'm missing something here.

  • Enable CGI in Apex Apache

    Hello All,
    I've recently installed APEX. Everything from "apex" development point of view works just fine. But I amm having a hard time setting up/enabling CGI/Perl script in the Apache server.
    I have used the standard setup therefor, my http server is http://myserver:7777/pls/apex. Now I've modified my http.conf file with the follwoing entries:
    AddType application/x-httpd-cgi .cgi
    AddType application/x-httpd-cgi .pl
    ScriptAlias /cgi-bin/ "/opt/oracle/product/10.2.0/apex/Apache/Apache/images/cgi-bin/"
    # "/opt/oracle/product/10.2.0/oms10g/Apache/Apache/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/opt/oracle/product/10.2.0/apex/Apache/Apache/images/cgi-bin">
            AllowOverride None
            Options None
            Order allow,deny
            Allow from all
    </Directory>I have change the permission on the folder and create a file called test.pl. When I run it I always get 500 Internal error. After checking the logs it complains about some premature headers and then states that the file does nto exist. This should really not be the case, because the test.pl is just about the simplest form possible and the apache settings ( at least I think, are to be correct). I test this by doing:
    http://myserver:7777/cgi-bin/test.pl
    #!/usr/bin/perl
    print "Content-type: text/plain\n\n";
    print "testing...\n";Did I go wrong somewhere? Can anybody direct me in the correct direction. I have also ran the following to get some info on my env.
    begin
    owa_util.print_cgi_env;
    end;
    /Here is the output:
    PLSQL_GATEWAY = WebDb
    GATEWAY_IVERSION = 3
    SERVER_SOFTWARE = Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    GATEWAY_INTERFACE = CGI/1.1
    SERVER_PORT = 7777
    SERVER_NAME = myserver
    REQUEST_METHOD = POST
    PATH_INFO = /wwv_flow.show
    SCRIPT_NAME = /pls/apex
    REMOTE_ADDR = 10.6.100.47
    SERVER_PROTOCOL = HTTP/1.1
    REQUEST_PROTOCOL = HTTP
    REMOTE_USER = APEX_PUBLIC_USER
    HTTP_CONTENT_LENGTH = 292
    HTTP_CONTENT_TYPE = application/x-www-form-urlencoded
    HTTP_USER_AGENT = Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20
    HTTP_HOST = myserver:7777
    HTTP_ACCEPT = text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    HTTP_ACCEPT_LANGUAGE = en-us,en;q=0.5
    HTTP_ACCEPT_CHARSET = ISO-8859-1,utf-8;q=0.7,*;q=0.7
    HTTP_REFERER = http://myserver:7777/pls/apex/f?p=4500:1003:1620410303274728::NO:::
    HTTP_ORACLE_ECID = 81038208787,1
    HTTP_ORACLE_CACHE_VERSION = 10.1.2
    WEB_AUTHENT_PREFIX =
    DAD_NAME = apex
    DOC_ACCESS_PATH = docs
    DOCUMENT_TABLE = wwv_flow_file_objects$
    PATH_ALIAS =
    REQUEST_CHARSET = UTF8
    REQUEST_IANA_CHARSET = UTF-8
    SCRIPT_PREFIX = /pls
    HTTP_COOKIE = LOGIN_USERNAME_COOKIE=admin; ORA_WWV_REMEMBER_UN=ADMIN:ORIFLAME; ORA_WWV_USER=7E9E816ED5CDC688; ys-active_tab=s%3Atab_1;ys-ext-comp-1026=o%3Acollapsed%3Db%253A1; ys-ext-comp-1081=o%3Awidth%3Dn%253A800%5Eheight%3Dn%253A465%5Ex%3Dn%253A240%5Ey%3Dn%253A108; ys-east-panel=o%3Acollapsed%3Db%253A0; ys-purchase-panel=o%3Acollapsed%3Db%253A0; ys-chart-region-1=o%3Acollapsed%3Db%253A0; WWV_CUSTOM-F_2787700778075484_123=1F474351E340C827; ys-ext-comp-1286=o%3Awidth%3Dn%253A1100%5Eheight%3Dn%253A652%5Ex%3Dn%253A90%5Ey%3Dn%253A117Thank you in advance for any assitance anybody can provide.
    Regards
    Jan

    Usually a Wallet is created at installation time with a dummy certificate for SSL.
    If you are planning to use a certificate from any commercial CA, you should go ahead and create a new Wallet, then create the certificate request and send it to the CA to get your certificate.
    After that change the ssl virtual host configuration to point to the new wallet.

  • Best Practices for Forms within Site Studio Templates

    Last summer our university redesigned our entire website using site studio. We only use the content server for the SiteStudio add on. During the redesign, we found that it wasn't clear how we were supposed to migrate our current web forms (applications, payment forms, etc) to sitestudio. Our current workaround is to place the form within the content server, and have it submit data to a cgi (perl,php) placed on a separate web server. We wrap the backend of the form within an html template that looks like our sitestudio templates so that it appears to the end user that they are still on our website.
    Obviously, this is not ideal. I have been reading documentation on how to use the content server to host JSP files. The jsp files run flawlessly if they are accessed via the weblayout folder directly. I have not yet found a solution that will allow me to wrap my jsp forms within our existing sitestudio templates.
    Has anyone else encountered this problem, or come up with an alternate solution to this problem?

    Thanks, I appreciate your taking time to find the precise answer. Just today this bit me again.
    I have a need to modify the ComboBox template to italicize placeholder text.  That's a easy thing to do; however, now that I've created a new template I have to name it and add a Style={StaticResource MyNewStyle} to ALL the comboboxes in my app. 
    If I leave my new template unnamed - to override the default - none of the theme resource changes that I already have in place are picked up by the existing ComboBoxes, and they revert to their default look.
    There's clearly something wrong in the way I'm doing it or the way it's implemented.

  • FormMail Contact Form Coding Issue

    Hi folks - this maybe quite a lengthly issue - however i
    think it is a simple mistake somewhere
    Basically I am having problem getting my submit contact form
    to work.
    I used the FormMail.pl script.
    www.kme-steelworks.co.uk is the website I am trying to apply
    the form.
    I am using 123 reg server to host the site.
    If you look at my homepage above . you will see the fields of
    the form at the bottom of the index/home page.
    I am seeing problems when I fill in the form.I have opted for
    cgi/FormMail format.
    Error arising when i click submit - 500 Internal Server Error
    This error tends to be a permission error on the root folder
    - I have adjusted the right however to 755 but internal server
    error still occurring.
    The submit form results should be going to
    [email protected] - but it isnt
    the FormMail.pl is stored on my local files in
    myweb/FormMail/FormMail.pl so I created a folder on your host
    server called FormMail and put my FormMail.pl file in here so it
    matched.
    Ok so here is my form code on my homepage
    <form id="form1" method="post"
    action="FormMail/FormMail.pl">
    <form action="/FormMail/FormMail.pl" method="post">
    <input type='hidden' name="recipient"
    value="[email protected]"/>
    <input type='hidden' name="subject" value="KME WEB
    CUSTOMER"/>
    <input type='hidden' name="required" value=""/>
    <input type='hidden' name="redirect"
    value="www.kme-steelworks.co.uk/thankyou.html">
    <label>Name:
    <input name="Name" type="text" id="Name" size="35" />
    </label>
    <label>Phone Number:
    <input name="Phone" type="text" id="Phone" maxlength="28"
    />
    </label>
    <p> </p>
    <p>
    <label>Comments (Optional):
    <textarea name="comments" id="comments" cols="45"
    rows="7"></textarea>
    </label>
    </p>
    <p>
    <label>
    <input type="submit" name="submit" id="submit"
    value="Submit" />
    </label>
    </p>
    <p> </p>
    </form>
    What should my pl code look like if my server domain is
    123reg.co.uk - my website form address is
    www.kme-steelworks.co.uk my thank you page (when submit form
    submits successfully is
    www.kme-steelworks.co.uk/thankyou.html and the email address
    I want the results forwarded to is '[email protected]'
    I realise this may look like a tough post but I just dont get
    why it is not posting?
    Should the script be named with a cgi extension as the server
    is not compatible with perl, and be placed in the cgi-bin folder?
    Any help is hugely appreciated
    Brian
    Come on the Irish

    clann26 posted in macromedia.dreamweaver:
    > Hi folks - this maybe quite a lengthly issue - however i
    think it
    > is a simple mistake somewhere
    >
    > Basically I am having problem getting my submit contact
    form to
    > work. I used the FormMail.pl script.
    [snip]
    > What should my pl code look like if my server domain is
    > 123reg.co.uk
    I can't get to the support pages for that host without
    logging in, but
    you'll likely find your answers there.
    If they're set up like 123reg.com, then the odd thing to me
    is that
    they allow cgi within your public_html folder.
    Their path to Perl is shown as /usr/bin/perl, so if
    123reg.co.uk uses
    the same setup, you would set the first line shebang in your
    .pl file
    to look like this:
    #!/usr/bin/perl
    And, of course, set the cgi perl file permissions to 755.
    BUT...the answers will depend on how 123.co.uk has things set
    up. Log
    in to their site and check the support pages.
    > Should the script be named with a cgi extension as the
    server is
    > not compatible with perl, and be placed in the cgi-bin
    folder?
    If the server does not support Perl, no amount of file naming
    will make
    it work. However, looking at their hosting plans, it seems
    they all
    support Perl-CGI. The typical extension for Perl scripts is
    .pl
    Mark A. Boyd
    Keep-On-Learnin' :)

  • Comments form

    i want to make a simple 3 fields name,e-mail and comments
    form inside my web site and when the
    visitor click submit it i will recieve it as un e-mail.
    Thanks

    :-P
    Lawrence Cramer
    *Adobe Community Expert* - Dreamweaver -
    http://tinyurl.com/jhnyq
    email: lawrence at cartweaver dot com
    Cartweaver CF, ASP & PHP Shopping Cart for Dreamweaver
    www.cartweaver.com
    news://support.cartweaver.com
    =====================================================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > It's still #2. 8)
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Lawrence *Adobe Community Expert*"
    <[email protected]> wrote
    > in message news:[email protected]...
    >> Well, yes and no - a CGI / Perl script will work
    without the file needing
    >> to be an .asp, .php, or .cfm and does not require
    the host to support one
    >> of these- true it is a server side script, but it
    will work on most any
    >> web server, so it's a little different approach. The
    CF / PHP/ ASP way
    >> would be my preference, but these scripts are an
    alternative for an HTML
    >> only site. Splitting hairs here I guess. You say
    tomAto I say tomAHto
    >>
    >> --
    >> Lawrence Cramer
    >> *Adobe Community Expert* - Dreamweaver -
    http://tinyurl.com/jhnyq
    >> email: lawrence at cartweaver dot com
    >>
    >> Cartweaver CF, ASP & PHP Shopping Cart for
    Dreamweaver
    >> www.cartweaver.com
    >> news://support.cartweaver.com
    >>
    =====================================================
    >>
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> But that's option 2.
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "Lawrence *Adobe Community Expert*"
    <[email protected]>
    >>> wrote in message
    news:[email protected]...
    >>>> There is a third option, you can use a CGI
    mail form script. These are
    >>>> often a pain to get set up initially since
    the documentation is seldom
    >>>> as helpful as it could be, but once set up
    they are quite reliable.
    >>>> Just do a Google search for... CGI Mail form
    script - You'll find a
    >>>> ton of them. - Matt's Script Archive is a
    pretty good source and come
    >>>> up on the first page.
    >>>>
    >>>> --
    >>>> Lawrence Cramer
    >>>> *Adobe Community Expert* - Dreamweaver -
    http://tinyurl.com/jhnyq
    >>>> email: lawrence at cartweaver dot com
    >>>>
    >>>> Cartweaver CF, ASP & PHP Shopping Cart
    for Dreamweaver
    >>>> www.cartweaver.com
    >>>> news://support.cartweaver.com
    >>>>
    =====================================================
    >>>>
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>>I assume you are asking a question rather
    than just making a statement.
    >>>>>Am I correct? If so, please read on.
    >>>>>
    >>>>> There are only two ways to process form
    data -
    >>>>>
    >>>>> 1. Use mailto:[email protected] as the
    action of the form
    >>>>> 2. Use a server-side scripting method to
    a) harvest the form's data,
    >>>>> b)
    >>>>> process it in some manner, e.g., enter
    it into a database, c)
    >>>>> formulate and
    >>>>> send an email to one or more email
    recipients, and d) redirect the
    >>>>> visitor
    >>>>> to some ending page
    >>>>>
    >>>>> Method 1 is quite simple, and is also
    the least reliable. It depends
    >>>>> both
    >>>>> on your visitor having an email client
    already installed on their
    >>>>> computer -
    >>>>> this eliminates public computers, or
    home users without email clients
    >>>>> installed (more and more it seems) - and
    on the installed email client
    >>>>> responding to
    >>>>> the mailto call. It is not possible to
    use this method *and* send the
    >>>>> visitor to a
    >>>>> thank you page as well.
    >>>>>
    >>>>> Method 2 is the preferred method, since
    it eliminates the problems of
    >>>>> method
    >>>>> 1, but it means that you have to grapple
    with server-scripting somehow
    >>>>> (ASP,
    >>>>> CF, PHP, perl, etc.).
    >>>>>
    >>>>> You would have to decide which of these
    methods is best for your
    >>>>> needs,
    >>>>> but if it's Method 2, then start by
    asking your host what they provide
    >>>>> for form
    >>>>> processing.
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "ALHUBAIL"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>>i want to make a simple 3 fields
    name,e-mail and comments form inside
    >>>>>>my web site and when the
    >>>>>> visitor click submit it i will
    recieve it as un e-mail.
    >>>>>>
    >>>>>> Thanks
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Submitting files via a form

    Hey guys
    I have a site where the client needs a form where documents
    can be uploaded and then this will be scripted (CGI-PERL) to their
    e-mail inbox.
    I know how to script the form, but just need to know how to
    do the file upload bit. Maybe really easy!
    Cheers in advance!

    For an easy way to do the whole thing, take a look at Forms
    to Go -
    www.bebosoft.com/products/formstogo/
    Mad Dog
    ForensicBop wrote:
    > Hey guys
    >
    > I have a site where the client needs a form where
    documents can be
    > uploaded and then this will be scripted (CGI-PERL) to
    their e-mail
    > inbox.
    >
    > I know how to script the form, but just need to know how
    to do the
    > file upload bit. Maybe really easy!
    >
    > Cheers in advance!

  • Making forms

    e_mail
    Can anyone recomend servers which is Dreamweaver compatible,
    when it comes to making interactive forms, so one does not have to
    make it all from html coding?
    Kind regards from Christian, Norway

    "Innocent_54" <[email protected]> wrote in
    message
    news:fgmp1i$l6i$[email protected]..
    >
    [email protected]
    >
    > Can anyone recomend servers which is Dreamweaver
    compatible, when it comes
    > to
    > making interactive forms, so one does not have to make
    it all from html
    > coding?
    Not sure if you're unclear about this, but just in case:
    Dreamweaver doesn't
    work the way FrontPage does, with interactive features that
    you can install
    automatically as long as the server supports FrontPage
    Extensions.
    With Dreamweaver, it's up to you to choose the type of script
    you want to
    use. Your choice of server shouldn't have anything to do with
    Dreamweaver,
    but rather with what type of script you'd like to use for
    your interactive
    form.
    It's usually best to make the decision more like this: if
    it's up to you
    what server your site gets hosted on, then you need to decide
    whether you'd
    prefer to work with CGI/Perl scripts, or with ASP, ASP.NET,
    PHP, or
    ColdFusion. Dreamweaver has features to help you work with
    any of those, but
    it won't simply put the form in place for you.
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • CGI in Dreamweaver Help!

    hello, hello!
    I need my form to do two things simultaneously: 1. I need it
    to collect all the information on the form and email it to me as
    well as take the user to the credit card trransaction page when
    they hit the "submit" button.
    Right now I have this code for the page:
    <form id="form1" name="form1" method="post"
    action="https://www.linkpointcentral.com/lpc/servlet/lppay">
    <form action="cgi-bin/form.cgi" method="post"
    name="form1" id="form1">
    <Form
    action="https://www.linkpointcentral.com/lpc/servlet/lppay"
    method="post">
    If I replace the send code and make it the first, it will
    take me to the thank you page and send me the info fromt he page
    but not take me to the linkpoitn central. If I keep it the way it
    is, I get the linkpoitn but not the information on the form.
    Any ideas on what I can do here?
    thanks in advance!

    Which DW?
    CS3 has Spry (Adobe's version of Ajax) built in, and it would
    be perfect for
    this kind of thing.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "serg2049" <[email protected]> wrote in
    message
    news:f2pqms$oj0$[email protected]..
    > I'm making a site for a magazine, so I need to know how
    can I update it's
    > monthly content using XML without having to change the
    html document.
    >
    > It's kind of urgent, please reply.
    >

Maybe you are looking for

  • Downloads open as Text Edit files

    Hi, I bought my first Mac a couple of weeks ago (never been able to afford one before!) and it's proving to be as amazing as I expected, but I'm still trying to work lots of things out. When I try to download files from the internet or from email att

  • How to trigger the exit event of a subform?

    hi there, we added some code to the exit event of a subform to do some validation, but we found out that if the user save the form after filling it and without clicking somewhere outside the subform, the exit event will not be trigger, so the code wi

  • BEx Variable defined in BI 7.0 Query Designer and using in BW 3.5 Analyzer

    Hi,   I have defined a variable in BI 7.0 Query designer for a characteristic which is present in characteristic restrictions area to restrict it . Ideally when that query is executed a pop up box should be opened to enter a value of the variable. Bu

  • Getting list of possible child nodes

    I'm trying to find an automated way to get a list of all the possible child nodes for a given element based on a schema. How does one go about doing that in Java? The closest match I could find was the class ElementEditAS, but it's deprecated with no

  • ASPNETCOMPILER error ASPCONFIG Could not load file or assembly Oracle.Data

    I have migrated my .Net solution from 3.5 to 4.0 which consist of a class library and a web service. Web serivice is dependent on class library and the class library uses oracle.dataaccess.dll version 4.112.3.0. I have installed ODAC 11.2.0 in my mac