Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Portal Mod 1.1
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 9

stwilson
Junior Member

USA
385 Posts

Posted - 21 February 2004 :  01:59:08  Show Profile  Visit stwilson's Homepage  Reply with Quote
I have it running but I'm not sure how to add items like the small calendar, active topics, active users, etc. I see that many of you have them on your portal pages. How do I add those items? Thanks for your help.<

Shannon
RidingArizona.com
Go to Top of Page

viet4777
Starting Member

2 Posts

Posted - 21 February 2004 :  03:12:39  Show Profile  Reply with Quote
Hi all!
I'm a new one here and I have a little about *.asp pages!
I get the MOD from http://www.snitzbitz.com/mods/details.asp?Version=All&mid=163 , as your Readme.txt file:
quote:
Instructions:
1. Upload all files to your forum directory.
2. Run the dbs file dbs_portal.asp.
3. Run setup.asp
4. You will then need to add some content in the admin section to appear as default,
then go to the configuration and select the content from the drop-down box and click submit

I run the file on my computer as http://localhsot/forum/dbs_portal.asp but I only see as below on my screen of the monitor:
David's Portal Mod [DROP] CMS_CATEGORY [END] [DROP] CMS_CONTENT [END] [CREATE] CMS_CATEGORY CAT_ID CAT_TITLE#varchar(20)#NULL# CAT_ISLEFT#smallint#NULL#0 CAT_ORDER#int#NULL# [END] [CREATE] CMS_CONTENT CONT_ID CAT_ID#int#NULL# CONT_TITLE#varchar(100)#NULL# CONT_SUMMARY#text#NULL# CONT_BODY#text#NULL# CONT_POSTEDBY#int#NULL# CONT_AUTHOR#int#NULL# CONT_DATE#varchar(14)#NULL# CONT_LAST_EDIT#varchar(14)#NULL# CONT_STATUS#smallint#NULL#0 [END] [INSERT] CONFIG_NEW (C_VARIABLE,C_VALUE)#('strCMSLeftNavWidth','150') (C_VARIABLE,C_VALUE)#('strCMSLeftNavDisplay','5') (C_VARIABLE,C_VALUE)#('strCMSLeftNavItems','1') (C_VARIABLE,C_VALUE)#('strCMSRightNavWidth','150') (C_VARIABLE,C_VALUE)#('strCMSRightNavDisplay','5') (C_VARIABLE,C_VALUE)#('strCMSRightNavItems','1') (C_VARIABLE,C_VALUE)#('strCMSEnableSearch','1') (C_VARIABLE,C_VALUE)#('strCMSDefaultCID','0') (C_VARIABLE,C_VALUE)#('strCMSPageTitle','Portal') (C_VARIABLE,C_VALUE)#('strCMSTitleDisplay','1') (C_VARIABLE,C_VALUE)#('strCMSEnableForumSearch','1') (C_VARIABLE,C_VALUE)#('strCMSEnableGoogleSearch','1') (C_VARIABLE,C_VALUE)#('strCMSEnableActiveTopics','1') (C_VARIABLE,C_VALUE)#('strCMSActiveTopicsItems','5') [END]
Oh, it's fool, but what i do to make table on my database??
Thanx

Oh, now I understand what I need from previuos replied topic.
Thanx!
<

Joulvn

Edited by - viet4777 on 21 February 2004 21:40:26
Go to Top of Page

Astronom
Starting Member

38 Posts

Posted - 21 February 2004 :  15:24:02  Show Profile  Reply with Quote
Hi! I have just installed David's Portal Mod v1.1 but when I'm in the CMS Configuration I have some problems. Where it says "Center Column Default Article:" there is nothing to choose. And under Search and Google Search I have turn it off, but when I press "Submit" it says "You Must Select On or Off for Google Searcht". It's the same if I turn it on.

What have I done wrong?<
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 01 March 2004 :  16:13:22  Show Profile  Visit PeeWee.Inc's Homepage  Reply with Quote
is there a way to make it say:
Author: PeeWee
Posted: 02/28/2004 05:58:19
Edited: 03/01/2004 12:52:05

Where it says:
Author: PeeWee
Email PeeWee
Posted: 02/28/2004 05:58:19
Edited: 03/01/2004 12:52:05

<

De Priofundus Calmo Ad Te Damine

Edited by - PeeWee.Inc on 02 March 2004 08:41:39
Go to Top of Page

Faizan
Average Member

United Kingdom
592 Posts

Posted - 01 March 2004 :  18:00:55  Show Profile  Visit Faizan's Homepage  Send Faizan an AOL message  Send Faizan an ICQ Message  Send Faizan a Yahoo! Message  Reply with Quote
The both examples you gave PeeWee look same to me?!?!


<


»Snitz Graphics
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 02 March 2004 :  08:42:06  Show Profile  Visit PeeWee.Inc's Homepage  Reply with Quote
Sorry, it was late.

<

De Priofundus Calmo Ad Te Damine
Go to Top of Page

jeffmetcalf
Starting Member

4 Posts

Posted - 12 March 2004 :  00:49:52  Show Profile  Reply with Quote
Will this not work with access db? Just wondering...the tables weren't created and the variables weren't inserted into config table.

This is the output from mod setup

Dropping Table..
DROP TABLE FORUM_CMS_CATEGORY

Table does not exist
--------------------------------------------------------------------------------

Dropping Table..
DROP TABLE FORUM_CMS_CONTENT

Table does not exist
--------------------------------------------------------------------------------

Creating table(s)...
CREATE TABLE FORUM_CMS_CATEGORY( CAT_ID int IDENTITY (1, 1) PRIMARY KEY NOT NULL , CAT_TITLE varchar(20) NULL , CAT_ISLEFT smallint NULL , CAT_ORDER int NULL )
Table already exists

--------------------------------------------------------------------------------

Creating table(s)...
CREATE TABLE FORUM_CMS_CONTENT( CONT_ID int IDENTITY (1, 1) PRIMARY KEY NOT NULL , CAT_ID int NULL , CONT_TITLE varchar(100) NULL , CONT_SUMMARY text NULL , CONT_BODY text NULL , CONT_POSTEDBY int NULL , CONT_AUTHOR int NULL , CONT_DATE varchar(14) NULL , CONT_LAST_EDIT varchar(14) NULL , CONT_STATUS smallint NULL )
Table already exists

--------------------------------------------------------------------------------

Adding new records..
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSLeftNavWidth','150')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSLeftNavDisplay','5')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSLeftNavItems','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSRightNavWidth','150')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSRightNavDisplay','5')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSRightNavItems','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSEnableSearch','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSDefaultCID','0')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSPageTitle','Portal')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSTitleDisplay','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSEnableForumSearch','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSEnableGoogleSearch','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSEnableActiveTopics','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strCMSActiveTopicsItems','5')

Value(s) updated succesfully<

Edited by - jeffmetcalf on 12 March 2004 01:01:42
Go to Top of Page

pokemon
Junior Member

151 Posts

Posted - 12 March 2004 :  15:28:08  Show Profile  Reply with Quote
David,

How do i display more than one content in the center? Is there any way to display more than one content in the center?...I'm looking for some help, but no answer. Can you help please.. Thanks<

Edited by - pokemon on 12 March 2004 18:00:32
Go to Top of Page

Radianation
Junior Member

USA
186 Posts

Posted - 21 April 2004 :  03:11:33  Show Profile  Visit Radianation's Homepage  Send Radianation an ICQ Message  Reply with Quote
quote:
Originally posted by Astronom

Hi! I have just installed David's Portal Mod v1.1 but when I'm in the CMS Configuration I have some problems. Where it says "Center Column Default Article:" there is nothing to choose. And under Search and Google Search I have turn it off, but when I press "Submit" it says "You Must Select On or Off for Google Searcht". It's the same if I turn it on.

What have I done wrong?



I have the same problem, any solution?<
Go to Top of Page

s80ts0465
Junior Member

Italy
290 Posts

Posted - 21 April 2004 :  09:10:39  Show Profile  Send s80ts0465 an ICQ Message  Reply with Quote
u have to download the myowngoogle mod and than it'll work.

Anybody know where to set the maximum title length of the category??
<
Go to Top of Page

DavidRhodes
Senior Member

United Kingdom
1222 Posts

Posted - 21 April 2004 :  10:31:59  Show Profile  Reply with Quote
quote:
Originally posted by s80ts0465

Anybody know where to set the maximum title length of the category??



Do you mean in the form itself? You can add maxlength="number" in the input tag<

The UK MkIVs Forum
Go to Top of Page

s80ts0465
Junior Member

Italy
290 Posts

Posted - 21 April 2004 :  17:12:07  Show Profile  Send s80ts0465 an ICQ Message  Reply with Quote
i mean that i create a new category with the tile "comunication to the operator", but i can't cause the program warning me to insert less dates. error in admin_cms_category.asp, line 58<
Go to Top of Page

DavidRhodes
Senior Member

United Kingdom
1222 Posts

Posted - 21 April 2004 :  18:42:03  Show Profile  Reply with Quote
Run this in (Alternative MOD Setup)


[ALTER]
CMS_CATEGORY
ALTER#CAT_TITLE#varchar(50)#NULL#
[END]
<

The UK MkIVs Forum
Go to Top of Page

s80ts0465
Junior Member

Italy
290 Posts

Posted - 22 April 2004 :  02:50:59  Show Profile  Send s80ts0465 an ICQ Message  Reply with Quote
what does it do??<
Go to Top of Page

glinted
New Member

54 Posts

Posted - 22 April 2004 :  04:06:32  Show Profile  Visit glinted's Homepage  Reply with Quote
hello, this is a great mod but I would like to have the forums showing on the portal page in place of the content that is in the main section. I would like to leave everything else though like the left & right areas. I have tried to copy some of the default.asp page code & paste it into the portal.asp page but it's a bit over my head and I just get errors & conflicts. I would appreciate it if someone with better coding skills could do this as it would make a nice alternative mod.

look forward to hearing back from someone.

glinted<

Coupon Savings
Go to Top of Page
Page: of 9 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.13 seconds. Powered By: Snitz Forums 2000 Version 3.4.07