• Uploading files

    From Beta@VERT/TALAMASC to All on Thu Dec 2 11:59:00 1999
    Okay.... <G> Here's one for ya, I'm trying to upload files to another BBSã(Talamasca) with a mod, I tried using file_put but it want's the systemãpassword... I want this to be mantained by anyone who has access to maintainãit, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, is thereãanyway to do this?? ãBetaãã---ã þ Synchronet þ telnet://talamasca-bbs.com http://www.talamasca-bbs.comã
  • From Pistolgrip@VERT/TALAMASC to Beta on Thu Dec 2 17:41:00 1999
    RE: Uploading filesãBY: Beta to All on Thu Dec 02 1999 08:59 pmãã > Okay.... <G> Here's one for ya, I'm trying to upload files to another Bã > (Talamasca) with a mod, I tried using file_put but it want's the systemã > password... I want this to be mantained by anyone who has access to maintainã > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, is thã > anyway to do this??ã > BetaããHave you tried running it on an account that doesn't have sysop access? I knowãit's a stupid question.. but I am not exactly sure what you are trying toãaccomplish.ããdaveãã---ã þ Synchronet þ telnet://talamasca-bbs.com http://www.talamasca-bbs.comã
  • From Beta@VERT/TALAMASC to Pistolgrip on Thu Dec 2 21:47:00 1999
    RE: Uploading filesãBY: Pistolgrip to Beta on Fri Dec 03 1999 01:41 amãã > > Okay.... <G> Here's one for ya, I'm trying to upload files to anotheã > > (Talamasca) with a mod, I tried using file_put but it want's the systemã > > password... I want this to be mantained by anyone who has access to maintã > > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, isã > > anyway to do this??ã > > Betaã > ã > Have you tried running it on an account that doesn't have sysop access? I kã > it's a stupid question.. but I am not exactly sure what you are trying toã > accomplish.ããThat's what I just said. It works fine here because I have the #1 account, butãon Talamasca not having 99 and not having the System password it won't work. Iãdesigned it so that ppl who had Flag K would be able to upload and maintain theãdatabase, but alas it also seems that they must be a SysOp... :( ãBetaãã---ã þ Synchronet þ telnet://talamasca-bbs.com http://www.talamasca-bbs.comã
  • From PistolGrip@VERT/WASTELND to Beta on Fri Dec 3 01:44:00 1999
    RE: Uploading filesãBY: Beta to Pistolgrip on Fri Dec 03 1999 05:47 amãã > > Have you tried running it on an account that doesn't have sysop access? ã > > it's a stupid question.. but I am not exactly sure what you are trying toã > > accomplish.ã > ã > That's what I just said. It works fine here because I have the #1 account, ã > on Talamasca not having 99 and not having the System password it won't work.ã > designed it so that ppl who had Flag K would be able to upload and maintain ã > database, but alas it also seems that they must be a SysOp... :(ããOk it's more clear what you are trying to do. But, what database are youãtrying to modify? The BBS File Directories as Configured in SCFG? If so thisãworks, but be warned that a file removed by a User with ;USERREMOVEFILE isãdeleted from the Hard Disk Instantly. Unlike if a SysOp does a "R" Command fromãthe File Menu. It will not ask you if you want to delete it from the diskãalso.ããNOTE :ãFor this to work a user must have "FLAG K" *and* "Exemption R" (Remove Files)ããNow, if you are talking about something other than the File Directories pleaseãignore this :-)ããI just inserted this into the top of the STR_CMDS.SRC File in SBBS\EXEC.ã------------------------------------------------------------------------ãã# STR_CMDS.SRCãã# Global String Command Module for Synchronetãã# This is NOT a command shell, DO NOT add to SCFG->Command Shellsãã# This module is loaded from command shells with the EXEC_BIN functionãã# It contains mostly sysop commands (i.e. ;DOS)ãã# The command string must be the current string (obtained with SETSTR, GETSTRã# or similar function) before this module is loaded.ãã!include nodedefs.incãã# Remove any trailing spacesããtruncsp strããlogstrãã# End Original Codeã# -------------------------------------ã# Begin Inserted Codeããcompare_str "USERUPLOAD"ãif_trueã compare_ars FLAG Kã if_trueã file_upload_bulkã returnã end_ifãend_ifããcompare_str "USERREMOVEFILE"ãif_trueã compare_ars FLAG Kã if_true ã print "\r\nchRemove/Edit File(s)\r\n"ã getfilespecã if_trueã file_removeã end_ifã returnã end_ifãend_ifãã# End Inserted Codeã# --------------------------------------ã# Resume Original Codeããcompare_ars SYSOPãif_trueã ######################## SYSOP Functions ##############################ãetc ....ããDaveãã---ã þ Synchronet þ WasteLand þ telnet://wasteland.darktech.org ã
  • From Digital Man@VERT to Beta on Fri Dec 3 05:10:22 1999
    RE: Uploading filesãBY: Beta to All on Thu Dec 02 1999 07:59 pmãã > Okay.... <G> Here's one for ya, I'm trying to upload files to another Bã > (Talamasca) with a mod, I tried using file_put but it want's the systemã > password... I want this to be mantained by anyone who has access to maintainã > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, is thã > anyway to do this??ããUse FILE_UPLOAD instead?ããRobã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From PistolGrip@VERT/WASTELND to Digital Man on Fri Dec 3 09:43:00 1999
    RE: Uploading filesãBY: Digital Man to Beta on Fri Dec 03 1999 01:10 pmãã > RE: Uploading filesã > BY: Beta to All on Thu Dec 02 1999 07:59 pmã > ã > > Okay.... <G> Here's one for ya, I'm trying to upload files to anotheã > > (Talamasca) with a mod, I tried using file_put but it want's the systemã > > password... I want this to be mantained by anyone who has access to maintã > > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, isã > > anyway to do this??ã > ã > Use FILE_UPLOAD instead?ã > ã > RobããI thought this also, but are you trying to U/L a file alreayd on disk but notãin the database? If so, the SRC I posted earlier works.ããDaveãã---ã þ Synchronet þ WasteLand þ telnet://wasteland.darktech.org ã
  • From Beta@VERT/TALAMASC to PistolGrip on Fri Dec 3 12:51:00 1999
    RE: Uploading filesãBY: PistolGrip to Beta on Fri Dec 03 1999 09:44 amãã > Ok it's more clear what you are trying to do. But, what database are youã > trying to modify? The BBS File Directories as Configured in SCFG? If so thã > works, but be warned that a file removed by a User with ;USERREMOVEFILE isã > deleted from the Hard Disk Instantly. Unlike if a SysOp does a "R" Command fã > the File Menu. It will not ask you if you want to delete it from the diskã > also.ããI don't want to put this in the BBS file stores configed in SCFG. I want toãupload this to %jkeps\\latest.kep.ãBetaãã---ã þ Synchronet þ telnet://talamasca-bbs.com http://www.talamasca-bbs.comã
  • From Beta@VERT/TALAMASC to Digital Man on Fri Dec 3 12:52:00 1999
    RE: Uploading filesãBY: Digital Man to Beta on Fri Dec 03 1999 01:10 pmãã > > Okay.... <G> Here's one for ya, I'm trying to upload files to anotheã > > (Talamasca) with a mod, I tried using file_put but it want's the systemã > > password... I want this to be mantained by anyone who has access to maintã > > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, isã > > anyway to do this??ã > ã > Use FILE_UPLOAD instead?ããDosn't that have to upload to a file store configed in SCFG tho?ãBetaãã---ã þ Synchronet þ telnet://talamasca-bbs.com http://www.talamasca-bbs.comã
  • From Digital Man@VERT to Beta on Fri Dec 3 14:23:02 1999
    RE: Uploading filesãBY: Beta to Digital Man on Fri Dec 03 1999 08:52 pmãã > > > Okay.... <G> Here's one for ya, I'm trying to upload files to anoã > > > (Talamasca) with a mod, I tried using file_put but it want's the systeã > > > password... I want this to be mantained by anyone who has access to maã > > > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways,ã > > > anyway to do this??ã > >ã > > Use FILE_UPLOAD instead?ã > ã > Dosn't that have to upload to a file store configed in SCFG tho?ããYes. But you could create an area in SCFG that pointed to your specialãdirectory. Or, you could just "EXEC %!fdsz rz".ããRobã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Digital Man@VERT to Beta on Mon Oct 9 17:13:34 2000
    RE: Uploading filesãBY: Beta to All on Thu Dec 02 1999 07:59 pmãã > Okay.... <G> Here's one for ya, I'm trying to upload files to another Bã > (Talamasca) with a mod, I tried using file_put but it want's the systemã > password... I want this to be mantained by anyone who has access to maintainã > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, is thã > anyway to do this??ããI realize this is an old question, but did you try using the RECEIVE_FILE_VIAãBaja function?ããRobã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Beta@VERT/ROVER to Digital Man on Tue Oct 10 08:09:00 2000
    RE: Uploading filesãBY: Digital Man to Beta on Tue Oct 10 2000 12:13 amãã > > Okay.... <G> Here's one for ya, I'm trying to upload files to anotheã > > (Talamasca) with a mod, I tried using file_put but it want's the systemã > > password... I want this to be mantained by anyone who has access to maintã > > it, not just ppl who have SYSoP ACCESS.... Oops caps key. :) anyways, isã > > anyway to do this??ã > ã > I realize this is an old question, but did you try using the RECEIVE_FILE_VIã > Baja function?ããNo I didn't.. I'll look into that and mebbe dust off the code and writeãanother version :)ãBetaããã---ã þ Synchronet þ Rover Central, Kenora Ontario, Canadaã