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 strongm 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. zvrcvm

    Using DBD-Sybase

    I have a perl script on a CentOS Linux server which needs to be connected to a Windows resident MSQL server on another network. I have installed Freetds, DBD-Sybase and DBI modules for perl and mod_perl for Apache 2. The problem is that if I run my script from a ssh console it runs and connect...
  2. zvrcvm

    How to Apply a class to a table?

    This is the correct form to write the styles for your needs: <style type="text/css"> .tableone { width: 100%; max-width: 500px; } .tableone td { border: 1px solid #666666; font-family: Verdana; font-size: 10px; color: #000000; padding-left: 5px; } .tableone tr...
  3. zvrcvm

    Java on apache2

    How can I configure Apache 2 to run Java? Masochist: Windows programmer with a smile.
  4. zvrcvm

    Japanese default - Apache

    You have to set in httpd.conf: DefaultLanguage ja Check also you have the line: AddLanguage ja .ja It would be useful in some case but not indispensable to have &quot;ja&quot; in the first place on the line: LanguagePriority ja en sp it fr ... etc. D. Masochist: Windows programmer with...
  5. zvrcvm

    How to use a regular expression on a text file

    like this: open (FILE, &quot;<test.txt&quot;); while (<FILE>) { print if /abc/; } close FILE; This will print all the text lines in test.txt that contain &quot;abc&quot; D. Masochist: Windows programmer with a smile.
  6. zvrcvm

    Replacing word in file

    open (FILE, &quot;<file.txt&quot;); flock (FILE, 2); undef ($/); $cont = <FILE>; close FILE; $cont =~ s/cat/dog/g; #include boudary if it's the case open (FILE, &quot;>file.txt&quot;); print FILE $cont; flock (FILE, 8); close FILE; try this too D. Masochist: Windows programmer with a smile.
  7. zvrcvm

    uninstall ie6

    Try Avant Browser, it works like IE but don't sucks that much... http://www.avantbrowser.com D. Masochist: Windows programmer with a smile.
  8. zvrcvm

    Replaying a Mydoom infected message

    Virus Mydoom is overcharging traffic worldwide over Internet. It is spoofing the return address in its messages. Please, webmasters and server administrators, configure your antivirus software to NOT replay any virus infected message. Avoid to contribute to a bandwidth overuse. It is enough...
  9. zvrcvm

    spamassassin

    Spamassassin only put a header on top of the spamming email message, just to indicate that this messages is considered spam. Based on this, you can include in your 'procmailrc' configuration file the following code, to filter and eliminate the 'guilty' message. :0: * ^X-Spam-Status: Yes...
  10. zvrcvm

    Include CGI script

    Hi, I have a Linux debian 3.01 server with Apache 1.36 installed on it. I have html pages with the CGI inclusion: <!--#exec cgi=&quot;/cgi-bin/myscript.cgi&quot; --> and this script does not work. The same include code appears in the source code of the page, read from the browser. Apache server...
  11. zvrcvm

    page is already free

    Hi, I have the httpd error log frequently filled of: httpd in free(): warning: chunk is already free or httpd in free(): warning: page is already free and when this happens, it fills all my log partition space. From where does it come?? Dan Life is not 10101100 only ... It's also 01010011
  12. zvrcvm

    VRFY postmaster [rejected]

    Thanks openpair, but, my server works on freeBSD. Aren't Netfilter / ipchains for Linux only??
  13. zvrcvm

    VRFY postmaster [rejected]

    Thanks. I will ask my colocation provider to check this.
  14. zvrcvm

    VRFY postmaster [rejected]

    I've just tried, and the result is that now it is filling my maillog with this: Aug 21 12:39:52 www sendmail[76060]: ruleset=check_relay, arg1=[111.222.33.44], arg2=111.222.33.44, relay=[111.222.33.44], reject=550 5.7.1 Access denied Aug 21 12:39:55 www sendmail[76089]: ruleset=check_relay...
  15. zvrcvm

    VRFY postmaster [rejected]

    My server is running from several months. This started about 2 weeks ago. I'm not running any open relay. I'm relaying my own domains only. I had 2 spamming attacks yesterdays on 2 different 'open formmail' scripts, but I have immediately closed them and this has no ralation with the problem...
  16. zvrcvm

    VRFY postmaster [rejected]

    :) yes I have. And, the IP addresses and domainname that appear in the log are always the same and do not have any relation with my server...
  17. zvrcvm

    VRFY postmaster [rejected]

    Hi, I have my maillog full of this lines: Aug 21 09:33:39 www sendmail[33659]: h7LGXdXZ033659: [111.222.33.44]: VRFY postmaster [rejected] Aug 21 09:34:04 www sendmail[35130]: h7LGY4XZ035130: fw0.domainname.com [123.45.67.89]: VRFY postmaster [rejected] Aug 21 09:34:09 www sendmail[35406]...
  18. zvrcvm

    Excessive recursion

    Can anybody help me to recover this error that appears anly in 1 of many other domains hosted in my server? This is the error from /var/log/maillog: SYSERR(root): rewrite: excessive recursion (max 50), ruleset canonify Thanks in advance Giorgio
  19. zvrcvm

    exec cgi

    :)) sure!! I tried the same on another directory, with the same problem: it only works through the .htaccess file and not through the httpd.conf. May be a new &quot;special&quot; feature of version 2 of apache?? :)) Giorgio
  20. zvrcvm

    exec cgi

    Thank you Daniel, very much. After your last message I've solved the problem I added a .htaccess file into the cgi-bin directory with the content: Options Indexes FollowSymLinks Includes ExecCGI AddType text/x-server-parsed-html .html and all went OK. What I do not understand is that the...

Part and Inventory Search

Back
Top