I use php-export-data
class for excel output. This class works on my localhost and godady server but on my new server in doesn't work.
It gives a header error. Likes this.:
Warning: Cannot modify header information - headers already sent by (output started at /home/mmm/public_html/head/adminsss/config.php:1) in /home/mmm/public_html/head/adminss/modules/head/class/php-export-data.class.php on line 489 Warning: Cannot modify header information - headers already sent by (output started at /home/mmm/public_html/head/adminsss/config.php:1) in /home/mmm/public_html/head/adminsss/modules/head/class/php-export-data.class.php on line 490<br> Line 489 => header("Content-Type: application/vnd.ms-excel; charset=" . $this->encoding); Line 490 => header("Content-Disposition: inline; filename=\"" . basename($this->filename) . "\"");
- localhost PHP Version 5.5.11
- godady PHP Version 5.3.24
- new server PHP Version 5.5.23
How can I fix this?