I'm trying to prototype an online directory using php/odbc and a local Apache web server going against a backup of the PC database. The only problem I'm having is accessing the family and profile pictures. I see nothing in ME or MA the references the pictures in the Picture folder. Also, I see blogs of sample custom reports where they select Family Picture or Profile Picture. When I try to create a custom report, neither of those fields are available. Can you tell me how to access the pictures given a Mail_no and Pers_no?
This prototype is using PC11.1 data on Win Vista. We currently use OneBody for our online directory.
Membership and Family pictures
Moderators: Moderators, Tech Support
-
Zorak
- Tech Support

- Posts: 3112
- Joined: Thu May 13, 2004 9:59 am
- Location: PowerChurch Software
- Contact:
Re: Membership and Family pictures
The pictures are named using the mail_no (unique family ID) and pers_no (directory sequence/person ID in the family).
mail_no = 5 digits, padded with leading zeros
pers_no = 2 digits, padded with leading zero (will be 00 for family picture)
0012300.JPG = Family picture for mail_no 123
0012301.JPG = Person picture for mail_no 123 pers_no 1
1234500.JPG = Family picture for mail_no 12345
1234503.JPG = Person picture for mail_no 12345 and pers_no 3
mail_no = 5 digits, padded with leading zeros
pers_no = 2 digits, padded with leading zero (will be 00 for family picture)
0012300.JPG = Family picture for mail_no 123
0012301.JPG = Person picture for mail_no 123 pers_no 1
1234500.JPG = Family picture for mail_no 12345
1234503.JPG = Person picture for mail_no 12345 and pers_no 3
Re: Membership and Family pictures
Thanks. I see that now in the pictures directory.