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 IamaSherpa 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. fykosak

    use without crash?

    Dear all, I'm writting a perl script, which should run on both Winz and Linux and might be able to load only platform-dependend modules. If I write something like this: # supposing $linux indicates OS if ($linux) { use Term::ANSIColor; } else { #nothing } it still doesn't work on Winz, because...
  2. fykosak

    fread bug?

    well, here we go <? $remote_host = &quot;mrobin.host.sk&quot;; $remote_url = &quot;/&quot;; $remote_port = 80; $remote = fsockopen($remote_host,$remote_port); if (!$remote) { print &quot;Connection failed...<br>\n&quot;; } else { fwrite($remote,&quot;GET $remote_url HTTP/1.1\n&quot;)...
  3. fykosak

    fread bug?

    Dear Everyone, I've written a simple script that get's a page from another web server using fsockopen and fread. On some versions of apache it displays some hexa numbers in the output. It seems to me that it the lenght of the page and it appears every time the buffer is filled. Does anybody else...
  4. fykosak

    apache and Gzip?

    Dear everyone, I'm looking for some way how to force apache to use gzip (or other) compression when sending a web page. I looked into some RFC and it seems to me that adding Accept-Encoding: gzip should be enough for apache to send it in gzip, but obviously it's not. any ideas...
  5. fykosak

    how to make non-standart HDD controler work

    I know its unsuual but it works fine under windows95, so I guess it could work under Linux as well... robin
  6. fykosak

    how to make non-standart HDD controler work

    Dear everyone, I've got a IDE controller on a sound card and somehow Linux doesn't recognise it. what shall I do? robin
  7. fykosak

    How to work with paralel port

    Dear everybody! I'm trying to link a simple DC electric circuit with computer. It is a kind of counter (once per 2 secs there is a peak of current) and I need it to measure the time between peaks accurately -> that might not be a problem for UNIX. I just don't know how to work with paralel port...
  8. fykosak

    error detection / dynamic page

    why don't u just use the data that the visitor has sent by the form and fill it in html code of the page?? robin
  9. fykosak

    date manipulations

    basicaly u need to convert the time to seconds and than compare to time variable. After that the localtime function will create an array that contains years, months, minutes etc. So the script would work somehow like: (@first_time) = split(/\//,$time); $first_in_seconds =...
  10. fykosak

    combining STDIN and a socket

    Hi guys, I'm working on an ICQ client written in pure perl and I need to create kind of loop, which would test if there's something comaing from a socket and than if there's something at the STDIN. The problem is that it gots stuck waiting for the STDIN. Select doesn't seem to work properly with...
  11. fykosak

    Flash5 server

    Hi guys, I've been playign around with TCL for a while and now I'm trying to set up a server for Flash5 shockwaves. The Problem is that Flash sends data in XML tags and as a terminator its using zero byte. But TCL treats zero byte as a EOF and drops the connection after every tag sent...Any...

Part and Inventory Search

Back
Top