If you are using ComSwiki1GAMMA on MacOS, you should file this change set in to make uploads work. Peace and Luck! Je77
'From Squeak2.9alpha of 13 June 2000 [latest update: #3299] on 9 April 2001 at 11:20:53 am'! !MacFileDirectory methodsFor: 'private' stamp: 'je77 4/9/2001 11:20'! primRename: oldFileFullName to: newFileFullName "Macs do not deal well with renaming, so copy and delete instead." | fromFile toFile | fromFile _ FileStream readOnlyFileNamed: oldFileFullName. toFile _ FileStream newFileNamed: newFileFullName. "Copy" self copyFile: fromFile toFile: toFile. fromFile close. toFile close. "Delete original" self class deleteFilePath: oldFileFullName! !