Skip to content
World Wide Web Server edited this page Jul 4, 2012 · 11 revisions

Category:Profiler

Updating my contributions on the wiki has become a nightmare. Please check my svn at google for the latest revisions: http://code.google.com/p/tamer/ [url=http://code.google.com/p/tamer/]CI_TaMeR SVN[/url]

If you are using div and css to construct your html pages then the profiler will hide behind your divs. But if you are reading this then you know that probably already.

Here is the easiest solution I could come up with.

[code] #Controller: function __construct() { parent::Controller(); $this->load->library('profiler');

$this->load->view('blank'); }

#anywhere you like in your view file: // view/blank.php if(isset($this->profiler)){print($this->profiler->run());} [/code] Contact me: http://codeigniter.com/forums/member/41074/ Forum: http://codeigniter.com/forums/viewthread/50997/

Clone this wiki locally