there is.....
in setup_option_inc.asp :
***********************
'Upload folder path, DO NOT CHANGE as it may break your forums upload tools
Dim strUploadFilePath
strUploadFilePath = "uploads" 'This is the upload folder
***********************
and in RTE_FILE_BROWSER there is :
************************
'If file or image uploads are enabled then see if the user has an upload folder already
If blnAttachments = True OR blnImageUpload = True Then
'Check the user has an upload folder, if they have uploaded annything
blnUploadFolderExsist = userUploadFolder(strUploadFilePath)
'If an upload folder doesn't exsist for the user then they just browse the public folder
If blnUploadFolderExsist = False Then strUploadFilePath = strUploadOriginalFilePath & "/public"
'Else if image uploads are not enabled just display the empty upload folder to the user
Else
strUploadFilePath = strUploadOriginalFilePath & "/public"
End If
***********************
i've try to change strUploadFilePath by setup_option_inc.asp with mysite.com but in the page RTE_POPUP_ADV_IMAGE.asp there is the path Path: mysite.com/1
why when i change the strUploadFilePath the scipt put the number 1 after mysite and not put /public ??