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: MOD Implementation
 Smile manager?
 New Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 4

volkerc
Junior Member

Germany
159 Posts

Posted - 22 August 2013 :  16:28:21  Show Profile
I'm using the latest version.
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 22 August 2013 :  16:30:08  Show Profile
The default smilies are added to the smilie manager and those show up in the posts. when i type the code and hit preview they are also visible. the NEW smilies don't show a smilie image, only the code is visible.
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 22 August 2013 :  16:32:37  Show Profile
the add text is there in inc_code.js also says v.3.4.07 in it
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 22 August 2013 :  23:39:18  Show Profile
Post a link to "post.asp" in .txt format, that's the only missing link.
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 23 August 2013 :  02:15:30  Show Profile
here it is:


Edited by - volkerc on 01 September 2013 14:06:38
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 23 August 2013 :  21:25:29  Show Profile
Didn't see anything wrong with it. Let's check the settings for the smileys in the database. This doesn't check for access level or anything else, just pulls up a chart of the smileys. See if they are enabled/excluded/visible, in the correct folder, etc.


<!--#INCLUDE FILE="config.asp"-->
<!--#INCLUDE FILE="inc_header.asp"-->
<%
Response.Write	"<table align=""center"" width=""100%"" border=""1"">" & vbNewLine & _
	"	<font face=""" & strDefaultFontFace & """ color=""" & strDefaultFontColor & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
	"	<tr>" & vbNewLine & _
	"		<td>CODE</td><td>URL</td><td>Col</td><td>Desc</td><td>Vis</td><td>Enabled</td><td>Exclude</td>" & vbNewLine & _
	"	</tr>"
strSql="SELECT * FROM " & strTablePrefix & "SMILES"
Set rs=my_Conn.Execute(strSql)
If not rs.EOF Then
	rs.MoveFirst
	intI=0
	Do while not rs.EOF
		If intI=0 Then CColor=strForumFirstCellColor Else CColor=strAltForumCellColor
		Response.Write	"	<tr bgColor=""" & CColor & """>" & vbNewLine & _
			"		<td align=""left"">" & rs("S_CODE") & "</td>" & vbNewLine & _
			"		<td align=""left"">" & rs("S_URL") & "</td>" & vbNewLine & _
			"		<td align=""left"">" & rs("S_Colspan") & "</td>" & vbNewLine & _
			"		<td align=""left"">" & rs("S_DESC") & "</td>" & vbNewLine & _
			"		<td align=""left"">" & rs("S_VISIBLE") & "</td>" & vbNewLine & _
			"		<td align=""left"">" & rs("S_ENABLED") & "</td>" & vbNewLine & _
			"		<td align=""left"">" & rs("S_EXCLUDE") & "</td>" & vbNewLine & _
			"	</tr>"
		intI=1-intI
		rs.MoveNext
	Loop
	rs.Close
Else
	Response.Write	"	<tr bgColor=""" & strForumFirstCellColor & """>" & vbNewLine & _
		"		<td align=""center"" width=""100%"">None Found</td>" & vbNewLine & _
		"	</tr>"
End If
Set rs=Nothing
Response.Write	"	</font>" & vbNewLine & _
	"</table>"
WriteFooter
%>

Edited by - Carefree on 23 August 2013 21:25:53
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 24 August 2013 :  13:26:41  Show Profile
What file would that be?

Edited by - volkerc on 24 August 2013 15:18:50
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 24 August 2013 :  23:26:41  Show Profile
Call it anything you wish.
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 25 August 2013 :  04:54:17  Show Profile
I'm a little slow I guess. Are you saying to use the above as a new file?
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 25 August 2013 :  05:55:36  Show Profile
Yes. All I want to see are the results (they'll be in a table format) to verify the existence of the graphic files and their status.
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 25 August 2013 :  07:09:45  Show Profile
CODE URL Col Desc Vis Enabled Exclude
icon_smile_angry.gif 1 Angry 1 yes 0
icon_smile_blackeye.gif 1 Black Eye 1 yes 0
icon_smile_dead.gif 1 Dead 1 yes 0
icon_smile_shock.gif 1 Shock 1 yes 0
[bi] icon_smile_biker.gif 1 Biker Scout 1 yes 0
icon_smile_blush.gif 1 Blush 1 yes 0
icon_smile_sad.gif 1 Sad 1 yes 0
icon_smile_shy.gif 1 Shy 1 yes 0
icon_smile.gif 1 Smile 1 yes 0
icon_smile_evil.gif 1 Evil 1 yes 0
icon_smile_big.gif 1 Big Smile 1 yes 0
icon_smile_cool.gif 1 Cool 1 yes 0
icon_smile_sleepy.gif 1 Sleepy 1 yes 0
[:ds] icon_smile_ds.gif 1 Death Star 1 yes 0
icon_smile_clown.gif 1 Clown 0 yes 0
icon_smile_tongue.gif 1 Tongue 1 yes 0
[bo] icon_smile_boba.gif 1 Boba Fett 1 yes 0
icon_smile_wink.gif 1 Wink 1 yes 0
icon_smile_8ball.gif 1 Eight Ball 1 yes 0
icon_smile_question.gif 1 Question 1 yes 0
icon_smile_approve.gif 1 Approve 1 yes 0
icon_smile_disapprove.gif 1 Disapprove 1 yes 0
[td] icon_smile_cry.gif 1 Thumbs down 1 yes 0
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 25 August 2013 :  07:12:08  Show Profile
i copied and pasted the info. on my table on the left was only the code.no visible smilie images. but the way they are pasted / shown here is what you would see on my site. the code for the new smilies, but no smilie image except the default standard smilies.
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 29 August 2013 :  10:26:51  Show Profile
no more ideas? the answer must be in the connection between the code and the image. the code is not displaying the image.
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 29 August 2013 :  11:20:10  Show Profile
quote:
Originally posted by volkerc

i copied and pasted the info. on my table on the left was only the code.no visible smilie images. but the way they are pasted / shown here is what you would see on my site. the code for the new smilies, but no smilie image except the default standard smilies.



I wanted to see the entire URLs to ensure the images were where the database indicated. If the URLs in the database are no more than the file names, the images need to be in the forum/images folder. The post/preview function resides in the javascript routine from "inc_code.js". About the only remaining idea I have is that the javascript file has become corrupted. Replace it and see if it resolves the issue.
Go to Top of Page

volkerc
Junior Member

Germany
159 Posts

Posted - 29 August 2013 :  17:11:06  Show Profile
quote:
Originally posted by Carefree

quote:
Originally posted by volkerc

i copied and pasted the info. on my table on the left was only the code.no visible smilie images. but the way they are pasted / shown here is what you would see on my site. the code for the new smilies, but no smilie image except the default standard smilies.



I wanted to see the entire URLs to ensure the images were where the database indicated. If the URLs in the database are no more than the file names, the images need to be in the forum/images folder. The post/preview function resides in the javascript routine from "inc_code.js". About the only remaining idea I have is that the javascript file has become corrupted. Replace it and see if it resolves the issue.



the new smilies are in the same folder like the old ones. i have replaced inc_code.js same difference. no image shown for the code. the instructions say to use whatever one likes a a code. that's what i did.
Go to Top of Page
Page: of 4 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.77 seconds. Powered By: Snitz Forums 2000 Version 3.4.07