| View previous topic :: View next topic |
| Author |
Message |
Kingy Voice
Joined: 15 Dec 2008 Posts: 3
|
Posted: Mon Feb 04, 2013 4:39 pm Post subject: DCC Send Refused (no access) |
|
|
This is probably quite a common error but I'm struggling to get it working. I'm wanting my eggdrop to accept files from other users in a channel. Now if I understand correctly I need to add the user and host to the bot so that it will work?
I've done both things but it continues to give me Refused DCC Send ... (no access)
What exactly needs to be in the user file for this to work? |
|
| Back to top |
|
 |
SpiKe^^ Owner

Joined: 12 May 2006 Posts: 792 Location: Tennessee, USA
|
Posted: Mon Feb 04, 2013 5:16 pm Post subject: |
|
|
Did you load the filesystem module?? It is not loaded by default.
| Code: | #### FILESYSTEM MODULE ####
# This module provides an area within the bot where users can store and
# manage files. With this module, the bot is usable as a file server. The
# transfer module is required for this module to function. Un-comment
# the following line to load the filesys module.
#loadmodule filesys
# Set here the 'root' directory for the file system.
set files-path "/home/mydir/filesys"
# If you want to allow uploads, set this to the directory uploads
# should be put into. Set this to "" if you don't want people to
# upload files to your bot.
set incoming-path "/home/mydir/filesys/incoming" |
_________________ SpiKe^^
Get BogusTrivia 2.06.4.7 at www.mytclscripts.com
or visit the New Tcl Acrhive at www.tclarchive.org
. |
|
| Back to top |
|
 |
Kingy Voice
Joined: 15 Dec 2008 Posts: 3
|
Posted: Mon Feb 04, 2013 6:05 pm Post subject: |
|
|
| Yes it was. However the folders I had specified weren't created. Silly mistakes are annoying. Getting file to large now. I assume there is a setting for this? |
|
| Back to top |
|
 |
SpiKe^^ Owner

Joined: 12 May 2006 Posts: 792 Location: Tennessee, USA
|
Posted: Mon Feb 04, 2013 6:19 pm Post subject: |
|
|
| Code: | # Set here the maximum allowable file size that will be received (in KB).
# Setting this to 0 makes it effectively infinite.
set max-filesize 1024 |
_________________ SpiKe^^
Get BogusTrivia 2.06.4.7 at www.mytclscripts.com
or visit the New Tcl Acrhive at www.tclarchive.org
. |
|
| Back to top |
|
 |
|