| Title: | CFMX Virtual Domain Wierdness |
| Date: | 04/19/03 7 Posts |
| Summary: | If ColdFusion MX is installed in a multi-hosting environment, edit the application server's jrun.xml file to disable the stand-alone web server and pathname caching. Instructions are included. |
| Title: | Max Files and Directories in W2K |
| Date: | 04/19/03 8 Posts |
| Summary: | Although an image directory of 1,000+ files won't make a significant difference in file processing, there is a noticeable difference in Windows Explorer navigation speed with bulky directories. You can work around this problem by creating a group of subdirectories based on dates or primary key ranges. A UDF is included. |
| Title: | MultiSelect Drama |
| Date: | 04/19/03 8 Posts |
| Summary: | Need to "select" dynamic options pulled from one query based on the IDs returned by another? Rather than implementing a nested query loop, try creating a list of the IDs by applying the ValueList() function. You can then use ListFind() to determine if there's a match. |
| Title: | Outputting Code and Dependancies |
| Date: | 04/19/03 3 Posts |
| Summary: | Is there a way to list file dependencies in the order in which they are executed? If you're using MX, you can change the "Debugging Settings" in CF Administrator to use "dockable.cfm" rather than "classic.cfm," with "tree" rather than "summary" as the output mode. |
| Title: | Client Variables |
| Date: | 04/20/03 11 Posts |
| Summary: | Need to purge client variables from your registry after moving them to a database? Change the purge interval in CF Administrator to one day. If you are using CF 5, however, you may need to manually change this value in the registry. Links to Macromedia support documents are included. |
| Title: | Regex |
| Date: | 04/20/03 15 Posts |
| Summary: | Regex "ninjas" rush to the rescue of developers — one who needs to replace two adjacent commas in a string and another who needs to remove everything from the first "<" to "<>." Solutions include a UDF. |