I have just stared a Doctoral degree and it is sucking up most of my time currently. The PHP side isn't something that I designed to be release ready. In fact it states so in the PHP source. The idea is that you would need to create a PHP page that would interact with your MySQL database. There is no standard design for the database. One item you should be aware of is that when something other than your iOS app inserts records, there will need to be UUIDs generated for the records.
Your PHP code will also need to handle all data collisions.
Thanks,
Lee
> --
> You received this message because you are subscribed to the Google Groups "QuickConnect" group.
> To post to this group, send email to quickconn...@googlegroups.com.
> To unsubscribe from this group, send email to quickconnectiPh...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/quickconnectiPhone?hl=en.
>
Thanks,
Lee
On Feb 13, 2012, at 11:57 AM, Francesco wrote:
> Lee,
>
> thanks for your quick answer. I understand the time issue since I'm a
> phd student myself.
>
> If I understand right the QC DBSync 1.3 framework ist suitable for my
> purpose.
I believe so.
>
> Somewhere (I think it was in mappings.inc, line 3 where)
> "Utilities.inc" is spelled with an upper case U [require_once
> getcwd().DIRECTORY_SEPARATOR.'utilities.inc';] resulting in an error.
> Can you confirm?
The code was written on an OS that is not case dependent so you could see this on an OS like Linux.
>
> Maybe you can tell where the hard coded php parts are (filenames,
> lines).
> I'm especially interested in the spots where user ids, passwords, urls
> etc. are coded that need to be changed. I keep missing some parts for
> change and that's why it doesn't connect.
The example you are looking at uses the QuickConnect design pattern in the PHP. You will find the functionality in the functions.inc file. The 'stack' of functions to call for each command received in the mappings.inc file. Each stack shows you the functionality flow for each command
The functions.inc file has the hard coded functionality in it.