Page 1 of 1

New install/errors after install

PostPosted: Thu Feb 11, 2010 3:39 pm
Author: sandman229
I have downloaded the lastest IM3 files from here and installed it on a localhost test windows vista system.

Xampp 1.7.3
PHP 5.3.1
Now there might be a setting in php or Apache I forgot to set.

All new installs.

Installed just great. No problem. Everything seems to be running great.

However, I get this error above the header and my fonts got super big.

[phpBB Debug] PHP Notice: in file /blocks/block_search.php on line 50: Undefined variable: forum_id
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4389: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4391: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4392: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4393: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)

Re: New install/errors after install

PostPosted: Thu Feb 11, 2010 4:03 pm
Author: Helter
ill have to recheck the dl because forum_id was removed from that block

OPEN forum root/blocks/block_search.php

FIND
Code: Select all
('f_search', $forum_id)

REPLACE WITH
Code: Select all
('f_search')

Re: New install/errors after install

PostPosted: Thu Feb 11, 2010 4:06 pm
Author: Helter
my mistake. Somehow I added the old block to the new dl. It is fixed now.

Re: New install/errors after install

PostPosted: Thu Feb 11, 2010 4:44 pm
Author: sandman229
ok, that worked. Thanks...

Re: New install/errors after install

PostPosted: Thu Feb 11, 2010 4:49 pm
Author: sandman229
ok, New error.

Got this when I clicked on KB off the main Menu.

[phpBB Debug] PHP Notice: in file /knowledge/index.php on line 63: Undefined index: num_kb_article
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4389: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4391: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4392: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4393: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)

Re: New install/errors after install

PostPosted: Thu Feb 11, 2010 9:45 pm
Author: Helter
you need to set up the KB mod in acp/IntegraMOD/Knowledge Base/Configuration. Create a catagory in acp/IntegraMOD/Knowledge Base/Categories and creat artical types in acp/IntegraMOD/Knowledge Base/Article types.
That will get rid of your current problem but I did find a bug that appears on submitting a new article. Ill post when I find the cause unless Mike beats me to it. I asked him to have a look because he is the master bug fixer. He fixes bugs almost as fast as I create them...lol

Re: New install/errors after install

PostPosted: Thu Feb 11, 2010 11:09 pm
Author: sandman229
ok, did what you said and it did not go away. Cleared all cashe and deleted all browser temp files.

Refreahed everything and still have:

[phpBB Debug] PHP Notice: in file /knowledge/index.php on line 63: Undefined index: num_kb_article

[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4389: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4391: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4392: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4393: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3515)

Re: New install/errors after install

PostPosted: Thu Feb 11, 2010 11:35 pm
Author: Michaelo
Try this... I have not test it but it should be the culprit... (yep that's it)
Open: knowledge/index.php
Find:
Code: Select all
    'COUNT_ARTICLE'           => $config['num_kb_article'],
Replace with]     'COUNT_ARTICLE'           => $kb_config['num_kb_article'],[/code]
Mike

Re: New install/errors after install

PostPosted: Fri Feb 12, 2010 11:27 am
Author: sandman229
"Michaelo" wrote:Try this... I have not test it but it should be the culprit... (yep that's it)
Open: knowledge/index.php
Find:
Code: Select all
    'COUNT_ARTICLE'           => $config['num_kb_article'],
Replace with]     'COUNT_ARTICLE'           => $kb_config['num_kb_article'],[/code]
Mike



ok, that fixed it.. Thanks.. So far it everything seems to be working. Haven't had time to check out everything but so far it seems to work..