ipb

PHP core function printing debug statements

I'm integrating a framework (Kohana 2.3.4), into a web-app (IPB 2.3.4/2.3.6) via a third party bridge library (IPBWI 2.07), and I began seeing the string NOT FOUND at the top of the web-page output. How can I turn that message off? I narrowed it down to a call to class_exists(...) in IPB. The call is working correctly, except for the p...

Installing IPB on localhost

I have mamp installed on my mac and I successfully installed IPB however when i go to visit my board it says. "could not determine your IP address" How can I disable this check or spoof an IP? ...

Speed up forum conversion

I'm converting a forum from myBB to IPBoard (the conversion is done through a PHP script), however I have over 4 million posts that need to be converted, and it will take about 10 hours at the current rate. I basically have unlimited RAM and CPU, what I want to know is how can I speed this process up? Is there a way I can allocate a huge...

[IPB3] ssi.php return strange page

Hello I include in some pages this code: $_GET['a'] = 'stats2'; include "/var/www/forum/ssi.php"; on main page (www.musite.com) its work fine. But on other pages like www.mysite.com/bigpage/, www.mysite.com/about/ etc. ssi.php return part of forum page (a lot of css an js). How can i fix it? ...

Update database column in ipb and add 1

Hi, I would like to update a counter column in invision powerboard to +1 for each veiws. I am using the following but it does not work. $this->DB->update( 'counter', array( 'count'=>'count+1'),... How do I write the query to update the count column and add 1. Thanks for any help. ...