Hi, the problem that we are having is:
We have a website running on a live environment, the owner
contacts us and request if we can make a few changes to
the site. We make a copy of the website (and database)
we install some plugins, change some channels.
We merge this back to the live environment, for the files
this is not a problem git handles merging very well.
The problem is the database, EE makes changes in the database
and we haven’t found a way to solve this problem.
We have looked at a few options:
- Hook for CodeIgnite before it insert into the database. (Is not possible)
- Hook for MySQL. (Trigger won’t be able to handle a complete database)
- Binlog MySQL. (Not possible)
- Catch all queries using mysql log. (Gives tons of useless data and kills performance)
Has anyone fix this problem?
or found a work around for this problem?
- Ronald