Forum and Registration

Support for IntegraMOD 141

Moderator: Integra Moderator

Forum and Registration

PostAuthor: rtanner83080 » Mon Jul 09, 2007 4:33 pm

Hey all,

I just installed Integramod 141 and it is awesome but I seem to have hit a few bumps in the road and m looking for a bit of help. I will try to explain to the best of my ability.

The first one deals with the forum itself. In the ACP, I add all the categories and forums, ensure all the permissions are correct and then check to make sure I have created what I wanted. Then when I go to preview the forum, nothing is there. I have logged out and tried my test account but still with no luck. It just comes up with a blank black screen where the forum should be. I double checked the permissions but being that I am the admin, I should be able to view the forum no matter what.

Here's the link to the forum for anyone that is interested: [url=http]Forum[/url]

Now for the second problem, during the registration process, the Validation Image doesn't show. Instead, all it shows is a red requirement asterisk with no image at all. It doesn't even show the standard red X. Any ideas?
Last edited by rtanner83080 on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

rtanner83080
Newbie
Newbie
 
Posts: 19
Likes: 0 post
Liked in: 0 post
Joined: Mon Jul 09, 2007 2:20 pm
Cash on hand: 0.00

Re: Forum and Registration

PostAuthor: Helter » Mon Jul 09, 2007 6:29 pm

it sounds like your ftp program may have dropped some files. Your safe to re-upload all files except for the following:
config.php - this stores your database info
includes/def_*.php - these store template, forum, and qbar cache info
includes/phpbb_security - this must match your phpbb_config info
Last edited by Helter on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie
User avatar
Helter
Administrator
Administrator
 
Posts: 4554
Likes: 40 posts
Liked in: 116 posts
Images: 0
Joined: Sat Mar 11, 2006 4:46 pm
Cash on hand: 1,959.15
Location: Seattle Wa
IntegraMOD version: phpBB2x

Re: Forum and Registration

PostAuthor: rtanner83080 » Tue Jul 10, 2007 5:33 am

Thanks Helter for the quick reply.

I was trying to avoid going through that process. I forgot to mention one other detail that might help out.

I upgraded to this platform last week. I started putting together the forum and everything worked fine. I checked it out on my test account and I could see the forum. I made no changes that I can think of. A couple days later I went back to add and correct some stuff and when I checked it with the test account, nothing was there.

Is there another solution or do I have to go it the long way?
Last edited by rtanner83080 on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

rtanner83080
Newbie
Newbie
 
Posts: 19
Likes: 0 post
Liked in: 0 post
Joined: Mon Jul 09, 2007 2:20 pm
Cash on hand: 0.00

Re: Forum and Registration

PostAuthor: Helter » Tue Jul 10, 2007 12:46 pm

view includes/def_tree.php and see what is in it

if it looks like this

Code: Select all
 <php> idx,//   $tree['type'][idx]           => type of the row, can be 'c' for categories or 'f' for forums,//   $tree['id'][idx]             => value of the row id : cat_id for cats, forum_id for forums,//   $tree['data'][idx]           => db table row,//   $tree['main'][idx]           => parent id,//   $tree['sub'][id]             => array of sub-level ids,//--------------------------------------------------------------------------------------------------  $tree = array(             'keys'   => array('c1' => 0, 'f1' => 1),             'type'   => array('c', 'f'),             'id'     => array('1', '1'),             'data'   => array(                                 array(                                         'cat_id'     => '1',                                         'cat_title'  => 'Test category 1',                                         'cat_order'  => '9000010',                                         'cat_main_type'  => 'c',                                         'cat_main'   => '0',                                         'cat_desc'   => '',                                         'icon'   => '',                                         'main'   => 'Root',                                     ),                                 array(                                         'forum_id'   => '1',                                         'cat_id'     => '1',                                         'forum_name'     => 'Test Forum 1',                                         'forum_desc'     => 'This is just a test forum.',                                         'forum_status'   => '0',                                         'forum_order'    => '10',                                         'forum_posts'    => '2',                                         'forum_topics'   => '1',                                         'forum_last_post_id'     => '2',                                         'prune_next'     => '',                                         'prune_enable'   => '0',                                         'auth_view'  => '0',                                         'auth_read'  => '0',                                         'auth_post'  => '0',                                         'auth_reply'     => '0',                                         'auth_edit'  => '1',                                         'auth_delete'    => '1',                                         'auth_sticky'    => '3',                                         'auth_announce'  => '3',                                         'auth_global_announce'   => '0',                                         'auth_vote'  => '1',                                         'auth_pollcreate'    => '1',                                         'auth_attachments'   => '3',                                         'auth_download'  => '0',                                         'auth_news'  => '2',                                         'forum_link'     => '',                                         'forum_link_internal'    => '0',                                         'forum_link_hit_count'   => '0',                                         'forum_link_hit'     => '0',                                         'icon'   => '',                                         'main_type'  => '',                                         'auth_cal'   => '0',                                         'auth_ban'   => '3',                                         'auth_greencard'     => '5',                                         'auth_bluecard'  => '1',                                         'auth_delayedpost'   => '3',                                         'main'   => 'c1',                                     ),                             ),             'main'   => array('Root', 'c1'),             'sub'    => array(                                 'Root'   => array('c1'),                                 'c1'     => array('f1'),                             ),             'mods'   => array(                             ),);?>  


then be sure it is chmod'd to 666 and go to acp/Forum Admin/Management +/ and click the "resync" button at the bottom

If it looks like you may be missing code, reupload a fresh copy of the file, check the chmod and do the resync again
Last edited by Helter on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie
User avatar
Helter
Administrator
Administrator
 
Posts: 4554
Likes: 40 posts
Liked in: 116 posts
Images: 0
Joined: Sat Mar 11, 2006 4:46 pm
Cash on hand: 1,959.15
Location: Seattle Wa
IntegraMOD version: phpBB2x

Re: Forum and Registration

PostAuthor: rtanner83080 » Tue Jul 10, 2007 4:41 pm

"HelterSkelter";p="27160" wrote:view includes/def_tree.php and see what is in it

if it looks like this

Code: Select all
 <php> idx,//   $tree['type'][idx]           => type of the row, can be 'c' for categories or 'f' for forums,//   $tree['id'][idx]             => value of the row id : cat_id for cats, forum_id for forums,//   $tree['data'][idx]           => db table row,//   $tree['main'][idx]           => parent id,//   $tree['sub'][id]             => array of sub-level ids,//--------------------------------------------------------------------------------------------------  $tree = array(             'keys'   => array('c1' => 0, 'f1' => 1),             'type'   => array('c', 'f'),             'id'     => array('1', '1'),             'data'   => array(                                 array(                                         'cat_id'     => '1',                                         'cat_title'  => 'Test category 1',                                         'cat_order'  => '9000010',                                         'cat_main_type'  => 'c',                                         'cat_main'   => '0',                                         'cat_desc'   => '',                                         'icon'   => '',                                         'main'   => 'Root',                                     ),                                 array(                                         'forum_id'   => '1',                                         'cat_id'     => '1',                                         'forum_name'     => 'Test Forum 1',                                         'forum_desc'     => 'This is just a test forum.',                                         'forum_status'   => '0',                                         'forum_order'    => '10',                                         'forum_posts'    => '2',                                         'forum_topics'   => '1',                                         'forum_last_post_id'     => '2',                                         'prune_next'     => '',                                         'prune_enable'   => '0',                                         'auth_view'  => '0',                                         'auth_read'  => '0',                                         'auth_post'  => '0',                                         'auth_reply'     => '0',                                         'auth_edit'  => '1',                                         'auth_delete'    => '1',                                         'auth_sticky'    => '3',                                         'auth_announce'  => '3',                                         'auth_global_announce'   => '0',                                         'auth_vote'  => '1',                                         'auth_pollcreate'    => '1',                                         'auth_attachments'   => '3',                                         'auth_download'  => '0',                                         'auth_news'  => '2',                                         'forum_link'     => '',                                         'forum_link_internal'    => '0',                                         'forum_link_hit_count'   => '0',                                         'forum_link_hit'     => '0',                                         'icon'   => '',                                         'main_type'  => '',                                         'auth_cal'   => '0',                                         'auth_ban'   => '3',                                         'auth_greencard'     => '5',                                         'auth_bluecard'  => '1',                                         'auth_delayedpost'   => '3',                                         'main'   => 'c1',                                     ),                             ),             'main'   => array('Root', 'c1'),             'sub'    => array(                                 'Root'   => array('c1'),                                 'c1'     => array('f1'),                             ),             'mods'   => array(                             ),);?>  


then be sure it is chmod'd to 666 and go to acp/Forum Admin/Management +/ and click the "resync" button at the bottom

If it looks like you may be missing code, reupload a fresh copy of the file, check the chmod and do the resync again


Nope this didn't work. I can't figure out what the hell is wrong. Do I really need to reupload everything. I am worried I will lose all my user information and arcade scores and such.
Last edited by rtanner83080 on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

rtanner83080
Newbie
Newbie
 
Posts: 19
Likes: 0 post
Liked in: 0 post
Joined: Mon Jul 09, 2007 2:20 pm
Cash on hand: 0.00


Return to IntegraMOD 141

Who is online

Registered users: App360MonitorBot, Bing [Bot], Google [Bot], Majestic-12 [Bot]