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

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Classic ASP versions(v3.4.XX)
 good Suggestion !
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 3

HuwR
Forum Admin

United Kingdom
20600 Posts

Posted - 06 February 2010 :  06:51:20  Show Profile  Visit HuwR's Homepage
YOU ARE USING A PIRATED SNITZ FORUM SO PUT THE COPYRIGHT IN OR DON'T COME BACK
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  06:53:13  Show Profile  Visit sbai's Homepage
quote:
Originally posted by HuwR

since you are after an arabic forum, you may be interested in looking at the .net version, it is a lot easier to turn into arabic as all you need to do is translate the language resource files rather than edit all the code. the .net version can be found here http://snitz.reddiweb.com



but i do no understand any thing in aspx !
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  06:54:39  Show Profile  Visit sbai's Homepage
quote:
Originally posted by HuwR

YOU ARE USING A PIRATED SNITZ FORUM SO PUT THE COPYRIGHT IN OR DON'T COME BACK



ofcourse brother i will keep the copy rights when i finish the default
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20600 Posts

Posted - 06 February 2010 :  06:54:44  Show Profile  Visit HuwR's Homepage
quote:
Originally posted by HuwR

YOU ARE USING A PIRATED SNITZ FORUM SO PUT THE COPYRIGHT IN OR DON'T COME BACK

Go to Top of Page

HuwR
Forum Admin

United Kingdom
20600 Posts

Posted - 06 February 2010 :  06:57:55  Show Profile  Visit HuwR's Homepage
I would suggest you put them back imediately or your host will be contacted to have your site removed. Your hosts terms and conditions state

quote:
Copyright Violations - Violation of copyrights held by individuals and corporations or other entities can result in civil and criminal liability for the infringer.
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  06:58:05  Show Profile  Visit sbai's Homepage
what's the names of programers of snitz ?
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20600 Posts

Posted - 06 February 2010 :  07:01:58  Show Profile  Visit HuwR's Homepage
they can be found in everyfile of a legitimate snitz forum, I suggest you download one and see.
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  07:07:55  Show Profile  Visit sbai's Homepage
ok thank you so so much ! and i promise you i will keep the snitz and programers copyrights !

how can i fix this bug :
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'

[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'F.F_DESCRIPTION F.F_LOGO'.

/zerostar2/s/Default.asp, line 207
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  07:08:58  Show Profile  Visit sbai's Homepage
this is the code strsql :

'## Forum_SQL - Build SQL to get forums via category
strSql = "SELECT F.FORUM_ID, F.F_STATUS, F.CAT_ID, F.F_SUBJECT, F.F_URL, F.F_TOPICS, " &_
"F.F_COUNT, F.F_LAST_POST, F.F_LAST_POST_TOPIC_ID, F.F_LAST_POST_REPLY_ID, F.F_TYPE, " & _
"F.F_ORDER, F.F_A_COUNT, F.F_SUBSCRIPTION, F_PRIVATEFORUMS, F_PASSWORD_NEW, " & _
"M.MEMBER_ID, M.M_NAME, " & _
"T.T_REPLIES, T.T_UREPLIES, " & _
"F.F_DESCRIPTION " & _
"F.F_LOGO " & _

"FROM ((" & strTablePrefix & "FORUM F " &_
"LEFT JOIN " & strMemberTablePrefix & "MEMBERS M ON " &_
"F.F_LAST_POST_AUTHOR = M.MEMBER_ID) " & _
"LEFT JOIN " & strTablePrefix & "TOPICS T ON " & _
"F.F_LAST_POST_TOPIC_ID = T.TOPIC_ID) "

Edited by - sbai on 06 February 2010 07:14:26
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20600 Posts

Posted - 06 February 2010 :  07:20:46  Show Profile  Visit HuwR's Homepage
I will monitor your site and if the copyright is not returned your host will be contacted.

to fix your error add a comma on the following line

"F.F_DESCRIPTION " & _
like so
"F.F_DESCRIPTION, " & _
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  07:25:22  Show Profile  Visit sbai's Homepage
thank you so much brother
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  07:32:45  Show Profile  Visit sbai's Homepage
what about this bug :

Microsoft OLE DB Provider for ODBC Drivers error '80040e07'

[Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression.

/zerostar2/s/post_info.asp, line 1613
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  07:34:18  Show Profile  Visit sbai's Homepage
code strsql :

if strPrivateForums = "1" then
strSql = strSql & ", F_PRIVATEFORUMS = " & cLng("0" & Request.Form("AuthType"))
if Request.Form("AuthPassword") <> " " then
strSql = strSql & ", F_PASSWORD_NEW = '" & ChkString(Request.Form("AuthPassword"),"SQLString") & "'"
end if
end if
strSql = strSql & ", F_SUBJECT = '" & txtSubject & "'"
strSql = strSql & ", F_LOGO = '" & ForumLogo & "'"
strSql = strSql & ", F_DESCRIPTION = '" & txtMessage & "'"
if Request.Form("Moderation") <> "" then
strSql = strSql & ", F_MODERATION = " & cLng("0" & Request.Form("Moderation"))
end if
if fSubscription <> "" then
strSql = strSql & ", F_SUBSCRIPTION = " & cLng("0" & fSubscription)
end if
strSql = strSql & ", F_DEFAULTDAYS = " & cLng(Request.Form("DefaultDays"))
strSql = strSql & ", F_COUNT_M_POSTS = " & cLng("0" & Request.Form("ForumCntMPosts"))
strSql = strSql & " WHERE FORUM_ID = " & Forum_ID

my_Conn.Execute (strSql),,adCmdText + adExecuteNoRecords
Go to Top of Page

sbai
New Member

Morocco
71 Posts

Posted - 06 February 2010 :  07:39:09  Show Profile  Visit sbai's Homepage
look the copyrights : http://users6.nofeehost.com/zerostar2/s/default.asp
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20600 Posts

Posted - 06 February 2010 :  07:40:50  Show Profile  Visit HuwR's Homepage
could you do the following, comment out the my_conn.execute line and put a response.write strsql like so

strSql = strSql & " WHERE FORUM_ID = " & Forum_ID
Response.Write(strSql)
Response.End
'my_Conn.Execute (strSql),,adCmdText + adExecuteNoRecords

this will write out the sql that it is trying to send, that should help pinpoint the problem
Go to Top of Page
Page: of 3 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.33 seconds. Powered By: Snitz Forums 2000 Version 3.4.07