Welcome Guest, Not a member yet? Register   Sign In
Fatal error: ob_start()
#1

[eluser]IamPrototype[/eluser]
I got my language problem fixed, now I have another problem. Please read my post I read at the end of this thread.
#2

[eluser]TheFuzzy0ne[/eluser]
You have a space before the opening PHP tag, or after the closing PHP tag in D:\Programmer\xampp\htdocs\ci\application\language\english\errors_lang.php.
#3

[eluser]IamPrototype[/eluser]
I do not, sorry - did not help me. Sad
#4

[eluser]IamPrototype[/eluser]
Now I just get this

Code:
Fatal error: ob_start() [<a href='ref.outcontrol'>ref.outcontrol</a>]: Cannot use output buffering in output buffering display handlers in D:\Programmer\xampp\htdocs\ci\system\libraries\Exceptions.php on line 160
#5

[eluser]pistolPete[/eluser]
How are you saving your files?
Try UTF-8 without BOM.
#6

[eluser]IamPrototype[/eluser]
I doubt it will work but sure, I'll give it a try! Smile

Edit: What files are we talking about?

Edit #2: Nevermind! I already save my files that way. The error online shows up when I add my language file name to my auto-load file!

Edit #3: Maybe it's my server (currently using XAMP) for my local projects.
#7

[eluser]IamPrototype[/eluser]
I GOT MY LANGUAGE WORKING, BUT....

...I'm stilling getting that stupid error I wrote here: http://ellislab.com/forums/viewreply/549231/

This is my code:

Code:
&lt;?php

    class Pages extends Controller {
        
        function __construct()
        {
            parent::Controller();
            
            $this->table                 = "pages";
            $this->front_page            = "home";
            $this->template['module']     = "pages";
            
            $this->load->model('Pages_Model', 'page', TRUE);
            $this->load->helper('auth');
            
            $this->template['navigation'] = $this->page->nav();
        }
        
        function _run($view)
        {
            $this->template['view'] = $view;
            
            $this->load->vars($this->template);
            $this->load->view('loader');
        }
        
        function index()
        {
            if ( ! $path = $this->uri->segment(1))
            {
                $path = $this->front_page;
            }
            
            if ($this->template['page'] = $this->page->get($path))
            {
                $this->_run('single_page');
            }
            else
            {
                echo "404!";
            }
        }
        
    }

?&gt;
#8

[eluser]vijaykm[/eluser]
[quote author="IamPrototype" date="1237323792"]Now I just get this

Code:
Fatal error: ob_start() [<a href='ref.outcontrol'>ref.outcontrol</a>]: Cannot use output buffering in output buffering display handlers in D:\Programmer\xampp\htdocs\ci\system\libraries\Exceptions.php on line 160
[/quote]



i got same issue in my site , then this page { http://ellislab.com/forums/viewthread/105257/ } was helpful for me, now its solved.




Theme © iAndrew 2016 - Forum software by © MyBB