Author |
Topic |
symon
Starting Member
27 Posts |
Posted - 01 May 2006 : 14:49:45
|
Brilliant, can't wait.
In the meantime I've realised I can bypass this problem for now by using IE instead of Firefox to check the box. :D< |
MODs Installed: Clipped URL by MarcelG Resized image by MarcelG Resized profile image by MarcelG |
|
|
Zuel
Average Member
USA
540 Posts |
Posted - 01 May 2006 : 15:44:23
|
Judging by what you just said I know what the problem is.
In the code, (You'll need to do some searching) you will notice that the name for the radio button's are different. By different I mean one may have an uppercase letter where the other doesn't.
Example:
CatID vs CatId
I believe firefox is case sensitive. To clarify the problem, go into the admin page with firefox. Then just hit the refresh button. The cat button should disappear. If so then this is your problem.
Simply view source to grab the radio button name, then search for it in the code. When you find it wrapped in this then you should be good to edit safely.
StringBuilder.AddString ""
If all goes wrong, then there's always ctrl - z < |
My Completed Mods: News Mod | Zuel's Avatar Add-on In Development: World of Warcraft Member Roster | [C# Based Forum]
Note - I may take a few days to recieve your email. Hotmail filters all new emails as junk. Would be best to post all questions, concerns in a forum topic to catch my immediate attention. This way others can assist and also correct any similar mistakes.
MSN / E-Mail: ucyimDa_Ruler@Hotmail.com
Personal Bookmarks: How to work a DBS File
|
|
|
symon
Starting Member
27 Posts |
Posted - 01 May 2006 : 16:55:17
|
Cool...I'll do that as soon as I return to work where the files live :D
PS. Does anyone know of a mod that can restrict how many each user can upload? One person has already uploaded 10 to the private folder and if I times that by 5000 it gets a bit heavy :D< |
MODs Installed: Clipped URL by MarcelG Resized image by MarcelG Resized profile image by MarcelG |
|
|
TonyB7
Junior Member
USA
267 Posts |
Posted - 01 May 2006 : 20:13:19
|
quote: restrict how many each user can upload?
Heh. I already ran into that problem (35+ distorted pics of her kids!) and I believe Zuel has set a limit in the later versions.< |
|
|
Zuel
Average Member
USA
540 Posts |
Posted - 02 May 2006 : 16:56:48
|
New version has limits (Admin's Specify)
The default is 5 private avatars. Once that limit has exceeded, they must delete one of their avatars to upload another one.
Admins can lock or unlock public categories to allow uploading which locking it is the only control.
Current Status: Getting closer Haven't gotten the full feel that it is ready to go out. Still playing with alot of things to ensure stability and functionality. So far soo good.< |
My Completed Mods: News Mod | Zuel's Avatar Add-on In Development: World of Warcraft Member Roster | [C# Based Forum]
Note - I may take a few days to recieve your email. Hotmail filters all new emails as junk. Would be best to post all questions, concerns in a forum topic to catch my immediate attention. This way others can assist and also correct any similar mistakes.
MSN / E-Mail: ucyimDa_Ruler@Hotmail.com
Personal Bookmarks: How to work a DBS File
|
|
|
symon
Starting Member
27 Posts |
Posted - 02 May 2006 : 17:41:54
|
Can't wait :D< |
MODs Installed: Clipped URL by MarcelG Resized image by MarcelG Resized profile image by MarcelG |
|
|
symon
Starting Member
27 Posts |
Posted - 08 May 2006 : 20:12:11
|
Just so you know. At the moment with the current code. My users are uploading their avatars but they're not displaying. When I do it it works but no one elses does. I can see they've uploaded but the side of their posts (if you right click and view image) shows the noavatar image.
It's frustrating people and as I'm a silent member I can't tell them anything. Will I have to get rid until the new code is done? Or is there something up?
<< Have a peek >>< |
MODs Installed: Clipped URL by MarcelG Resized image by MarcelG Resized profile image by MarcelG |
Edited by - symon on 09 May 2006 03:17:30 |
|
|
Zuel
Average Member
USA
540 Posts |
Posted - 10 May 2006 : 14:48:06
|
Can they see the image in their profile when they select the image?
I checked the source code and it is showing up as blank. Either you declared the Reply_MemberAvatar incorrectly or something is missing. This hasn't shown up the in the newer version.
Steps to troubleshoot the problem: [1] Make sure you install Richard Kinsers Avatar Mod FIRST! [2] Be sure you do the correct modifications within the Topic.asp based on your forum version for Richand Kinsers Avatar Mod. [3] Add some response writes in a test forum (Or yours for a short period of time) to get the value of Replay_AvatarMember. (Roughly around lines 584 / 796)
The reason behind noavatar.gif. I set the background image of that td to the avatar. noavatar.gif is simply set as a transparent image in front of the background to fit the specified demensions set in the Avatar Admin Panel. E.g. 64 by 64, 96 by 96. This is how I make avatars with different proportions work.
I registered and posted on the forum under the topic you meantioned above. I uploaded an image to the shared folder and I am using it. I also see it. Also try to right click the block (Depending on if you see it) and do a properties. Shows up as noavatar.gif.
I also see it when I'm logged out.
Try to get the steps that you used to create that error.< |
My Completed Mods: News Mod | Zuel's Avatar Add-on In Development: World of Warcraft Member Roster | [C# Based Forum]
Note - I may take a few days to recieve your email. Hotmail filters all new emails as junk. Would be best to post all questions, concerns in a forum topic to catch my immediate attention. This way others can assist and also correct any similar mistakes.
MSN / E-Mail: ucyimDa_Ruler@Hotmail.com
Personal Bookmarks: How to work a DBS File
|
|
|
Zuel
Average Member
USA
540 Posts |
Posted - 10 May 2006 : 14:52:13
|
I think I found your error.
There was a fix a while back that I made that TonyB found. Basically if you edit your profile and hit submit, I wasn't keeping the info so you avatar basically got reset. I added some code which you see below along with the instructions on where to put it.
That should fix that error when someone updates their profile. This may fix it, I simply tried this and found the view source looked the same as the other folks who are experiencing this problem.
Open inc_Profile.asp
Find Line 227: " </table>" & vbNewLine & _
end if
Make it look like: " </table>" & vbNewLine & _ " <input type=""hidden"" name=""AVATAR_URL"" value=""" & rs("M_AVATAR_URL") & """>" & vbNewLine end if
After this fix, try to select an avatar and see if it works.< |
My Completed Mods: News Mod | Zuel's Avatar Add-on In Development: World of Warcraft Member Roster | [C# Based Forum]
Note - I may take a few days to recieve your email. Hotmail filters all new emails as junk. Would be best to post all questions, concerns in a forum topic to catch my immediate attention. This way others can assist and also correct any similar mistakes.
MSN / E-Mail: ucyimDa_Ruler@Hotmail.com
Personal Bookmarks: How to work a DBS File
|
Edited by - Zuel on 10 May 2006 14:53:10 |
|
|
brian33433
New Member
60 Posts |
|
TonyB7
Junior Member
USA
267 Posts |
Posted - 12 May 2006 : 00:47:40
|
Brian your link on 'Click here to change your avatar' leads to an avatars.asp file, which is not a part of this mod. You must have a different avatar mod installed.?
i.e., When I click that link on my forum it leads to frmAvatarMain.asp.< |
|
|
symon
Starting Member
27 Posts |
Posted - 12 May 2006 : 03:36:09
|
quote: I think I found your error.
Zuel...did you do it for me? As it totally works now!! :)
Whenever I uploaded a avatar to my profile or a sudo one it always worked sweet.
But if you fixed it then great...dunno how you could but it works now. :D< |
MODs Installed: Clipped URL by MarcelG Resized image by MarcelG Resized profile image by MarcelG |
Edited by - symon on 12 May 2006 03:37:44 |
|
|
brian33433
New Member
60 Posts |
Posted - 12 May 2006 : 12:55:43
|
it seems zuel changed files, cause those files aren't in his mod or the link to the original avatar mod he has listed here
zuel if your out there can use some help< |
When it happens after dark, its twice as nice... http://nightclubtonight.com |
|
|
Zuel
Average Member
USA
540 Posts |
Posted - 12 May 2006 : 14:38:05
|
In the middle of coding this thing, I picked up a naming scheme of frm, inc and cls. Form, Include and Class respectively.
Your using an old version, can you tell me where you got the link from? Even the one I posted, Avatar_AddonV3 uses frmAvatarMain.asp.
When I try to go to avatars.asp?Method=Main I get a blank page with nothing else. I can't get to the upload part without knowing an avatar path. If your eager to use it, use this link:
http://www.twistingshadows.com/avatar_addonV3.zip
quote:
Zuel...did you do it for me? As it totally works now!! :)
Whenever I uploaded a avatar to my profile or a sudo one it always worked sweet.
But if you fixed it then great...dunno how you could but it works now. :D
I didn't change anything. You need to add that code bit above to make sure it doesn't happen again. Whenever someone changes anything in their profile it will wipe their avatar. I fixed that bug in later versions.
As a personal note, I need to roll this out soon. Too many version to maintain.< |
My Completed Mods: News Mod | Zuel's Avatar Add-on In Development: World of Warcraft Member Roster | [C# Based Forum]
Note - I may take a few days to recieve your email. Hotmail filters all new emails as junk. Would be best to post all questions, concerns in a forum topic to catch my immediate attention. This way others can assist and also correct any similar mistakes.
MSN / E-Mail: ucyimDa_Ruler@Hotmail.com
Personal Bookmarks: How to work a DBS File
|
|
|
brian33433
New Member
60 Posts |
Posted - 12 May 2006 : 16:52:16
|
hey zuel
thats the same link i downloaded it from. it doesn't have frmAvatarMain.asp in it. that must be where the problem lyes. must be the wrong link posted< |
When it happens after dark, its twice as nice... http://nightclubtonight.com |
Edited by - brian33433 on 12 May 2006 17:22:16 |
|
|
Topic |
|