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 Chriss Miller 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: *

  • Users: cdlvj
  • Content: Threads
  • Order by date
  1. cdlvj

    PHP Debugging

    Problems with debugging php. PHP installed 8.4 with XDebug on a remote Linux Server. VSCode debugging remotely client MacOS. I have communicated and set breakpoints but the output needs to go to a browser. It comes to my Debug Command line? I know this can be done. Thanks in advance.
  2. cdlvj

    date time

    This is a windows box with Active Perl. I cannot get the correct time. Have been using localtime. TZ is set to CST6CDT. It always return 1 hour less. Tried Date::manip same thing. Remove TZ, tried everything. Any ideas? Thanks in advance.
  3. cdlvj

    USE WWW::Curl::Easy

    I cannot find any document on how the options map to the Perl Options. The Curl command line is: $ curl --ftp-ssl -sslv3 --verbose -E FITB-HSBC_public.pem --key FITB-HSBC_private.pem --pass pass --user Logon:xxx ftp://www.site.com/FR/outbound/FR_Test.txt use WWW::Curl::Easy; my...
  4. cdlvj

    PGP Signing

    Have been using pgp for awhile, give clients our public key, they encrypt the file, and we successfully decrypt the file. Now we have a request that the client sign the file? I cannot find any reference that clearly explain the procedure. The only thing I know is that on the client side, the...
  5. cdlvj

    Why is this returning the return code

    This is from a class object and is supposed to return a list. It is returning an array with what looks like a TRUE/FALSE in the array. $dati = "file1\nfile2\nfile3\n"; return $dati ? split( /\n/, $dati ) : ();
  6. cdlvj

    How do you pull out a hash array using struct?

    list is a hash array. Debug shows $list = { "seconds" => "12,2", "hour" => "8,2", "minute" => "10,2", "month" => "4,2", "day" => "6,2", "year" => "0,4" }; use Class::Struct; struct ftpdata => { mask => '$'...
  7. cdlvj

    Any way to dynamically call a subroutine

    Listers, I have a perl event ftp processor, which is driven by a .ini file. Is there any way to call a function based on what is defined in the .ini file. ie. [txt] destination=ftp.someserver.com preprocess=foo [dat] destination=ftp.somewhereelse.com Would like to have a line if...
  8. cdlvj

    Using LWP to automate file upload

    have a https site to upload files, and I want to automate the process. my $url = "https:\/\/acct:pass\@ftp.mydomain.com/cgi-bin/upload.pl"; my $ua = LWP::UserAgent->new; $ua->agent("MyApp/0.1 "); my $file="c:\\filetoupload.txt"; $res = $ua->post($url, [ "ac" => 'upload'...
  9. cdlvj

    DNS not resolving host names on server

    SCO OpenServer 5.05 which has been running fine for a bunch of years. Something has messed up or dns. When I do a nslookup for any outside servers, I get Can't find www.domain.com: Non-existent Host/Domain. One of the culprits may have been a router firmware upgrade. ns1/ns2 act as our...
  10. cdlvj

    Problems using Mcafee mail spam/virus service.

    We have SCO openserver running apache now for at least 8 years, and have excellent response and service. The owner subscribed to Mcafee email protection where MX records are defined to forward all mail for a domain to Mcafee servers. There are 4, and then MX for his server and backup at isp...
  11. cdlvj

    Apache gurus: websites stop being served

    We have SCO openserver running apache now for at least 8 years, and have excellent response and service. The owner subscribed to Mcafee email protection where MX records are defined to forward all mail for a domain to Mcafee servers. There are 4, and then MX for his server and backup at isp...
  12. cdlvj

    net::sftp

    Has anyone gotten this to work in a Windoz environment?
  13. cdlvj

    Developing class over net::ftp issue with multiple instation.

    Have developed a class to wrap around net::ftp. Does the connection with retry logic, and allows alternate servers. Works fine for 1 instance, but on 2nd instance, the $ftp variable is not null and has the 1st net::ftp object. Do I have to keep track of each ftp object? ie my $ftp in my class...
  14. cdlvj

    Net ftp wrapper return array within array

    Developing a class around net::ftp for doing alternate servers, retries etc. What is the easiest way to resolve a return on $ftp->dir which returns a array within an array? ## return looks like this my @list=$ftp->dir; @list = ( [ "total 104", "drwxr-xr-x...
  15. cdlvj

    General smtp question regarding transport

    When I send an email from my client in San Antonio to a sendmail server in Houston, does it route directly to port 25? Or does it land on the isp serving the Houston server, and then get routed to the server. Reason for question is if I block all 25 port traffic in the Houston router except for...
  16. cdlvj

    IIS 6 login https problems

    running on 2k3 server, performs correctly for file transfers using https. Every once in awhile on the user/password dialog, the client keeps getting the request for user/password, and cannot login. Yesterday a client sent two files successfully during the day and on the third file could not...
  17. cdlvj

    IIS and cgi perl scripts

    on xp, this was calling and executing cgi fine, Machine had to be rebuilt, and cannot get this to work. What is the procedure to configure this?
  18. cdlvj

    Win XP Update Read error on install disk

    The USB on my system stopped working - no mouse or keyboard, so got the Dell Win Xp install disk. It is bad and aborts with a CRC error. The system now boots into Setup Restarting. How do I get it to just boot up normally. I looked at the boot.ini, according to microsoft site, has no special...
  19. cdlvj

    Special Re-direct to Win Server behind firewall

    Running SCO apache server in DMZ Server Version: Apache/1.3.33 (Unix) PHP/4.4.1-dev In the office internal, have a 2k3 server running a special program to simulate web server on port 8000. User can retrieve this page through any windows machine in network, and even on the Unix client browser...
  20. cdlvj

    Help with this mult-dimensional array

    my @data; @data = ( ["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"], [ 1, 2, 5, 6, 3, 1.5, 1, 3, 4], [ 1, 2, 5, 6, 3, 1.5, 1, 3, 4 ] ); This is from the GD::Graph, and I cannot find anything in Perl pages about this syntax. Ran debugger and cannot...

Part and Inventory Search

Back
Top