CF_Email_Validation_Lite
Email validation is just a small snippit of code that allows you to verify that a domain is valid. It includes a database using MySQL and Access that has a list of all domain extensions (this may need to be updated, current list has 253 records) . Future enhancements to the code will include the ability to send an email to the user and have them login to ensure that the email is valid and receiving mail. 
CF_Page_Tracker
Page tracker was developed to help trace what coldfusion page was bringing down my coldfusion server. This script is to be added to your application.cfm page as well as a new datasource. The new datasource (which could actually be added to your current database) includes one table that will track every page that is added. The concept is that more than likely if the coldfusion server goes down, it will be caused by one of the last few pages that was loaded into the pagetracker table. This should be used in coordination with the coldfusion logs. These logs can tell you what pages have had extensive run times etc. 
CF_Site_Search
Site Search will allow you to search an entire directory for all pages that include the string that was requested. There is no real configuration needed except perhaps changing the presentation of the output.This only returns the content within HTML pages. It is a great example to help you add a search to your site.
CF_NowDateTime
CF_nowdatetime is a date function that will return you the current date time, as well as a passed date time, formatted in just about any format needed for manipulation within coldfusion pages. When calling the function you can pass four different variables within the cf_nowdatetime tag displayhtml - allows you to see all of the available time and date tags
passeddate - allows you to pass a date to the function to return all of it's sub parts must be in "mm/dd/yyyy" format
passedtime - allows you to pass a time to the function to return all of it's sub parts must be in "hours:minutes" format
passedodbcdatetime - allows you to pass an odbc time stamp. this will return all of the return date and time values. If you pass the odbc time stamp at the same time you send the passeddate and passedtime, these values will be overlaid by the date and time within the unix time stamp
passedunixdatetime - allows you to pass a unix time stamp. this will return all of the return date and time values. If you pass the unix time stamp at the same time you send the passeddate and passedtime, these values will be overlaid by the date and time within the unix time stamp
CF_BGColorToggle
BGColorToggle allows you to dynamically change the colors of alternating rows without having to write a specific function to do it. This function allows you to pass the colors to alternate or it uses default colors if colors are not passed.
CF_EmbedFields
This is a modification of the original tag from Ben Forta. His description was: CF_EmbedFields simplifies the process of creating multi-part HTML forms. A single call to this tag (without any attributes) embeds all passed form fields in the form as hidden fields. I have enhanced this tag to include the variables passed through the URL as well.
CF_SendCFMail
This is a very simple page that includes all the information needed to send an email through coldfusion. Just fill in the required fields and call this page and your emails will be sent. No need to record the CFMail each time you use it, just include this tag. 
|