For some reason it looks as though the auto-increment primary ID for one of your tables is incorrect.
In PhpMyAdmin can you check the following database query
SELECT AUTO_INCREMENT , (SELECT MAX(ev_id) FROM j33jq.onjqe_jevents_vevent) FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'j33jq'
AND TABLE_NAME = 'onjqe_jevents_vevent'
SELECT AUTO_INCREMENT , (SELECT MAX(rp_id) FROM j33jq.onjqe_jevents_repetition) FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'j33jq'
AND TABLE_NAME = 'onjqe_jevents_repetition'
SELECT AUTO_INCREMENT , (SELECT MAX(rr_id) FROM j33jq.onjqe_jevents_rrule) FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'j33jq'
AND TABLE_NAME = 'onjqe_jevents_rrule'
SELECT AUTO_INCREMENT , (SELECT MAX(evdet_id) FROM j33jq.onjqe_jevents_vevdetail) FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'j33jq'
AND TABLE_NAME = 'onjqe_jevents_vevdetail'
replace j33jq with your database name and onjqe_ with your joomla table prefix.
In each case the auto_increment value should be higher or equal to the max id field value.