Forum Replies Created
-
AuthorReplies
-
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 5 months, 3 weeks 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?

ABCD CommunityKeymaster::Solução: Instalar o Microsoft Visual C++ Redistributable
A maneira correta de resolver isso é instalar o pacote oficial da Microsoft que contém o arquivo VCRUNTIME140.dll e outros arquivos necessários.Acesse a página de download da Microsoft:
Faça o download dos arquivos corretos:
- Na página, procure pela seção “Visual Studio 2015, 2017, 2019 e 2022”.
- Você verá links para diferentes arquiteturas. É recomendado baixar e instalar ambas as versões (x86 e x64) para garantir a compatibilidade com todos os seus programas.
- vc_redist.x86.exe (para programas de 32 bits)
- vc_redist.x64.exe (para programas de 64 bits)
Instale os pacotes:
- Execute o primeiro arquivo que você baixou (por exemplo, vc_redist.x86.exe). Siga as instruções, aceite os termos e conclua a instalação. Se o programa já estiver instalado, ele pode oferecer uma opção para “Reparar”. Escolha essa opção.
- Faça o mesmo para o segundo arquivo (vc_redist.x64.exe).
Reinicie o computador:
- Após instalar (ou reparar) ambos os pacotes, reinicie o seu computador. Isso é importante para que as alterações no sistema sejam aplicadas corretamente.
Tente executar o programa novamente:
- Após reiniciar, tente iniciar o programa que estava dando o erro (XAMPP, WAMP, ou o serviço Apache). O erro não deve mais aparecer.
ABCD CommunityKeymaster::Hola de nuevo,
Leí tu mensaje por correo electrónico, pero voy a responder aquí porque puede ayudar a más gente.
Si has eliminado completamente la instalación anterior, incluyendo la eliminación o el cambio de nombre de la carpeta C:/ABCD, te sugiero que también cambies el nombre de tu carpeta c:/xamppp a c:/xampp_old.
Para que el instalador haga el trabajo correctamente, no debe haber residuos de intentos anteriores.
Si ya lo has hecho, intenta ir a C:\xampp\apache y ejecuta el archivo apache_uninstallservice.bat. Luego apache_installservice.bat o intenta iniciar los servicios abriendo el panel de Xampp.

o

-
This reply was modified 5 months, 3 weeks ago by
-
AuthorReplies

