libeti

Topic: error uploading Hireme template

I want to replace the Default template I had with the new Hireme template.  I uploaded the files from Hireme.  This is the response I get
Warning: Cannot modify header information - headers already sent by (output started at /home/alger/public_html/jobberbase/_templates/default/_cache/%%F7^F7F^F7F34188%%header.tpl.php:4) in /home/alger/public_html/jobberbase/_templates/default/_cache/%%F7^F7F^F7F34188%%header.tpl.php on line 4

putypuruty

Re: error uploading Hireme template

Hi,

To fix your problem, open the file _templates/hireme/header.tpl and replace

Code:

{if $CURRENT_PAGE == 'page-unavailable' || $CURRENT_PAGE == 'job-unavailable'}
    {php}header("HTTP/1.0 404 Not Found");{/php}
{/if}

with

Code:

{if $CURRENT_PAGE == 'page-unavailable' || $CURRENT_PAGE == 'job-unavailable'}{php}header("HTTP/1.0 404 Not Found");{/php}{/if}

Note that for fixing the error, only the whitespace characters had to be removed.