First, examine the wizard's binary logs to find the SQL statement that is causing the problem using the following wizard command:
SHOW BINLOG EVENTS IN 'mysql-bin.000XXX' LIMIT 100;
Then install the slave only to synchronize with the instructions before:
STOP SLAVE; START SLAVE UNTIL MASTER_LOG_FILE = 'log_name', MASTER_LOG_POS = log_pos;
If you want it to replicate after a bad statement (warning, this can be dangerous if the operator changes the data), you can tell the slave to continue working from a certain point in the wizard log. To do this, use the first command on the master, then install the slave:
CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000663', MASTER_LOG_POS=4; START SLAVE;
source share