Author |
Topic  |
slemieux
Junior Member
 
USA
234 Posts |
Posted - 20 December 2000 : 02:50:34
|
Since I get quite a bit of requests for my code I figured I would make it available through my upgrade. It's zipped here: http://209.35.175.12/snitz/zippedsnitz.zip
This includes: Private Messages The New Who's Online Printer Friendly Version Enhanced Send to Friend Topic Ratings Customizable Email Messages Message Icons Smile Mod (Updated)
The next two are in there but since they are application variables, changes may not show up right away. Background, New Topic, Reply images through control Panel Header, Footer, News, extra JavaScript added through Control Panel
Doesn't include Polls That's the next step!
Also includes all the bug fixes posted to date. Be sure to read the README.txt to see what setup files need to be run and what fields need added to the database. Includes a working blank Access 2000 database.
Let me know if I am missing anything!! Hope this is useful for someone 
Scott LeMieux |
|
gor
Retired Admin
    
Netherlands
5511 Posts |
Posted - 20 December 2000 : 03:32:10
|
Scott, looking good <img src=icon_smile_approve.gif border=0 align=middle>
p.s. I was the other admin user that logged on <img src=icon_smile_wink.gif border=0 align=middle>
<b>Pierre Gorissen</b> <img src="http://home.hetnet.nl/~pgoris01/frsty3r.gif" border=0> |
 |
|
JohnO
Starting Member
United Kingdom
21 Posts |
Posted - 20 December 2000 : 05:00:23
|
Hi Scott,
I was looking forward (not) to spending the holidays implementing all the recent mods. This will save me a lot of effort and is very much appreciated.
Can you confirm which version the updated files are based on?
Many thanks, John
|
 |
|
RichardKinser
Snitz Forums Admin
    
USA
16655 Posts |
Posted - 20 December 2000 : 05:13:55
|
This is based on the very latest v3.1 SR3 Final.
Hey John, implementing mods is fun... <img src=icon_smile_clown.gif border=0 align=middle> <img src=icon_smile_big.gif border=0 align=middle> |
 |
|
aston
New Member

Andorra
51 Posts |
Posted - 20 December 2000 : 05:55:36
|
Thanx,Scott. Good work!
<img src="http://fztxl.363.net/1.gif" border=0> |
 |
|
JohnO
Starting Member
United Kingdom
21 Posts |
Posted - 20 December 2000 : 06:00:29
|
Thanks Richard,
I guess it depends on your definition of fun. I can certainly think of more interesting ways to occupy myself over the holidays. <img src=icon_smile_wink.gif border=0 align=middle>
Although it does beg the question... why <b>did</b> I ask Santa for a good Javascript book? <img src=icon_smile.gif border=0 align=middle>
John
|
 |
|
KXS
New Member

Canada
66 Posts |
Posted - 20 December 2000 : 06:28:33
|
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote> Since I get quite a bit of requests for my code I figured I would make it available through my upgrade. It's zipped here: http://209.35.175.12/snitz/zippedsnitz.zip
This includes: Private Messages The New Who's Online Printer Friendly Version Enhanced Send to Friend Topic Ratings Customizable Email Messages Message Icons Smile Mod (Updated) <hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
BRo, will these new mods work if I have the snitz forum setup using MS SQL Server?
------------------ "keeping it real" |
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
|
evehawk
New Member

Australia
65 Posts |
Posted - 20 December 2000 : 08:26:51
|
try to upgrade from sr2 database - doesnot work <img src=icon_smile_sad.gif border=0 align=middle>
Got this msg: Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters.
/evehawk/inc_top.asp, line 178
anyone have any idea?
|
 |
|
RichardKinser
Snitz Forums Admin
    
USA
16655 Posts |
Posted - 20 December 2000 : 08:49:10
|
evehawk,
did you look at the README.TXT file? there are some database fields that need to be added and some database setup programs that need to be run before it will work properly on an existing database. |
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
|
KXS
New Member

Canada
66 Posts |
Posted - 20 December 2000 : 09:02:52
|
Da_Stimulator,
Thanks for the prompt reply, I will give it a go, this forum is just getting better and better... I luvvv it
------------------ "keeping it real" |
 |
|
slemieux
Junior Member
 
USA
234 Posts |
Posted - 20 December 2000 : 09:18:13
|
Everything should work with MS SQL!
lol Da_Stimulator, Sorry about that <img src=icon_smile_wink.gif border=0 align=middle>
One thing I didn't think of and might cause some problems, the T_Rate and T_RateCT fields in FORUM_TOPIC have to start out with 0. If they are blank it will give you an error. I'll see if I can find my file which fills those up. This might be the problem you are having eyehawk!
Try this. Save it as something and run it in your forum directory <pre id=code><font face=courier size=2 id=code><!--#INCLUDE FILE="config.asp" -->
<%
Server.ScriptTimeout = 600000
set my_Conn = Server.CreateObject("ADODB.Connection") my_Conn.Open strConnString
strSql = "UPDATE " & strTablePrefix & "TOPICS " strSql = strSql & " SET T_RATE = 0 "
my_Conn.Execute (strSql)
my_Conn.Close set my_Conn = nothing
%></font id=code></pre id=code>
Then change T_RATE to T_RATECT and run it again.
Scott LeMieux |
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
|
evehawk
New Member

Australia
65 Posts |
Posted - 20 December 2000 : 10:02:02
|
slemieux, it does not help. in the readme you mention : C_BGGRAPHIC Text/255 C_NEWTOPICGRAPHIC Text/255 ................ T_RATECT Number-Long Integer/0
These already add ? you just mention it as a reference or i have to add them ? if I have to add them can you post me the add code here thanks.
|
 |
|
slemieux
Junior Member
 
USA
234 Posts |
Posted - 20 December 2000 : 12:01:45
|
Da_Stimulator, about taking away your project <img src=icon_smile_wink.gif border=0 align=middle>
Yeah evehawk, those fields need to be added. Guess that would be handy. I have to write the script so it will take a few.
Scott LeMieux |
 |
|
Topic  |
|