RE: cflocation and long urls

2013-08-28 Thread Kevin Parker
My guess is your + signs may be seen as a space unless that's what you intended. I have seen this on the odd occasion but mainly on an older system on our Intranet. ++ Kevin Parker ++ -Original Message- From: Rob Voyle [mailto:robvo...@voyle.com] Sent: Wednesday, 28

RE: cflocation and long urls

2013-08-28 Thread Russ Michaels
Try urlencodedformat Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 28 Aug 2013 10:50, Kevin Parker tras...@internode.on.net wrote: My guess is your + signs may be seen as a space unless that's what you intended. I have seen this on the odd occasion but mainly

Database extraction

2013-08-28 Thread Kevin Parker
I need to extract a SQL database including tables and data and stored procedures from a CF(8) web host. They provide myLittleAdmin which doesn't seem overly elegant in this situation. Does anyone have any suggestions please. The host doesn't support connecting via SQL Management Studio either.

Re: Database extraction

2013-08-28 Thread Russ Michaels
If they do not provide remote access and you cannot do it with mylittleadmin then just them to give you a backup of the db. Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 28 Aug 2013 11:16, Kevin Parker tras...@internode.on.net wrote: I need to extract a SQL

RE: Database extraction

2013-08-28 Thread Kevin Parker
Thanks Russ - that was my next option because they like to slug you for the privilege. ++ Kevin Parker ++ -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Wednesday, 28 August 2013 8:31 PM To: cf-talk Subject: Re: Database extraction If they

RE: Database extraction

2013-08-28 Thread Russ Michaels
If they provide you with no way to get a backup yourself then they cannot really charge you. You might want to suggest MyLittleBackup to them Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 28 Aug 2013 11:37, Kevin Parker tras...@internode.on.net wrote: Thanks

Re: cflocation and long urls

2013-08-28 Thread Rob Voyle
Hi Kevin I doubt that the + is the problem as it is now working fine as a relative link which includes the + / and = Rob On 28 Aug 2013 at 19:49, Kevin Parker wrote: My guess is your + signs may be seen as a space unless that's what you intended. I have seen this on the odd occasion but

dropped session values

2013-08-28 Thread Stephens, Larry V
Recently we have experienced an issue with Windows 7, once with Firefox, once with IE, of session variables being dropped. Everything is up to date with patches. This is stable programming that's in use at other workstations (equipped the same) and working fine. I don't know if we solved the

RE: dropped session values

2013-08-28 Thread Robert Harrison
Have you verified the CFID and CFTOKEN are being accepted in the browser you're having a problem with? Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F

RE: dropped session values

2013-08-28 Thread Robert Harrison
CFID and CFTOKEN cookies, I mean. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog:

Re: dropped session values

2013-08-28 Thread Russ Michaels
one possible cause is too many cookies on the client machine, sometimes you just have to clear your cookies out every so often, otherwise this happens and you login to websites and keep getting kicked back to login page as your browser cannot accept any new cookies.

json - check username

2013-08-28 Thread Torrent Girl
Hello I am trying this simple json code http://ja.mesbrown.com/2009/10/coldfusion-and-jquery-using-ajax-to-call-a-cfc-and-return-json/ and no matter where I put my CFC, I get the following message. Any thoughts? ReferenceError: $ is not defined $.getJSON(validate.cfc, {

Re: json - check username

2013-08-28 Thread Dave Watts
I am trying this simple json code http://ja.mesbrown.com/2009/10/coldfusion-and-jquery-using-ajax-to-call-a-cfc-and-return-json/ and no matter where I put my CFC, I get the following message. Any thoughts? ReferenceError: $ is not defined $.getJSON(validate.cfc, { That's a

Re: json - check username

2013-08-28 Thread Matt Quackenbush
That seems to indicate that jQuery isn't loaded, or perhaps you have another js library that is in conflict with jQuery. On Wed, Aug 28, 2013 at 12:55 PM, Torrent Girl moniqueb...@gmail.comwrote: Hello I am trying this simple json code

Re: json - check username

2013-08-28 Thread Russ Michaels
Hi Monique, you need to make sure that you are definately loading JQUERY, otherwise the $ function wont exist. On Wed, Aug 28, 2013 at 5:55 PM, Torrent Girl moniqueb...@gmail.com wrote: Hello I am trying this simple json code

test

2013-08-28 Thread Torrent Girl
test ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356592

Re: test

2013-08-28 Thread Wil Genovese
fail :D Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. On Aug 28, 2013, at 12:20 PM, Torrent Girl moniqueb...@gmail.com wrote: test

RE: dropped session values

2013-08-28 Thread Stephens, Larry V
My recollection (it's been 2-3 weeks since this happened) was I did look and did see them. -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Wednesday, August 28, 2013 10:38 AM To: cf-talk Subject: RE: dropped session values Have you verified the

json ReferenceError: $ is not defined error

2013-08-28 Thread Monique Boea
hello all I am attempting to implement this simple checkusername code: http://ja.mesbrown.com/2009/10/coldfusion-and-jquery-using-ajax-to-call-a-cfc-and-return-json/ No matter where I put my cfc, I get a json ReferenceError: $ is not defined error. Any thoughts?

Re: json ReferenceError: $ is not defined error

2013-08-28 Thread Matt Quackenbush
As myself and others replied on your other identical thread: jQuery is not loaded or is in conflict with another library and $ is not defined. Make sure you have jQuery loaded. On Wed, Aug 28, 2013 at 2:24 PM, Monique Boea moniqueb...@gmail.com wrote: hello all I am attempting to

Re: json ReferenceError: $ is not defined error

2013-08-28 Thread Monique Boea
Sorry I don't see my posts on the site. Ok thanks On Wed, Aug 28, 2013 at 2:26 PM, Matt Quackenbush quackfu...@gmail.comwrote: As myself and others replied on your other identical thread: jQuery is not loaded or is in conflict with another library and $ is not defined. Make sure you

Re: json ReferenceError: $ is not defined error

2013-08-28 Thread Steve 'Cutter' Blades
You're referencing JQuery before the DOM has completely loaded. Wrap your custom scripts in a $(document).ready(function() { /*my stuff here*/ }); Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer

Re: json ReferenceError: $ is not defined error

2013-08-28 Thread Steve 'Cutter' Blades
And I'm so glad AVG caught that Blackhat when I was trying to help you. Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://cutterscrossing.com Co-Author Learning Ext JS 3.2 Packt Publishing 2010

coldfusion/html projects

2013-08-28 Thread Don
Hey folks, anyone looking for a side developer? Would be willing to take on any CF/HTML work large or small. Thanks ~| Order the Adobe Coldfusion Anthology now!

Re: coldfusion/html projects

2013-08-28 Thread Russ Michaels
We occasionally need cfdevs, send me your details/resume Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 28 Aug 2013 21:10, Don danfar...@hotmail.com wrote: Hey folks, anyone looking for a side developer? Would be willing to take on any CF/HTML work large or

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
Well Hostek have come back today and stated that they will not support the use of Gmail Apps on their servers any more. As it continues to stop sending mail, they have no clue as to why this started happening and have given up on the problem. Regards, Andrew Scott WebSite:

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Russ Michaels
If it is only gmail that is having this issue then I would say that a very likely cause is that you are exceeding the daily sending limit. This is even more likely if emails are being sent through the wrong account as other customers would using up your sending limit and vice versa. Russ

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
Well there is no way I can be reaching the daily limit, at the most around 50 emails a day is sent out which is a far cry from the limits that Google have in place. As I am now using a CNAME in the DNS for my mail server, that hasn't helped at all, it continues to stop sending. And if I am

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Russ Michaels
I presume you have checked your sent items to be sure? It may be that the cf problem has caused spam blocks to kick in and block the hostek server. Unfortunately if you are just using a free gmail account then you get no support so cannot contact google to find out. You could ask hostek if you

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Michael Dinowitz
Is there a pattern to the email TO address when the problem comes up? On Wed, Aug 28, 2013 at 7:25 PM, Andrew Scott andr...@andyscott.id.auwrote: Well there is no way I can be reaching the daily limit, at the most around 50 emails a day is sent out which is a far cry from the limits that

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
When you say checked sent items? If you mean do I go into my sent mail and see the mail sitting there? Then the answer is yes, that is how I know the mail is not being sent. You mean the CF mail logs? Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Russ Michaels
I mean checked the sent items for how many mails are being sent. Yes the cfmail logs. Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 29 Aug 2013 00:41, Andrew Scott andr...@andyscott.id.au wrote: When you say checked sent items? If you mean do I go into my sent

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
Michael, No there is no pattern, at least I can't see a pattern. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Aug 29, 2013 at 9:40 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: Is there a pattern to

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
Yes, Russ the amount of emails sent out is at most 50 a day, but averages around 20 a day. I have seen as low as 6 being sent before the problem has occurred again. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Aug

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Russ Michaels
If there are a lot of customers using gmail then it coulf be too many connections from same ip perhspd. Again as with the spam blocking you hsve no way to verify with a free gmail account. You could signup one of your domains for google apps so you can get support. Russ Michaels

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
This is Google Apps... Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Aug 29, 2013 at 10:16 AM, Russ Michaels r...@michaels.me.uk wrote: If there are a lot of customers using gmail then it coulf be too many

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Russ Michaels
Ffs, then just contact google support and ask them. Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 29 Aug 2013 01:20, Andrew Scott andr...@andyscott.id.au wrote: This is Google Apps... Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
Because even though I am using Google Apps, I am still considered to be using the free version of Google Apps. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Aug 29, 2013 at 10:45 AM, Russ Michaels r...@michaels.me.uk

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
And I don't believe this is a gmail issue either and seems to lead to a problem with / at Hostek itself. Here is what I do know. Obviously if the mail is using the ColdFusion default details, aka the relay Hostek have setup, the mail is sent. If I use the gmail server on hostek it will

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Russ Michaels
You can upgrade to google apps for business 30 day trial, during which time you can get support. Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 29 Aug 2013 01:53, Andrew Scott andr...@andyscott.id.au wrote: Because even though I am using Google Apps, I am still

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Byron Mann
When you say checked sent items? If you mean do I go into my sent mail and see the mail sitting there? Then the answer is yes, that is how I know the mail is not being sent. This statement is a bit off to me. Are you saying your Gmail sent items folder has the email in it, which was sent

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
Ok lets be clear this is not the normal gmail, only the smtp.gmail.com is being used to send the mail. But yes when you send mail using your google app account, the sent mail is sitting in the sent folder. This is how I found out about the spool connection issue to begin with, as many other

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Dave Watts
You can upgrade to google apps for business 30 day trial, during which time you can get support. I would not recommend this to anyone who wants to continue using Apps without paying after the trial is over. Google doesn't guarantee you can downgrade from the Apps for Business trial back to

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
Thanks Dave, I actually suspected that, but wasn't sure. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Aug 29, 2013 at 12:08 PM, Dave Watts dwa...@figleaf.com wrote: You can upgrade to google apps for business 30

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread .jonah
So the emails are going into the Sent folder on Google's mail servers but not getting to their recipients? That's implying they're getting to Google OK and it's a deliverability issue on their end not an issue with getting the messages from your CF server to Google. On 8/28/13 7:03 PM, Andrew

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread Andrew Scott
No, when the mail stops working there is nothing in the sent folder until the server is restarted. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Aug 29, 2013 at 12:22 PM, .jonah jonah@creori.com wrote: So the

commas and autosuggest

2013-08-28 Thread Monique Boea
hey guys/gals how do you deal with commas in values with autosugest? Thanks ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: