Forum Replies Created
-
AuthorReplies
-
ABCD CommunityKeymaster::¡Hola, Rodrigo!
Encontré el problema que mencionaste en la búsqueda detallada y ya se ha enviado la corrección a GitHub: https://github.com/ABCD-DEVCOM/ABCD/pull/707/changes/692a68fa1f6132bb492dcca2000a6e24b5eeec78
Puedes descargar y reemplazar el archivo: www/htdocs/opac/includes/selectLang.php
Pruébalo y dime si funcionó.
ABCD CommunityKeymaster::¡Hola, Rodrigo!
El OPAC nativo de ABCD fue diseñado para no utilizar más formularios avanzados. La lógica se basa en el principio de que el usuario final no sabe cuál es la mejor combinación que puede hacer, por lo que se recomienda el uso de las facetas. El OPAC muestra en las facetas los términos disponibles dentro del alcance de la búsqueda libre realizada por el usuario. Así, al escribir un término, se le informa al usuario que dentro de ese término hay información que puede cruzarse.A pesar de este incentivo para ofrecer las combinaciones posibles a partir de la búsqueda simple, el formulario de búsqueda avanzada se reactivó recientemente. Debido a su escaso uso, es posible que presente algunos errores. Este formulario se encuentra en la lista de verificaciones para el ABCD 4, que se lanzará próximamente.
Te pido que envíes imágenes o mensajes de registro de tus pruebas para que podamos entender dónde está el problema.
ABCD CommunityKeymaster
ABCD CommunityKeymaster::Hi, Alberto!
I’m looking into ways to make OPAC more flexible. It turns out that the relevance system does indeed use more server memory. I’m working on a way to make this feature optional. That way, we’ll have two options: linear search and relevance-based search.
Work is underway on ABCD 4, but this improvement will be included in the new version. I believe it will improve performance.
ABCD CommunityKeymaster::Actually, it looks like your configuration is correct.
My suggestion, then, is to increase the memory limit and execution time (as a workaround) in php.ini.
max_execution_time = 300
memory_limit = 512M
Replace the buscar_integrada.php file in the htdocs/opac folder and let me know the result.
https://abcd-community.org/download/buscar_integrada-teste-2026-07-17/#
I made a small modification for very large databases; let me know if it works.
ABCD CommunityKeymaster::Hi, 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?helloAnd 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.
ABCD CommunityKeymaster
ABCD CommunityKeymaster::Hi, Peter!
In fact, single quotes ‘ break the facets, because the button is a JavaScript function that uses these characters.
In your test, I see the line: replace(v260^b,`'`,``)
– This works to remove the quote from the term in the preview, but it doesn’t work because the term isn’t formatted that way in the index.
Everything needs to be “synchronized.”
Add a line like this to your marc.fst file: 260 0 mpu,('EDC_'replace(v260^b,`'`,``))/Then, in marc_facetas.dat, modify the Publisher field to:
Publisher|replace(v260^b,`'`,``)|EDC_|Q
If the replace operation follows the same rules on both sides, the facets will work.
ABCD CommunityKeymaster::Hi, Francesco!
The issue with accents is determining whether they’re actually broken or just appearing broken.
My suggestion is to use the i2id and id2i utilities to convert them to plain text. With a text editor like Sublime Text, you can assess the situation and, depending on the case, convert or batch-edit the accents. Depending on the size of the database, it might be better to reimport it.
Unfortunately, you’ll have to figure out why the accents look wrong. Since I’m a native speaker of Portuguese, which has many accents, I’ve experienced all kinds of situations, so it’s hard to say what the best strategy is for your case.
ABCD CommunityKeymaster
ABCD CommunityKeymaster
ABCD CommunityKeymaster
ABCD CommunityKeymaster::Hello, this message actually informs you that the server cannot find the wxis utility located in the cgi-bin folder.
Reasons:
– Your config.php may be pointing to the wrong path;
– If it is a Linux installation, wxis may be blocked from running.
Suggestion: search your config.php for the path to the cgi-bin folder and see if it matches the folder organization on your server. It is important to note that there is a “www” in config.php.template, which can sometimes be the problem if you do not use the www directory.
-
This reply was modified 7 months ago by
ABCD Community.
ABCD CommunityKeymaster
ABCD CommunityKeymaster::Hello, Peter.
I just ran the same test you did at https://demo.abcd-community.org/, and the result was as expected. Could you give me more information about your test environment so I can understand what is happening?

-
This reply was modified 7 months ago by
-
AuthorReplies

