- Title: Member
- Status: Offline
- Registered: 2010-07-15
- Posts: 10
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
- Title: Administrator
- Status: Offline
- From: Oradea, Romania
- Registered: 2008-08-20
- Posts: 958
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.
Posts [ 2 ]
Guest posting is disabled. You must login or register to post a reply.