I posted how to fix problem for elegant theme users.
elegant themes cheat problem at epanel
elegant theme users should update epanel uploader js file for fix the problem permanently.
/themenname/epanel/js/custom_uploader.js :
// line 14
post_id = jQuery('#post_ID').val();
// add this code after line 14
if (post_id == null) {
post_id = 1;
}