Author |
Topic |
lsakizada
New Member
USA
90 Posts |
Posted - 01 September 2003 : 23:20:30
|
Hi David, I gues this is working fine. Its remove the duplicate items as designed. I am probably mess it up before tesing it. Thanks for willing to help. |
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 09 September 2003 : 17:03:26
|
David (or anyonw with this MOD), this MOD looks great, but does it allow each individual user to choose which "components" they want and where ? If not, is there a Snitz MOD to do that ? |
|
|
Mikael
Starting Member
36 Posts |
Posted - 13 September 2003 : 10:48:16
|
Thanks David for a great MOD.
I'm trying to get the calendar to show on the right side but I cannot get it visible there. I want the calendar (month) and the box of upcoming events beneath that.
I managed to get the calender to show when I include cal_default.asp in default.asp
Any help appreciated. There was a great demo of your portal on one of these pages with a fish on the front page and it had the calendar showing in a small window on the portal side. Month and upcoming events in small windows. |
Edited by - Mikael on 13 September 2003 11:13:35 |
|
|
Mikael
Starting Member
36 Posts |
Posted - 13 September 2003 : 17:49:22
|
I hope you can include the events calendar in this great mod.
I thought it would be easy but Im not good enough to get it right...
|
Edited by - Mikael on 14 September 2003 18:54:25 |
|
|
x_Soul_x
Starting Member
Australia
9 Posts |
Posted - 22 September 2003 : 05:38:12
|
Hi everyone
I have installed daves mod and the data base went in ok and then i ran the set up and changed the home page to "portal.asp" but when i go to CMS Configuration and make my selection, i cant choose anything in "homepage content" cause there is nothin there and it wont accept till i set a value in that feild. if i go to the portal.asp page via the "home" link i get the following error meassage...
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/SoulsWebPage/forum/soulforum/portal.asp, line 203
would anyone be able to help ?
Soul |
wot do u mean we r out of coffee [:|] |
|
|
DavidRhodes
Senior Member
United Kingdom
1222 Posts |
Posted - 22 September 2003 : 05:40:31
|
you need to add an article first then select it as homepage content |
The UK MkIVs Forum |
|
|
x_Soul_x
Starting Member
Australia
9 Posts |
Posted - 22 September 2003 : 10:40:24
|
thanx dave
i got it now lol
im new to all this asp stuff so i appologise if i ask stupid questions.
i appreciate the fast response to
Soul
|
wot do u mean we r out of coffee [:|] |
Edited by - x_Soul_x on 22 September 2003 10:42:19 |
|
|
Pierse
Starting Member
1 Posts |
Posted - 23 September 2003 : 18:52:47
|
Get the same error... however I am unsure as to how to create the article. Because I select the create article... and it doesnot give me an option to create it.
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/portal.asp, line 203
Any help would be greatly appreciated THANKS! I figured it out! LOL |
Edited by - Pierse on 23 September 2003 18:58:04 |
|
|
titanium
Starting Member
6 Posts |
Posted - 24 September 2003 : 16:47:22
|
quote: Originally posted by stylishvn
Active Server Pages error 'ASP 0116'
Missing close of script delimiter
/setup.asp, line 64
The Script block lacks the close of script tag (%>).
I have the exact same error. Any fixes? |
|
|
DavidRhodes
Senior Member
United Kingdom
1222 Posts |
Posted - 25 September 2003 : 04:51:14
|
Exact same error as what? Have you edited setup.asp |
The UK MkIVs Forum |
|
|
Chris W
Starting Member
4 Posts |
Posted - 05 October 2003 : 16:47:48
|
i get this
quote:
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/forum1/portal.asp, line 203
heres the cms configuration. it not saving any info for me,
|
|
|
vinkx
Starting Member
7 Posts |
Posted - 06 October 2003 : 18:54:15
|
Hi David, I'm trying to add calendar mod and others on your portal but unfortunately it's not so easy. If you dont think to release other versions of your nice work may be you could help us with some explanation about how to add mods..?? Any help will be appreciated.
|
|
|
pokemon
Junior Member
151 Posts |
Posted - 16 October 2003 : 10:08:37
|
Hi David,
thanks for the wonderful mod. When i try to add a member spotlight to my right portal, and i'm ending up with an error.
Error Type: Microsoft JET Database Engine (0x80040E10) No value given for one or more required parameters. skin/includes/member_spotlight.asp, line 34 (red)
here is the code:
<%
'### Member Spotlight Modified To Show Avatars Instead ###
'### By Al Iguana www.peppermintiguana.co.uk/cymrugothic/ ###
Response.Write "<table width=""100%"" border=""0"" bordercolor=""" & strTableBorderColor & """ cellspacing=""1"" cellpadding=""0"" bgcolor=""" & strTableBorderColor & """>" & vbNewLine & _
"<tr>" & vbNewLine & _
"<td bgcolor=""" & StrHeadCellColor & """>" & vbNewLine & _
"<font size=""4"" color=""" & StrHeadFontColor & """>Â Member Spotlight</font>" & vbNewLine & _
"</td>" & vbNewLine & _
"</tr>" & vbNewLine & _
"<tr>" & vbNewLine & _
"<td align=""left"">" & vbNewLine & _
"<table width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0"" bgcolor=""" & strTableBorderColor & """>" & vbNewLine & _
"<tr>" & vbNewLine & _
"<td>" & vbNewLine
'START MEMBER IN SPOTLITE SCRIPT
strSql = strSql & " FROM " & strActivePrefix & "TOPICS T, " & strTablePrefix & "FORUM F, " & _
strTablePrefix & "CATEGORY C, " & strMemberTablePrefix & "MEMBERS M " & _
" WHERE T.TOPIC_ID = " & Topic_ID & _
" AND F.FORUM_ID = T.FORUM_ID " & _
" AND C.CAT_ID = T.CAT_ID " & _
" AND M.MEMBER_ID = T.T_AUTHOR "
'function MemInSpot
set rsMemInSpot = Server.CreateObject("ADODB.Recordset")
strSql = "SELECT " & strTablePrefix & "MEMBERS.MEMBER_ID, " & strTablePrefix & "MEMBERS.M_NAME, "
strSql = strSql & strTablePrefix & "MEMBERS.M_FIRSTNAME, " & strTablePrefix & "MEMBERS.M_LASTNAME, " & strTablePrefix & "MEMBERS.M_AGE"
strSql = strSql & ", " & strTablePrefix & "MEMBERS.M_AVATAR"
strSql = strSql & ", " & strTablePrefix & "MEMBERS.M_AVATAR_WIDTH"
strSql = strSql & ", " & strTablePrefix & "MEMBERS.M_AVATAR_HEIGHT"
strSql = strSql & " FROM " & strTablePrefix & "MEMBERS"
strSql = strSql & " WHERE FORUM_MEMBERS.M_AVATAR <> ''"
rsMemInSpot.Open strSql, my_Conn,3,,adCmdText
Dim intRnd
Randomize Timer
intRnd = (Int(RND * rsMemInSpot.RecordCount))
rsMemInSpot.Move intRnd
strMemInSpot = rsMemInSpot("M_AVATAR")
Response.Write " <tr><td align=center bgcolor=""" & strForumCellColor & """><br>" & vbCrLf & _
" <a href=""" & strForumURL & "pop_profile.asp?mode=display&id="& rsMemInSpot("member_id") & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>" & rsMemInSpot("M_NAME") & "</b></font></A><br>" & vbCrLf
if Trim(rsMemInSpot("M_AVATAR")) <> "" and lcase(rsMemInSpot("M_AVATAR")) <> "http://" then
if lcase(left(strMemInSpot,7)) = "http://" then
Response.write " <img src=" & ChkString(rsMemInSpot("M_AVATAR"), "display") & vbCrLf
elseif lcase(left(strMemInSpot,7)) <> "http://" then
Response.write " <img src=" & strMyAvatar & "" & ChkString(rsMemInSpot("M_AVATAR"), "display")& vbCrLf
end if
Response.write " alt=" & ChkString(rsMemInSpot("M_NAME"),"display")& vbCrLf & _
" width=" & rsMemInSpot("M_AVATAR_WIDTH") & " height=" & rsMemInSpot("M_AVATAR_HEIGHT") & " border=""0"" hspace=""0"" vspace=""4""></a><br>" & vbCrLf
else
Response.Write getCurrentIcon(strIconPhotoNone,"No Avatar Available","hspace=""0"" vspace=""4""") & "<br>" & vbCrLf _
end if
Response.Write " <table><td><a href=""" & strForumURL & "pop_profile.asp?mode=display&id="& rsMemInSpot("member_id") & """><img SRC=""" & strImageURL & "icon_member.gif"" border=""0""></A></td><td nowrap><a href=""" & strForumURL & "pop_profile.asp?mode=display&id="& rsMemInSpot("member_id") & """><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>" & rsMemInSpot("M_NAME") & "'s Profile</font></A></td></table><br>" & vbCrLf
Response.Write " </td></tr>"
rsMemInSpot.Close
Set rsMemInSpot = Nothing
'end function
'END MEMBER IN SPOTLITE SCRIPT
'call MemInSpot
Response.Write "</td>" & vbNewLine & _
"</tr>" & vbNewLine & _
"</table>" & vbNewLine & _
"</td>" & vbNewLine & _
"</tr>" & vbNewLine & _
"</table>" & vbNewLine
%>
any help would be appreciate it. Thanks
|
Edited by - pokemon on 16 October 2003 10:11:13 |
|
|
EvilRick
Starting Member
37 Posts |
Posted - 20 October 2003 : 22:40:04
|
How do I get the "portal.asp" to work outside the forum?
I love the layout of your UK MKIVS site and would like to have the similar layout, but as my homepage.
Any help/guidance would be greatly appreciated.
TIA |
|
|
kep
Starting Member
2 Posts |
Posted - 13 November 2003 : 15:59:50
|
Please help.
When i open my sites homepage after installing your mod i get: Microsoft JET Database Engine error '80040e14'
Syntax error (missing operator) in query expression 'FORUM_CMS_CONTENT.CONT_ID ='. /portal.asp, line 201 Ofcourse i'm not able tot open the portal config under admin section.
|
|
|
Topic |
|