in reply to Correct link to put in my WWW:Mechanize

> If I just put this:

my $url = 'http://www.csbio.sjtu.edu.cn/MEMBRAIN/';

It's

http://www.csbio.sjtu.edu.cn/bioinf/MemBrain/ --------

and CASE matters too.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

Replies are listed 'Best First'.
Re^2: Correct link to put in my WWW:Mechanize
by Anonymous Monk on Mar 12, 2022 at 18:52 UTC
    Thanks Rolf, I tried that, still the same error (Error GETing http://www.csbio.sjtu.edu.cn/bioinf/MEMBRAIN/: Not Found) (both by putting post or get). Is there maybe somewhere that I need to add the cgi-bin part perhaps?
      I've updated my post in the meantime that cAsE matters.

      Anything after the domain is a file-path and follows unix rules.

      You should try to open those URIs in the browser.

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery

        Sorry Rolf, I am a bit confused. In my script, I write:
        my $url = 'http://www.csbio.sjtu.edu.cn/bioinf/MemBrain/';

        and, in the source of the page I see:
        <form name="myform" action="/cgi-bin/MEMBRAIN.cgi" method="post" onSub +mit="javascript: return checkform();">

        Do these two need to be combined perhaps somehow?