-
Oops... that should be line 738, not 238.
Dave.
2009-06-29 23:46:30 UTC in ChurchInfo
-
I got it working thanks to this fix by njesson:
https://sourceforge.net/forum/message.php?msg_id=5725092
The same change has to be made in SelectList.php to lines: 729, 238, 755, 769, 779, 789 and 796.
In each of these lines where you find the text:
&grouproleid=$iRoleID
it should be followed immediately by:
&PersonProperties=$iPersonProperty
so that it reads...
2009-06-29 20:51:13 UTC in ChurchInfo
-
I thought I saw this mentioned somewhere but now I can't find it.
In the Person Listing, if I filter on Contact Properties the first page displays fine but then when I click Next Page the query gets reset back to the default and the results are incorrect.
Line 436 is where the sql string is constructed (I think):
$finalSQL = $sSQL . $sOrderSQL . $sLimitSQL;
In order to see the sql code...
2009-06-29 18:58:13 UTC in ChurchInfo
-
Michael,
Thanks for the tip. In fact, the data is coming from another mySQL database so I'm thinking I could probably just dump the old database and then restore the tables I need to the Churchinfo database then write some php code to transfer stuff I need from my old tables to the churchinfo tables.
Thanks for all your work on this project.
Dave.
2009-06-24 16:22:34 UTC in ChurchInfo
-
I'm just getting my feet wet with this product, and I'm exporting from another database to CSV then importing into ChurchInfo. I'm sure once I get everything imported the way I want it this will no longer be an issue (for me). But it is very tedious to have to keep selecting the the field mappings from the drop-down list for every column.
Am I missing something? It would be nice to be...
2009-06-23 17:56:12 UTC in ChurchInfo
-
Line 662
$sSQLFamCustom = "UPDATE Family_custom SET ";
needs to be
$sSQLFamCustom = "UPDATE family_custom SET ";
Table name all lower case.
2009-06-23 17:33:31 UTC in ChurchInfo