Re: Embedding CF in CMS Content

2015-04-17 Thread Akos Fortagh
We needed to do something similar and we actually wrote the content to a file and included that. It worked perfectly. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?

Re: Accessing data returned from json call

2015-03-06 Thread Akos Fortagh
Hi, your CFC should just simply return the array and there's no need for #serializeJSON(data)#, so assume you're populating the array correctly just do Then modify your ajax statement to something like the following: $.ajax({ type: "get", url:"data.cfc?returnformat=json, dat

images are rotated on ipads/iphones

2014-09-10 Thread Akos Fortagh
Hi guys, I really need help. It's not a CF issue but I wanted to see if anyone else may have come across similar. If you look at this page on a PC or android tablet all thumbnail images are fine, if you look at it on ipad/iphone some thumbnails (not all) are rotated 90 degrees. All images wer

Re: Scheduled Tasks Running Twice

2014-04-01 Thread Akos Fortagh
we had this when tech support told us that our old server was shut down, then we found it wasn't and it was still executing the scheduled tasks. What does the scheduler log tell you? ~| Order the Adobe Coldfusion Anthology now!

Re: Printing barcode labels from CF

2014-03-25 Thread Akos Fortagh
Sorry if I misunderstand the issue. I've used cfbarbecue http://cfbarbecue.riaforge.org/ in a number of apps with no problems. It simply uses to print the barcode to the screen. I opened that document in a small window and sent it to label printer using JS window.print(). Then using any label

Re: Frustrated and on a deadline please assist

2013-11-18 Thread Akos Fortagh
Does your CF return an array ? Jquery autocomplete is driven by an array as far as I know. You should have returntype="array" access="remote" in your CFC This is a complete CFC that works for me: SELECT productName FROMproducts

Re: Localization , French Accents...

2013-02-27 Thread Akos Fortagh
Not sure if this helps and depends what you're trying to do with the text, if you want to output them to a page, putting this at the top of the .cfm page should help. I had problems displaying foreign characters until I included the above on the pages. ~~

Re: How do I code French accents in a CFMail (HTML format) ?

2012-10-30 Thread Akos Fortagh
I have used cfmail to send out similar accented characters and it worked well by putting this at the very top of the page: Let me know if it works. CHeers ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adob

Re: ColdFusion .Net add new site in IIS integration

2012-10-25 Thread Akos Fortagh
Thanks Russ again for your help. We ended up using a totally different method. Instead of CF calling the .net object it calls a powershell script instead. Still a mystery why it wouldn't work though, very frustrating too Thanks again ~

Re: ColdFusion .Net add new site in IIS integration

2012-10-18 Thread Akos Fortagh
thanks Russ, we believe we have tried all that on your list and still getting the same error. We must be overlooking something obvious, but if you have any other suggestions we'd appreciate it. thanks again ~| Order the Adobe

ColdFusion .Net add new site in IIS integration

2012-10-18 Thread Akos Fortagh
Wondering if anyone might be able to help with this. We have created an application that adds a new site (and does other stuff too) into IIS on a remote server. Our function worked 100% perfectly and adding a site to IIS was a success until we moved to a new datacentre. As far as we know nothin

Re: inserting a new row at the top of CSV file

2012-07-10 Thread Akos Fortagh
thanks very much, it worked ~| 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/me

inserting a new row at the top of CSV file

2012-07-09 Thread Akos Fortagh
Unusual request I know, I have a CSV file with lots of rows but it has no headings, is there a way of inserting a new row at the top of the CSV file with some heading names? Any help would be greatly appreciated. ~| Order the

inserting a new row at the top of CSV file

2012-07-09 Thread Akos Fortagh
unusual request I know, I have a CSV file with lots of rows but it has no column headings. Is there a way of inserting a row at the top of the file (1st row) with the heading names? any help would be appreciated. thanks ~|

Re: Anyone use/used Flinthosts in the UK?

2012-06-15 Thread Akos Fortagh
Hi, I've used them for 6 years and found them to be excellent. Support responses are very quick. I'd definitely recommend them. Akos Fortagh ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-

Re: CF real time data updates possible?

2012-06-05 Thread Akos Fortagh
thank you for all your suggestions. much appreciated ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/c

CF real time data updates possible?

2012-06-03 Thread Akos Fortagh
Wondering if anyone has a good suggestion how I might be able to achieve the following without using flash if possible. I have a simple interface where logged in users fill out 10 multiple choice questions and at the end they get a score like 5 out of 10 etc. The odd thing is that they must be a

Re: random records no duplicates

2012-03-29 Thread Akos Fortagh
Massive thanks to everybody who helped especially to Bobby for an exact example, all works great. thanks again ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=hou

random records no duplicates

2012-03-29 Thread Akos Fortagh
hi there, wondering if someone might be able to help with this please. I have a simple questions table and I'm displaying one randomly generated question from it at a time. User clicks a button and the page reloads to give the next question. So far I have this simple bit working fine: SELECT

Re: Image Crop/Resize Tool

2012-02-25 Thread Akos Fortagh
Maybe this one? http://deepliquid.com/projects/Jcrop/demos.php I've implemented Jcrop before using ColdFusion, it's pretty simple to do. Jcrop will pass the x,y,width and height coordinates you need to crop the image in url variables. Then you can do: hope this helps ~

Re: CF datediff to SQL datediff

2012-02-08 Thread Akos Fortagh
thank you all for the suggestions, really helpful ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-ta

Re: CF datediff to SQL datediff

2012-02-08 Thread Akos Fortagh
thanks for the reply, I'm using mySQL ~| 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.c

CF datediff to SQL datediff

2012-02-08 Thread Akos Fortagh
Wondering if anyone might be able to help with this. I have products in the db that have offerStart and offerEnd dates and according to today's date they are on offer today or not, so the following works great when individually looking at the products and CF does the work: but now I need

Re: How many products in a specific category?

2011-12-21 Thread Akos Fortagh
Maybe not the most efficient way but you can loop through the GetCategories query and within each iteration of the loop get the associated product count using another query. Not tested but this should work: SELECT Products.ID, Products.CATEGORY FROM products

Re: How many products in a specific category?

2011-12-21 Thread Akos Fortagh
This maybe not the most efficient way but I have that working. SELECT * FROM products

hiding CF files

2011-11-06 Thread Akos Fortagh
Hi everyone, I'm developing my first off-line simple shop inventory application which will run on windows system in an a browser. I class myself as an intermediate developer so please forgive me if I'm asking something odd. Multiple users will have access to the same system on the same machine.

Re: cfobject dotnet assembly

2011-10-17 Thread Akos Fortagh
Thanks for your reply, I've managed to get it going finally, the only problem now is to work with .net assemblies that are not on the the same server but on a remote server so this c:\windows\system32\inetsrv\ is no longer appropriate. Any suggestion how I could do that? Thanks again ~~

cfobject dotnet assembly

2011-10-14 Thread Akos Fortagh
wondering if anyone has experience with using cfobject with .net assembly this is the testing code so far: This dumps out a list of methods can be used such as Add(), Delete() etc I'm interested in the Add() method which takes 3 parameters 2 strings and an integer like Add("param1","param2

cfobject .net assembly

2011-10-14 Thread Akos Fortagh
wondering if anyone has experience with using cfobject with .net assembly this is the testing code so far: This dumps out a list of methods can be used such as Add(), Delete() etc I'm interested in the Add() method which takes 3 parameters 2 strings and an integer like Add("param1","param2

encrypted files

2011-10-10 Thread Akos Fortagh
hi everyone, any suggestion about this would be very much appreciated. I have been given some work to make some changes to an existing site and all the .cfm and .cfc files are encrypted. The original developers are REFUSING to supply us with the decrypted version even though the client says they

Re: strict comma separated list

2011-09-21 Thread Akos Fortagh
Thank you Raymond, all helped a lot, much appreciated ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/c

strict comma separated list

2011-09-21 Thread Akos Fortagh
hi there, just wondering if someone could help me out on this. 1. I need to make sure a user enters a simple but strict comma separated list in a text box, looking out for duplicate commas like item1, item2,,item3 Also make sure there's no apostrophes entered etc so the list must be like item1,i

Re: Build drag and drop interface?

2011-09-03 Thread Akos Fortagh
please forgive my ignorance and I just joined in this thread but maybe you could try an extended version of what I built, it's just a very basic trial and error page to test out something but I think the 'skeleton' of what you might be looking for. Here: http://www.allconnected.co.uk/logical_ca

Re: google map suddenly not showing

2011-08-29 Thread Akos Fortagh
thank you for all your suggestions folks, like I mentioned this was developed before the time of CFMAP on CF 7, anyway I found out what the problem was. The JS array for the addresses to work correctly must be populated like this: var addresses = ['town1,postcode1','town2,postcode2','town3,postco

google map suddenly not showing

2011-08-28 Thread Akos Fortagh
hi folks, wondering of anyone has come across something similar. I have a site with a dynamic Google map showing where members are situated. This has been working for 2 years with no problems on a CF 7 server. We migrated over to a CF 9 server and the map is now not showing, not giving any erro

2 session arrays combined into 1

2011-08-10 Thread Akos Fortagh
Hi everyone, I'm stuck on this and it must be so simple but can't get my head round it. I have 2 different shopping cart arrays going at the same time because some products are handled differently to 'normal' products, know it's unusual but this is how it had to be. I also need to have a 3rd c

Re: coldfusion deployment

2011-08-02 Thread Akos Fortagh
thanks for all your messages/help so far, I guess what I really need help with is how to 'unpack' these binary files and indeed how to 'package' them back again, the only stuff I've looked at and come across is using CF servers packaging/deployment which creates .CAR ColdFusion archive files. T

coldfusion deployment

2011-08-02 Thread Akos Fortagh
hi there, I have been developing with CF for almost ten years and I'm not classing myself as an advanced developer, I'm still learning so do apologise if this sounds amateurish... I have some new site modification work coming in and the existing developers sent me this message. "The files tha

Re: social network application based on CF ?

2011-03-26 Thread Akos Fortagh
HI there, I just came across this thread via google. I've developed a social networking app in CF. It has many features like friend request, become friends with one another, news feed if someone become friends with somebody else, news feed on different things like if someone uploads a new pic

Re: social network application based on CF ?

2011-03-26 Thread Akos Fortagh
HI there, I just came across this thread via google. I've developed a social networking app in CF. It has many features like friend request, become friends with one another, news feed if someone become friends with somebody else, news feed on different things like if someone uploads a new pic

social networking app in CF

2011-03-25 Thread Akos Fortagh
HI there, I just came across this thread via google. I've developed a social networking app in CF. It has many features like friend request, become friends with one another, news feed if someone become friends with somebody else, news feed on different things like if someone uploads a new pic