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)
 File Sharing MOD (FINAL 2.51 updated 28-8-03 )
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 14

jeffery
Junior Member

USA
176 Posts

Posted - 01 September 2005 :  11:59:00  Show Profile  Reply with Quote
Sorry, I would have answered that but I couldn't remember what I had to do. Happy you fixed it. I've been working on streamlining the file listing interface of this. I actually wish it was db driven, I think for me the txt files make it slower.<

www.thomasforum.com
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 02 September 2005 :  03:17:28  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
I'm just going to use this to make the users able to upload photos to their personal photo album that's going to be visible in their profile. Much too complicated to do just that, but it's the easiest solution I could come up with because of all the security and so is already built in...
Thanks anyway =)
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 02 September 2005 :  09:00:12  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
Is it possible to get the little box from membersfiles.asp (listing used space and such) into inc_profile.asp?
I tried but nothing showed =)<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

pgrier
Starting Member

United Kingdom
3 Posts

Posted - 02 September 2005 :  09:50:51  Show Profile  Reply with Quote
quote:
Originally posted by koolio

I have this error when access to membersFiles.asp

Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'filesText'.
/inc_UploadFunc.asp, line 551

Thanks for any help.



Make sure that the only directories in the main forum upload folder on your server are the ones for each user.

The other directories used by the MOD (filestext, sharedfiles and so on) must be in a different folder from all your user folders.<
Go to Top of Page

cryo75
New Member

88 Posts

Posted - 25 September 2005 :  01:17:29  Show Profile  Visit cryo75's Homepage  Reply with Quote
Is there a link for the latested updated mod??

Thanks,
Ivan<
Go to Top of Page

Zuel
Average Member

USA
540 Posts

Posted - 05 October 2005 :  22:13:31  Show Profile  Visit Zuel's Homepage  Reply with Quote
This mod most definately is NOT USER FRIENDLY.

1) Is not an independent mod. Won't tell you what your missing until you can't find the code you need to search for.
2) All admin functions are done in file no admin panel.
3) Need to hardcode how to link to the mod.
4) No line numbers in the readme, requires guessing game.

After I got it working by reading all the other fixes in the post I get a few more errors.

When I try to create a new directory, file exists. But if you refresh the page then it shows the directory. --- Bad loop here

When I try to upload a file yaya it works! BUT it uploads it 4 times while adding .txt at the each on each loop. Refresh the page again and maybe you got another 10 accumulated. -- Horray for loops!

Don't mind me I'm just pissed off from trying to implement this mod just to find out I have to install Private Messages and Avatars first. Then to find out that he doesn't update his original zip file that is still full of bugs of things that other users fixed just so people who just now want to try it get ****ed out of time.

I'll post later in a civil manner when I cooldown from this bullstuff. Until then if anyone has a working version that has clear instructions then please post a link.

Thanks<

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
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 19 October 2005 :  07:06:05  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
quote:
Originally posted by tribaliztic

Is it possible to get the little box from membersfiles.asp (listing used space and such) into inc_profile.asp?
I tried but nothing showed =)



Can anyone help me with this? It would be very neat to have it show in the users profile...
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 04 November 2005 :  05:22:01  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

clibby
Starting Member

1 Posts

Posted - 28 November 2005 :  17:13:27  Show Profile  Reply with Quote
I recently changed hosting of my forum with File Sharing MOD in order to have more file space. Clicking a link to download a 5Mb zip file would cause ASP 0251 : 80004005

I'm on Win2003 IIS6 and a Google reveals that there is a limit to the response size you can build in one go. So the suggested fix is doing it in chunks. I fixed the problem in Download.asp near line 218

Replace

Response.BinaryWrite Stream.Read()
Response.Flush

With

Dim varData
Const lngChunkSize = 524288

varData = Stream.Read(lngChunkSize)
Do Until IsNull(varData)
	Response.BinaryWrite varData
	Response.Flush 
	varData = Stream.Read(lngChunkSize)
Loop	



<
Go to Top of Page

bsmither
Starting Member

USA
12 Posts

Posted - 15 December 2005 :  20:05:56  Show Profile  Visit bsmither's Homepage  Reply with Quote
quote:
Originally posted by ehoffman73

This is also happening to me...the member folders don't exist before they upload, does this not auto-create those folders for a member....can't manually make folders for thousands of members.

Thanks!


quote:
Originally posted by mortioli


Scripting error '800a0046' 
Permission denied 

/forum/membersfiles.asp, line 424


Would this be a problem with the server creating the folders?

How would I get round this





Running into the same problem.

What I've discovered, but have not yet implemented due to other problems, is that according to some, the CreateFolder method cannot make more than one folder at a time. That includes nesting.

So, here's some code I found:


Sub MkDeepDir(ByVal Path)
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
If not fso.FolderExists(fso.GetParentFolderName(Path)) Then
        MkDeepDir(fso.GetParentFolderName(Path))
End If
fso.CreateFolder(Path)
End Sub ' MkDeepDir 


It's recursive so that it finds the highest parent that exists, then adds children, one at a time, until the full path exists.

Problem is, one may need to add this to every occurance of CreateFolder throughout the forum code.

Anyway...

<
Go to Top of Page

wildfiction
Junior Member

167 Posts

Posted - 07 January 2006 :  12:41:27  Show Profile  Visit wildfiction's Homepage  Reply with Quote
I have been using this mod for over 6 months now and it works well. I have always had this little annoying error that I haven't been able to fix but I am now determined to find a solution to it.

Whenever I post a reply to a topic that has had an image uploaded in a previous topic the forum then tries to download the image to my computer. Because I have a popup blocker on IE it says that it is trying to download a file and so it doesn't download but this is obviously not how it's supposed to function...

Any ideas?<
Go to Top of Page

ckvkkeek
Starting Member

7 Posts

Posted - 17 January 2006 :  22:36:43  Show Profile  Reply with Quote
So some of us newbies don't have to wade through 80 post... where are the latest files?<
Go to Top of Page

sadra
Starting Member

Iran
30 Posts

Posted - 21 January 2006 :  23:25:57  Show Profile  Send sadra a Yahoo! Message  Reply with Quote
Salamon Alaykom Va Rahmatollah korayem
ßíÝ ÇÕÈÍ íÇ ÇÎí
ÇäÇ ÇíÑÇäí æ ÇÓãí ÓÌÇÏ¡ áØÝÇ íæäíßÏ æÑÒä
Please Unicode Version!!
<

[red]how soon is too late[/red]
Go to Top of Page

jobryan26
Starting Member

10 Posts

Posted - 11 February 2006 :  15:56:07  Show Profile  Reply with Quote
quote:
Originally posted by bsmither

quote:
Originally posted by ehoffman73

This is also happening to me...the member folders don't exist before they upload, does this not auto-create those folders for a member....can't manually make folders for thousands of members.

Thanks!


quote:
Originally posted by mortioli


Scripting error '800a0046' 
Permission denied 

/forum/membersfiles.asp, line 424


Would this be a problem with the server creating the folders?

How would I get round this





Running into the same problem.

What I've discovered, but have not yet implemented due to other problems, is that according to some, the CreateFolder method cannot make more than one folder at a time. That includes nesting.

So, here's some code I found:


Sub MkDeepDir(ByVal Path)
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
If not fso.FolderExists(fso.GetParentFolderName(Path)) Then
        MkDeepDir(fso.GetParentFolderName(Path))
End If
fso.CreateFolder(Path)
End Sub ' MkDeepDir 


It's recursive so that it finds the highest parent that exists, then adds children, one at a time, until the full path exists.

Problem is, one may need to add this to every occurance of CreateFolder throughout the forum code.

Anyway...





Same problem here. Anyone have a fix for this?<
Go to Top of Page

Gizmo3
Junior Member

130 Posts

Posted - 13 February 2006 :  21:42:31  Show Profile  Reply with Quote
I installed Mod 2. 51 Mouseover I am having some issues with the mod.

It says the file was uploaded but nothing gets uploaded.

in my profile it says I have uploaded no files.

I am running win server 2003 Access Database forum 2000

If you wish to try your sef the address is www.ontbus.com
user guest
pass guest


<

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!
Go to Top of Page
Page: of 14 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.14 seconds. Powered By: Snitz Forums 2000 Version 3.4.07