I modified connectors/cfm/cf_commands.cfm to upload to two separate remote servers (load balanced). It works fine doing either one, but at the same time only the first CFFILE executes. Here is an example in the FileUpload function...
<cffile action="UPLOAD" filefield="NewFile" destination="\\10.0.0.1\Inetpub$\wwwroot\images\news\fck_uploads" nameconflict="makeunique" mode="0755" />
<cffile action="UPLOAD" filefield="NewFile" destination="\\10.0.0.2\Inetpub$\wwwroot\images\news\fck_uploads" nameconflict="makeunique" mode="0755" />
However, Config.ServerPath points to only one of the servers, and I have Config.UserFilesPath pointed to the main domain that both servers resolve to, followed by the respective subfolder path.
Any ideas on why this won't work?
<cffile action="UPLOAD" filefield="NewFile" destination="\\10.0.0.1\Inetpub$\wwwroot\images\news\fck_uploads" nameconflict="makeunique" mode="0755" />
<cffile action="UPLOAD" filefield="NewFile" destination="\\10.0.0.2\Inetpub$\wwwroot\images\news\fck_uploads" nameconflict="makeunique" mode="0755" />
However, Config.ServerPath points to only one of the servers, and I have Config.UserFilesPath pointed to the main domain that both servers resolve to, followed by the respective subfolder path.
Any ideas on why this won't work?