Home › Forums › ABCD Installation › ABCD OPAC › Reply To: ABCD OPAC
ABCD CommunityHi, Alberto!
Line 80 of wxis_llamar.php is as follows:
$result=@file_get_contents($wxisUrl,false, $context);
In this case, the problem may lie with $wxisUrl. Note that this variable is declared in config.php
Originally, it looks like this:
if ($postMethod == '1') {
$wxisUrl = $server_url . "/cgi-bin_Windows/";
if ($unicode != "") $wxisUrl .= "$unicode/";
if ($cisis_ver != "") $wxisUrl .= $cisis_ver . "/";
$wxisUrl .= $wxis_exec; // POST method used
$Wxis = "";
} else {
$wxisUrl = "";
$Wxis = $cgibin_path;
if ($unicode != "") $Wxis .= "$unicode/";
if ($cisis_ver != "") $Wxis .= $cisis_ver . "/";
$Wxis .= $wxis_exec; //GET method is used
}
$server_url constructs the URL: https://your-site/cgi-bin/wxis
My tip:
Test: https://your-site/cgi-bin/wxis?hello
And see if you get a successful result or an error.
There’s likely an error in the cgi-bin configuration, the SSL certificate, or file permissions.
