Welcome Guest, Not a member yet? Register   Sign In
Page is not showing when data goes long
#1

[eluser]mak.gnu[/eluser]
Hi,
Im using codeigniter 1.7.0 and Template library by [email=http://www.williamsconcepts.com/ci/libraries/template/index.html]Colin Williams[/email]

The problem is when ever the pages content goes around 1000kb it shows only header and footer.
here is my views/template.php code page

Code:
<head>
<link rel="shortcut icon" href="favicon.ico"/>
<?=$meta_data?>  <!--This will contain all meta data and title for SEO-->
<?= $_styles;?>
</head>
<body >
    <div id="main">
        &lt;?= $header;?&gt;
        <div style="margin:0 auto;width:1000px;" >
            &lt;?= $left_sidebar ?&gt;    
            &lt;?=  $content?&gt;
            &lt;?= $right_sidebar ?&gt;
        </div>
        &lt;?= $footer ?&gt;
    </div>
    &lt;?php  echo $_scripts;?&gt;
    &lt;?php    
    if(isset($this->external))
    {
        $this->external->run();
    }?&gt;
&lt;/body&gt;




Theme © iAndrew 2016 - Forum software by © MyBB