Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Perlwannabe

    dynamic page in e-mail

    Hello, I have a perl .cgi script that generates a report and sends it via e-mail,but when I open the mail I have that page only in source-view, instead of the properly html format; What can be the problem? Here is the report code: Content-type: text/html <html><body> <p><font face=Arial...
  2. Perlwannabe

    pop up window

    Hello, I have this script to manage web sites that redirects to a certain page, but also opens an annoying popup advertising window when redirecting happens. Now, I would remove that pop up window,but, since this script counts 10,000 lines or so, it doesn't seem to be a simple work... Could...
  3. Perlwannabe

    Debugging http post request 2

    Hello, Wondering what's wrong in that cgi script: #!perl use HTTP::Request::Common qw(POST); use LWP::UserAgent; $ua = LWP::UserAgent->new; my $req = POST 'http://localhost/cgi-bin/control.cgi?newpage', [ pass => 'blah' , text => 'xxx']; print "Content-type...
  4. Perlwannabe

    debugging POST request

    Hello again, I'm debugging a script and I'm wondering if the variable below is set correctly (script is not mine)in order to enter data in a form of a web page: $req = (POST $admin_url, [ 'pass' => $password, 'dataflag' => '1', 'pagenames' => $klist ]); $response =...
  5. Perlwannabe

    Troubles appending arrays

    Hello, I made a simple script that picks up words from a text file A and save them in text file B each time I call the script. I would that it appends the new array just under the existing one but the first word stands on the side: Array: bla bla bla bla After I add a new array should be...
  6. Perlwannabe

    http request from cgi script

    Hello, How to require a web page trough a cgi script? Thanks in advance for your reply sincerely
  7. Perlwannabe

    &quot;submitter&quot; cgi script:doesn't work...

    Hello, I made a short cgi script in order to submit automatically new pages on my web site;what that script should do,is to "pick up" a random number of titles from a text file called key_list.txt and submit them to a specific form on a control panel(cgi)that "transforms" them in real html...
  8. Perlwannabe

    Executing manually a subroutine

    Hi, Here is the problem: Assuming that I have a subroutine called "send",Could I execute it manually,by means of a html button? <input type="button" value="Send" onclick="send"> Or should I do something else? Thanks for your help Sincerely
  9. Perlwannabe

    Autoresponder to manual responder

    Hi everyone, I have a script that comes with an autoresponder:It sends messages to everyone submits a certan url,instantly;I would prevent that since I would send these messages manually in a second time:How could I "break" the code in order to get this result? Thanks for any help. This is...
  10. Perlwannabe

    Indigo Perl:hep with Apache web server

    Hello, I downloaded and installed Indigoperl as I would test my cgi scripts off-line,so using its Apache web server simulator: I installed my script in the apache/cgi folder and my home page in apache/htdocs folder ,properly editing paths, but when I do my test to run the script functions a...
  11. Perlwannabe

    CGI search script:exclusion list.

    Hi everyone, I'm not a Perl programmer at all. I have an elementary script to create a little search engine,and I would create a filter in order to prevent that certain terms are considered suitable for the search.This in order to avoid to get search results for common short words such as "any"...

Part and Inventory Search

Back
Top