I have had problems for a couple of days when attempting to
get past the remote folder selection page after setting up FTP.
A solution that worked for us was modifying our .htaccess file from this:
RewriteEngine on
RewriteRule !(\.(gif|jpg|png|css|txt|swf|js|xml))$ index.php
to this:
RewriteEngine on
RewriteRule !(\.(gif|jpg|png|css|txt|swf|js|xml|tmp|htm))$ index.php
We added tmp and htm to the htaccess file. Contribute attempts to write a series of .htm files to test permissions etc, I remember reading something about Contribute writing the file and retrieving it and comparing. In our case I think the Rewrite Engine was preventing writing .htm files, although saying this the logs ct3netperformancelog didn't suggest this.
Anyway it works now.
A solution that worked for us was modifying our .htaccess file from this:
RewriteEngine on
RewriteRule !(\.(gif|jpg|png|css|txt|swf|js|xml))$ index.php
to this:
RewriteEngine on
RewriteRule !(\.(gif|jpg|png|css|txt|swf|js|xml|tmp|htm))$ index.php
We added tmp and htm to the htaccess file. Contribute attempts to write a series of .htm files to test permissions etc, I remember reading something about Contribute writing the file and retrieving it and comparing. In our case I think the Rewrite Engine was preventing writing .htm files, although saying this the logs ct3netperformancelog didn't suggest this.
Anyway it works now.