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 SkipVought 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. Newposter

    SSI not working in Apache 2.2.1.5 for Windows

    Nothing was left over, because this was a blanked hard drive, a totally new build in a new box, from Windows on up. I would much rather use a newer version, but it's not worth the struggle and time to see why this feature doesn't work. From my conf file above, it sure looks like I did...
  2. Newposter

    SSI not working in Apache 2.2.1.5 for Windows

    Switched back to older version of Apache, SSI works now. Newposter "Good judgment comes from experience. Experience comes from bad judgment."
  3. Newposter

    SSI not working in Apache 2.2.1.5 for Windows

    All other scripts run fine. I have guestbook scripts that write to a file and generate emails, and they work with no errors. The error I'm getting is associated with Apache. Nothing has changed except the version of Apache. The last-modified script ran perfectly under an older version, does...
  4. Newposter

    SSI not working in Apache 2.2.1.5 for Windows

    Anyone? Newposter "Good judgment comes from experience. Experience comes from bad judgment."
  5. Newposter

    Check entry if it empty

    Something like this: &checkempty($username,"Your name cannot be blank."); Newposter "Good judgment comes from experience. Experience comes from bad judgment."
  6. Newposter

    SSI not working in Apache 2.2.1.5 for Windows

    I'm running a new-used server with Windows 2000 Pro, Apache 2.2.1.5 and ActiveState PERL 5.10. I have a web site which displays on one page the "last modified" date of a text file. This is important to the customer. It worked perfectly on the old server, which ran Windows 200 Pro, Apache...
  7. Newposter

    Content -Type info is visible in browser window

    That was it, thank you! Yes, the script is a hodge-podge. I used a 3rd-party host who had that freeware script offered to create an email form, and when my ISP required email authentication, I had to find/write code to embed the username and password. That's where the use CGI qw, Print Header...
  8. Newposter

    Content -Type info is visible in browser window

    Since the Content-type text does not appear when calling up the success page in the browser on its own, but only when the page is called by the PERL script, it must be something about the script that causes this. This is the CGI: #!D:/PERL_510/bin/perl.exe...
  9. Newposter

    Content -Type info is visible in browser window

    OK, I can post the Apache config and the GCI script, the first is quite long. Not sure what the HTTP response headers are. I did right-click and View Source of the resulting page, and the "Content-type" line appears at the very top, before and outside of the <html> setting, if that helps. The...
  10. Newposter

    Content -Type info is visible in browser window

    OK, I just built a new server and it created a new problem for me. Old server: Windows 2000 Pro Apache 1.3.3.1 ActiveState PERL 5.6.1 New server: Windows 2000 Pro Apache 2.2.1.5 ActiveState PERL 5.10 (and also has IIS installed but not yet configured). This NEVER happened with...
  11. Newposter

    AuthType Digest configuration failed - , reason: verification of user

    If I'm not mistaken, you need the following line inserted after AuthUserFile /usr/bin/apache/passwd/digest: AuthGroupFile /dev/null Newposter &quot;Good judgment comes from experience. Experience comes from bad judgment.&quot;
  12. Newposter

    SMTP authentication in PERL script for Windows

    Hmm. As I said, if I reboot the server (not merely restart the mailserver's services), the email delivers instantly, even if it's been sitting in the queue overnight. I find that very odd, and can't be anything due to the script. Newposter &quot;Good judgment comes from experience...
  13. Newposter

    SMTP authentication in PERL script for Windows

    Yes, I can telnet to the ISP fine, at least outside of my home network. I will try inside tonight. The "Can't open mail connection" error is the result of the || die code in my script, and references the path to my script, and the line for defining the relay. It always worked before. So the...
  14. Newposter

    SMTP authentication in PERL script for Windows

    Is there a way to tell if the auth() method is part of my PERL installation? I just installed ActiveState PERL 5.10.1 and updated the shebang to the new PERL path. Using my own mailserver name as the relay, I get this error: "Can't authenticate SASL: No such file or directory at...
  15. Newposter

    SMTP authentication in PERL script for Windows

    Thanks for your diligence! Hopefully I can just overwrite the installation with a newer one. Will report back. Newposter &quot;Good judgment comes from experience. Experience comes from bad judgment.&quot;
  16. Newposter

    SMTP authentication in PERL script for Windows

    OK, I changed my relay from my ISP to my own mailserver name, and this time I got this error: Can't locate object method "auth" via package "Net::SMTP" (perhaps you forgot to load "Net::SMTP"?) at xxx\\cgi-bin\\SENDEM~1.CGI line 154.\n Line 154 is: $smtp->auth($smtp_username, $smtp_password)...
  17. Newposter

    SMTP authentication in PERL script for Windows

    Thanks, but it didn't work. Error log shows: Can't open mail connection: Unknown error at xxxxx\cgi-bin\\SENDEM~1.CGI line 153.\n That line is: my $smtp = Net::SMTP->new($relay) || die "Can't open mail connection: $!"; Newposter &quot;Good judgment comes from experience. Experience comes...
  18. Newposter

    SMTP authentication in PERL script for Windows

    Thanks, it looks like the username and password are expected to be encoded 'per RFC 2554'. Does that mean I should use Windows MD5 encoding, or can I test this just to begin with by using plain text, to see if it works? And I presume the AUTH command comes just between the "new($relay)" and...
  19. Newposter

    SMTP authentication in PERL script for Windows

    I have a PERL script to generate a form email, and it worked flawlessly thousands of times, until my ISP started requiring authentication. I'm stumped now in trying to write the line(s) of code to send out the username and password to authenticate to the ISP's mail server, which is my smart...
  20. Newposter

    Archiving in MS Outlook - what's your strategy?

    I've found in Outlook 2000 that there are two limitations that will stop you dead - Inbox (and probably other folders) having 16,384 items; and file size of 2 GB (not the 20 GB posted above). I had to delete or move items to be able to receive email again. Yes, archiving creates a separate...

Part and Inventory Search

Back
Top