ABCD Community

Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Author
    Replies
  • in reply to: ABCD OPAC #7090
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    Reported issue: https://github.com/ABCD-DEVCOM/ABCD/issues/697

    in reply to: ABCD OPAC #7089
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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.

    in reply to: ABCD OPAC #7086
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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.

    in reply to: ABCD OPAC #7079
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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?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.

     

    in reply to: ABCD OPAC #7077
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    Hi, Alberto!
    Could you paste the error messages from the log so we can try to figure out what’s going on? This type of error isn’t common, since we already have CEPAL databases in ABCD that run without performance issues, regardless of their size.

    in reply to: opac facets #7063
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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.

    in reply to: Problem with accented characters #7052
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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.

    in reply to: New profile: permissions selection #7051
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    Hi, Francesco!

    We’re working on your suggestion. The profile editor is indeed very outdated and poor. I hope the update will improve this.

    in reply to: Helper messages in Central module #7050
    ABCD Community
    Keymaster
    Helpful
    Up
    1
    Down
    Not Helpful
    ::

    Hi, Peter!

    This feature has been restored in ABCD 3.8, which will be released this weekend. We’ll be posting a detailed article explaining the new version.

    in reply to: PFT de users no muestra foto (users.pft) #7031
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    ¡Hola, Greby!
    Tu mensaje me ha dejado un poco confundido, ya que estoy viendo la imagen de tu captura de pantalla.

    ¿Podrías describir mejor el problema?

    in reply to: ABCD 3 Installation #6993
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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.

     

    in reply to: ABCD 3.1.b opac display #6276
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    Hi Peter!

    My hypothesis is that the term relevance configuration might be missing. In OPAC, the search isn’t linear; you need to balance the weight of the fields. Assign importance to each field. Follow the steps in the image and see if that solves it.

     

    in reply to: ABCD 3.1.b opac display #6002
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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?

     

    in reply to: Problemas de inicialização #5872
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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.
    in reply to: ERRORS #5415
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    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

     

Viewing 15 replies - 1 through 15 (of 18 total)