ABCD Community

Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)
  • Author
    Replies
  • in reply to: Problemas con Busqueda avanzada #7122
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

    ¡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ó.

    in reply to: Problemas con Busqueda avanzada #7111
    ABCD Community
    Keymaster
    Helpful
    Up
    0
    Down
    Not Helpful
    ::

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

    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?

     

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