'################
' Paths
'################
'NOTE: YOU MUST FIRST CREATE THE ACTUAL PATHS WRITTEN IN ALL VARIABLES HERE ELSE MOD WONT WORK AT ALL
'NOTE: ALL OF THE FOLLOWING VARIABLES SHOULDNT END WITH A "\" NONE OF THEM
'physicalUploadFolder -> path to physical location of uploading
'physicalUploadTextFolder -> path to store text files containg file information
physicalUploadFolder = "C:\Inetpub\wwwroot\forum\sharedfiles"
physicalUploadTempFolder = "c:\Inetpub\wwwroot\forum\sharedFiles"
physicalUploadTextFolder = "C:\Inetpub\wwwroot\forum\filesText"
logFilePath = "D:\Inetpub\wwwroot\forum\sharedFiles\logFiles"
The above code is from inc_UploadConfig.asp in the File Sharing Mod. Because I have the hosting service and I don't know the physical path. All I know is that I put all forum codes into Public\forum directory.
I tried to use the following codes.
physicalUploadFolder = "forum\sharedfiles"
physicalUploadTempFolder = "forum\sharedFiles"
physicalUploadTextFolder = "forum\filesText"
logFilePath = "forum\sharedFiles\logFiles"
But I got the error message. Microsoft VBScript runtime error '800a004c' Path not found. /forum/membersFiles.asp, line 424.
How could I fix it?