Print Page | Close Window

Magic Nights Skin, please help!

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=1542
Printed Date: 30 March 2026 at 11:20am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Magic Nights Skin, please help!
Posted By: Apheleon
Subject: Magic Nights Skin, please help!
Date Posted: 02 April 2003 at 2:35am

I am sorry I am asking about a skins issue in this board, but I'm looking for the quickest response, as of now my forums are not usable.

I downloaded a skin from this WebWiz site. The name of it is, Magic Nights Skin. It is located at this link if you want to check it out.

http://www.webwiz.net/web_wiz_forums/forum_mod_downloads.asp?cat=skins&mode= - http://www.webwiz.net/web_wiz_forums/forum_mod_downloads.asp?cat=skins&mode=

Here is what the instructions say. I've done exactly what it has said to do. All the files have been uploaded accordingly.

---------------------------------------------------------------------------------------------------

INSTALLATION
1)Place header.inc, pm_check.inc, and skin_file.inc into your FORUM root directory

2)Copy FORUM_IMAGES to your forum_images folder.  If prompted overright the existing pictures

3)You may have to alter some of the ASP code in order for the pictures to be the only link
please read the next section for details

SOURCE INFORMATION
In the folder ASP update pages there are the DISPLAY pages.   I have removed the TEXT links
The pictures are large enough and include the text that you dont need them.   You are free
to use these pages or view the source its a simple edit. 

DooM.TTF is the font I used in the PSD files.   You will need this if you wish to edit the
buttons.

PSD files are done with Photoshop 6.  They are layered and simple to edit away.

--------------------------------------------------------------------------------------------------

Now that I have done all this correctly, I get this error message now upon arriving at my forums.

Microsoft VBScript runtime error '800a01f4'

Variable is undefined: 'strTableVariableWidth'

/forum/default.asp, line 75

How can I fix the above error?

Please, anyone help me. If anyone knows how to edit this to fix it or something, please respond. I really like the looks of this skin and would like to get this up and running as soon as possible. Thanks in advance to anyone.




Replies:
Posted By: Kegman
Date Posted: 02 April 2003 at 2:36am
I got the same problem when I tried it to.  My solution was to use another skin!!! 


Posted By: Apheleon
Date Posted: 02 April 2003 at 2:47am
Before I go use a different skin, is there anyone else out there?


Posted By: Scotty32
Date Posted: 02 April 2003 at 2:51am

umm well you DO know the Skins on the Skins page (last i looked anyway) was for version 6.4

you have to use V6.4 for it, not v7 beta4

wait for the finnal V7 till you use skins for it,



Posted By: Kegman
Date Posted: 02 April 2003 at 2:54am
It has nothing to do with V7 I dont think.  Ive got V6.4 and have the same issue with that skin.


Posted By: Apheleon
Date Posted: 02 April 2003 at 2:56am
Originally posted by Scotty_32 Scotty_32 wrote:

umm well you DO know the Skins on the Skins page (last i looked anyway) was for version 6.4

you have to use V6.4 for it, not v7 beta4

wait for the finnal V7 till you use skins for it,

I am currently using the Access2000 build of Webwiz v6.34.

If anyone needs to check out the error message at my site, here's my url

http://www.blizzara.com/forum/ - http://www.blizzara.com/forum/



Posted By: Scotty32
Date Posted: 02 April 2003 at 3:08am

oooh, well i guess you'll have to check the "skin_file.inc"

and under the copyright stuff put in "Dim strTableVariableWidth" but i think you might get a couple more errors, if you do just add them to the and like...

Dim strTableVariableWidth, (other undefined), (and another)

yep? that might help it



Posted By: Apheleon
Date Posted: 02 April 2003 at 3:19am

Ok here is the just first two sections of the stuff I see under the "skin_file.inc" copyright stuff. I didnt want to post all of the sections cuz it would take up the whole page.

'Global on Each Page
'---------------------------------------------------------------------------------
Const strBgColour = "#000000"
Const strBgImage = ""
Const strTextColour = "#CCCCCC"
Const intSmallFontSize = 10

'Table colours
'---------------------------------------------------------------------------------
Const strTableColour = "#222222"
Const strTableBgImage = ""
Const strTableBorderColour = "#000000"
Const strTableVariableWidth = "98%"

Const strTableTitleColour = "#00083A"
Const strTableTitleBgImage = ""

Const strTableTitleColour2 = "#444444"
Const strTableTitleBgImage2 = ""

Const strTableEvenRowColour = "#222222"
Const strTableOddRowColour = "#222222"

----------------------------------------------

Const strTableVariableWidth = "98%"   <----What do I do?  Change this to 75% instead or something?  Are you saying to edit this part only? Or edit all the parts in the file.

What exactly do I do, what do I edit here? Like should I type "Dim strTableVariableWidth" after every line in each section? After just one of these lines? Below one of these lines?

Forgive me, but I'm a noob at this stuff. Can you please give me more detail on exactly what to type and where to place it?



Posted By: Scotty32
Date Posted: 02 April 2003 at 3:27am

you dont need to put "Dim" for them all - if you do, you will get a Redifened Error

you only have to put a Dim for the ones that have errors

just do it like this: (add the Green bit)

Dim strTableVariableWidth

'Global on Each Page
'---------------------------------------------------------------------------------
Const strBgColour = "#000000"
Const strBgImage = ""
Const strTextColour = "#CCCCCC"
Const intSmallFontSize = 10

 

'Table colours
'---------------------------------------------------------------------------------
Const strTableColour = "#222222"
Const strTableBgImage = ""
Const strTableBorderColour = "#000000"
Const strTableVariableWidth = "98%"

Const strTableTitleColour = "#00083A"
Const strTableTitleBgImage = ""

Const strTableTitleColour2 = "#444444"
Const strTableTitleBgImage2 = ""

Const strTableEvenRowColour = "#222222"
Const strTableOddRowColour = "#222222"

am acctually a n00b to ASP but i know a lil - and it should get rid of the error - if you get more "undifined" errors just put "Dim...." then wot ever isnt Defined

but you'll just get errors if you "Dim" them all

save the file then put upload it

but make a backup of the old "skin_file.inc" just put it on your desktop - incase anyfin goes wrong

(or ya could just redownload the skin )

do ya understand? sorry am tryna help, but i dont know much me self, an i dunno wot you know so

*edit* also, try downloading another skin and seein if ya get the errors with that too *edit*



Posted By: Apheleon
Date Posted: 02 April 2003 at 3:33am

Wow! That really helps! I think I understand how to do it now!  

I'll repost telling you how it worked out after I edit my file.

I really appriciate your help and I'll tell you how it goes. I need to go out and eat and do a few other things first, but I'll make sure I post back here telling you how it went. I'll be back in a couple hours or so.

Your help is quite appriciated! Thanks again!  



Posted By: Kegman
Date Posted: 02 April 2003 at 4:12am
Yea thats awesome.  Definately tell us what happened.  Like I said I tried to use the that same one but instead chose the easy way out!!!  LOL 


Posted By: Scotty32
Date Posted: 02 April 2003 at 4:17am

yeah, i tend to move on to the next, if sumfin doesnt work the way i want........

only problem is i tend to go thru a list.... then dicided to make wot ever it was my self (dont think ill be doin that wit the forum )

like i made my own News Script, and Gallery - on and filemanager
but like everyfin i do - they aint finished

anyway, hope it works, if not let me know - and ill try an fix wot it is

 



Posted By: Apheleon
Date Posted: 02 April 2003 at 4:58am

Ok here is what I did, and I'm still getting the same error.

'Global on Each Page
'---------------------------------------------------------------------------------
Const strBgColour = "#000000"
Const strBgImage = ""
Const strTextColour = "#CCCCCC"
Const intSmallFontSize = 10

'Table colours
'---------------------------------------------------------------------------------
Const strTableColour = "#222222"
Const strTableBgImage = ""
Const strTableBorderColour = "#000000"
Dim strTableVariableWidth
Const strTableVariableWidth = "98%"

Const strTableTitleColour = "#00083A"
Const strTableTitleBgImage = ""

Const strTableTitleColour2 = "#444444"
Const strTableTitleBgImage2 = ""

Const strTableEvenRowColour = "#222222"
Const strTableOddRowColour = "#222222"

Did I type this wrong or something?

I have also tried this
Dim strTableVariableWidth = "98%"

And I got the same error as well. Sometimes when I upload, my FTP program doesn't upload correctly, so if you think I typed this correctly, just tell me and I'll try uploading again to double check.
(Scotty_32 do you have MSN or AIM?)



Posted By: Scotty32
Date Posted: 02 April 2003 at 5:16am

yep, i got MSN

umm the "Dim strTableVariableWidth = "98%"" wouldnt acctually work

you have to define it before you use it, if you put a bit of code at the top

ok did you get the SAME error? when you did :

'Table colours
'---------------------------------------------------------------------------------
Const strTableColour = "#222222"
Const strTableBgImage = ""
Const strTableBorderColour = "#000000"
Dim strTableVariableWidth
Const strTableVariableWidth = "98%"

did it say "Variable is undefined: 'strTableVariableWidth' "

or was it differant?

ill try puttin V6.x on my site, an use the same skin an see wot happens



Posted By: Scotty32
Date Posted: 02 April 2003 at 5:22am
hello again - umm wot skin was it, cose i just downloaded one, i thought it was the one your using, and i put it on my site, i got no errors - could of been a diff one though


Posted By: Apheleon
Date Posted: 02 April 2003 at 5:25am

Yep I still get the error.

It's MagicNight skin

 



Posted By: Scotty32
Date Posted: 02 April 2003 at 7:42am

ok, like i said in another thread

ive found wot the error was, and anyone who uses this skin, i advise you NOT to upload the "header.inc" file that comes with the skin - just use the one you already have with the Web Wiz Forum



Posted By: Apheleon
Date Posted: 02 April 2003 at 8:16am

It works now! Thanks alot man. See ya on msn sometime!
You have to make sure the Dim isn't there either, for those reading.




Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net