CF9/Windows how to push data to HTML page

2014-08-06 Thread Mike K
I have a radio station site, and I want to be able to update the pages automatically as events happen. For example on the section where it says what's on air now i want it to automatically change as the hour ticks over and the new show startsOr as the live call of the sports ends and we

Re: CF9/Windows how to push data to HTML page

2014-08-06 Thread John M Bliss
Are you talking about updating the page while end-user is looking at it? Or do you just need to have it updated on load / refresh? On Wed, Aug 6, 2014 at 8:03 AM, Mike K afpwebwo...@gmail.com wrote: I have a radio station site, and I want to be able to update the pages automatically as

Re: CF9/Windows how to push data to HTML page

2014-08-06 Thread Mike K
Ideally I'd like it updating while he's looking at it . rather the way Facebook does. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month On Wed, Aug

Re: CF9/Windows how to push data to HTML page

2014-08-06 Thread John M Bliss
Many ways to accomplish this: Check out alternatives to cfdiv here: https://github.com/cfjedimaster/ColdFusion-UI-the-Right-Way/blob/master/chapters/cfdiv/index.md JQuery example (you'd use a Javascript timer instead of the button): http://jsfiddle.net/ZPYUS/ etc On Wed, Aug 6, 2014 at 8:23

Unable To display Arabic text fetched SQL Server 2008 database into my CFM page

2014-08-06 Thread Sathyanarayanan Ramanathan
Dear Friends, Few days before I was trying to insert Arabic text into my ColdFusion application with oracle database. And finally it worked for me as I mentioned in previous mail chain below. *Steps taken:* *Oracle side:* I created the new database with NLS_CHARACTERSET as AL32UTF8 and

Re: Unable To display Arabic text fetched SQL Server 2008 database into my CFM page

2014-08-06 Thread Bobby
Last time, my suggestion was to make sure the Enable High ASCII characters and Unicode for data sources configured for non-Latin characters² setting was enabled on your CF datasource but that was before I realized it was an oracle datasource. If you are using a SQL Server datasource this time,

Re: Unable To display Arabic text fetched SQL Server 2008 database into my CFM page

2014-08-06 Thread Paul Hastings
On 8/6/2014 8:28 PM, Bobby wrote: Last time, my suggestion was to make sure the Enable High ASCII characters and Unicode for data sources configured for non-Latin characters� setting was enabled on your CF datasource but that was before I realized it was an oracle datasource. If you are

Re: Unable To display Arabic text fetched SQL Server 2008 database into my CFM page

2014-08-06 Thread Paul Hastings
On 8/6/2014 8:17 PM, Sathyanarayanan Ramanathan wrote: *Issue 1: *Now I have existing SQL server 2008 db with Arabic text data in some table columns. But when I try to fetch display using CF even after adding charset in meta tag cfprocessingdirective as UTF-8 all Arabic text appeared as

Re: Unable To display Arabic text fetched SQL Server 2008 database into my CFM page

2014-08-06 Thread Bobby
He said the arabic text was actually in the database but only ??? when retrieving/displaying with CF. Wouldnt it be garbage IN the db if it wasnt an nchar/nvarchar data type? On 8/6/14, 12:21 PM, Paul Hastings p...@sustainablegis.com wrote: On 8/6/2014 8:17 PM, Sathyanarayanan Ramanathan

(Semi-OT) - site sucker app

2014-08-06 Thread Michael Dinowitz
Does anyone have a suggestion for a good application that can be pointed to an url and then download every page under that url. For example, if I want to view all of the Google maps documents offline I can point the app at https://developers.google.com/maps and it'll get me all of the faq, the

Re: (Semi-OT) - site sucker app

2014-08-06 Thread John M Bliss
This is what I've used in the past: https://softbytelabs.com/en/BlackWidow/ On Aug 6, 2014 8:32 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: Does anyone have a suggestion for a good application that can be pointed to an url and then download every page under that url. For example,

Auto File Uploading...

2014-08-06 Thread Phillip Vector
So I have a server that reads a file that is submitted to it and processes the contents. I can not touch this server and change any settings on it.. I want to take a file I have (Let's call it data.txt) and upload it to the server once an hour. I can just reload the page once an hour or I can

Re: (Semi-OT) - site sucker app

2014-08-06 Thread Ricardo Russon
I've always just used wget. On Thu, Aug 7, 2014 at 10:35 AM, John M Bliss bliss.j...@gmail.com wrote: This is what I've used in the past: https://softbytelabs.com/en/BlackWidow/ On Aug 6, 2014 8:32 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: Does anyone have a

Re: Auto File Uploading...

2014-08-06 Thread John M Bliss
In short, no. You'd have to deliver file to server via email / FTP / etc. On Aug 6, 2014 8:36 PM, Phillip Vector vec...@mostdeadlygame.com wrote: So I have a server that reads a file that is submitted to it and processes the contents. I can not touch this server and change any settings on

Re: Auto File Uploading...

2014-08-06 Thread Phillip Vector
Damm security! :) Thanks. On Wed, Aug 6, 2014 at 5:39 PM, John M Bliss bliss.j...@gmail.com wrote: In short, no. You'd have to deliver file to server via email / FTP / etc. On Aug 6, 2014 8:36 PM, Phillip Vector vec...@mostdeadlygame.com wrote: So I have a server that reads a file

Re: Auto File Uploading...

2014-08-06 Thread John M Bliss
...or HTTP post. On Aug 6, 2014 8:39 PM, John M Bliss bliss.j...@gmail.com wrote: In short, no. You'd have to deliver file to server via email / FTP / etc. On Aug 6, 2014 8:36 PM, Phillip Vector vec...@mostdeadlygame.com wrote: So I have a server that reads a file that is submitted to it

Re: Auto File Uploading...

2014-08-06 Thread Phillip Vector
Yes... HTTP post... That's what I'm trying to do.. Is there a way? (don't tease) On Wed, Aug 6, 2014 at 5:42 PM, John M Bliss bliss.j...@gmail.com wrote: ...or HTTP post. On Aug 6, 2014 8:39 PM, John M Bliss bliss.j...@gmail.com wrote: In short, no. You'd have to deliver file to server

Re: Auto File Uploading...

2014-08-06 Thread John M Bliss
In other words, if you have CF running locally, you could write something that performs a cfhttp post to server...mimicking browse, select file, click submit. On Aug 6, 2014 8:42 PM, John M Bliss bliss.j...@gmail.com wrote: ...or HTTP post. On Aug 6, 2014 8:39 PM, John M Bliss

Re: Auto File Uploading...

2014-08-06 Thread Ricardo Russon
This isn't the right tool for the job. But this code seems to work. !DOCTYPE html html head title/title /head body cfif StructKeyExists(FORM , 'fieldnames') cfdump var=#FORM# / scriptsetTimeout(function(){window.history.back();} , 2000);/script cfelse

Re: Auto File Uploading...

2014-08-06 Thread Phillip Vector
Thank you very much. Both of you. On Wed, Aug 6, 2014 at 5:49 PM, Ricardo Russon ricardo.rus...@gmail.com wrote: This isn't the right tool for the job. But this code seems to work. !DOCTYPE html html head title/title /head body cfif StructKeyExists(FORM , 'fieldnames') cfdump

Re: (Semi-OT) - site sucker app

2014-08-06 Thread Gerald Guido
http://www.httrack.com/ is, IMHO, outstanding. HTH G! *Gerald Anthony Guido* Nullius in verba http://en.wikipedia.org/wiki/Nullius_in_verba -- Horace Twitter https://twitter.com/CozmoTrouble Facebook https://www.facebook.com/gerald.guido.9 On Wed, Aug 6, 2014 at 8:36 PM, Ricardo Russon

Re: Unable To display Arabic text fetched SQL Server 2008 database into my CFM page

2014-08-06 Thread Paul Hastings
On 8/7/2014 6:16 AM, Bobby wrote: He said the arabic text was actually in the database but only ??? when retrieving/displaying with CF. Wouldnt it be garbage IN the db if it wasnt an nchar/nvarchar data type? could be already garbaged as far as cf unicode go. in the bad old days (pre

Re: TC's and Privacy Policy

2014-08-06 Thread Christopher Bowyer
Looks good! However, the last two lines of the Web Site Terms and Conditions of Use: General Terms and Conditions applicable to Use of a Web Site. - 2 - and the last line of the Privacy Policy: [Note1]Internet Web Site Privacy Policy. look like they don't belong. Could you advise on this

Re: Auto File Uploading...

2014-08-06 Thread Byron Mann
Sounds like curl or wget would do the trick. Byron Mann Lead Engineer Architect HostMySite.com On Aug 6, 2014 8:36 PM, Phillip Vector vec...@mostdeadlygame.com wrote: So I have a server that reads a file that is submitted to it and processes the contents. I can not touch this server and