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

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 New Colour template MOD
 New Topic  Topic Locked
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 3

Freeman II
Junior Member

232 Posts

Posted - 06 July 2001 :  14:20:14  Show Profile
i was talking about this mod.

http://www.geocities.com/scfff2/shot3.jpg

Go to Top of Page

samyot
Junior Member

Canada
242 Posts

Posted - 09 July 2001 :  14:46:39  Show Profile  Visit samyot's Homepage  Send samyot a Yahoo! Message
I found a problem with this MOD:

Quote taken from this post. Please see this topic for details.

quote:

When I installed the New Colour template MOD it entered 'Verdana,Arial,Helvetica' for strDefaultFontFace.

All my default users have an entry of 'Verdana, Arial, Helvetica' for strDefaultFontFace (with spaces after the comma). My 'Admin' account uses a new theme from this MOD.

When you hit 'Reply with Quote' from an 'Admin' post, the <blockquote> doesn't get converted to [quote] because of this.



Sylvain Amyot
http://syltek.dingojunction.com/forum
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 12 July 2001 :  00:01:53  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Is there somewhere that I could find the color picker MOD? I see so many tantalizing mentions of it, but it is nowhere to be found

@tomic

Go to Top of Page

simonduz
Junior Member

161 Posts

Posted - 12 July 2001 :  06:35:58  Show Profile  Visit simonduz's Homepage  Send simonduz an ICQ Message  Send simonduz a Yahoo! Message
quote:
Is there somewhere that I could find the color picker MOD?

Here ya go.
http://www.easyromantic.com/uploaded/admin_config_colors.zip
This is the basic file, with no BG or Cell image selections.
Just sharing the love.
Simonduz

http://easyromantic.webbhost.net -[test site]-
yada, yada.
Go to Top of Page

tomasalsbro
Average Member

Sweden
818 Posts

Posted - 12 July 2001 :  07:12:10  Show Profile  Visit tomasalsbro's Homepage
Hi,
after implementing this mod I found all templetes repeted three times. You can se a image of it here:
.
Does anyone have any suggestion what I should do?
Cheeers / Tomas

!-Keep distance in traffic-!
www.whiplash.se
www.whiplash.pp.se

Edited by - tomasalsbro on 12 July 2001 07:34:33
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 12 July 2001 :  14:07:14  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Thanks! I can't wait to try that out.

@tomic

Go to Top of Page

big9erfan
Average Member

540 Posts

Posted - 12 July 2001 :  14:16:35  Show Profile
Check the table and see if they are in there 3 times as well. If so then you know you've added them 3 times

http://www.ugfl.net/forums
Go to Top of Page

tomasalsbro
Average Member

Sweden
818 Posts

Posted - 12 July 2001 :  19:37:53  Show Profile  Visit tomasalsbro's Homepage
quote:

Here ya go.
http://www.easyromantic.com/uploaded/admin_config_colors.zip
This is the basic file, with no BG or Cell image selections.
Just sharing the love.
Simonduz

http://easyromantic.webbhost.net -[test site]-
yada, yada.



Hi simonduz,
Is this color picker mod compatible with the New Color template Mod?
Cheers / Tomas


!-Keep distance in traffic-!
www.whiplash.se
www.whiplash.pp.se
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 12 July 2001 :  22:41:07  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
It seems to work fine. All I had to do was add a link for the Import/Export MOD at the top and it was functioning great! I was using the adjustment Big9erfan posted.

@tomic

Go to Top of Page

tomasalsbro
Average Member

Sweden
818 Posts

Posted - 13 July 2001 :  03:26:44  Show Profile  Visit tomasalsbro's Homepage
quote:

It seems to work fine. All I had to do was add a link for the Import/Export MOD at the top and it was functioning great! I was using the adjustment Big9erfan posted.

@tomic




Hi @tomic,
sorry - I'm not so familiar with coding. Exactly where did you put the link and how does the link look like?
Cheers / Tomas

!-Keep distance in traffic-!
www.whiplash.se
www.whiplash.pp.se
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 13 July 2001 :  12:48:37  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
This is what I did to the top of admin_config_colors.asp

This is the table right above where you actually input the colors.



<form method="post" action="admin_colour_templates.asp" name="formUseTemplate">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="<% =strPopUpBorderColor %>">
<table border="0" cellspacing="1" cellpadding="4" width="436">
<tr valign="top">
<td bgcolor="<% =strHeadCellColor %>" colspan="2"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>"><b>Color
Templates</b></font></td>
</tr>
<tr align="center" valign="top">
<td bgcolor="<% =strPopUpTableColor %>" align="right" valign="middle" width="50%" nowrap>
<font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Template:</b></font>
</td>
<td bgcolor="<% =strPopUpTableColor %>" width="50%" nowrap>
<div align="center"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>">
<select name="select">

<!-- BEGIN COLORMOD TEMPLATE -->
<%
' Load the listbox with the available templates
'Select the existing entries
On Error Resume Next
strSql = "SELECT " & strTablePrefix & "COLOURS.C_TEMPLATE "
strSql = strSql & " FROM " & strTablePrefix & "COLOURS ORDER BY C_TEMPLATE"
set rs = my_Conn.execute (strSql)



do until rs.EOF
'Response.Write " <option value=""" & rs("C_TEMPLATE") & """>" & rs("C_TEMPLATE") & "</option>" & vbCrLf
Response.Write " <option value=""" & trim(rs("C_TEMPLATE")) & """"

if LCase(rs("C_TEMPLATE")) = LCase(strCurrentTemplate) then Response.Write " selected "

Response.Write ">" & rs("C_TEMPLATE") & "</option>" & vbCrLf
rs.movenext
loop
rs.Close
%>
<!-- END COLORMOD TEMPLATE -->

</select>
</font> <input type="submit" name="Submit" value=" Use "></div>
<input type="hidden" name="template" value="Write">


</td></form>
</tr>
<tr align="center" valign="top"><form method="post" action="admin_colour_templates.asp" name="formSaveTemplate">
<td bgcolor="<% =strPopUpTableColor %>" align="right" valign="middle"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>">
<b>Save As...</b>
</font></td>
<td bgcolor="<% =strPopUpTableColor %>"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>">
<input type="text" name="newtemplate" value="(Type Name)" size="13">
<input type="hidden" name="template" value="Save">
<input type="submit" name="Submit" value=" Save ">
</font></td>
</tr>
<tr>
<td bgcolor="<% =strPopUpTableColor %>" valign="middle" nowrap><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>">
<b>Import/Export Themes:</b>
</font></td>
<td bgcolor="<% =strPopUpTableColor %>" align="center">
<a href="admin_color_impexp.asp"><b><font face="Arial">Import/Export</font></b></a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
<!-- Replace your existing form in admin_config_colors.asp with this form -->
<!-- Each row with a color definition contains an additional column that dislays -->
<!-- in the currently selected color upon page entry


Edited by - @tomic on 13 July 2001 12:53:18
Go to Top of Page

Man[0]War
Starting Member

United Arab Emirates
40 Posts

Posted - 24 July 2001 :  00:39:21  Show Profile  Visit Man[0]War's Homepage  Send Man[0]War an ICQ Message
From what I have read, this seems to be an excellent MOD. Sadly I'm having a slight problem (or so I hope) ... I get the following error :


The error appears to be in :
admin_colour_templates.asp, line 28
Microsoft OLE DB Provider for ODBC Drivers error '80040e07'

[Microsoft][ODBC SQL Server Driver][SQL Server]Disallowed implicit conversion from datatype 'varchar' to datatype 'smallint' Table: 'WEB.dbo.FORUM_CONFIG', Column: 'C_STRTOPICNOWRAPLEFT' Use the CONVERT function to run this query.




Edited by - man[0]war on 24 July 2001 00:41:03
Go to Top of Page
Page: of 3 Previous Topic Topic Next Topic  
Previous 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.25 seconds. Powered By: Snitz Forums 2000 Version 3.4.07