Author |
Topic  |
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 06 February 2010 : 06:51:20
|
YOU ARE USING A PIRATED SNITZ FORUM SO PUT THE COPYRIGHT IN OR DON'T COME BACK |
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 06:53:13
|
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 !  |
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 06:54:39
|
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 |
 |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 06 February 2010 : 06:54:44
|
quote: Originally posted by HuwR
YOU ARE USING A PIRATED SNITZ FORUM SO PUT THE COPYRIGHT IN OR DON'T COME BACK
|
 |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 06 February 2010 : 06:57:55
|
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.
|
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 06:58:05
|
what's the names of programers of snitz ? |
 |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 06 February 2010 : 07:01:58
|
they can be found in everyfile of a legitimate snitz forum, I suggest you download one and see. |
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 07:07:55
|
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
|
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 07:08:58
|
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 |
 |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 06 February 2010 : 07:20:46
|
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, " & _
|
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 07:25:22
|
thank you so much brother |
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 07:32:45
|
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
|
 |
|
sbai
New Member

Morocco
71 Posts |
Posted - 06 February 2010 : 07:34:18
|
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 |
 |
|
sbai
New Member

Morocco
71 Posts |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 06 February 2010 : 07:40:50
|
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 |
 |
|
Topic  |
|