I've been testing out godaddy's coldfusion hosting with a linux account. I noticed that in order to write or copy a file with the CFFILE tag you need CHMOD the directory such that other has write permission! They recommend chmod'ing to 703. Kind of crazy I know
If your having trouble with uploading check out the comments on sean corfield's blog
Port Scan's don't only need to be the tool for hackers, they area a handy tool for a network or server administrator. Especially when debugging firewall issues. For example want to see which TCP ports www.google.com has open?
nmap -sT www.google.com
The output of the simple example above might look something like this:
Interesting ports on py-in-f104.google.com (64.233.167.104): (The 1657 ports scanned but not shown below are in state: filtered) PORT STATE SERVICE 80/tcp open http 179/tcp closed bgp 443/tcp open https Nmap run completed -- 1 IP address (1 host up) scanned in 31.619 seconds
That shows port 80, 179, and 443 open, so if your trying to ssh into google.com you won't get very far.
I have been testing out the Linux ColdFusion hosting on Godaddy. One thing I use a lot however is mod_rewrite, but I've been having some issues so far. Here are some tips that I've found so far about this
c's and two s's/ in the second part of your RewriteRule.Here's an example .htaccess file for mod_rewrite on Godaddy:
Options +FollowSymLinks RewriteEngine on RewriteRule ^/foo /test.cfm?path=foo
If your getting this error message in subversion with a svn checkout (or svn co):
svn: The path was not part of a repository svn: PROPFIND request failed on '/' svn: '/' path not found
One possible cause is that you haven't imported anything into your svn repository yet. You can use the svn import command to do that.
If your running the Service Pack 1 on Windows 2003, and ColdFusion MX with more than 1024mb in the max heap setting, you might see the error:
Windows could not start the ColdFusion MX Application Server on Local Computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor, and refer to service-specific error code 2.
In the logs you might see:
Error occurred during initialization of VM Could not reserve enough space for object heap
The problem could be a number of things but here are two possibilities you should look into:
XML