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. jvdboom

    mldbm save?

    it still doesn't work or I should untie/tie again it after every operation on it which could sometimes be multiple times a second.I was looking if there isn't an efficient way to do it.
  2. jvdboom

    mldbm save?

    Actually that wasn't the problem $temp is already a tempory hash (no tie) $users{$temp{$fh}{"user"}} = $temp{$fh}; is translated to: $users{"foo"} = ('user' => 'foo', 'pass' => 'bar', .... ); if you try this code: use MLDBM qw(DB_File Storable); use Fcntl; %sue = (); tie...
  3. jvdboom

    mldbm save?

    This would work if i didn't had an infinitive loop (it seems to save when the program is finished (not killed or crashed). I thought actions on DBM's were directly saved to disk(and save memoryspace). If i check the file that is created it does not contain the data. Maybe it's not effective to...
  4. jvdboom

    File upload without temporary

    Hello It there a way to upload a file and send it to ftp I know that cgi normally makes a temporary file because of memory usage (if uploading big files). But is there a way to turn that off and (possibly) stream it thru
  5. jvdboom

    counter with geograpical stats

    hello, I'm trying to make a special counter that says from which country the visitors are. I know that there is REMOTE_HOST but it only show's an IP(which is default, for a IIS), I tried nslookup but I only got an access denied when i'm trying to run it. Does anyone have a suggestion on this? I...
  6. jvdboom

    after save it becomes chinese(or japanese)?

    after save (using the floppy symbol)in MS script editor it looked like that in the preview, the HTML was in &(number); form wich is not binary.It never happened again. however I had to start over.
  7. jvdboom

    after save it becomes chinese(or japanese)?

    I was programing in microsoft script editor, I hit save The next thing I know it turned into japanese or something,and even an online translator translates it to words that make no sense together. here it is...
  8. jvdboom

    rounding

    yes a slideshow with fader it wil come then in an preload aray with .src the code I have already for that.the only thing I have to do is get the path to the files in that array from /data/images/sint/sint-001 to /data/images/sint/sint-041 of course i can use >10 for that but i will someday reuse...
  9. jvdboom

    rounding

    I have a filenames like sint-001.jpg , sint-002.jpg,... running in a loop a)is there a fast way to get those zeros before the number or a way to perform an function like int() in VB or perl and then get each digit by dividing-rouding-multiplying? b)is there a way to dedect what the last one is?
  10. jvdboom

    Manipulating IP details

    these are the commands in the netsh shell(from a ms-dos session) netsh>help The following commands are available: Commands in this context: .. - Goes up one context level. ? - Displays a list of commands. abort - Discards changes made while in offline mode...
  11. jvdboom

    Can't delete file on ftp with backspace-characters in filename

    No that doesn't work using the dele command of the ftp server. It's the FTP server of the ISP actually. and it also seems that it wiped out the hour of creation. I once read that it maybe only erasable by formating the disk, but that wouldn't be a good solution for our ISP.
  12. jvdboom

    Running command line utility using perl/cgi on remote machine

    Maybe you should get a script listening on a port of system C and connect if from a cgi-script in Machine B If you will save some time by setting up a telnet server on machine C(probably more secure with password) and you only have to make the script that connects to it.
  13. jvdboom

    Can't delete file on ftp with backspace-characters in filename

    The FTP server is on a: UNIX Type: L8 211-status of /: -rw-r--r-- 1 153622 ftp 0 Apr 24 2frjuoidfjgiojersidat drwxr-xr-x 6 153622 restrict 4096 Nov 7 00:26 . drwxr-xr-x 6 153622 restrict 4096 Nov 7 00:26 .. the name how it shows up in MSIE 6.0(ftp) is...
  14. jvdboom

    Manipulating IP details

    There is probably a DHCP server in the network that assigns IP's Automaticly, try to make 2 networkconnections 1 for home and one for work and disable/enable them
  15. jvdboom

    Can't delete file on ftp with backspace-characters in filename

    When I was testing ftp commands with a telnet client(to port 21) I suddenly crated a file with 0 bytes and backspace charaters and-> :\ these two characters now it is on the list but it can't be deleted I get a no such file or directory How can I solve this?
  16. jvdboom

    need help with form submission

    call this script testline.pl and put in in the cgi-bin #!/usr/local/bin/perl print "Content-type: text/html\n\n"; # Read and 'decode' the data received by the server so that # we can use it in our HTML. if ($ENV{'REQUEST_METHOD'} eq "get") { $buffer =...
  17. jvdboom

    span1 not defined in netscape and mozilla

    thabks ,but I have still a few problems in trhe script the .text works in IE but not in NS (noden.text)and some onther things maybe this is the .JS : //alert('test'); var uit;var titel;var achtergkleur;var tekstkleur;var hoofdtitel;var docnaam;var standaardpag;var dezepagina;var url;var...
  18. jvdboom

    span1 not defined in netscape and mozilla

    There is a line in the .js that says: span1.innerHTML = uit; However it seems that span1 doesn't change (it does in IE) and it even gives the error span1 not defined. If you click the next link on the menu-frame it will load instead of the frames(like _parent) Is this something about runnig...
  19. jvdboom

    parsing arguements

    try to use $1 instead of using the s/// if ($usern =~ m/-[fF] (\w+\.?\w*)/) { # filename $filename = $1; } $1 ($2, $3,...) contains everything what is between the first(second third) ()
  20. jvdboom

    CGI Error 500: Line too Long

    Sometimes I get a 404 with it but that seems like a webserver issue sometimes It's 2/5 working sometimes wit IE6 here but also opera and others have the same problem Try to contact the webserver-administrator or if you are, try to study the server logs and do some reconfigurating, It could be...

Part and Inventory Search

Back
Top