You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(10) |
Oct
(54) |
Nov
(34) |
Dec
(45) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(49) |
Feb
(17) |
Mar
(13) |
Apr
|
May
(30) |
Jun
(13) |
Jul
(18) |
Aug
(23) |
Sep
(8) |
Oct
(10) |
Nov
(15) |
Dec
(24) |
2005 |
Jan
(16) |
Feb
(33) |
Mar
(58) |
Apr
(61) |
May
(37) |
Jun
(6) |
Jul
(30) |
Aug
(31) |
Sep
(12) |
Oct
(18) |
Nov
(8) |
Dec
(8) |
2006 |
Jan
(30) |
Feb
(4) |
Mar
(5) |
Apr
(4) |
May
(2) |
Jun
(6) |
Jul
(11) |
Aug
(21) |
Sep
(12) |
Oct
(9) |
Nov
(1) |
Dec
(15) |
2007 |
Jan
(4) |
Feb
(6) |
Mar
(7) |
Apr
(1) |
May
(2) |
Jun
(7) |
Jul
(4) |
Aug
(4) |
Sep
(6) |
Oct
|
Nov
|
Dec
(3) |
2008 |
Jan
(1) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(3) |
Dec
|
2010 |
Jan
(5) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Everton L. B. <ev...@fa...> - 2004-01-09 14:03:08
|
I don't change nothing in my php source code, I keep rlib_add_report($rlib, "file.xml"). I remove the 'rlogit' and I put the "if(ZEND_NUM_ARGS() > 2)" code. It's works. Thanks. Bob Doan escreveu: > Well.. Um.... Odd > > This time it looks like you added a third paramater to > rlib_add_report... did you?? > > perhaps try this.. might also work > > if(ZEND_NUM_ARGS() > 2) > rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); > else > rlib_add_report(rip->r, estrdup(name), NULL); > > can you tell me if it does? (try taking the rlogit out also) > > - Bob > > > On Fri, 2004-01-09 at 07:34, Everton Luis Berz wrote: > >>hu.. i put the line and now my report works fine (except the log line at >>top..) >> >>the result is: >> >>WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 16... AND [2] >><head><style type="text/css">pre { margin:0; padding:0; margin-top:0; >>margin-bottom:0; font-size: 10pt;} >>DIV { position: absolute; left: 0; } >>TABLE { border: 0; cellspacing: 0; cellpadding: 0; width: 100%; } >></style></head> >><body><table><tr><td><pre><DIV><img src="../logo.jpg"></DIV> >><font size="5" > </font><font size="5" >Rlib Sample >>Report</font> >>..... >> >> >> >>Bob Doan escreveu: >> >>>Well... it seems like a php bug to me now... mainloop_count should be < >>>0 since you didn't pass it in.. but I think we can work around it >>> >>>can you change the rlogit to something like this and let me know what it >>>says >>> >>> rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d... AND [%d]\n", >>>whatever, mainloop_count, ZEND_NUM_ARGS()); >>> >>> >>>- Bob >>> >>> >>>On Thu, 2004-01-08 at 13:41, Everton Luis Berz wrote: >>> >>> >>>>result: >>>> >>>>WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 136146712 >>>>** NUTS.. WE CRASHED >>>>Quit (core dumped) >>>> >>>> >>>>Bob Doan escreveu: >>>> >>>> >>>>>Hi, >>>>> >>>>>In bindings/php/php.c >>>>> >>>>>You will see ZEND_FUNCTION(rlib_add_report) >>>>> >>>>>Can you add the rlogit line.. run your report.. crash.. but then look @ >>>>>the apache log (or command line depending on how you did it).. >>>>>and tell me what it says.. this looks like a PHP problem I think >>>>> >>>>>- Bob >>>>> >>>>> >>>>>ZEND_FUNCTION(rlib_add_report) { >>>>>zval *z_rip = NULL; >>>>>int whatever, mainloop_count; >>>>>char *name, *mainloop; >>>>>rlib_inout_pass *rip; >>>>>int id = -1; >>>>> >>>>>if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|s", &z_rip, >>>>>&name, &whatever, &mainloop, &mainloop_count) == FAILURE) { >>>>>return; >>>>>} >>>>> >>>>>rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d\n", whatever, >>>>>mainloop_count); >>>>> >>>>>ZEND_FETCH_RESOURCE(rip, rlib_inout_pass *, &z_rip, id, LE_RLIB_NAME, >>>>>le_link); >>>>> >>>>>if(mainloop_count > 0) >>>>>rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); >>>>>else >>>>>rlib_add_report(rip->r, estrdup(name), NULL); >>>>> >>>>>} >>>>> >>>>> >>>> >>>> >>> >>> >>>------------------------------------------------------- >>>This SF.net email is sponsored by: Perforce Software. >>>Perforce is the Fast Software Configuration Management System offering >>>advanced branching capabilities and atomic changes on 50+ platforms. >>>Free Eval! http://www.perforce.com/perforce/loadprog.html >>>_______________________________________________ >>>Rlib-users mailing list >>>Rli...@li... >>>https://lists.sourceforge.net/lists/listinfo/rlib-users >>> >> > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Perforce Software. > Perforce is the Fast Software Configuration Management System offering > advanced branching capabilities and atomic changes on 50+ platforms. > Free Eval! http://www.perforce.com/perforce/loadprog.html > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > -- Everton Luis Berz Nucleo de Sistemas :: FACCAT - Faculdades de Taquara +55 51 541 6600 - R.624 ICQ 7807919 |
From: Bob D. <bd...@si...> - 2004-01-09 13:47:13
|
Well.. Um.... Odd This time it looks like you added a third paramater to rlib_add_report... did you?? perhaps try this.. might also work if(ZEND_NUM_ARGS() > 2) rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); else rlib_add_report(rip->r, estrdup(name), NULL); can you tell me if it does? (try taking the rlogit out also) - Bob On Fri, 2004-01-09 at 07:34, Everton Luis Berz wrote: > hu.. i put the line and now my report works fine (except the log line at > top..) > > the result is: > > WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 16... AND [2] > <head><style type="text/css">pre { margin:0; padding:0; margin-top:0; > margin-bottom:0; font-size: 10pt;} > DIV { position: absolute; left: 0; } > TABLE { border: 0; cellspacing: 0; cellpadding: 0; width: 100%; } > </style></head> > <body><table><tr><td><pre><DIV><img src="../logo.jpg"></DIV> > <font size="5" > </font><font size="5" >Rlib Sample > Report</font> > ..... > > > > Bob Doan escreveu: > > Well... it seems like a php bug to me now... mainloop_count should be < > > 0 since you didn't pass it in.. but I think we can work around it > > > > can you change the rlogit to something like this and let me know what it > > says > > > > rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d... AND [%d]\n", > > whatever, mainloop_count, ZEND_NUM_ARGS()); > > > > > > - Bob > > > > > > On Thu, 2004-01-08 at 13:41, Everton Luis Berz wrote: > > > >>result: > >> > >>WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 136146712 > >>** NUTS.. WE CRASHED > >>Quit (core dumped) > >> > >> > >>Bob Doan escreveu: > >> > >>>Hi, > >>> > >>>In bindings/php/php.c > >>> > >>>You will see ZEND_FUNCTION(rlib_add_report) > >>> > >>>Can you add the rlogit line.. run your report.. crash.. but then look @ > >>>the apache log (or command line depending on how you did it).. > >>>and tell me what it says.. this looks like a PHP problem I think > >>> > >>>- Bob > >>> > >>> > >>>ZEND_FUNCTION(rlib_add_report) { > >>>zval *z_rip = NULL; > >>>int whatever, mainloop_count; > >>>char *name, *mainloop; > >>>rlib_inout_pass *rip; > >>>int id = -1; > >>> > >>>if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|s", &z_rip, > >>>&name, &whatever, &mainloop, &mainloop_count) == FAILURE) { > >>>return; > >>>} > >>> > >>>rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d\n", whatever, > >>>mainloop_count); > >>> > >>>ZEND_FETCH_RESOURCE(rip, rlib_inout_pass *, &z_rip, id, LE_RLIB_NAME, > >>>le_link); > >>> > >>>if(mainloop_count > 0) > >>>rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); > >>>else > >>>rlib_add_report(rip->r, estrdup(name), NULL); > >>> > >>>} > >>> > >>> > >> > >> > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Perforce Software. > > Perforce is the Fast Software Configuration Management System offering > > advanced branching capabilities and atomic changes on 50+ platforms. > > Free Eval! http://www.perforce.com/perforce/loadprog.html > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > |
From: Everton L. B. <ev...@fa...> - 2004-01-09 12:34:57
|
hu.. i put the line and now my report works fine (except the log line at top..) the result is: WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 16... AND [2] <head><style type="text/css">pre { margin:0; padding:0; margin-top:0; margin-bottom:0; font-size: 10pt;} DIV { position: absolute; left: 0; } TABLE { border: 0; cellspacing: 0; cellpadding: 0; width: 100%; } </style></head> <body><table><tr><td><pre><DIV><img src="../logo.jpg"></DIV> <font size="5" > </font><font size="5" >Rlib Sample Report</font> ..... Bob Doan escreveu: > Well... it seems like a php bug to me now... mainloop_count should be < > 0 since you didn't pass it in.. but I think we can work around it > > can you change the rlogit to something like this and let me know what it > says > > rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d... AND [%d]\n", > whatever, mainloop_count, ZEND_NUM_ARGS()); > > > - Bob > > > On Thu, 2004-01-08 at 13:41, Everton Luis Berz wrote: > >>result: >> >>WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 136146712 >>** NUTS.. WE CRASHED >>Quit (core dumped) >> >> >>Bob Doan escreveu: >> >>>Hi, >>> >>>In bindings/php/php.c >>> >>>You will see ZEND_FUNCTION(rlib_add_report) >>> >>>Can you add the rlogit line.. run your report.. crash.. but then look @ >>>the apache log (or command line depending on how you did it).. >>>and tell me what it says.. this looks like a PHP problem I think >>> >>>- Bob >>> >>> >>>ZEND_FUNCTION(rlib_add_report) { >>>zval *z_rip = NULL; >>>int whatever, mainloop_count; >>>char *name, *mainloop; >>>rlib_inout_pass *rip; >>>int id = -1; >>> >>>if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|s", &z_rip, >>>&name, &whatever, &mainloop, &mainloop_count) == FAILURE) { >>>return; >>>} >>> >>>rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d\n", whatever, >>>mainloop_count); >>> >>>ZEND_FETCH_RESOURCE(rip, rlib_inout_pass *, &z_rip, id, LE_RLIB_NAME, >>>le_link); >>> >>>if(mainloop_count > 0) >>>rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); >>>else >>>rlib_add_report(rip->r, estrdup(name), NULL); >>> >>>} >>> >>> >> >> > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Perforce Software. > Perforce is the Fast Software Configuration Management System offering > advanced branching capabilities and atomic changes on 50+ platforms. > Free Eval! http://www.perforce.com/perforce/loadprog.html > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > -- Everton Luis Berz Nucleo de Sistemas :: FACCAT - Faculdades de Taquara +55 51 541 6600 - R.624 ICQ 7807919 |
From: Bob D. <bd...@si...> - 2004-01-08 22:55:02
|
Well... it seems like a php bug to me now... mainloop_count should be < 0 since you didn't pass it in.. but I think we can work around it can you change the rlogit to something like this and let me know what it says rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d... AND [%d]\n", whatever, mainloop_count, ZEND_NUM_ARGS()); - Bob On Thu, 2004-01-08 at 13:41, Everton Luis Berz wrote: > result: > > WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 136146712 > ** NUTS.. WE CRASHED > Quit (core dumped) > > > Bob Doan escreveu: > > Hi, > > > > In bindings/php/php.c > > > > You will see ZEND_FUNCTION(rlib_add_report) > > > > Can you add the rlogit line.. run your report.. crash.. but then look @ > > the apache log (or command line depending on how you did it).. > > and tell me what it says.. this looks like a PHP problem I think > > > > - Bob > > > > > > ZEND_FUNCTION(rlib_add_report) { > > zval *z_rip = NULL; > > int whatever, mainloop_count; > > char *name, *mainloop; > > rlib_inout_pass *rip; > > int id = -1; > > > > if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|s", &z_rip, > > &name, &whatever, &mainloop, &mainloop_count) == FAILURE) { > > return; > > } > > > > rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d\n", whatever, > > mainloop_count); > > > > ZEND_FETCH_RESOURCE(rip, rlib_inout_pass *, &z_rip, id, LE_RLIB_NAME, > > le_link); > > > > if(mainloop_count > 0) > > rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); > > else > > rlib_add_report(rip->r, estrdup(name), NULL); > > > > } > > > > > > |
From: Everton L. B. <ev...@fa...> - 2004-01-08 18:41:26
|
result: WTF.. NAME LENGTH = 8, MAINLOOP COUNT = 136146712 ** NUTS.. WE CRASHED Quit (core dumped) Bob Doan escreveu: > Hi, > > In bindings/php/php.c > > You will see ZEND_FUNCTION(rlib_add_report) > > Can you add the rlogit line.. run your report.. crash.. but then look @ > the apache log (or command line depending on how you did it).. > and tell me what it says.. this looks like a PHP problem I think > > - Bob > > > ZEND_FUNCTION(rlib_add_report) { > zval *z_rip = NULL; > int whatever, mainloop_count; > char *name, *mainloop; > rlib_inout_pass *rip; > int id = -1; > > if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|s", &z_rip, > &name, &whatever, &mainloop, &mainloop_count) == FAILURE) { > return; > } > > rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d\n", whatever, > mainloop_count); > > ZEND_FETCH_RESOURCE(rip, rlib_inout_pass *, &z_rip, id, LE_RLIB_NAME, > le_link); > > if(mainloop_count > 0) > rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); > else > rlib_add_report(rip->r, estrdup(name), NULL); > > } > > -- Everton Luis Berz Nucleo de Sistemas :: FACCAT - Faculdades de Taquara +55 51 541 6600 - R.624 ICQ 7807919 |
From: Bob D. <bd...@si...> - 2004-01-08 14:36:11
|
Hi, In bindings/php/php.c You will see ZEND_FUNCTION(rlib_add_report) Can you add the rlogit line.. run your report.. crash.. but then look @ the apache log (or command line depending on how you did it).. and tell me what it says.. this looks like a PHP problem I think - Bob ZEND_FUNCTION(rlib_add_report) { zval *z_rip = NULL; int whatever, mainloop_count; char *name, *mainloop; rlib_inout_pass *rip; int id = -1; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|s", &z_rip, &name, &whatever, &mainloop, &mainloop_count) == FAILURE) { return; } rlogit("WTF.. NAME LENGTH = %d, MAINLOOP COUNT = %d\n", whatever, mainloop_count); ZEND_FETCH_RESOURCE(rip, rlib_inout_pass *, &z_rip, id, LE_RLIB_NAME, le_link); if(mainloop_count > 0) rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); else rlib_add_report(rip->r, estrdup(name), NULL); } On Thu, 2004-01-08 at 07:17, Everton Luis Berz wrote: > hi, > > follow the php source code.. > <? > dl ("librlib.so"); > > $sql = "select c.id_company, c.name AS company_name, j.id_people, > p.name AS people_name, j.salary, to_char(j.salary, 'R$ 99999D99') AS > salary_br from job j > inner join company c on (c.id_company = j.id_company) > inner join people p on (p.id_people = j.id_people) "; > > $rlib = rlib_init(); > rlib_add_datasource_postgre($rlib, "pgsql", "host=localhost > dbname=rlib_examples_latin user=postgres"); > rlib_add_query_as($rlib, "pgsql", $sql, "jobs"); > rlib_add_report($rlib, "jobs.xml"); > rlib_set_output_format_from_text($rlib, $format); > rlib_execute($rlib); > header( rlib_get_content_type($rlib)); > rlib_spool($rlib); > rlib_free($rlib); > ?> > > This code works perfect at my Red Hat 9 box. > I think that php 4.3.4 causes the error, it's a unique > difference between my computers (and linux distro..). > Somebody tested rlib on php 4.3.4 ? > > |
From: Everton L. B. <ev...@fa...> - 2004-01-08 12:17:27
|
hi, follow the php source code.. <? dl ("librlib.so"); $sql = "select c.id_company, c.name AS company_name, j.id_people, p.name AS people_name, j.salary, to_char(j.salary, 'R$ 99999D99') AS salary_br from job j inner join company c on (c.id_company = j.id_company) inner join people p on (p.id_people = j.id_people) "; $rlib = rlib_init(); rlib_add_datasource_postgre($rlib, "pgsql", "host=localhost dbname=rlib_examples_latin user=postgres"); rlib_add_query_as($rlib, "pgsql", $sql, "jobs"); rlib_add_report($rlib, "jobs.xml"); rlib_set_output_format_from_text($rlib, $format); rlib_execute($rlib); header( rlib_get_content_type($rlib)); rlib_spool($rlib); rlib_free($rlib); ?> This code works perfect at my Red Hat 9 box. I think that php 4.3.4 causes the error, it's a unique difference between my computers (and linux distro..). Somebody tested rlib on php 4.3.4 ? Bob Doan escreveu: > Hey, > > how are you calling rlib_add_report > > thats seems to be what is causing the crash.. because we are estrduping > a null pointer.. this should not be possible if PHP is behaving right > because we have this > > if(mainloop_count > 0) > rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); > else > rlib_add_report(rip->r, estrdup(name), NULL); > > > > > -- Everton Luis Berz Nucleo de Sistemas :: FACCAT - Faculdades de Taquara +55 51 541 6600 - R.624 ICQ 7807919 |
From: Bob D. <bd...@si...> - 2004-01-07 20:44:22
|
Hey, how are you calling rlib_add_report thats seems to be what is causing the crash.. because we are estrduping a null pointer.. this should not be possible if PHP is behaving right because we have this if(mainloop_count > 0) rlib_add_report(rip->r, estrdup(name), estrdup(mainloop)); else rlib_add_report(rip->r, estrdup(name), NULL); On Wed, 2004-01-07 at 12:40, Everton Luis Berz wrote: > Hi, > I have been installed rlib 1.1.6 (libcpdf 2.02r1-0) > on slackware 9.1, php 4.3.4, postgresql 7.4.1. > The compilation was sucessful but when I run a simple > report (from my examples, at RH9 them runs) rlib say: > > ** NUTS.. WE CRASHED > Quit (core dumped) > > Follow the stack trace of core: > > Reading symbols from /usr/lib/libcpdf.so.2...done. > Loaded symbols for /usr/lib/libcpdf.so.2 > Reading symbols from /usr/local/lib/libr-postgre.so...done. > Loaded symbols for /usr/local/lib/libr-postgre.so > #0 0x40318ac1 in kill () from /lib/libc.so.6 > (gdb) bt > #0 0x40318ac1 in kill () from /lib/libc.so.6 > #1 0x404a559b in myFaultHandler (signum=11, si=0x0, aptr=0x0) at util.c:46 > #2 0x405c3c45 in __pthread_sighandler () from /lib/libpthread.so.0 > #3 <signal handler called> > #4 0x4036ae53 in strlen () from /lib/libc.so.6 > #5 0x0815503e in _estrdup (s=0x2 <Address 0x2 out of bounds>) at > /usr/local/src/php-4.3.4/Zend/zend_alloc.c:363 > #6 0x404317be in zif_rlib_add_report (ht=2, return_value=0x0, > this_ptr=0x0, return_value_used=0) at php.c:247 > #7 0x08171c1e in execute (op_array=0x8252c9c) at > /usr/local/src/php-4.3.4/Zend/zend_execute.c:1616 > #8 0x0816413f in zend_execute_scripts (type=8, retval=0x0, > file_count=3) at /usr/local/src/php-4.3.4/Zend/zend.c:884 > #9 0x0813ad58 in php_execute_script (primary_file=0xbffff950) at > /usr/local/src/php-4.3.4/main/main.c:1729 > #10 0x08176bf6 in main (argc=2, argv=0xbffff9e4) at > /usr/local/src/php-4.3.4/sapi/cli/php_cli.c:819 > #11 0x40304d06 in __libc_start_main () from /lib/libc.so.6 > > > > Mysql database causes same error. > > Help-me :/ |
From: Everton L. B. <ev...@fa...> - 2004-01-07 17:41:44
|
Hi, I have been installed rlib 1.1.6 (libcpdf 2.02r1-0) on slackware 9.1, php 4.3.4, postgresql 7.4.1. The compilation was sucessful but when I run a simple report (from my examples, at RH9 them runs) rlib say: ** NUTS.. WE CRASHED Quit (core dumped) Follow the stack trace of core: Reading symbols from /usr/lib/libcpdf.so.2...done. Loaded symbols for /usr/lib/libcpdf.so.2 Reading symbols from /usr/local/lib/libr-postgre.so...done. Loaded symbols for /usr/local/lib/libr-postgre.so #0 0x40318ac1 in kill () from /lib/libc.so.6 (gdb) bt #0 0x40318ac1 in kill () from /lib/libc.so.6 #1 0x404a559b in myFaultHandler (signum=11, si=0x0, aptr=0x0) at util.c:46 #2 0x405c3c45 in __pthread_sighandler () from /lib/libpthread.so.0 #3 <signal handler called> #4 0x4036ae53 in strlen () from /lib/libc.so.6 #5 0x0815503e in _estrdup (s=0x2 <Address 0x2 out of bounds>) at /usr/local/src/php-4.3.4/Zend/zend_alloc.c:363 #6 0x404317be in zif_rlib_add_report (ht=2, return_value=0x0, this_ptr=0x0, return_value_used=0) at php.c:247 #7 0x08171c1e in execute (op_array=0x8252c9c) at /usr/local/src/php-4.3.4/Zend/zend_execute.c:1616 #8 0x0816413f in zend_execute_scripts (type=8, retval=0x0, file_count=3) at /usr/local/src/php-4.3.4/Zend/zend.c:884 #9 0x0813ad58 in php_execute_script (primary_file=0xbffff950) at /usr/local/src/php-4.3.4/main/main.c:1729 #10 0x08176bf6 in main (argc=2, argv=0xbffff9e4) at /usr/local/src/php-4.3.4/sapi/cli/php_cli.c:819 #11 0x40304d06 in __libc_start_main () from /lib/libc.so.6 Mysql database causes same error. Help-me :/ -- Everton Luis Berz Nucleo de Sistemas :: FACCAT - Faculdades de Taquara +55 51 541 6600 - R.624 ICQ 7807919 |
From: <che...@bi...> - 2004-01-07 13:13:56
|
Hi heri, My name is Chet and I am working with Bob on RLIB development. I am patching in the changes that you submitted, but Linux defines iconv, arg2 as (char **). Casting to (const char **) generates type-mismatches when we compile on Linux. Do you, (or anyone), know of a way to determine when to use one vs. the other? If we can find out how to tell the difference, we'll make it conditional. I'll be checking the rlib_dump_profile change later. Chet > From: H. Steuer <st...@un...> > To: Bob Doan <bd...@si...> > Subject: Re: [Rlib-users] rlib on OpenBSD > Date: Sat, 03 Jan 2004 03:06:56 +0100 > > Hi Bob, > > thanks for your quick answer. > > The iconv thing was just a tiny issue, as the prototype expects a const > char** as its second argument. > > i attached 2 diffs for your project which may be interresting to you. > the api.c diff should be important for portability. > e.g. solaris and msvc++ do #define stdout (&_iob[1]), so you can > do something like stdout=... > but BSD derivatives define stdout another way: > extern FILE *__stdinp, *__stdoutp, *__stderrp; > #define stdout (__stdoutp) > > which makes stdout an improper l-value for such an assignement. > the way i've rewritten it should work well on all platforms. > > i just finished the patches and checked the lib compiles so far, will > check if it produces any acceptable results tomorrow (its 3:02am now, > time for some ZzZ). > > anyways i wanted to send the patches for review. > > > regards, > heri > > > > > > > > > On Fri, 02 Jan 2004 14:48:54 -0500 > Bob Doan <bd...@si...> wrote: > >> I think we had someone get it working on freebsd >> >> RLIB cvs is much more cross platform friendly (uses gmodule stuff.. so >> no implicit -dl) >> >> What problems are you having w/ iconv?? can you send a patch or >> somthing? >> >> - Bob >> >> On Fri, 2004-01-02 at 13:47, H. Steuer wrote: >> > Hi guys, >> > >> > im trying to compile rlib on OpenBSD. >> > After removing -ldl, fixing a few lines of code due to incompatible >> pointer types (e.g. to iconv()) i was stuck when it came to some >> libtool errors. i'm not into libtool stuff and therefore was not >> able to debug it further. did one of you guys ever compile rlib on a >> *BSD machine? >> > >> > kind regards, >> > heri >> > >> > > > --=-zUKmL0hsn+72MVYtxFM1 > Content-Type: application/octet-stream; name="api.c.diff" > Content-Disposition: attachment; filename="api.c.diff" > Content-Transfer-Encoding: 7bit > > --- api.c.orig Fri Jan 2 23:32:49 2004 > +++ api.c Sat Jan 3 02:53:58 2004 > @@ -20,6 +20,7 @@ > > #include <stdio.h> > #include <stdlib.h> > +#include <unistd.h> > #include <string.h> > #include <locale.h> > > @@ -224,29 +225,41 @@ > } > > > -void rlib_dump_profile_fp(gint profilenum, FILE *fp) { > - FILE *temp; > +void rlib_dump_profile_fp(gint profilenum) { > fflush(stdout); > - temp = stdout; > - if (fp) stdout = fp; > printf("\nRLIB memory profile #%d:\n", profilenum); > g_mem_profile(); > fflush(stdout); > - stdout = temp; > } > > > void rlib_dump_profile(gint profilenum, const gchar *filename) { > FILE *newout = NULL; > + int fd = 0; > > if (filename) { > newout = fopen(filename, "a"); > } > + else { > + /* > + * need to re-assign stdout a proper way ! > + * > + * stdout is not always &_iob[1], so you cant > + * count that its a propper l-value. > + */ > + > + fd=dup(STDOUT_FILENO); > + freopen(filename,"wb",stdout); > + } > + > + rlib_dump_profile_fp(profilenum); > + > if (newout) { > - rlib_dump_profile_fp(profilenum, newout); > fclose(newout); > } else { > - rlib_dump_profile_fp(profilenum, stdout); > + fflush(stdout); /* again */ > + close(STDOUT_FILENO); > + dup2(fd,STDOUT_FILENO); > rlogit("Could not open memory profile file: %s\n", filename); > } > } > > --=-zUKmL0hsn+72MVYtxFM1 > Content-Type: application/octet-stream; name="parsexml.c.diff" > Content-Disposition: attachment; filename="parsexml.c.diff" > Content-Transfer-Encoding: 7bit > > --- parsexml.c.orig Fri Jan 2 23:19:54 2004 > +++ parsexml.c Fri Jan 2 19:43:27 2004 > @@ -36,7 +36,7 @@ > if(rep->cd != NULL) { > slen = strlen(str); > bzero(dest, MAXSTRLEN); > - iconv(rep->cd, &str, &slen, &olddest, &len); > + iconv(rep->cd, (const char **)&str, &slen, &olddest, &len); > } else { > strcpy(dest, str); > } > > --=-zUKmL0hsn+72MVYtxFM1-- > > > > > --__--__-- > > _______________________________________________ > Rlib-devel mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-devel > > > End of Rlib-devel Digest |
From: Bob D. <bd...@si...> - 2004-01-02 19:48:57
|
I think we had someone get it working on freebsd RLIB cvs is much more cross platform friendly (uses gmodule stuff.. so no implicit -dl) What problems are you having w/ iconv?? can you send a patch or somthing? - Bob On Fri, 2004-01-02 at 13:47, H. Steuer wrote: > Hi guys, > > im trying to compile rlib on OpenBSD. > After removing -ldl, fixing a few lines of code due to incompatible pointer types (e.g. to iconv()) i was stuck when it came to some libtool errors. i'm not into libtool stuff and therefore was not able to debug it further. > did one of you guys ever compile rlib on a *BSD machine? > > kind regards, > heri > |
From: H. S. <st...@un...> - 2004-01-02 18:45:42
|
Hi guys, im trying to compile rlib on OpenBSD. After removing -ldl, fixing a few lines of code due to incompatible pointer types (e.g. to iconv()) i was stuck when it came to some libtool errors. i'm not into libtool stuff and therefore was not able to debug it further. did one of you guys ever compile rlib on a *BSD machine? kind regards, heri -- This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. |
From: Bob D. <bd...@si...> - 2004-01-01 19:38:42
|
Hi, First.. I'm not the only rlib developer.. so I like to keep things on list Font styles are planned... should be implemented soon.. join the list and stay tuned I'm glad you like rlib - Bob On Thu, 2004-01-01 at 12:39, Dietmar Zufall wrote: > Hello Bob Doan, > > first I wish you a Happy New Year! > > My english is very bad, sorry for that, but i hope you can understand what > i'm wrote. > > Have you planing in Feature, additional Options in xml-File to style > Fonts, example set a speziell Font or Attributes like bold, kursiv, > underline, overline etc.....? > > Best Regards > > Dietmar Zufall > > PS.: RLIB is a great Programm, Thanks for this! |
From: Everton L. B. <ev...@fa...> - 2003-12-16 16:23:58
|
Not working yet.. problem persists. Bob Doan escreveu: > I think I see the problem > > http://rlib.sicompos.com/rlib-1.1.7.tar.gz > > If this fixes it (w/ the error checking I told you about earlier) > > It looks like your postgre connection is bad > > I can clean stuff up more so it won't happen either way :) > > - Bob > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > -- Everton Luis Berz Nucleo de Sistemas :: FACCAT - Faculdades de Taquara +55 51 541 6600 - R.624 ICQ 7807919 |
From: Bob D. <bd...@si...> - 2003-12-15 14:20:48
|
Currently rlib only supports a "fixed" layout engine w/ the fixed size font. More dynamic layout is planned for RLIB 1.4 - Bob On Mon, 2003-12-15 at 07:34, Franco Spinelli wrote: > Il dom, 2003-12-14 alle 23:02, Bob Doan ha scritto: > > Hi, > > > > This has come up on list before.... but basically > > > > Page 9,10,13 of the betabook explain it (kinda poorly.. ) > > > > Some online examples > > > > http://rlib.sicompos.com/samples/1.xml > > http://rlib.sicompos.com/samples/2.xml > > > > As a note.. very soon we will be integrating some more examples into our > > documentation that are a bit easier to follow > > > > If that doesn't explain it Everton, Chet or I can help you > > > > - Bob > > > > > Many tanks for the answer. I get samples and study it. > Another little question: Coordinates used for lay-out of report is char. > How if I use a non fixed character like Arial, Helvetica and so ? > > Regards > Franco Spinelli > |
From: Bob D. <bd...@si...> - 2003-12-14 22:02:35
|
Hi, This has come up on list before.... but basically Page 9,10,13 of the betabook explain it (kinda poorly.. ) Some online examples http://rlib.sicompos.com/samples/1.xml http://rlib.sicompos.com/samples/2.xml As a note.. very soon we will be integrating some more examples into our documentation that are a bit easier to follow If that doesn't explain it Everton, Chet or I can help you - Bob On Sun, 2003-12-14 at 14:31, Franco Spinelli wrote: > There is any documentation/example on using breaks in XML file for Rlib > ? In PDF documentation there is no example of this. > Please replay by email, if possible. I am new of Rlib and not yet > subscribed to this list > > Regards > Franco Spinelli > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Franco S. <fr...@ti...> - 2003-12-14 19:34:41
|
There is any documentation/example on using breaks in XML file for Rlib ? In PDF documentation there is no example of this. Please replay by email, if possible. I am new of Rlib and not yet subscribed to this list Regards Franco Spinelli |
From: Bob D. <bd...@si...> - 2003-12-13 13:22:05
|
What distro are you running? The problem seems to be Python stuff defining stuff they should not be... If in bindings/python/Makefile you take out the -Werror flags it should compile for you... until I can get to the bottom of the Python stuff Then in order to use rlib's python bindings: python2.3 import librlib; then follow the PHP or c funtions.. but just put a "librlib." in front of them I need to document that.. - Bob On Sat, 2003-12-13 at 04:04, Treeve Jelbert wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > I have Python-2.3.2 > > > I added "--with-pythonver=`ls /usr/lib |grep python|cut -c7-`" to ./configure > > > I get the following errors when compiling the Python interface using gcc-3.3.2 > - ------- > > gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" > - -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"rlib\" > - -DVERSION=\"1.1.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 > - -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 > - -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 > - -DHAVE_LIBC=1 -DHAVE_LIBM=1 -DHAVE_ODBC=1 -DHAVE_PYTHON=1 -DSTDC_HEADERS=1 > - -DHAVE_FCNTL_H=1 -DHAVE_UNISTD_H=1 -DHAVE_CPDFLIB_H=1 -DHAVE_LIBCPDF=1 > - -DENABLE_CRASH=1 -I. -I. -I../../libsrc/ -I/usr/include/libxml2 > - -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include > - -I /usr/include/python2.3 -Wall -Werror -march=athlon-tbird -mmmx -m3dnow -O3 > - -c environment.c -MT environment.lo -MD -MP -MF .deps/environment.TPlo -fPIC > - -DPIC -o .libs/environment.o > In file included from /usr/include/python2.3/Python.h:8, > from environment.c:22: > /usr/include/python2.3/pyconfig.h:847:1: "_POSIX_C_SOURCE" redefined > In file included from /usr/include/stdlib.h:25, > from environment.c:20: > /usr/include/features.h:171:1: this is the location of the previous definition > make[3]: *** [environment.lo] Error 1 > make[3]: Leaving directory `/usr/src/rlib-1.1.6/bindings/python' > > > > > Regards, Treeve > > - -- > PGP Key ID: AB929B24 > PGP Key Fingerprint:31D9 D22F 42E6 F545 662E AB6F 9697 34C5 AB92 9B24 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.3 (GNU/Linux) > > iD8DBQE/2tYUlpc0xauSmyQRAid0AKC2KO9hksHdXdil/pRc4f9pkmMI/ACePW6n > Rqso939pNFqpTIjuuoFzi4I= > =U9N9 > -----END PGP SIGNATURE----- > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id78&alloc_id371&opk > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Treeve J. <tre...@pi...> - 2003-12-13 08:59:47
|
=2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have Python-2.3.2 I added "--with-pythonver=3D`ls /usr/lib |grep python|cut -c7-`" to ./confi= gure I get the following errors when compiling the Python interface using gcc-3.= 3.2 =2D ------- gcc -DPACKAGE_NAME=3D\"\" -DPACKAGE_TARNAME=3D\"\" -DPACKAGE_VERSION=3D\"\= "=20 =2D -DPACKAGE_STRING=3D\"\" -DPACKAGE_BUGREPORT=3D\"\" -DPACKAGE=3D\"rlib\"= =20 =2D -DVERSION=3D\"1.1.6\" -DSTDC_HEADERS=3D1 -DHAVE_SYS_TYPES_H=3D1 -DHAVE_= SYS_STAT_H=3D1=20 =2D -DHAVE_STDLIB_H=3D1 -DHAVE_STRING_H=3D1 -DHAVE_MEMORY_H=3D1 -DHAVE_STRI= NGS_H=3D1=20 =2D -DHAVE_INTTYPES_H=3D1 -DHAVE_STDINT_H=3D1 -DHAVE_UNISTD_H=3D1 -DHAVE_DL= =46CN_H=3D1=20 =2D -DHAVE_LIBC=3D1 -DHAVE_LIBM=3D1 -DHAVE_ODBC=3D1 -DHAVE_PYTHON=3D1 -DSTD= C_HEADERS=3D1=20 =2D -DHAVE_FCNTL_H=3D1 -DHAVE_UNISTD_H=3D1 -DHAVE_CPDFLIB_H=3D1 -DHAVE_LIBC= PDF=3D1=20 =2D -DENABLE_CRASH=3D1 -I. -I. -I../../libsrc/ -I/usr/include/libxml2=20 =2D -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include=20 =2D -I /usr/include/python2.3 -Wall -Werror -march=3Dathlon-tbird -mmmx -m3= dnow -O3=20 =2D -c environment.c -MT environment.lo -MD -MP -MF .deps/environment.TPlo = -fPIC=20 =2D -DPIC -o .libs/environment.o In file included from /usr/include/python2.3/Python.h:8, from environment.c:22: /usr/include/python2.3/pyconfig.h:847:1: "_POSIX_C_SOURCE" redefined In file included from /usr/include/stdlib.h:25, from environment.c:20: /usr/include/features.h:171:1: this is the location of the previous definit= ion make[3]: *** [environment.lo] Error 1 make[3]: Leaving directory `/usr/src/rlib-1.1.6/bindings/python' Regards, Treeve=20 =2D --=20 PGP Key ID: AB929B24 PGP Key Fingerprint:31D9 D22F 42E6 F545 662E AB6F 9697 34C5 AB92 9B24=20 =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQE/2tYUlpc0xauSmyQRAid0AKC2KO9hksHdXdil/pRc4f9pkmMI/ACePW6n Rqso939pNFqpTIjuuoFzi4I=3D =3DU9N9 =2D----END PGP SIGNATURE----- |
From: Bob D. <bd...@si...> - 2003-12-12 20:15:44
|
I think I see the problem http://rlib.sicompos.com/rlib-1.1.7.tar.gz If this fixes it (w/ the error checking I told you about earlier) It looks like your postgre connection is bad I can clean stuff up more so it won't happen either way :) - Bob On Fri, 2003-12-12 at 14:36, Everton Luis Berz wrote: > holy shit, the core filesize is 134mb ! I think this > causes the 'crazies'. > > well, follow the stack trace: > > Loaded symbols for /usr/lib/libcpdf.so.2 > Reading symbols from /usr/local/lib/libr-postgre.so...done. > Loaded symbols for /usr/local/lib/libr-postgre.so > #0 0xffffe002 in ?? () > (gdb) bt > #0 0xffffe002 in ?? () > #1 <signal handler called> > #2 0x40acbd5e in postgre_new_result_from_query (input_ptr=0x0, > query=0x3c <Address 0x3c out of bounds>) at postgre.c:151 > #3 0x40bd4aa7 in rlib_execute (r=0x8264550) at api.c:85 > #4 0x400338e5 in zif_rlib_execute (ht=1, return_value=0x8264bbc, > this_ptr=0x0, return_value_used=1) at php.c:280 > #5 0x08156f4c in execute () > #6 0x0813dc16 in zend_execute_scripts () > #7 0x08070b7a in php_execute_script () > #8 0x0806dbf8 in main () > #9 0x42015704 in __libc_start_main () from /lib/tls/libc.so.6 > # > > Bob Doan escreveu: > > Can we get a stack trace of your core dump? > > > > - Bob > > > > On Wed, 2003-12-10 at 13:55, Everton Luis Berz wrote: > > > >>Bob Doan escreveu: > >> > >>>Everton or anyone else > >>> > >>>I have a few bug fixes in RLIB.. I think... > >>> > >>>I think I fixed the break header/footer problem and a few postgre > >>>problems... if anyone cares to try it download it here > >> > >>yeah, no more problems. (just html footer still unformatted) > >> > >> > >>>http://rlib.sicompos.com/rlib-1.1.6.tar.gz > >>> > >>>Also... Everton reported a problem w/ rlib going crazy on an invalid > >>>query... I can't reproduce this... can anyone else try sending rlib an > >>>invalid query.. see what happens... > >>> > >>>Everton.. btw.. does rlib still go nuts when you run you app from the > >>>commandline.. like PHP whatever.php?? > >> > >>yes. > >># php file.php > >>(20 seconds after..) > >>** NUTS.. WE CRASHED > >>Sair (core dumped) > >># > >> > >> > >>>- Bob > >>> > >>> > >>> > >>>------------------------------------------------------- > >>>This SF.net email is sponsored by: IBM Linux Tutorials. > >>>Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > >>>Free Linux Tutorials. Learn everything from the bash shell to sys admin. > >>>Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > >>>_______________________________________________ > >>>Rlib-users mailing list > >>>Rli...@li... > >>>https://lists.sourceforge.net/lists/listinfo/rlib-users > >>> > >> > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: IBM Linux Tutorials. > > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > > > |
From: Bob D. <bd...@si...> - 2003-12-12 20:05:42
|
Err right.. My bad.. I got it right in the news.. wrong message to the list Speeking of debian.. and packages (RPMs & DEBS) anyone other there in userland interested in making spec files for RPMS?? Or is there a way to make a .spec for for debs and RPMS?? Anyone know? - Bob On Fri, 2003-12-12 at 14:15, Mario Teijeiro Otero wrote: > Bob Doan wrote: > > >Hey All > > > >Chet and I are happy to announce rlib 1.1.6 > > > >This releases focuses on fixing the Breaking Problems and the HTML > >output problems. > > > >We would like to thank: > > > >Mario Teijeiro Otero for the debian patch > >and Everton Luis Berz for his continued hard work at finding bugs and > >working on examples (which will be included in future releases really > >soon) > > > The patch that I send you only fix Makefile.am . I did after yesterday > the package debian, that I will send you for incorporate to the > distribution. > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Everton L. B. <ev...@fa...> - 2003-12-12 19:37:19
|
holy shit, the core filesize is 134mb ! I think this causes the 'crazies'. well, follow the stack trace: Loaded symbols for /usr/lib/libcpdf.so.2 Reading symbols from /usr/local/lib/libr-postgre.so...done. Loaded symbols for /usr/local/lib/libr-postgre.so #0 0xffffe002 in ?? () (gdb) bt #0 0xffffe002 in ?? () #1 <signal handler called> #2 0x40acbd5e in postgre_new_result_from_query (input_ptr=0x0, query=0x3c <Address 0x3c out of bounds>) at postgre.c:151 #3 0x40bd4aa7 in rlib_execute (r=0x8264550) at api.c:85 #4 0x400338e5 in zif_rlib_execute (ht=1, return_value=0x8264bbc, this_ptr=0x0, return_value_used=1) at php.c:280 #5 0x08156f4c in execute () #6 0x0813dc16 in zend_execute_scripts () #7 0x08070b7a in php_execute_script () #8 0x0806dbf8 in main () #9 0x42015704 in __libc_start_main () from /lib/tls/libc.so.6 # Bob Doan escreveu: > Can we get a stack trace of your core dump? > > - Bob > > On Wed, 2003-12-10 at 13:55, Everton Luis Berz wrote: > >>Bob Doan escreveu: >> >>>Everton or anyone else >>> >>>I have a few bug fixes in RLIB.. I think... >>> >>>I think I fixed the break header/footer problem and a few postgre >>>problems... if anyone cares to try it download it here >> >>yeah, no more problems. (just html footer still unformatted) >> >> >>>http://rlib.sicompos.com/rlib-1.1.6.tar.gz >>> >>>Also... Everton reported a problem w/ rlib going crazy on an invalid >>>query... I can't reproduce this... can anyone else try sending rlib an >>>invalid query.. see what happens... >>> >>>Everton.. btw.. does rlib still go nuts when you run you app from the >>>commandline.. like PHP whatever.php?? >> >>yes. >># php file.php >>(20 seconds after..) >>** NUTS.. WE CRASHED >>Sair (core dumped) >># >> >> >>>- Bob >>> >>> >>> >>>------------------------------------------------------- >>>This SF.net email is sponsored by: IBM Linux Tutorials. >>>Become an expert in LINUX or just sharpen your skills. Sign up for IBM's >>>Free Linux Tutorials. Learn everything from the bash shell to sys admin. >>>Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click >>>_______________________________________________ >>>Rlib-users mailing list >>>Rli...@li... >>>https://lists.sourceforge.net/lists/listinfo/rlib-users >>> >> > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users > -- Everton Luis Berz Nucleo de Sistemas :: FACCAT - Faculdades de Taquara +55 51 541 6600 - R.624 ICQ 7807919 |
From: Mario T. O. <em...@es...> - 2003-12-12 19:15:57
|
Bob Doan wrote: >Hey All > >Chet and I are happy to announce rlib 1.1.6 > >This releases focuses on fixing the Breaking Problems and the HTML >output problems. > >We would like to thank: > >Mario Teijeiro Otero for the debian patch >and Everton Luis Berz for his continued hard work at finding bugs and >working on examples (which will be included in future releases really >soon) > The patch that I send you only fix Makefile.am . I did after yesterday the package debian, that I will send you for incorporate to the distribution. |
From: Bob D. <bd...@si...> - 2003-12-12 18:31:17
|
Hey All Chet and I are happy to announce rlib 1.1.6 This releases focuses on fixing the Breaking Problems and the HTML output problems. We would like to thank: Mario Teijeiro Otero for the debian patch and Everton Luis Berz for his continued hard work at finding bugs and working on examples (which will be included in future releases really soon) Whats next: 1.1.7 Will be the release that will include better number formatting for different locals.. plus memo field support (which chet has been working on).. Probably it will also include surpressing fields (currently we can only surpress lines).. or whole break header/footers 1.1.7 might also include another language binding.. I'm either going to do perl or java next.. we are still probably about 2 months away from an offical stable 1.2.. but we're working hard to get there BTW.. 1.1.6 requires glib2 now (for better portability and soon better i18n stuff) And.. I think I have better python detection.. can someone try it out? - Bob |
From: Bob D. <bd...@si...> - 2003-12-11 14:11:49
|
Hi I'm not the only rlib developer so I like to keep things on list :) The answer then is as root run /sbin/ldconfig then /sbin/ldconfig --print-cache | grep cpdf should show something then compile rlib Don't feel bad about your english... English is my first language and if you ask some of the people around the office here.. mine sucks also - Bob On Thu, 2003-12-11 at 08:06, enrique molina wrote: > Hello Bob, i appreciate your attention. >=20 > When execute "/sbin/ldconfig --print-cache | grep cpdf > " the answer is: > nothing. >=20 > When execute "ld -ldcpf" the answer is: >=20 > ld: warning: libz.so.1, needed by /usr/lib/libcpdf.so, not found (try > using -rpath or -rpath-link) > ld: warning: libc.so.6, needed by /usr/lib/libcpdf.so, not found (try > using -rpath or -rpath-link) > ld: warning: cannot find entry symbol _start; not setting start address > /usr/lib/libcpdf.so: undefined reference to `strcpy' > /usr/lib/libcpdf.so: undefined reference to `sqrt' > /usr/lib/libcpdf.so: undefined reference to `printf' > /usr/lib/libcpdf.so: undefined reference to `ceil' > /usr/lib/libcpdf.so: undefined reference to `memcpy' > /usr/lib/libcpdf.so: undefined reference to `_IO_stderr_' > /usr/lib/libcpdf.so: undefined reference to `remove' > /usr/lib/libcpdf.so: undefined reference to `__environ' > /usr/lib/libcpdf.so: undefined reference to `fprintf' > /usr/lib/libcpdf.so: undefined reference to `strcat' > /usr/lib/libcpdf.so: undefined reference to `fseek' > /usr/lib/libcpdf.so: undefined reference to `cos' > /usr/lib/libcpdf.so: undefined reference to `mktime' > /usr/lib/libcpdf.so: undefined reference to `strstr' > /usr/lib/libcpdf.so: undefined reference to `sin' > /usr/lib/libcpdf.so: undefined reference to `strncmp' > /usr/lib/libcpdf.so: undefined reference to `pow' > /usr/lib/libcpdf.so: undefined reference to `strncpy' > /usr/lib/libcpdf.so: undefined reference to `log10' > /usr/lib/libcpdf.so: undefined reference to `_IO_getc' > /usr/lib/libcpdf.so: undefined reference to `sscanf' > /usr/lib/libcpdf.so: undefined reference to `strncat' > /usr/lib/libcpdf.so: undefined reference to `localtime' > /usr/lib/libcpdf.so: undefined reference to `time' > /usr/lib/libcpdf.so: undefined reference to `strcmp' > /usr/lib/libcpdf.so: undefined reference to `tan' > /usr/lib/libcpdf.so: undefined reference to `getpwuid' > /usr/lib/libcpdf.so: undefined reference to `fgetc' > /usr/lib/libcpdf.so: undefined reference to `sprintf' > /usr/lib/libcpdf.so: undefined reference to `atexit' > /usr/lib/libcpdf.so: undefined reference to `fputc' > /usr/lib/libcpdf.so: undefined reference to `__xstat' > /usr/lib/libcpdf.so: undefined reference to `__curbrk' > /usr/lib/libcpdf.so: undefined reference to `exit' > /usr/lib/libcpdf.so: undefined reference to `compress' > /usr/lib/libcpdf.so: undefined reference to `strchr' > /usr/lib/libcpdf.so: undefined reference to `vfprintf' >=20 > I have a poor experience with C, and compile , etc. > What is the next step?. I have to install other product?. > Excuse me for my poor english, please. >=20 >=20 > Saludos >=20 > Enrique Molina C=E1rcamo > Grupo Inabox, c.a. > ----- Original Message -----=20 > From: "Bob Doan" <bd...@si...> > To: "enrique molina" <en...@gr...> > Cc: "RLIB USERS" <rli...@li...> > Sent: Wednesday, December 10, 2003 9:50 PM > Subject: Re: [Rlib-users] help with Rlib >=20 >=20 > > It should work.. in theory > > > > what happens when you "ld -lcpdf" > > > > Do you get a library not found or a bunch of unresolved symbols? > > > > - Bob > > > > On Wed, 2003-12-10 at 18:38, enrique molina wrote: > > > Hi there, i can=C2=B4t t install Rlib in Freebsd 5.1. I had instal= led > > > libxml2 and clibpdf with tarball. When i try ./configure inside rli= b > > > directory, i get the error: > > > "checking cpdflib.h usability... yes > > > checking cpdflib.h presence... yes > > > checking for cpdflib.h... yes > > > checking for cpdf_init in -lcpdf... no > > > configure: error: You must have cpdflib properly installed in order > > > for rlib to work.. missing libcpdf.so" > > > > > > Anybody has experience with it? > > > > > > The file libcpdf.so is in the /usr/local/lib and /usr/lib (copy). I > > > don=C2=B4t understand what happens. > > > Anybody has installed Rlib in FreeBSD. > > > > > > Thanks in advance. > > > > > > Enrique > > > > > > > > > > > > >=20 |