Page 1 of 1

LoadHRB (Ubuntu Linux)

Posted: Tue Oct 20, 2020 2:32 pm
by ricbarraes
hola amigos, estoy implementando algunos proyectos mod_harbour en el servidor linux, pero ¿alguien sabría lo que estoy haciendo mal? Estoy intentando cargar un HRB pero siempre devuelve que no fue posible cargarlo.

ejemplo 1:

Code: Select all

function Main()
   ?? LoadHRB( 'lib/mercury/testhrb.hrb' )
   ?? hb_GetEnv( "PRGPATH" ) + "/"+"lib/mercury/testhrb.hrb"
return nil
return:

Code: Select all

.F. /var/www/html/modharbour_samples/lib/mercury/testhrb.hrb (editado)
nota: creé una ruta lib / mercury solo para probarla, existe en el mismo directorio que se muestra

ejemplo 2:

Code: Select all

//  {% LoadHRB( 'lib/mercury/mercury.hrb' ) %}  
#include {% MercuryInclude( 'lib/mercury' ) %}
//Função de entrada para a aplicação
FUNCTION Main()
    local oApp,nRetVal, n, m, hField, hRow
[...]
 
return:

Code: Select all

Error: Undefined function
operation: MERCURYINCLUDE
[ 1] = C lib/mercury
called from: MERCURYINCLUDE, line: 0
called from: ../source/exec.prg, (b)REPLACEBLOCKS, line: 141
called from: ../source/exec.prg, REPLACEBLOCKS, line: 141
called from: ../source/exec.prg, EXECUTE, line: 63
¿Alguien tiene alguna idea de lo que puedo estar haciendo mal?

Re: LoadHRB (Ubuntu Linux)

Posted: Wed Oct 21, 2020 10:14 am
by Carles
Ricardo,

Por la tarde intento contactar contigo y te hecho una mano.

Creo q sera tema permisos

C.

Re: LoadHRB (Ubuntu Linux)

Posted: Wed Oct 21, 2020 5:56 pm
by ricbarraes
Thank you Charly!
yes, you and Pere were right, this issue was related to some read/write permissions.

Imma create another topic here and in our google groups so I can explain in more details how did I solve this problem and got everything running in Ubuntu/Linux