Add Resume and Add Cover Errors

Problem: When attempting to upload a resume or cover letter, users get the following error: You cannot simultaneously use both the text area and file upload box. Please choose one.

Solution: This is a temporary solution — Comment out these lines 72 through 76 in engine/pages/add_resume.php

if ($file_info && $input[’resume_textarea’]){
$this->generate_error(’cannot_use_both_textarea_and_file’);
unlink($file_info[’tmp_name’]);
return false;
}

Comment out these lines in engine/pages/edit_cover.php - lines around 112-118

if ($file_info[’name’] && $input[’cover_textarea’])
{
$this->generate_error(’cannot_use_both_textarea_and_file’);
unlink($file_info[’tmp_name’]);
return false;
}

Stumble it!

Leave a Reply