I am on a shared host that uses cPanel. My aim is to use ExifTool, which can be installed from cPanel. But with not too much knowledge about Perl I am stuck.
What I managed so far:
I did a test.pl and put that into cgi-bin - and it worked fine!
Multible tries with #!/usr/bin/exiftool so far failed.
So how do I run a Perl module, or better, a Perl module in a PHP environment?
What I managed so far:
I did a test.pl and put that into cgi-bin - and it worked fine!
Perl:
#!/usr/bin/perl -w
print "Content-type:text/html\n\n";
print "hello world";
So how do I run a Perl module, or better, a Perl module in a PHP environment?