This query was working in CF8 and now it will not work in CF9 on my server

2013-07-09 Thread Terry Troxel
Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.The error occurred in *C:\Inetpub\wwwroot\it-werks\LIBERTREE\index.cfm: line 7* 5 : cfquery name=addcat

Re: This query was working in CF8 and now it will not work in CF9 on my server

2013-07-09 Thread Terry Troxel
in cfqueryparam tags. On Jul 9, 2013 8:05 PM, Scott Stewart webmas...@sstwebworks.com wrote: Nevermind... Damn text wrap on the phone. On Jul 9, 2013 8:04 PM, Scott Stewart webmas...@sstwebworks.com wrote: What's the *7 and the * at the end? On Jul 9, 2013 7:59 PM, Terry Troxel terry.tro

Safety for image uploads

2013-06-14 Thread Terry Troxel
Question: If I have a browse for a user to try an upload of a JPG only file and use CFIMAGE to resize and then convert it to a PNG so I can add it to a demo slide show for the user to preview, have I eliminated any possible safety issues? Terry

Secure Image Uploads

2012-12-18 Thread Terry Troxel
I am looking for a safe and secure way to put an example page on my site that will allow a potential client to upload a JPG in order to see an example of a responsive photo gallery he can create using my new responsive web template I am in the process of building. Here is what I am considering in

efflare cfx image cr 3

2012-11-05 Thread Terry Troxel
Has anyone tried to use CFX_IMAGECR3 with windows server 64 bit and CF9 64 bit successfully? Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Coldfusion and @query

2012-10-07 Thread Terry Troxel
I am trying to get my head around some of this CSS3 and @media queries. Is there a way to incorporate a css media query to say change the template name in a cfinclude? I am really liking the Responsive fluid layout scenarios in Dreamweaver CS6 , but would like to also change page content as

Re: Coldfusion and @query

2012-10-07 Thread Terry Troxel
on the server. So... no. On Sun, Oct 7, 2012 at 10:40 AM, Terry Troxel terry.tro...@gmail.com wrote: I am trying to get my head around some of this CSS3 and @media queries. Is there a way to incorporate a css media query to say change the template name in a cfinclude? I am really liking

Help with creating a mobile website with CF

2012-09-15 Thread Terry Troxel
I could sure use some help getting a grasp of where to start learning how to create mobile websites for Iphones and Android using coldfusion. Terry Troxel ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com

RE: Adding a border to text using CFImage

2012-02-21 Thread Terry Troxel
Leigh, Here is my test page using the Basic Example as you said: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titleUntitled/title /head body cfset wordart = createObject(component, wordart).init() / cfoutput #wordart.getArt(CFWheels is the future and the

RE: Adding a border to text using CFImage

2012-02-21 Thread Terry Troxel
Yes, I thought I stated that somewhere in the original thread. I tried it in CF9 and it works, thank you a bunch leigh for putting up with my lack of knowledge. So this cfc will not work using CF8 or could you show me a way to call it in there? Terry

RE: Adding a border to text using CFImage

2012-02-21 Thread Terry Troxel
LEIGH, This is crazy again. I uploaded the folder with the test.cfm and the cfc to a CF9 server and as I said it worked. I sent you my last reply stating that. Went back and reran the file and I get red x's where the demo images were but the plain text is there net to the red x. I deleted the

Re: Adding a border to text using CFImage

2012-02-21 Thread Terry Troxel
Leigh it went from better to worse. I said it worked when I put the 3 files in a folder off wwwroot called wordart in my laptop with CF 9. It works perfectly. I then uploaded it to my windows 2003 server with CF 9 into a sub folder called wordart in my website. It worked PERFECTLY ONCE. now if I

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
Gerald, Thank you almighty Digital Pack Rat smiling Really Thank you. I haven't opened it yet, but I am on my way. Terry -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Sunday, February 19, 2012 6:55 PM To: cf-talk Subject: Re: Adding a border to text using

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
Leigh, I removed the 2 lines and pasted in the example lines with a semi colon at the end. The result is a solid image, but no stroke. Here's what I added: // color in the text Color = createObject(java, java.awt.Color); graphics.setColor( Color.decode(##80aa1c) ); graphics.fill(

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
Gerald, I cannot believe all the things this cfc is supposed to do, but it keeps throwing errors about missing arguments and I can't find anything wrong. Missing argument name C:\inetpub\wwwroot\1wordart\index.cfm: line 105 103 : Output: 104 : p 105 : #wordart.getArt(text=CFWheels is

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
This is the complete code which displays the text perfectly in GREEN with NO border. I am at a loss. Terry cfscript width = 330; height = 150; text = Crossfade; // Create a new image that supports transparency transparentImage = ImageNew(, width, height, argb); graphics

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
Thanks Leigh, I finally got it all pieced together and it works as you said it would. Is there anywhere I can find documentation that will allow me to resize the fontsize and the stroke width and maybe make the stroke go outside instead of inside? Obviously I am not a java pro like you and I do

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
Well when I play with the numbers in the code it seems if I raise the init setting it widens the stroke/border, but the thickness seems to go inwards instead of outwards from the outside edge of the text. Is that a better explanation? His code is awesome, I just would like to know how to size

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
Lei- Exactly right. In Photoshop its done with layers and stroke and the stroke can be Inside, outside and middle. I just sent a request to sam...@codecurry.com asking if his wordart.cfc is still active and open source. Hopefully he will reply as the documentation as to what it can do is awesome

RE: Adding a border to text using CFImage

2012-02-20 Thread Terry Troxel
Leigh, All I did was to run the index as is. I do not know where to change the syntax which is probably why I am getting errors. Terry ~| Order the Adobe Coldfusion Anthology now!

Adding a border to text using CFImage

2012-02-19 Thread Terry Troxel
I have searched all over and so far am empty handed trying to put a color border or stroke around text created with CFImage. I also own Efflare's Imageflare and don't see anything in there either. If someone has any suggestions or links, I would appreciate it greatly. Terry

Sending an email by fax solution

2012-01-25 Thread Terry Troxel
Any suggestions as to a good solution to have an email sent to a fax service from my website in CF? Terry ~| Order the Adobe Coldfusion Anthology now!

RE: IP Geolocation API?

2012-01-23 Thread Terry Troxel
GEOIP Try Maxmind they have a free version. -Original Message- From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] Sent: Monday, January 23, 2012 1:09 PM To: cf-talk Subject: IP Geolocation API? Anybody know of any API services out there (free would be best) that allow the

RE: Richtext Editor Woes

2012-01-03 Thread Terry Troxel
an image manager that I think puts CKFinder in the weeds and is Open source. Terry Troxel ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive

Richtext Editor Woes

2011-12-30 Thread Terry Troxel
Is it possible to safely use FCKeditor with image/file uploading completely disabled and still be able to browse your sites image folder to insert images? If it is still posible I sure could use some help doing that please. I am running the Standalone version installed under the administration

CFimage to draw a triangle

2011-12-25 Thread Terry Troxel
Could someone show me the proper way to draw a filled triangle using CFimage? Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

CF 8 32 bit standard on win server 2008 r2 64 bit

2011-12-22 Thread Terry Troxel
Can I run CF 8 32 bit standard on a Win server 2008 r2 64 bit machine? Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

KCfinder with CKeditor and Coldfusion?

2011-12-07 Thread Terry Troxel
Anyone have any success with KCeditor integration into CKeditor? I do not need file uploading of any kind, just to be able to browse to a predefined image directory Under the website root to insert images stored there. Any help would be appreciated. Terry

RE: KCfinder with CKeditor and Coldfusion?

2011-12-07 Thread Terry Troxel
/month On Thu, Dec 8, 2011 at 10:25 AM, Terry Troxel terry.tro...@gmail.com wrote: Anyone have any success with KCeditor integration into CKeditor? I do not need file uploading of any kind, just to be able to browse to a predefined image directory Under the website root to insert images

RE: Fckeditor Security Issues

2011-12-03 Thread Terry Troxel
Russ, Thank you for your reply, but you missed my point. I am looking for any Secure methods of locking down My (F)ckeditor's File Browser as I stated I am not A security expert nor do I know how to program in Java. I do not know how to re-enable the file browser and Lock it down. I just

RE: Fckeditor Security Issues

2011-12-03 Thread Terry Troxel
Russ, I am using the standalone editor and have been since the first attacks over a year ago, but the last couple of Coldfusion security patches have made the image browser inoperable in the standalone as well. I have file and image uploading disabled and allow users to only see the image folder

RE: Fckeditor Security Issues

2011-12-03 Thread Terry Troxel
is related to CF and not to fckeditor. On Sat, Dec 3, 2011 at 5:03 PM, Terry Troxel terry.tro...@gmail.com wrote: Russ, I am using the standalone editor and have been since the first attacks over a year ago, but the last couple of Coldfusion security patches have made the image browser

RE: Fckeditor Security Issues

2011-12-03 Thread Terry Troxel
Russ, Either I am speaking a different language then you or you are toying with me. I have spent an entire day reading your replies and have learned nothing. All I asked in the last post was How else do I make sure the built-in version not the standalone is disabled. Which in my language means

RE: Fckeditor Security Issues

2011-12-03 Thread Terry Troxel
Ok, so that's handled. Why will my standalone still giving me the xml error? Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Fckeditor Security Issues

2011-12-02 Thread Terry Troxel
Am I correct in assuming the Adobe has turned off the Image Browser functionality entirely in Fckeditor in CF 8 9? Yes I have seen all sorts of posts trying to bypass this, but not Being a security expert myself or a Java programmer I sure would Like to hear from any of you out there what is

FCKEditor.. XML Request error: Access denied (403)

2011-11-02 Thread Terry Troxel
Coldfusion 9, just started has been working fine on all the websites until today when using FCKEditor to browse server for an image. Any Ideas? Java recently Updated. Terry ~| Order the Adobe Coldfusion Anthology now!

CF9 - Server 2008 r2 ODBC SOCKET Issue

2011-10-22 Thread Terry Troxel
I have CF9 Enterprise on a WIN Server 2008 R2 box running fine. I have QODBC installed and it is connecting to my Quickbooks just fine. I go into CF Admin and add a datasource, type in the datasource name, and select ODBC SOCKET as the driver. The next screen has a dropdown to select the ODBC

RE: CF9 - Server 2008 r2 ODBC SOCKET Issue

2011-10-22 Thread Terry Troxel
Russ any chance I could call you on this so I don't screw up my server? And yes it's a 64 bit machine and OS and CF9 64. Terry Troxel -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Saturday, October 22, 2011 9:35 AM To: cf-talk Subject: Re: CF9 - Server 2008

RE: CF9 - Server 2008 r2 ODBC SOCKET Issue

2011-10-22 Thread Terry Troxel
On Sat, Oct 22, 2011 at 5:23 PM, Terry Troxel terry.tro...@gmail.com wrote: I have CF9 Enterprise on a WIN Server 2008 R2 box running fine. I have QODBC installed and it is connecting to my Quickbooks just fine. I go into CF Admin and add a datasource, type in the datasource name

RE: Coldfusion Hosting

2011-09-29 Thread Terry Troxel
I have been using a vps at AHPHOSTING.net for well over 3 years now and have been down a grand total of 4 hours during 3 events. I am very happy with my experience there. Sometimes as in this case smaller is better. And also in this case COLDFUSION is PRIMARY! Terry -Original Message-

NEW CF9 Install on win server 2008

2011-09-21 Thread Terry Troxel
I am in the CFAdmin data services and am trying to add my first datasource (Access). After putting in the path to the database and submitting, I get an error: Unable to update the NT registry. Variable DRIVERPATH is undefined. I have no idea where to proceed from here. Terry Troxel

RE: CFFORM or Jquery Form Validation

2011-08-29 Thread Terry Troxel
Al, Now that's what I call perfection. Thank you very much and I am not going to copy your code as I already finished Sunday My old school method. I too am not great with javascript or jquery, but am starting to try getting into it So I don't get left completely behind. I have no use for

CFFORM or Jquery Form Validation

2011-08-28 Thread Terry Troxel
AJAX or CFFORM, so I can learn something new today. I would like to see as many examples as I can if possible. Thank you, Terry Troxel ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp

Re: CFFORM or Jquery Form Validation

2011-08-28 Thread Terry Troxel
. I am really looking to do it in one form with 3 text fields and at least one being required but accepting all if text is entered. Am I explaining myself properly? Terry On Sun, Aug 28, 2011 at 1:46 PM, Cameron Childress camer...@gmail.comwrote: On Sun, Aug 28, 2011 at 1:19 PM, Terry Troxel

RE: CFFORM or Jquery Form Validation

2011-08-28 Thread Terry Troxel
Cameron, I did as you said and downloaded the framework. I read the quick start and the pdf and it is way over this guy's head. I ended up using cfform and checkboxes which passed the list onto the next page To a loop which then displayed the text input for which ever the user checked off. Works

Safe, Secure Image Upload

2011-08-10 Thread Terry Troxel
I am building a demo website to promote a new web template approach for small business owners to manage their site. I want them to be able to upload a picture and try out the toolset I provide them using Coldfusion and various Custom tags I have purchased through the ages. My concern is how

Re: loop timing out

2011-06-29 Thread Terry Troxel
What am I doing wrong here as nothing shows up even with debugging turned on. The S drive is a mapped network drive. If mapped drive is the issue, is there any way around it? Terry ~| Order the Adobe Coldfusion Anthology now!

Re: loop timing out

2011-06-29 Thread Terry Troxel
It just might help if I pasted in the code.sorry. On Wed, Jun 29, 2011 at 12:19 PM, Terry Troxel terry.tro...@gmail.comwrote: What am I doing wrong here as nothing shows up even with debugging turned on. The S drive is a mapped network drive. If mapped drive is the issue, is there any

CFDIRECTORY of a mapped network drive

2011-06-29 Thread Terry Troxel
It just might help if I pasted in the code.sorry. What am I doing wrong here as nothing shows up even with debugging turned on. The S drive is a mapped network drive. If mapped drive is the issue, is there any way around it? Terry cfset dir=s:\ cfdirectory action=list

passing Coldfusion variables to an onclick link

2011-06-25 Thread Terry Troxel
How can I make a TD like the code below to change colors onmouseover as it does just fine, but instead of the alert href to a page when the TD is clicked? And I need it to pass a cf variable to that page like an href call: newpage.cfm?var=#var# table id=test border='1' cellspacing='0'

RE: passing Coldfusion variables to an onclick link

2011-06-25 Thread Terry Troxel
Thanks Bobby, works perfect. Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Inserting data using QODBC

2011-06-22 Thread Terry Troxel
If anyone is using the QODBC read/write driver, could you possibly post an example cfquery doing an insert into the customer table that works? I have not been able to accomplish this simple exercise as it gives me a crazy error: [macromedia][sequelink jdbc driver][QODBC] Error parsing complete

CFCONTENT in the background?

2011-06-16 Thread Terry Troxel
How can I pass content to Cfdocument and have it create and save a Pdf in the background without opening the Pdf? I then want to use Cfpdf to append this Pdf to an existing Pdf. I sure hope this is possible. Terry ~| Order

Homesite 5.5

2011-06-12 Thread Terry Troxel
Ok, Ok, all you old people have your memories while me as a 70 year old upstart can only go back to my C-64 days, which seems only last week ;) I REALLY like when you guys get discussing old school vs new school. I do have a quick question tho: What pointers do you have to makes sure a

RE: VPS Hosting

2011-06-01 Thread Terry Troxel
I give a Big Thumbs Up for AHPHOSTING.net. I have had very little down time in the 3 + years I have had a VPS with him and never any issues getting technical questions answered correctly. I think sometimes smaller is way better.

Using LIKE in CF8

2011-06-01 Thread Terry Troxel
I have been doing this forever with no problems until today. Can anyone spot my error(s)?: cfquery name=searcher datasource=rnc select * from leads where 0 = 0 cfif lname NEQ and lastname LIKE '#lname#%' /cfif /cfquery which give me this error: Error Executing Database Query.

Re: Using LIKE in CF8

2011-06-01 Thread Terry Troxel
Thank you...Gee I feel like a newbie.A simple typo. On Wed, Jun 1, 2011 at 3:29 PM, wrote: Too few parameters. Expected 1. This error means than 1 column name is unknown in the table. Here it must be lastname

vCAL formatting

2011-05-25 Thread Terry Troxel
Anyone know where to get info on formatting the Description field when using Coldfusion to write an vCAL .ICS file to import into Outlook Calendar. I am getting: PERSONS NAME PERSONS ADDRESS CITY, STATE ZIPCODE PHONE NUMBER I am using: cfset aDescription =

Linking Access to Outlook

2011-05-22 Thread Terry Troxel
I have linked to an external source in Access 2007 which is My Outlook Calendar. I can read the records in the table, but cannot modify the table in any way. I would like to insert an autonumber field to index on, but have been unable to Find a way. I plan on using this table in a query with

CFDocument as a task

2011-03-15 Thread Terry Troxel
I have a page that dynamically generates images and then displays the formatted output in a CFDocument that creates a 4 up pdf. This page takes some time to generate and I am wondering if there is any way I can call this when the user hits SUBMIT to a task That does this in the background and

Google Web Fonts API

2011-03-06 Thread Terry Troxel
functions, I would Be very interested in learning more. http://www.it-werks.com/googleapi/index.cfm Terry Troxel ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag

RE: Riaforge down?

2011-03-06 Thread Terry Troxel
I just went there and the page came right up. Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

ImageDrawText Fonts

2011-03-04 Thread Terry Troxel
When using ImageDrawText in CF8 on a Windows 2003 server can you create a text image with any font you have installed on the server? Also is there any way to use Google's font api within CF8's image tags? Terry ~|

RE: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Terry Troxel
Hey, is this the INTERNET world? Are we having a hard time finding the funds to have a big Coldfusion Extravaganza to host, participate in, attend, etc.? Why cannot some enterprising folks come up with some sort of Webinar that we can all attend and not have to leave our desk? Would you be

RE: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Terry Troxel
: Looking for CF/Adobe Network group in Chicago On Tue, Feb 8, 2011 at 5:55 PM, Terry Troxel terry.tro...@gmail.com wrote: Hey, is this the INTERNET world? Are we having a hard time finding the funds to have a big Coldfusion Extravaganza to host, participate in, attend, etc.? You mean like

RE: CFImage at 300dpi

2011-02-06 Thread Terry Troxel
...@whitestonemedia.com] Sent: Sunday, February 06, 2011 2:56 AM To: cf-talk Subject: RE: CFImage at 300dpi Terry, did you ever get a solution for your image resolution problem? Rick -Original Message- From: Terry Troxel [mailto:terry.tro...@gmail.com] Sent: Friday, February 04, 2011 7:25 PM To: cf-talk

RE: CFImage at 300dpi

2011-02-04 Thread Terry Troxel
Boy I hope my post didn't cause him any issues, and I am serious about that. If any of you know how to get face to face or at least a phone call, I sure think it Is him asking for help. Terry -Original Message- From: Michael Firth [mailto:mftr...@att.net] Sent: Friday, February 04,

CFImage at 300dpi

2011-02-03 Thread Terry Troxel
Is it possible using CFIMAGE to create images in 300dpi format for print quality reasons? I also have CFX_IMAGECR3 and CFX_IMAGEFLARE but their support doesn't reply lately even though their products are excellent. Terry ~|

RE: CFImage at 300dpi

2011-02-03 Thread Terry Troxel
You are exactly right Rick. Here is my problem: I am writing an online application for a local print shop that does RxPads for Doctors sold by Pharmaceutical Reps. A Pharmaceutical rep will be able to logon to create an Rxpad for his Doctor Client by selecting the Drug Bottle Image, Drug Logo

RE: CFImage at 300dpi

2011-02-03 Thread Terry Troxel
-talk Subject: RE: CFImage at 300dpi Why not create a PDF form formatted exactly as you need, and then use CF to populate the form fields? Seems like you'd get more control that way. --- Ben -Original Message- From: Terry Troxel [mailto:terry.tro...@gmail.com] Sent: Thursday, February

RE: CFImage at 300dpi

2011-02-03 Thread Terry Troxel
I agree I cannot find dpi either in CFIMAGE, but what about PIXEL SIZE, it is listed in IMAGEINFO. Is that related in any way? I am going to dig into Adobe acrobat and all of the CFPDF tags as Ben Forta suggested. From reading between the lines In the replies I could be wrong but this just might

RGBA Alpha channel

2011-01-10 Thread Terry Troxel
I CFIMAGE, CFX_IMAGECR3 AND CFX_IMAGEFLARE and so far am unable to create a png or a gif image With text on a transparent background. Would love an example if anyone has any suggestions. Terry ~| Order the Adobe

RE: RGBA Alpha channel

2011-01-10 Thread Terry Troxel
Thanks Alan, works great and I am glad you figured it out. Thanks to the rest of you as well, but I am asking for a way to create a PNG with colored text and a transparent background, not a totally transparent image. I just couldn't get a handle on CFX_IMAGEFLARE's rgba function calls that work

Issues with CF Document

2011-01-04 Thread Terry Troxel
I pasted in the example from the CF Documentation and added in my own jpg image. When I run the cfm file it shows ONLY the text bird with a red background and no image. When I comment out the cfdocument start and end tag the image appears. I know it is something I have done wrong, but I do not

RE: Issues with CF Document

2011-01-04 Thread Terry Troxel
I should learn to not trust all the code in the help examples. Good call Raymond and Thank You! Terry -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, January 04, 2011 10:24 AM To: cf-talk Subject: Re: Issues with CF Document Isn't the tag img and not

CF Admin Browse error

2010-12-14 Thread Terry Troxel
I am all of a sudden on my development box having issues with browsing inside cfadmin giving me an I/O error. It worked fine until last night. It is on XP Pro service pack3 and CF8 in Developer mode. I uninstalled both CF8 and Java. My Production server guy said download the jre 1.42. I

CF Admin Java Browser Errors

2010-12-14 Thread Terry Troxel
I am all of a sudden on my development box having issues with browsing inside cfadmin giving me an I/O error. It worked fine until last night. It is on XP Pro service pack3 and CF8 in Developer mode. I uninstalled both CF8 and Java. My Production server guy said download the jre 1.42. I

RE: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Terry Troxel
Is the site in question on a SHARED Server? I had this issue a while ago and it wasn't my site, but someone else's and it rewrote every default page on the entire server no matter what language. Just a thought. They could have modified the exploit to not only do index.html, index.cfm, etc. but

RE: br instead of br /

2010-11-29 Thread Terry Troxel
of br / Sorry to bother you then. No. There is no way to change the br / to br within the editor short of recoding it yourself. On Sat, Nov 27, 2010 at 10:43 AM, Terry Troxel terry.tro...@gmail.com wrote: Phillip, Not to cut you short, but does it matter and yes that is what I am doing now

RE: br instead of br /

2010-11-29 Thread Terry Troxel
Guys, This is the Approved method by Fckeditor FOR Fckeditor. I WAS using search replace but with this method I just edit the Fckeditor JS config file and I am done and can go onto more pressing matters. And if I want it to render proper xhtml, I change it to that Doctype. Why make our

Dreamweaver Templates for us programmer types

2010-11-29 Thread Terry Troxel
This is OT, but maybe some in our community have conquered this. I tried to find a legitimate site to enable me to put Dreamweaver/CSS templates On a website I am putting together to sell my programming skills and let potential Clients pick a graphic design and add the template price to my

br instead of br /

2010-11-27 Thread Terry Troxel
Here's my problem. I need to know if there is a setting in Fckeditor that will cause it to parse a page break as br instead of br /. Terry ~| Order the Adobe Coldfusion Anthology now!

RE: br instead of br /

2010-11-27 Thread Terry Troxel
at 9:13 AM, Terry Troxel terry.tro...@gmail.com wrote: Here's my problem. I need to know if there is a setting in Fckeditor that will cause it to parse a page break as br instead of br /. Terry ~| Order the Adobe

RE: br instead of br /

2010-11-27 Thread Terry Troxel
Claude, My sentiments exactly. But I created 2 CFM files that called Fckeditor the same way: cfparam default= name=pagecontent body form method=post action=header.cfm cfmodule template=fckeditor/fckeditor.cfm basePath=fckeditor/ instanceName=pagecontent value='#pagecontent#' width=760

RE: br instead of br /

2010-11-27 Thread Terry Troxel
a Replace and have it look for BR / and replace it with BR after fckeditor is done with it? On Sat, Nov 27, 2010 at 9:30 AM, Terry Troxel terry.tro...@gmail.com wrote: I stated page break when I meant line break but here's what Google says: Definition and Usage The br tag inserts a single line break

Homesite Comment Command

2010-11-14 Thread Terry Troxel
I don't know if this is OT or not. I Homesite 5+ in CFML Basic the !--- comment command gives you this: !--- --- Where can I change that to output: !-- -- as W3C doesn't validate with the 3 dashes? Terry ~| Order the Adobe

RE: Homesite Comment Command

2010-11-14 Thread Terry Troxel
then just ignore the comments. Russ -Original Message- From: Terry Troxel [mailto:terry.tro...@gmail.com] Sent: 14 November 2010 22:21 To: cf-talk Subject: Homesite Comment Command I don't know if this is OT or not. I Homesite 5+ in CFML Basic the !--- comment command gives you

RE: Homesite Comment Command

2010-11-14 Thread Terry Troxel
remember having trouble with cf comments in W3C validator. Azadi On 15/11/2010 07:54 , Terry Troxel wrote: Russ thanks for answering. I guess I wasn't specific enough. Is there a keyboard shortcut command to do the html comment in Homesite? I use Coldfusion in my Site Admin for my clients

RE: Homesite Comment Command (please read before replying)

2010-11-14 Thread Terry Troxel
Ok, let's see if I can clarify my request. I am requesting a way, any way to possibly create a keyboard shortcut within Homesite to let me create a HTML comment in my pages. I do not know how to create this and am asking for help in that regard only. I have had quite a few replies and thanks

RE: Homesite Comment Command

2010-11-14 Thread Terry Troxel
THANK YOU, Thank you. Problem solved. You made my day Kym. Terry -Original Message- From: Kym Kovan [mailto:dev-li...@mbcomms.net.au] Sent: Sunday, November 14, 2010 4:14 PM To: cf-talk Subject: Re: Homesite Comment Command On 15/11/2010 10:54, Terry Troxel wrote: Russ thanks

RE: jquery

2010-11-07 Thread Terry Troxel
Monique, If your style sheet is called after the jquery stylesheet you might Be defining something that wipes out a jquery call. Terry -Original Message- From: Monique Boea [mailto:moniqueb...@gmail.com] Sent: Sunday, November 07, 2010 5:08 AM To: cf-talk Subject: Re: jquery But the

RE: Getting rid of maliceous code embedded in a jpg

2010-11-06 Thread Terry Troxel
in a jpg On Fri, Nov 5, 2010 at 8:27 PM, Terry Troxel wrote: I am trying to allow perspective clients to try my templates image tools in order to see if it will help sway them. I do not have any image samples with malicious code nor do I want any. My question is if I use the coldfusion image

RE: Formatting the output of a text datatype

2010-11-06 Thread Terry Troxel
You just might try Fckeditor for your text datatype entries as it has Paste from word which strips all the various MS formatting. You can modify the menubar to only include the Controls that are needed. Terry -Original Message- From: Monique Boea [mailto:moniqueb...@gmail.com] Sent:

Getting rid of maliceous code embedded in a jpg

2010-11-05 Thread Terry Troxel
I am trying to allow perspective clients to try my templates image tools in order to see if it will help sway them. I do not have any image samples with malicious code nor do I want any. My question is if I use the coldfusion image tags or my trusty cf_imagecr after the upload will it remove

Getting rid of maliceous code embedded in a jpg

2010-11-05 Thread Terry Troxel
I am trying to allow perspective clients to try my templates image tools in order to see if it will help sway them. I do not have any image samples with malicious code nor do I want any. My question is if I use the coldfusion image tags or my trusty cf_imagecr after the upload will it remove

Fckeditor html vs xhtml

2010-10-18 Thread Terry Troxel
Is there anyway to configure Fckditor so when it writes richtext in CF8 it switches between shorttag and longtag? Ie: br br / foe example. Terry ~| Order the Adobe Coldfusion Anthology now!

Using cfimage to create a png with a transparent background

2010-10-03 Thread Terry Troxel
Can someone show me an example of using cfimage to create a png or gif of text from a variable where the image has a transparent background? Terry ~| Order the Adobe Coldfusion Anthology now!

Coldfusion and SmarterMail

2010-10-01 Thread Terry Troxel
Has anyone come across a way to use coldfusion to automatically add users to a SmarterMail Mailing List? Terry ~| Order the Adobe Coldfusion Anthology now!

RE: Moving to Apache

2010-09-03 Thread Terry Troxel
I would love to install Apache on my laptop/windows7 for a development server, but have no idea how to set it up where I can put the 192.168.1.8 testdomain.com in the hosts file and then add the website in Apache because IIS only allows 1 default site unless its running on a server. Anyone have

RE: Moving to Apache

2010-09-03 Thread Terry Troxel
Terry, you edit the hosts file exactly as you do now, it makes no difference that you are using Apache. The hosts file is simply telling your machine to resolve a domain to a specific IP address, e.g. your local machine. IIS6 only allows 1 site to be active at a time, but you can have multiple

  1   2   3   >