Author |
Topic |
stwilson
Junior Member
USA
385 Posts |
Posted - 21 February 2004 : 01:59:08
|
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 |
|
|
viet4777
Starting Member
2 Posts |
Posted - 21 February 2004 : 03:12:39
|
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 |
|
|
Astronom
Starting Member
38 Posts |
Posted - 21 February 2004 : 15:24:02
|
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?< |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 01 March 2004 : 16:13:22
|
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 |
|
|
Faizan
Average Member
United Kingdom
592 Posts |
Posted - 01 March 2004 : 18:00:55
|
The both examples you gave PeeWee look same to me?!?!
< |
»Snitz Graphics
|
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 02 March 2004 : 08:42:06
|
Sorry, it was late.
< |
De Priofundus Calmo Ad Te Damine |
|
|
jeffmetcalf
Starting Member
4 Posts |
Posted - 12 March 2004 : 00:49:52
|
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 |
|
|
pokemon
Junior Member
151 Posts |
Posted - 12 March 2004 : 15:28:08
|
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 |
|
|
Radianation
Junior Member
USA
186 Posts |
Posted - 21 April 2004 : 03:11:33
|
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?< |
|
|
s80ts0465
Junior Member
Italy
290 Posts |
Posted - 21 April 2004 : 09:10:39
|
u have to download the myowngoogle mod and than it'll work.
Anybody know where to set the maximum title length of the category?? < |
|
|
DavidRhodes
Senior Member
United Kingdom
1222 Posts |
Posted - 21 April 2004 : 10:31:59
|
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 |
|
|
s80ts0465
Junior Member
Italy
290 Posts |
Posted - 21 April 2004 : 17:12:07
|
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< |
|
|
DavidRhodes
Senior Member
United Kingdom
1222 Posts |
Posted - 21 April 2004 : 18:42:03
|
Run this in (Alternative MOD Setup)
[ALTER]
CMS_CATEGORY
ALTER#CAT_TITLE#varchar(50)#NULL#
[END] < |
The UK MkIVs Forum |
|
|
s80ts0465
Junior Member
Italy
290 Posts |
Posted - 22 April 2004 : 02:50:59
|
what does it do??< |
|
|
glinted
New Member
54 Posts |
Posted - 22 April 2004 : 04:06:32
|
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 |
|
|
Topic |
|