It repeats itself!

2008-01-31 Thread Ali Majdzadeh
I wrote the following page to make a many-to-many relationship for a site 
search I need but when I test it it returns the product names several 
time.something like this: 
Product1Product1Product2Product2Product2Product1Product1Product3Product3Product3Product4Product4Product4Product4Product5Product5Product5Product5Product5Product5Product5Product5Product6Product6Product6
 
 the comolete code is below. How can I filter the data that it return only one 
copy of any product not two!
Thanks
Benifn

cfquery name=test datasource=mydatabase
SELECT Companies.CompanyID, Companies.CompanyName, Companies.ManagerName, 
Companies.SalesManagerName, Companies.CompanyCity, Companies.CompanyAdd, 
Companies.CompanyDesc, Companies.CompanyRank, 
Companies_Products.Companies_ProductsID, Companies_Products.CompanyID, 
Companies_Products.ProductID, Products.ProductID, Products.ProductName, 
Products.ProductDesc, Products.ProductImage, Products.ProductTypeID
FROM Companies AS Companies, Companies_Products AS Companies_Products, Products 
AS Products
WHERE Products.ProductID = Companies_Products.ProductID
and Companies.CompanyID = Companies_Products.CompanyID;
/cfquery
html xmlns=http://www.w3.org/1999/xhtml;
body
cfoutput query=test#ProductName#/cfoutput
/body
/html


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297855
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: It repeats itself!

2008-01-31 Thread Ali Majdzadeh
On Jan 31, 2008 2:30 PM, Ali Majdzadeh [EMAIL PROTECTED] wrote:

cfoutput#test.ProductName#/cfoutput would work, but i'm guessing
you want to display the product name once, and related data beneath
it?

http://tutorial150.easycfm.com/


-- 
Evelyn the dog, having undergone further modification pondered the
significance of short-person behaviour in pedal depressed,
pan-chromatic resonance, and other highly ambient domains. Arf, she
said.

Exactly. thanks a lot it works very great. Just a question. Does DISTINCT in 
SQL does the same thing or not? I know it won't be so great like grouping in 
CFQUERY but someone told me that I can show data once by using Distinct in SQL. 
Does it work here too or it is for other situation. THANKS IN ADVANCED AGAIN. 
the tutorial is great.
Benign 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297864
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Tutorial Collections (web_based tutorials)

2008-01-20 Thread Ali Majdzadeh
http://learncf.com

These are all new tutorials, all published last year and I have about 6 to
publish. The quantity isn't that high, but it's a new site.

Great site:
Thanks. It looks to be a good start. With a better categorization it will a 
great tutorial collection. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296917
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion Tutorial Collections (web_based tutorials)

2008-01-19 Thread Ali Majdzadeh
Hi:
I googled Coldfusion Tutorial Collection websites a lot but EasyCFM and Adobe 
were the major websites out there. It seems PHP and .NET tutorial collections 
are much more avaialable. Adobe tutorials are great but not enough and EasyCFM 
is not updated very fast (I checked and most of the tutorials were posted in 
2005-6) and now we have a very great new CF version I mean CF8 which has a 
great potential for a huge collection of tutorials to be made for. What do you 
think guys? I know Ben Forta's books are in the market and they are the best 
books and tutorials but free and web based tutorials will be a new motive for 
all the web developers to learn more about CF8 and get glued to the ease of use 
and beauty of CF8.
Thanks
Benign 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296888
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Dynamic menu with CFMENU, CFMENUITEM, reading items and links from a MS SQL database

2007-12-28 Thread Ali Majdzadeh
Hi:
I want to make an advanced dynamic menu (menus with submenu) with CFMENU, 
CFMENUITEM but I want to read the menu items and links from a MS SQL database. 
I googled but can't find a tutorial that shows me how to that. Please anybody 
can give me tutorial link or any example that I can learn how to make a menu 
that has several submenus and reads them from a MS SQL database.
Thanks
Benign 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295487
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dynamic menu with CFMENU, CFMENUITEM, reading items and links from a MS SQL database

2007-12-28 Thread Ali Majdzadeh
You know I tried this one http://tutorial16.learncf.com/ but got confused cause 
I didn't get what cfinvoke does there! Plus I didn't get how to set it the way 
that the right submenu goes under the proper menu. It seems the tutorial was 
too advanced for a beginer like me.
Thanks for your help.
Benign




 Well have you tried yet? The syntax for cfmenu and cfmenuitem is
 pretty simple. The syntax for queries is pretty simple as well. Do 
 you
 know how to loop over a query? What have you tried so far?
 
 On Dec 28, 2007 11:26 AM, Ali Majdzadeh [EMAIL PROTECTED] wrote:
  Hi:
  I want to make an advanced dynamic menu (menus with submenu) with 
 CFMENU, CFMENUITEM but I want to read the menu items and links from a 
 MS SQL database. I googled but can't find a tutorial that shows me how 
 to that. Please anybody can give me tutorial link or any example that 
 I can learn how to make a menu that has several submenus and reads 
 them from a MS SQL database.
  Thanks
  Benign
 
  


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295494
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


WebAssist DataBase Search extension doesnt work!

2007-12-24 Thread Ali Majdzadeh
Hi: I use DW8/CF8 and I tried to use this DW8 extension(WebAssist Database 
Search version 1.4.1) to make the search for the website. But the problem is at 
the end when I apply (I click finish) it returns an error about a javascript. 
Anyone has used it? Anyone has the same problem?
Thanks 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295325
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF8 shopping cart tutorial

2007-12-17 Thread Ali Majdzadeh
Hi everybody: 
I want to make a shopping cart with CF8 and MS ACCESS. Do you know a simple 
tutorial for that? I found a couple of tutorials in easycfm.com but it will be 
great if I have more things to learn from. I rather not to use CFCs while I 
know they are great but I prefer to write one from scratch. 
Thank you very much
Benign 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294948
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: sql editor

2007-11-30 Thread Ali Majdzadeh
 On Friday 30 Nov 2007, Ali Majdzadeh wrote:
  Hi everybody:
  I need to make some complex cfqueries and I wonder if there any easy 
 to use
  software is out there I can use to make the sql statements easier 
 
 What O/S and what database ?

Thanks for all the replies. I use Windows Vista/MS Access and CF7 (love to use 
CF8 but the server still supoorts CF7)
Thanks
Benign 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294008
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


sql editor

2007-11-30 Thread Ali Majdzadeh
Hi everybody:
I need to make some complex cfqueries and I wonder if there any easy to use 
software is out there I can use to make the sql statements easier than writing 
down all of them. I don't mind if it is a 3rdparty program or a cfeclipse addon 
or a dw extension, I just need something to help me drag and drop my Database 
tables into that and make the relationships and the program gives me the sql 
script without bugs cause when I write them they have some typo and non-typo 
bugs and it makes my life really hard. 
Thanks
benign 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293998
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Showing dynamic data in two side by side groups

2007-11-26 Thread Ali Majdzadeh
Hi:
I'm trying to make a show dynamic data (dynamic table) using dw/cf8. I works 
fine but it shows data down the page while I need them in two side by side 
groups (columns). I write down the code :

cfquery name=members datasource=test
SELECT ID, firstName, lastName, email
FROM Membership
/cfquery

table border=0 cellpadding=0 cellspacing=0
  tr
tdFirst Name/td
tdLast Name/td
tdEmail/td
  /tr
  cfoutput query=members
tr
  td#members.firstName#/td
  td#members.lastName#/td
  td#members.email#/td
/tr
  /cfoutput
/table


I found a DW extension after some googling made by Tom Muck named 
Horizontal/Vertical Looper which does the job but it is for php/sql not CF. Can 
you please help me find out a way to show dynamic data in two groups instead of 
one that goes down the page using CF8? Please?
Thanks
Benign 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293796
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Showing dynamic data in two side by side groups

2007-11-26 Thread Ali Majdzadeh
Not sure what you mean by side by side... This?

 cfquery name=members datasource=test SELECT ID, firstName, 
 lastName, email FROM Membership /cfquery

 table border=0 cellpadding=0 cellspacing=0
   cfoutput query=members
   tr
 tdFirst Name/td
  td#firstName#/td
   /tr
   
   tr
 tdLast Name/td
 td#lastName#/td
   /tr
   
   tr
 tdEmail/td
 td#email#/td
   /tr
   trtd colspan=3hr //td/tr
   /cfoutput
 /table

OR do you mean...

table border=0 cellpadding=0 cellspacing=0
tr
tdFirstName:/td
cfloop from=1 to=#members.recordcount#
index=ftd#members['firstname'][f]#/td/cfloop
/tr

tr
tdLastName:/td
cfloop from=1 to=#members.recordcount#
index=ltd#members['lastname'][l]#/td/cfloop
/tr

tr
tdEmail:/td
cfloop from=1 to=#members.recordcount#
index=etd#members['email'][e]#/td/cfloop
/tr
/table

Or do you mean something else entirely?

.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


As a matter of fact non of them. I found a way to do that. 
I write the code down:

cfparam name=PageNum_Recordset1 default=1
cfquery name=Recordset1 datasource=test
SELECT *
FROM Membership
/cfquery
cfset MaxRows_Recordset1=6
cfset 
StartRow_Recordset1=Min((PageNum_Recordset1-1)*MaxRows_Recordset1+1,Max(Recordset1.RecordCount,1))
cfset 
EndRow_Recordset1=Min(StartRow_Recordset1+MaxRows_Recordset1-1,Recordset1.RecordCount)
cfset TotalPages_Recordset1=Ceiling(Recordset1.RecordCount/MaxRows_Recordset1)
table border=1
  tr cfoutput query=Recordset1
tdtable width=444 height=44 border=0 cellpadding=1 
cellspacing=1 bordercolor=##996633
tr
  td#Recordset1.firstName#/td
  td#Recordset1.lastName#/td
  td#Recordset1.email#/td
/tr
/table/td
cfscript
  if (NOT Recordset1.CurrentRow eq Recordset1.RecordCount AND 
Recordset1.CurrentRow mod 2 eq 0) {
writeoutput(/trtr);
  }
  /cfscript
  /cfoutput /tr
/table 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293824
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Dynamic Multiple selection lists

2007-11-24 Thread Ali Majdzadeh
Hi: 
I wanted to make some sort of search for my website that has check boxes. They 
look very very clean and easy to use for most users. I found a great help in 
(http://livedocs.adobe.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/formatData7.htm)

I write down some parts of the tutorial to ask my question.
*
input type=checkbox

  name=SelectedDepts
  value=Training
  Trainingbr

input type=checkbox
  name=SelectedDepts
  value=Marketing
  Marketingbr

input type=checkbox
  name=SelectedDepts
  value=HR
  HRbr

input type=checkbox
  name=SelectedDepts
  value=Sales
  Salesbr

If the user checked Marketing and Sales, the value of the SelectedDepts form 
field would be the list Marketing,Sales and you use the following SQL 
statement: 

SELECT *
  FROM Departmt
  WHERE Dept_Name IN
  (#ListQualify(Form.SelectedDepts,')#)



In the livedoc the values weren't set dynamicly. Is it possible that the 
SelectDepts reads from a db table? I mean that the checkboxes come from a 
database table, is it possible?
Thanks
Benign 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293762
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Where can I learn about Verity in CF8?

2007-11-08 Thread Ali Majdzadeh
Hi:
I want to learn about Verity searching in CF8. I googled and googled and 
googled but no straight tutorial that describes it from the begining to the 
intermediate in details! Please help me find a resource.
Thanks
Benign 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292942
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Where can I learn about Verity in CF8?

2007-11-08 Thread Ali Majdzadeh
 Not to be silly- but did you try the docs? The Developers Guide
 includes 2 chapters on it. It covers quite a bit.
 
 On Nov 8, 2007 9:10 AM, Ali Majdzadeh [EMAIL PROTECTED] wrote:
  Hi:
  I want to learn about Verity searching in CF8. I googled and googled 
 and googled but no straight tutorial that describes it from the 
 begining to the intermediate in details! Please help me find a 
 resource.
  Thanks
  Benign
 
  
You know what, I wonder why the Developers Guide didn't come out of the 
googling! Maybe my keywords weren't right but anyway it's a great start. I 
really appreciate your simple solution. If you have any other resource too 
please please please let me know.
Thanks
Benign 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292953
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Lynda.com released ColdFusion 8 Beyond the Basics! Thank you Lynda

2007-11-03 Thread Ali Majdzadeh
Hi everybody:
At last a video based Coldfusion 8 advanced training came out! I was waiting 
for such a release for a long time. ColdFusion 8 Beyond the Basics from 
Lynda.com covers many topics traditionaly are covered in books and not video 
trainings. It shows that CF8 is a major jump for Cf that a company like 
Lynda.com releases an advanced video tutorial for the developers. Thanks Adobe 
for supporting CF and thanks Lynda.com for supporting CF.
This is the link for the tutorial:

http://movielibrary.lynda.com/html/modPage.asp?ID=432 

and this is the table of contents: (copied from www.Lynda.com)

Table of contents
Introduction
Welcome  0:57 1 MB 
Overview  4:21 3.7 MB 

1. Getting Started
Installing the required software  3:07 3 MB 
Installing Eclipse  3:51 6.5 MB 
Installing the ColdFusion Extensions for Eclipse  4:14 6.7 MB 
Installing and configuring CFEclipse  2:14 3.6 MB 
Installing the exercise files and database  1:39 2.2 MB 
Installing the exercise database  4:26 6.1 MB 
Setting up a project and testing the installation  6:10 9.7 MB 

2. Using Advanced Data Types
Understanding arrays  5:23 6.2 MB 
Manipulating arrays  5:57 9.8 MB 
Looping through arrays 4:13 6.1 MB 
Understanding structures 5:52 8.5 MB 
Combining advanced data types 4:23 6.4 MB 
Converting queries to arrays of structures 8:48 12.2 MB 
Assigning variables by value or reference 5:42 9.4 MB 
Reviewing the Application Framework 7:44 10.9 MB 
Using J2EE sessions 5:47 10.7 MB 
Storing complex session data in server-based memory 3:32 6.2 MB 

3. Building and Debugging ColdFusion Components
Creating a ColdFusion component with CFEclipse 6:00 6.9 MB 
Wrapping database functionality in CFCs 6:59 10.2 MB 
Calling CFC methods with cfinvoke and CreateObject() 5:18 8.7 MB 
Passing CFC arguments with cfinvokeargument 5:05 8.4 MB 
Passing CFC arguments with positional syntax 3:55 7.4 MB 
Passing CFC arguments with argumentCollection 4:34 7.2 MB 
Configuring the ColdFusion 8 line debugger 4:11 7.9 MB 
Using the ColdFusion debugger to inspect data 6:55 10.7 MB 

4. Using the ColdFusion Extensions for Eclipse
Using the CFC Value Object wizard 4:49 6.5 MB 
Understanding the Value Object design pattern 3:27 5 MB 
Understanding the DAO design pattern 3:21 5.2 MB 
Understanding the Gateway design pattern 3:55 5 MB 
Retrieving data with Gateway methods 5:30 8.2 MB 
Presenting in a data entry form with Gateway objects 5:42 10.3 MB 
Updating data with a Gateway method 6:29 11 MB 
Inserting data with a Gateway method 4:15 7.2 MB 
Deleting data with a Gateway method 4:11 7.6 MB 
Understanding the Active Record design pattern 3:38 5.7 MB 

5. Using CFCs and Sessions in a Shopping Cart Application
Setting up the application 4:12 6.3 MB 
Displaying the item catalog 5:03 8.7 MB 
Creating the shopping cart CFC 5:30 9.3 MB 
Adding items to the shopping cart 6:07 9.2 MB 
Displaying the shopping cart count 2:57 5.8 MB 
Displaying the shopping cart contents 3:52 6.6 MB 
Removing items from the shopping cart  4:22 6.6 MB 

6. Structured Exception Handling
Using cftry and cfcatch to manage exceptions 2:57 4.4 MB 
Debugging exceptions 4:42 8.9 MB 
Managing multiple exception types 4:31 9.6 MB 

7. Working with External Services
Understanding XML 3:28 4.2 MB 
Creating XML files 9:09 15.1 MB 
Retrieving XML-based data with cfhttp 3:51 6.7 MB 
Parsing XML with XMLParse() 2:37 3.8 MB 
Getting data from XML  8:01 13 MB 
Creating a SOAP-based web service with a CFC 5:07 8.3 MB 
Calling a web service with cfinvoke 6:08 8.8 MB 
Retrieving RSS-based data feeds with cffeed 7:12 14.1 MB 

8. Working with Flash Forms
Building a simple Flash form 7:27 9.6 MB 
Laying out Flash forms 4:51 7.4 MB 
Presenting data in a Flash-based data grid 5:42 10.2 MB 
Binding data in Flash forms 4:19 7.2 MB 
Using ActionScript in Flash forms 2:56 4.7 MB 

9. Working with Images
Getting image information 6:00 9.2 MB 
Changing the size of an image 6:02 11.4 MB 
Changing the borders on an image 3:34 6.4 MB 
Rotating an image 2:33 4.9 MB 
Telling computers and humans apart with a CAPTCHA image 5:57 8.2 MB 

10. Working with Acrobat PDF Documents
Generating PDF documents with cfdocument 6:05 10.5 MB 
Customizing PDF documents with dynamic data 8:09 12.2 MB 
Collecting data from PDF documents 4:45 6.7 MB 

11. Creating AJAX-Style Applications
ColdFusion and AJAX 1:35 1.5 MB 
Creating an application with the AJAX Application wizard 7:19 10.4 MB 
Using the generated AJAX application 4:13 5.4 MB 
Creating dynamic menus with cfmenu 5:02 7.1 MB 
Using cflayout and cflayoutarea 3:42 5.3 MB 
Using cfpod to create defined pods in a layout area 3:37 6.2 MB 
Using an AJAX-style data grid 5:11 8.8 MB 

12. Creating ColdFusion Presentations
Understanding ColdFusion presentations 4:05 5.7 MB 
Adding notes to presentation slides 1:17 1.9 MB 
Searching presentation slides 1:59 3.2 MB 
Adding audio to a presentation slide 2:04 3.5 MB 
Adding video to a presentation slide 2:20 3.5 MB 

Conclusion
Goodbye 0:40 0.7 MB 

Silverlight and Coldfusion!

2007-11-03 Thread Ali Majdzadeh
Hi everybody:
Does Silverlight support CF? 
I quote: Silverlight offers a flexible programming model that supports 
JavaScript, Visual C#, Visual Basic, and other languages. (Cpied from 
http://silverlight.net/GetStarted/)
I googled for Silveright and coldfusion a little bit but no straight answer 
came out!So I googled http://silverlight.net/ and in its formal forum someone 
mentioned that it is possible to use CF as a server side language for 
silverlight. 
Please let me know if you have furthure info about the topic.
thanks
Benign 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292608
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Making advanced search options for a database using CF8

2007-10-12 Thread Ali Majdzadeh
Hi:

I am working on a project which its main idea is, making a dynamic website 
contanins the basic information about certain companies and gives the users 
advanced search option through the database. The basic options will be free 
(all companies can add their info) but when a company pays the price it will 
appear at the top of the result page. It will be made by CF8 and MSSQL 2000.
Now my questions are:
Is there any example out there that I can modfy my idea with. Free/Trial.
What do you suggest as the search  method? I use the basic SQL filtering? Or 
you suggest something new?
And finally, is there any tutorial helps me through the developing proccess.
Thanks
Benign 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290910
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Making advanced search options for a database using CF8

2007-10-12 Thread Ali Majdzadeh
Dear sir:
  Thanks for the reply.
  I'm deeply sorry for my mistake. It was not on purpose and you are right I 
should reconsider my mailing server. Sorry again.
  Benign

Tom Chiverton [EMAIL PROTECTED] wrote:
  On Friday 12 Oct 2007, [EMAIL PROTECTED] wrote:
 Hi:

Three strikes.
Get a new mail server, or calm down and wait.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF. A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by The Solicitors 
Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged. If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents. If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290943
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Making advanced search options for a database using CF8

2007-10-12 Thread Ali Majdzadeh
Dear sir:
Thanks for the reply. 
I'm really sorry for sending the questions 3 times. I didn't do it on pupose. 
The mailing server showed no adding and I thiught it was my IE problem or 
wireless internet internet which is now working very well these days. 
Anyway I am really sorry and I do apologize for the mistake.
About doing research, nope! I did my research a lot but I wanted to use your 
ideas in general. I didn't specify something because I felt it might comes with 
answers which can help me modify the whole idea but surely you are right. I'm 
sorry again. I will research more and I will ask more specific/technical 
questions. It was my mistake and sorry.
Benign 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290942
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Making advanced search options for a database using CF8

2007-10-12 Thread Ali Majdzadeh
Hi:

I am working on a project which its main idea is, making a dynamic website 
contanins the basic information about 

certain companies and gives the users advanced search option through the 
database. The basic options will be free 

(all companies can add their info) but when a company pays the price it will 
appear at the top of the result page. 

It will be made by CF8 and MSSQL 2000.
Now my questions are:
Is there any example out there that I can modfy my idea with. Free/Trial.
What do you suggest as the search  method? I use the basic SQL filtering? Or 
you suggest something new?
And finally, is there any tutorial helps me through the developing proccess.
Thanks
Benign 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290918
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Making advanced search options for a database using CF8

2007-10-12 Thread Ali Majdzadeh
Hi:

I am working on a project which its main idea is, making a dynamic website 
contanins the basic information about certain companies and gives the users 
advanced search option through the database. The basic options will be free 
(all companies can add their info) but when a company pays the price it will 
appear at the top of the result page. It will be made by CF8 and MSSQL 2000.
Now my questions are:
Is there any example out there that I can modfy my idea with. Free/Trial.
What do you suggest as the search  method? I use the basic SQL filtering? Or 
you suggest something new?
And finally, is there any tutorial helps me through the developing proccess.
Thanks
Benign 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290917
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Sharing violation (Dreamweaver, Illustrator, Photoshop amp;amp; CF8)

2007-09-20 Thread Ali Majdzadeh
Nobody else run into this problem?  I've seen a couple of threads on other CF 
forums.

I have the same problem! Is there any solution? The only thing I could think of 
is closing and starting dw again but it should be other sort of solution like a 
bug-fixastion update.
Thanks
Benign 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288923
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


multi-level coldfusion menu that reads from a database

2007-09-11 Thread Ali Majdzadeh
Hi everybody:
I have a problem and I believe you experts can help me.
I need to make a dynamic manu which generates the menu from a database conetnt 
and has three levels. It means something like that:

MenuSubmenu_level1Submenu_level2

for example for a book shop menu:

Home
BooksKids *Harry Potter 7 *
 Poems   *Harry Potter 6 *
 Science *Harry Potter 5 *
*Harry Potter 4 *
About us
Conact us

It means that Books have 3 submenus: Kids, Poems, Science
And Kid books have 4 submenus itself Harry Potter 1 and 2 and
I really don't need to change the link Books or the sumenu_level1 (the book 
vategories) so they can be static but I need the submenu_level2(the books 
names; Harry Potter 1 and 2 and...) to be generated from content of the 
database.
Any idea that where I can find a tutorial for such a task?
Thanks
Benign 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288198
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: multi-level coldfusion menu that reads from a database

2007-09-11 Thread Ali Majdzadeh
Did you look at the docs for cfmenu?


\
Yes, I really love to use CFMENU but it is a CF8 tag and my hosting is a shared 
host from crystal tech and they still are on CF7.
Thanks
Benign



~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288202
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: multi-level coldfusion menu that reads from a database

2007-09-11 Thread Ali Majdzadeh
That's problem then...but you must try CFMENU tag, it's amazingly easy
to use.

Jayesh

Yes, I really love to use CFMENU but it is a CF8 tag and my hosting is a
shared host from crystal tech and they still are on CF7.
Thanks
Benign

Okay but there is a question. What CF8 hosting service do you suggest? I need a 
shared one with coldfusion only. I need no .Net or PHP support. Just a CF8 
service will do,
Thanks
Benign 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288204
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: multi-level coldfusion menu that reads from a database

2007-09-11 Thread Ali Majdzadeh
Did you look at the docs for ?



Okay it seems mine will be CF8 soon.
Then how can I use CFMENU? I'm waiting for Ben Forta's books to learn more 
about the new features of CF8 and I wonder where I can learn more about it 
meanwhile.
thanks
Benign


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288213
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF sample application for a Library

2007-09-08 Thread Ali Majdzadeh
Hi:
The hospital I used to practice in has a medium sized library which needs a 
basic online application to manage the books. I know it should buy the 
application or hire some developers (including myself) to make one for its 
needs but nowadays the hospital has major financial problems and the services 
to the patients are the main priorities. Infact I myself sometimes practice 
there and visit the patients for free during the weekends to keep the clinics 
running.
The library needs a book management application I wonder if there is a free or 
cheap ready to use CF application that helps the librarian keep track of the 
books more easily.
Any ideas?
Thanks
Benign 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288031
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-07 Thread Ali Majdzadeh
Thanks everybody. I read all your great replies and at the end I decided I 
choose JAVA as my next move. I will learn more about CSS or AJAX while they are 
usefull anyway but JAVA will be what I will focus as my server side tech. I 
started with VTC.com Java learning video series which looked to be the fastest 
way to learn about basics. 
I wait for your more replies on the refternces and some tutorials which help me 
to use my CF skills in JAVA.
Thanks
benign 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287948
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


List of Coldfusion Bloggers

2007-09-07 Thread Ali Majdzadeh
Hi everybody:
Does anyone has a list of CF Bloggers? I learnt lots of things from forta.com 
(Ben Forta's blog) and I really think other CF Bloggers can do the same for me. 
Being uptodate and know what other CFers (CF developers) think and do will be 
very interesting.
Thanks
Benign 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288022
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


PHP or .Net?

2007-09-05 Thread Ali Majdzadeh
Hi:
For about 5 years I am using CF as my main devloping laguage but many 
experienced programmers suggested I learn another programming language too 
because CF is great but not as popular as PHP or .Net
Which one do you suggest as the second language I learn? The only thing I ever 
used is Coldfusion.
I have no experience in C or C++ or VB so I really don't know which one (which 
many says PHP is simillar to C and .Net needs C++ or C# or VB)is easier to 
learn and have a good market too.
Please help me choose.
Thanks
Ali 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287801
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-05 Thread Ali Majdzadeh
Infact I am doing that. I know JS and some XML, but I know I should learn more 
about them.
Thanks for the advice.
Ali 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287814
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-05 Thread Ali Majdzadeh
What do you think about JAVA? I read you mentioned it but isn't it hard to 
learn java? I know it is marktable big time but I really love to know if I can 
learn it easily while I have no experience in C.
thanks
Ali 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287823
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PHP or .Net?

2007-09-05 Thread Ali Majdzadeh
Sean, Michael, Andrew...

Any thoughts on Ruby and Python?





i read many good things about Ruby or Python but I never experienced coding 
with them. Are they marketable as others?
Thanks
Benign 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287841
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion 8 hosting

2007-08-20 Thread Ali Majdzadeh
Hi:
Is there any reliable Coldfusion 8 hosting server right now?
I found by googling the following company but never heard of them before.
http://www.bmchosting.com/features.cfm
Do you know any good hosting with reasonable price which supports all cool CF8 
features?
Thanks
Benign 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286619
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Lynda.com released the first official CF8. Thank you Lynda!

2007-08-08 Thread Ali Majdzadeh
Hi:
Just wanted to inform you about something.
I was searching for a good CF8 video tutorial and found out Lynda.com released 
an essential traning. It seems it covers many basic subjects. I hope they 
release the intermediate and advanced DVDs soon.
Thank you LYNDA.COM :)
i hope you folks find it interesting too.
Thanks
Benign 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:285729
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Any idea how to introduce CF in my area?

2007-07-18 Thread Ali Majdzadeh
Hey people:
CF is not popular in my area and the main reason is .Net adds and PHP open 
source reputation. Do u have any idea how I can iontroduce it to people? I am 
planing to make a website (my personal blog) to introduce it more but I need 
new ideas.
Thanks
Benign

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284028
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dreamweaver extensions for CF8

2007-07-07 Thread Ali Majdzadeh
There's a few people here that havent switched to CFEclipse and are
still using Dreamweaver. Does anyone know if Adobe is planning on
releasing CF8 extensions for Dreamweaver?

Thanks

Why should all migrate from DW to CFECLIPSE. I like eclipse but DW is what I 
always loved and will love. I know adobe didn't improve it very well but I 
still use and believe in DW.
Benign

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283126
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion MX7 Developer Exam for certification, a must? Where is the location of the exam?

2007-07-05 Thread Ali Majdzadeh
Hi:
I heard a lot about  Coldfusion MX7 Developer Exam for CF7 certification. First 
of all I want to know if it is a must. Is there more job offers for certified 
programmer? Is the salary usually higher?
Second I wonder if the exam is under Adobe certifications now?
And last, I wonder where is the location of the exam? (Around the world and 
especially in Asia please)
Thanks
Benign

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282970
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion Video Tutorials

2007-06-23 Thread Ali Majdzadeh
Hi:
I wanted to introduce CF to some webdeveloping classes (I'm struggling to make 
them start a CF course class) and I need a Video Tutorial CD/DVD which I can 
suggest as a start point for them.
Lynda.com has one but it is for MX and the Dreamweaver 8 Dynamic Development is 
mostly about DW.
VTC.com has one but I couldn't find it in my area.
Is there any other one? From Novice to Advanced or even Basic.
It will be great if the movie uses DW or CFeclipse as the editor.
I know you may suggest ColdFusion MX 7 Web Application Construction Kit (Ben 
Forta) or other cool books but I prefer a Video Tutorial because it will be 
much easier for managers/developers to start.
Thanks
Benign

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:281949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Video Tutorials

2007-06-23 Thread Ali Majdzadeh
 Where are you involved with teaching of web development? I too am 
 interested in teaching about HTML and CF. Tell me more about what it 
 is your are doing there.

 Ariel

Hi:
I live in Iran and here ASP.Net and PHP are most popular languages.
I used to teach ASP and DW mostly and now I think CF can be the first choice in 
Iran and I try hard to introduce it to Iranian developers.
I really count on this introduction.
Thanks
Bengin

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:281954
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


I love CF but it's not fair

2007-06-12 Thread Ali Majdzadeh
Hi:
I was searching for job offers in Australia in here http://mycareer.com.au/ 
If you search for CF job offers it brings only 23 jobs which more than half are 
not even only for CF developers and some are for other languages like PHP or 
.NET. When I searched for PHP it came out with a few hundreds but with .NET 
2334 matching results!!! 
I love CF but it seems even Python is more popular or at least the search 
engine comes with better results with it (about 50 offers).
I really don't understand why such a powerful and easy langauge should have 
such a low job offers in Australia! I really don't know about USA but it seems 
the same thing is true in the USA to.
You know I just say it as a theory cause I really love CF and I won't migrate 
it till and only if Adobe kills the product but it seems if we started with PHP 
or .Net at the begining now we were more and better employed than now.
Please write your opinions.
Thanks
Benign

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280857
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: I love CF but it's not fair

2007-06-12 Thread Ali Majdzadeh
 Another thought:
 
 You don't need 2334 jobs. You need one job (ok, maybe 2)
 
 Hopefully it's the quality not the quantity that matters.
 
Sure but when there are less options to choose it means many may not match your 
needs. The main problem will be location. But when there are 2334 job offers 
the chance for the proper one will be much more than the 23. 
Farcry is an Australian CMS and a famous one it seems. That's why I thought 
maybe Australian CF developers have more popularity than the US developers but 
it seems NO WAY!
Thanks
Benign

~|
ColdFusion 8 beta – Build next generation applications today.
Free beta download on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280886
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Does CF Framework make life easier? Which one to start?

2007-05-18 Thread Ali Majdzadeh
I have no OO background. Till now I just used coldfusion tags to make my 
projects. It was easy and with a little help from Dreamweaver it was the 
easiest programming experience I ever had. recently after making 10 online 
catalogs for a friend I realized there might be a problem to manage all the 
code for all catalogs. After a little googling I saw the expression 
FrameWork. I had no idea what it is. Honestly right now I don't know what 
exactly a framework is and how it works and how I can start working with that. 
Your posts helped a lot but I think what I really need is an example based 
basic tutorial that helps me understand the meanining of a framework.
Thanks
Ali

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278573
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Ali Majdzadeh
Hi:
Everybody says Frameworks make life easier. Does it? If yes, please tell me 
which one can work as a starter for me? Model-Glue looks nice and easy, Mach-II 
looks very powerful and Fusebox claims to be the most popular. Are they 
completely different? Is it possible to learn one and then migrate to another 
easily if needed?
Please suggest a book for the one you think is the best for the starter. I am 
in no rush so there is no need for a very quick start but a complete book can 
help me a lot.
Thanks
Ali

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278450
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


counting the search results on database

2007-05-12 Thread Ali Majdzadeh
Hi:
I know it looks to be very basic but I really need help here. I am making a 
search page and I want to show the users number of search results on the 
database. In other world I want to be able to count the records in database 
that match the search criteria. What function and how I should use it.
Thanks
Ali

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277914
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: upload image and insert the image name into the database for the right product

2007-05-11 Thread Ali Majdzadeh
 Ali,
 
 Just upload the image as usual to whatever directory you'll be using. 
 If it's multiple images with multiple cffile's, and you're using MX7, 
 use the result attribute which lets you specify your own variable name 
 for each image. 
 
 result=file1.serverfile
 result=file2.serverfile
 
 etc..
 
 Once you have that, you have the image name you can insert into your 
 db. 
 
 Just run those in your insert statements. 
 
 INSERT INTO tblproducts (image1) VALUES ('#file1.serverfile#')
 
 also, look into ExpandPath(). It's your friend. It'll create your full 
 path needed in cffile destination attribute.
 
 cffile action=upload destination=#ExpandPath(/Images)# more 
 attributes here
 
 This will let your cffile send the file to the correct directory 
 whether on your local machine, or a remote server.In this case, the 
 images folder in your site root. 
 
 hth,
 Will 

Wow that's a great help. just I need some more guide about the above code.
Let me explain my questions. I want to upload 10 images of an animal to the 
database. I have one textfield for the name of the animal and 10 fields for 
images.
My first question is: 
Can I use the name that the user inserts in the text field as a part of each 
file name? for example instead of
result = file1.serverfile 
result = file2.serverfile 

I use this one: result =#FORM.name#1.serverfile
result =#FORM.name#2.serverfile

and then if I can do this, how can I set the code 
INSERT INTO tblproducts (image1) VALUES ('#file1.serverfile#')
to fit the new naming?
Thanks alot
Ali

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277710
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: upload image and insert the image name into the database for the right product

2007-05-11 Thread Ali Majdzadeh
If you are going to have the general public uploading files, I'd
suggest not allowing as many as 10 images per page - you are likely to
get timeout problems.  I'd suggest only 5 or even as few as 3 images
per page.

What I've found on my pages is that if users just take the picture off
their digital camera, it can be as big as 3mb or 4mb and if you're
uploading 10 of those you'll have 30mb-40mb being uploaded. that'll
take too long and either the pages will timeout or the users will
think nothing's happening and hit reload or go elsewhere.

On the other hand if the users are interntal users in an organisation,
so you can have a bit more control over what they do, you might get
away with 10 images on the page.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month


Thanks for the reply
Yes very goo dpoint. I will limit the file size and I will limit the numer to 3 
upload. Can you help me fidn out a way that I can upload 3 images through one 
form and insert the path/name of the images to the database for the specific 
animal name? As I said each form has a text field that the user inserets tha 
name and then 3 browse fields that the user can upload the images. I want 
rename the images on a way that they have a part of the animal name (that comes 
from the textfield) and insert them into the database for the specific animal.
Thanks
Ali

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277721
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


News Application with rolling animation on the header

2007-05-10 Thread Ali Majdzadeh
Hi: Is there any CF tutorial /free application that I can use to make a news 
part sof my website. I saw a javascript code that showed the news rolling on 
the header of the page and looked very nice. Is there any CF/JS one?
Thanks
Benign

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277673
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF tutorial for image gallery with upload function

2007-05-09 Thread Ali Majdzadeh
Hi:
Do you know any Cf tutorial that helps me learn how to upload multi images and 
then show them as thumbnails that if I click on the larg images shows up.
Please help me find the best way.
Benign

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277569
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


upload image and insert the image name into the database for the right product

2007-05-04 Thread Ali Majdzadeh
Hi:
Do you know any tutorial that teaches me how to make an image upload form that 
I can use with my Add Product page? I need it to be something like the one in 
cartweaver shopping cart. I mean when you upload the image it is uploaded and 
the address goes to the database at the same time and the user doesn't have to 
type the name/address of the image (after uploading it) in another form to 
insert it into the database.
In summary I need an upload image form that uploads the image and inserts the 
name/address of the image into the proper field of the database for the right 
product.
Thanks
Benign

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277066
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Basic CFM shopping cart tutorial/Dreaweaver extension

2007-04-15 Thread Ali Majdzadeh
Hi everybody:
Do you know any CFM shopping tutorial or a Dreamweaver extension that helps me 
build a shopping cart? I saw cartweaver but it is too complicated and full of 
options and I think I won't have full control over everything on that while I 
need to learn/ customize the whole shopping cart for my needs. I need no money 
transaction in the shopping cart so many options based on credit cards and 
shipping and something like that won't be necessary. Just showing the products 
in categories, and adding them to wish list/ buy list  after logging in and 
showing the added products in a box righ_top of tha page will be completely 
enough.
Thanks for your help
Ali

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275277
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion 7 Real World-Examples language problem

2007-02-11 Thread Ali Majdzadeh
Hi:
I was looking at the real-world examples of CF7 (the example applications that 
CF7 installs automaticly) and Community application looked very nice. Then I 
started looking at it and editing that to learn more about the structure and I 
changed some of the english text content of it in DW8 but there is a strange 
problem. When I replace some of the words in the pages structure with some 
Persian(farsi) words it doesn't show them properly! The whole application is 
UTF-8 but it doesn't work fine with Persian(farsi) language. Do you have any 
idea why? If I can translate the whole application in persian then I can show 
CF7 abilities to more people in my country with a Persian(farsi) real-world 
application made with former-macromedia (Adobe). Many people here asked me if 
they can use Persian(farsi) language in CF and if they see it is possible in 
one of the original examples of CF7, they will get it completely.
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269473
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Ebay-like auction written in CFM?

2007-02-06 Thread Ali Majdzadeh
Hi everybody:
I am searching for an open source or commercial ebay-like auction application 
written in CFM/MSSQL or ACCESS. Do you know one?
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268796
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Online HTML editor

2007-02-03 Thread Ali Majdzadeh
Hi:
What about ActivEdit(http://www.activsoftware.com/activedit/)? Did you every 
use it and does it work fine?
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268555
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Online HTML editor

2007-02-03 Thread Ali Majdzadeh
Everynody, Thanks for all the replies. Yeah FCKEditor is a great option as 
TinyMCE. They both have great options. I really liked them when I started 
useing them. I am really confused to choose which one! FCKEditor has something 
nice as TniyMCE looks very great. People please help me choose between these 
two great FREE editors.
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268572
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Canadian Hosting Company as good as Crystaltech

2007-02-02 Thread Ali Majdzadeh
Used http://www.webserve.ca/ for a long time and it works great. I believe it 
can compete with crystaltech absolutely well.
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268418
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Coldfusion Online HTML editor

2007-02-02 Thread Ali Majdzadeh
Hi:
I need a coldfusion online html editor. Do you know a reliable one? The one 
that has some advanced features but saves the file with the right code?
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268419
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Online HTML editor

2007-02-02 Thread Ali Majdzadeh
Hi:
Yes something like TinyMCE but in coldfusion. I mean if the WYSIWYG editor you 
introduced is great but is there anything like that with best cfm integration?
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268435
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Online HTML editor

2007-02-02 Thread Ali Majdzadeh
Infact I don't want to edit .cfm files I just need an online WYSIWYG HTML 
editor. Infact I was looking for a Newsletter application for my website that I 
can send some HTML pages every month for my users but couldn't find a proper 
one. Someone here said that I can use a WYSIWYG HTML editor to make the page 
and then send it to the users. What do you think? I you know a good newsletter 
application I will prefer it more than anything.
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268483
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Newsletter with HTML editor

2007-01-31 Thread Ali Majdzadeh
Hi everyone:
I need a newsletter application which has an HTML editor (that the admin can 
create an html file to send to the users) in coldfusion. Do you know a good one.
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268190
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Newsletter with HTML editor

2007-01-31 Thread Ali Majdzadeh
Hi everyone:
I wonder is there any Newsletter application (CFM) that has HTML editor? Do you 
know a good one.
Thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268238
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Auction sample

2007-01-18 Thread Ali Majdzadeh
Hi everybody: I need a coldfusion auction application as a sample to start the 
project. I have made some shopping carts before but a sample auction can help 
me start with open eyes.
thanks
Ali

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266958
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


What is Ruby on Rails?

2007-01-14 Thread Ali Majdzadeh
Hi everyone: I was surfing and suddenly saw the site http://www.rubyonrails.org/
It looks it is some sort of frame work! Is it compatible or usefull in C 
applications?
Thanks
Ali

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266539
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Client asked me: Why you use coldfusion?

2007-01-12 Thread Ali Majdzadeh
Hi: Two days before I was talking about a project with a client. He wants a 
portal_like website that has at least 8 seperated Auction parts and some 
message boards and a complete Administration pannel. It has at least 18 dynamic 
parts (like; News, Job finder, Seminar Alerts ...) that the admin pannel 
controls. Plus 5 different templates for the parts and a Logo and flash intro. 
The price I suggested in the proforma invoice was about 3500$. Is the price 
fair? Please send me your idea about the price of such a website.

The client asked me why are you using Coldfusion and why don't you use ASP.Net 
or PHP?. Can you please send me a link that compared the major server side 
technologies that I show the client the big advantages of Coldfusion compared 
to others.

Thanks
Ali

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266366
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Client asked me: Why you use coldfusion?

2007-01-12 Thread Ali Majdzadeh
Hi everyone:
Thanks alot for the great replies. I really used them. 
Infact I will code it all by myself with least help from read-to-use 
code_templates. 
I will use DW8/CFEclipse and CF7 to make it. Mark said 10hours and I really 
doubt that it can be done under 100hours maybe twice even.
Thanks to your posts I have enought to say to the customer about server side 
tech comparision.
Thanks again and again 
Ali

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266470
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Migrating from PHPBB to a CF forum. Is it possible?

2006-12-20 Thread Ali Majdzadeh
Hi everybody:
I am managing a popular forum which is based on PHPBB. Now I want to make a 
shoppimg cart that offers more services and I want to do it with Coldfusion. 
But I need to  keep the forum active, plus I need all the registration 
information of the users because I don't wan to loose so many users. My problem 
is:
I don't know how to store the registration information (usernames, addresses, 
emails) that are in PHPBB database into myshopping cart database which is in 
CF/MSSQL! I thought maybe I need to migrate to a CF forum and convert the PHPBB 
databse into that and then somehow share the registration information of that 
with the reistraton part of my website but this may make some more troubles.
Can you please help me?

Thanks
Benign

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264694
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


When Keystone releases a new CF7 video tutorial?

2006-12-15 Thread Ali Majdzadeh
Hi everybody: I was searching for some video tutorials for coldfusion and look 
what I found http://store.keystonelearning.com/ColdFusionMX7.aspx 11chapters of 
tutorials form the very begining to some advanced options. It looks complete 
for a movie tutorial. Do you know when it will be released? It really makes 
meexcited that at last I can have a complete overview of Coldfusion7 options 
while I watch a movie.
I believe it helps many people start CF7 and some who ork with it fill their 
empty parts. Just do me a favor and tell me when it comes out?
Thanks
Benign

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264176
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: When Keystone releases a new CF7 video tutorial?

2006-12-15 Thread Ali Majdzadeh
Dan:
It's great idea. If you start it CF can compete with other server side 
technologies much easier. There are many sources for PHP for example and I hope 
one day CF tutorials, communities and online resources can compete with PHP's.
Thanks
Benign
P.S: In some posts I told you about the software I prefer for making tutorials 
and it was Camtasia but after looking at some new options in Captative I 
believe it looks great too.

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264200
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: When Keystone releases a new CF7 video tutorial?

2006-12-15 Thread Ali Majdzadeh
y'know...the book's always better than the movie :)
You know Charlie, the first day I started programming I asked someone which one 
is the best and he said; the one that works fr you. I believe that. Movies 
helped me start CF while books help me a lot as references. I can't say which 
one is better but I believe CF7 is good and I use all sorts of tutorials to 
learn it.
Thanks
Benign

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264202
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: When Keystone releases a new CF7 video tutorial?

2006-12-15 Thread Ali Majdzadeh
 Why not e-mail or phone the company that's creating it and ask them
 when it comes out?  Not trying to be snarky, but they'd probably know
 better than we would.


Charlie 
You are definitely right but the truth is I wanted to know your opinions about 
the movie topics too. I never regret sharing some news, links, tutorials and 
cool stuff about coldfusion here cause when people here say their opinions I 
learn a lot.
Thanks
Benign

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264203
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: When Keystone releases a new CF7 video tutorial?

2006-12-15 Thread Ali Majdzadeh
Yes Bruce. It looks like CFWACk, but only if Ben Forta would release a CFWACK 
in movies. Oh is it possible ever?
Thanks
Benign

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264212
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: When Keystone releases a new CF7 video tutorial?

2006-12-15 Thread Ali Majdzadeh
 (URL to the DVD, in case you're interested:
 http://www.totaltraining.com/prod/adobe/flex2_ria.asp)
 Yes, I usually use Lynda.com video tutorials but Total training job is grea 
too.
Thanks
Benign

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264213
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


software for converting Charesets

2006-12-03 Thread Ali Majdzadeh
Hi: I need to change charset of some text documents. In fact I need to convert 
the charset of a UTF-8 text into windows-1256 text. Do you know any software 
that can do it? 
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262667
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: software for converting Charesets

2006-12-03 Thread Ali Majdzadeh
In fact I did it one time before with EditPad Pro. I reinstalled my windows xp 
and now I can not do it! Last time it worked just fine and this time it doesn't 
let me do it!!! I am really confused!
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262673
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Training Videos For ColdFusion

2006-12-01 Thread Ali Majdzadeh
Captative is good but I believe Camtasia is the best.
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262422
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Training Videos For ColdFusion

2006-12-01 Thread Ali Majdzadeh
I googled a little and found out some cheap and affordable streaming video 
hosting. Take a look at here 
http://www.hostindex.com/web/webhostingnews/streamingvideohosting/streaming_video_hosting.shtm
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262425
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Training Videos For ColdFusion

2006-12-01 Thread Ali Majdzadeh
The above link looked not working because of the paste issues.

http://www.hostindex.com/web/webhostingnews/streamingvideohosting/streaming_video_hosting.shtm

should work fine
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262428
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Crystal Tech or HostMySite? That's my problem!!!

2006-11-28 Thread Ali Majdzadeh
Hi:
After a lot of researching I realized that Crystal Tech and HostMySite are two 
of the best for shared hosting of CF7.0
My current problem is which one has better support for CF7.0 and Flex? Which 
one is the first choise for all customers? This is not what I can find by 
searching but I can ask the experts who you are folks.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261830
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Crystal Tech or HostMySite? That's my problem!!!

2006-11-28 Thread Ali Majdzadeh
I need FDS.
thanks
benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261833
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Ali Majdzadeh
Hi: I need a sample CF application that has a tutorial. I know the basics and I 
need some intermediate sample application with several pages it will help me 
alot.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260630
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Ali Majdzadeh
Hi Ben:
I tried your link but it was dead so I searched Skin Spider and found 
http://www.bennadel.com/skin-spider/overview.htm. I nebelieve you meant this 
website. It is very very cool and I just wonder if you have any other projects 
links like Skin Spider in your mind?
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260780
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


educational/simple CF/MSSQl application with documentation and description

2006-11-10 Thread Ali Majdzadeh
Hi: Do you know any basic level CF/MSSQL (or even MSACCESS) application with 
complete description and documentation? I need it to learn more about CF plus 
learn how to make description/documentation for my own apps. It doesn't matter 
if it is blog or catalog or any other sort of application. The only things that 
matters are : 1.I need an easy one that I understand it all 
2.The documentation/tutorial/description can help me to learn about all the 
pages of the application.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259876
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Plenty of Coldfusion/Ajax frameworks. Which one for a starter?

2006-11-08 Thread Ali Majdzadeh
Hi: I want to start AJAX. I found plenty of CF/AJAX frameworks out there and 
some looked really great but I really need a basic documentation plus ease of 
use cause I want to START it. Which one is the easiest and/or best with good a 
documentation.
thanks
benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259620
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Ali Majdzadeh
Great reply Rey. Thanks. Another question is what IDE do you suggest for these 
frameworks? I've heard of some AJAX IDE's (WYSIWYG/NON WYSIWYG) but not sure 
they are real help. Please give me your opinion.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259713
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Coldfusion related extensions for Dreamweaver

2006-11-06 Thread Ali Majdzadeh
Hi: Is there anyplace for Dreamweaver extensions that are developed for CF 
developers with some reviews? I tried Adobe.com extension page but looks a 
little out dated.
Thanks
Ali

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259254
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion related extensions for Dreamweaver

2006-11-06 Thread Ali Majdzadeh
Yes Joshua, some of the best are killed and surely this because of some good 
reasons and I hope someone can tell us why those extensions are killed and what 
is the adobe policy?
thanks

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259368
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
Is Crystal Tech coldfusion services on Windows server or Linux?
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259018
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
I am now down to Three Hosting Companies. Please help me choose one.

Crystal Tech ( http://www.crystaltech.com )
Looks very great. But the only problem is when you choose Coldfusion you have 
only coldfusion and if one part is in ASP you don't have ASP support. Ben Forta 
gave it 4/5. Good rating!

Viux ( http://hosting.viux.com )
Looks good but not famous as Crystal Tech while its prices are lower than 
Crystal Tech. Ben Forta didn't give it any star!

Xtreme-host ( http://xtreme-host.com/ )
Very nice website but just one person recommended it plus I couldn't find it in 
Ben Forta's lis at http://www.forta.com/cf/isp/. It has 100MB hosting too and 
it is great cause finding a low space CF hosting with such a low price is very 
hard.

Please help me find out which one IS the best. It is very critical and as you 
know maintenance, stability and FAST CUSTOMER SUPPORT are very important for a 
hosting. In your experiences which one was good enough and which one was not.

Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259042
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
 
 I used to use this host for my blog and cfquickdocs.  My general
 consensus, you get what you pay for.  90% of the time it was fine, 
 very
 little problems.  But the rest of the time my sites were down with 0
 explanation from the guy that runs it.  And yes, it appeared that the
 whole thing is run by one guy. 

Thanks Munson. Very helpful answer. It seems as a cheap server it works fine. 
But infact I will need more than one shared hosting in the future and I prefer 
them to be from one company and 90% won't be enough for some of them.
Any opinion about the other two? Crystal Tech vs Viux? Which one do you choose?
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259057
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
 BUT I need to let you know that I have 
 some 
 horror stories for my some international customers at their billing 
 departments. 
 Can you please explain it more because the international customers problem 
will be mine!
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259082
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
 I have used Crystal Tech for many years.  No problems.  Also have 4
 dedicated servers there as well for some really large projects.
 Support is fantastic, which is most important to me, right behind the
 access to their control panel.

Great. So it seems they provide a good windows+CF hosting. Does CT provide CF 
7.0.2? Does they provide Flex with their CF packages? Plus do they add ASP 
support to my CF package? I sent those questions to their support email but I 
recieved no answer yet and I thought you as an expert user may know more about 
it.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259091
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
Well I dunno about the other ISP's liste don bens site, but ours
(cfmxhosting) has 100% legitimate reviews by all our customers, and they can
all be contacted for a reference.
 Do you support Flex in you CF7 plans?
 And about custom tags, do you support them?
 Thanks
 Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259092
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
Identity theft for CC and they were not helpful.

And if you are not in USA as a company, it is not easy to follow these 
kind of problems.
Sorry I didn't catch it. You mean that they didn't help you find the money?
What is I don't have any money transfer in my websites?
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259096
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best CF7 Hosting company

2006-11-03 Thread Ali Majdzadeh
Okay... It seems the best choice for a shared, cheap and reliable hosting 
company is Crystal Tech while I should wonder about the international 
complications. About the reviews, you know I think the best review is here in 
CF-Talk. http://www.cfmxhosting.co.uk looks very great but I need MSSQL and 10 
pounds/month for the MSSQL plus the 119 pounds /yearly cost (the starter plan + 
MSSQL meets my needs) is a little more than my customers are ready to pay. But 
as I said it looks very very good.
But about Viux nobody said bad or good things. The plans look very good but I 
really count on your reviews.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259122
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


coldfusion forum application

2006-11-02 Thread Ali Majdzadeh
Hi: Do you any opensource CF forum application with multi language 
pack/compatibility? Infact I want a forum that I can change the language from 
english to some righ-to-left langauge and I need it to be easy to change the 
language. 
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258807
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Best CF7 Hosting company

2006-11-02 Thread Ali Majdzadeh
Hi: I need a Cf7 hosting. What is the best?
thanks
benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258810
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best CF7 Hosting company

2006-11-02 Thread Ali Majdzadeh
Yes. i tried to use it but couldn't find what I need.
I need a shared CF7.0.2 hosting with at least 100MB space with the price less 
than 200USD/1year.
Do you know one? I need it to be reliable.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258816
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion and Python integration and webhosting

2006-11-02 Thread Ali Majdzadeh
Hi: Anybody has any refernce about integration/compatibility? Do you know any 
webhosting that provides them both in one package?
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258831
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF7 Hosting company

2006-11-02 Thread Ali Majdzadeh
Do they support custom tag?
thanks
benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258833
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >