nothing display in Read More (detail page) of submited link

php link directory hosted on dreamhost web space.

today i got problem as a blank page appear when i click read more for the choosing link.

after i diagnosed problem, i found the gzip compression causs this problem .

after i disable the compression, the link detail page appears again.

error in session_start()

php error:

session_start() [function.session-start]: Cannot send session cache limiter

solution:

remove any space before session_start();

code should be like:

<?php
session_start();

… …

remaining code

…. …