OT: Shall be order

2001-10-21 Thread Michael Lugassy
Please help me with that SQL script, I'm hopeless :( I have a product table which has: product_cat (identity, int, i.e=4) and product_list (which is a $$ delimited list of products, i.e - mouse_wheel$$screen$$keyboard) - don't ask... about 400,000 rows. I have a info table that looks like this:

Regular Expression

2001-10-21 Thread Michael Lugassy
This is not neccesarly have to be done with coldfusion's REReplace but anyhow, I'm trying to come up with a regular expression that will help me turn this: [Object] ID=2031 URL=http://www.cnn.com/ OtherSrvLev=0w33a Category=31 Into: http://www.cnn.com/ Overall, I'm trying to find a way to

Can anyone Translate this?

2001-10-03 Thread Michael Lugassy
I have a mySQL CREATE script that I want to run on MS-SQL 2000. Can anyone let me know how to translate this? CREATE TABLE content ( catid mediumint(10) unsigned NOT NULL default '0', link text, link1 text, link_count smallint(5) unsigned default NULL, link_total int(6) unsigned

xml to SQL?

2001-09-22 Thread Michael Lugassy
Sorry for my ignorance, but how do I export a XML file into MSSQL 2000? Michael. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

OT: RDF/XML/SQL??

2001-09-21 Thread Michael Lugassy
I just downloaded a 300mb sample database in RDF file. I recall once opening it in IE and got a huge XML formatted data. Is there a way to export this thing into SQL somehow? Michael. ~~ Get the mailserver that powers this list at

Re: I've lost a week's work!!!

2001-09-20 Thread Michael Lugassy
Visual SourceSafe. -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Friday, 21 September 2001 9:36 To: CF-Talk Subject: I've lost a week's work!!! I just had to hard reset my computer while editing a cfm template in coldfusion studio, and when I

I'm resending - help

2001-09-20 Thread Michael Lugassy
Resending this, please take a look (haven't got response). I have a complexed CFM template that output a result page after a long process.The process includes: connecting to 3-4 diffrent datasources, string manipulation, math calculations, links, includes, everything... I though about the

I've lost a week's work!!!

2001-09-19 Thread Michael Lugassy
I just had to hard reset my computer while editing a cfm template in coldfusion studio, and when I logged in again found out it was 0 byte!!! All of my week's work is gone (the file was around 15Kb of code). I didn't save it in a diffrent location. is there still a place where I can find it??

Re: ImageMagick - anyone use with CF?

2001-09-19 Thread Michael Lugassy
If your project needs to create thumbnails, copy/rename/move images alone, just use CFX_IMAGE. http://www.intrafoundation.com CFEXECUTE is easy to use, just read the docs, call the cmd prompt with the right arguments to complete the task for you. Again, I'm not sure how ImageMagik handles

test

2001-09-19 Thread Michael Lugassy
test ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Re: Hardware Consideration

2001-09-17 Thread Michael Lugassy
Mark, I assume the OS would be windows advanced server? Why advanced? Michael. Date: Sun, 16 Sep 2001 14:11:10 +0200 From: Michael Lugassy [EMAIL PROTECTED] Subject: Hardware Consideration Message-ID: 000e01c13ea8$adc3c240$[EMAIL PROTECTED] This may seem a bit OT, but if any pro. can help

Hardware Consideration

2001-09-16 Thread Michael Lugassy
This may seem a bit OT, but if any pro. can help me out here, I'll be glad to hear all tips and pointers. I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion IIS website. The server mostly run SQL Full-text queries, (10-20 million text rows) Also, there some Coldfusion

Re: Hardware Consideration

2001-09-16 Thread Michael Lugassy
Jeffry, Are you looking for a database Server ( SQL Server? Oracle?) or a ColdFusion server, or a machine that can handle both at once? It is usually recommended that you try to separate your database server from your Application Server. Something that can handle both at once (SQL and

Long Term Caching

2001-09-16 Thread Michael Lugassy
I have a complexed CFM template that output a result page after a long process.The process includes: connecting to 3-4 diffrent datasources, string manipulation, math calculations, links, includes, everything... I though about the following way to cache: Every cfoutput (and other html/js code)

Long-Term Caching

2001-09-14 Thread Michael Lugassy
I have a complexed CFM template that output a result page after a long process. The process includes: connecting to 3-4 diffrent datasources, string manipulation, math calculations, links, includes, everything... I though about the following way to cache: Every cfoutput (and other html/js code)

Highlighting search results

2001-09-14 Thread Michael Lugassy
I have a search query that uses verity to produce search results from a Product_desc field. Instead of Verity's summary field, I need to output portions of the Product_desc column. I want to output ONLY relevent sentences (the same as Google does), so a search for nokia or cellular or phone

OT: SQL Filtered SELECT

2001-09-03 Thread Michael Lugassy
I use a SQL Full Text query that finds search_query in Product_desc, Something like this: SELECT Product_id, Product_desc FROM Products WHERE CONTAINS(Product_desc,'#search_query#') What if I don't want to select the complete Product_Desc field, but only portions of it? By only portions I mean

RE: SQL Filtered SELECT

2001-09-03 Thread Michael Lugassy
Don, If there is any interest I could write either a custom tag or udf to do this. The idea was the filter the SELECT, and not highlight the search term(s). Is there a way to minimze the amount of data sent by CFQUERY like I need? Michael.

Plain text view in outlook?

2001-08-31 Thread Michael Lugassy
How can I use my outlook to simulate Plain text e-mail reader? I just come up with a code that will send both html and plain text In the same message = I see the html just fine (without text notes) But I want to be able to see it in Plain text also. Thanks, Michael

RE: Plain text view in outlook?

2001-08-31 Thread Michael Lugassy
Mark, tools, options, mail format, and choose plain text from the message form drop down list This option is for sending mail messages, not receiving. Maybe if someone has a plain text (support?) e-mail client I can send him an example? Michael.

RE: bookmarking pages?

2001-08-31 Thread Michael Lugassy
Put a session (cookie or var) in the login screen And then for every page check if the user has this var/cookie. If he does, proceed and show the page, if he doesn't = throw Him to the login page. (prefarbly embed this code on application.cfm) Thanks, Michael -Original Message-

Re: Me Vs. Search Results

2001-08-29 Thread Michael Lugassy
Brian, SELECT left(whateverColumn,20) AS shortDescription FROM whateverTable This will only catch the 20 left most characters. I need the select (AS shortDescription) to include sentences that includes some/all of the query term(s). Michael.

Me Vs. Search Results

2001-08-28 Thread Michael Lugassy
I'm trying to output a google like results from SQL (not verity): 1. Build a summarize result that contains only sentences that includes most of the search word/pharases. 2. Highlight the summary - so that any search term(s) from the query will be bold. (in example i've marked bold/highligheted

TagFusion/$ervlet?

2001-08-25 Thread Michael Lugassy
Wasn't TagFusion/TagServlet was free (open-source) 2 months ago? http://www.tagservlet.com/purchase.cfm Are there any more alternatives for Macromedia expen$ive Coldfusion Server that I should know about? Michael. ~~ Structure your ColdFusion

OT: Checking server

2001-08-21 Thread Michael Lugassy
We're about to co-locate a server in a new location. The sales dept. of the farm and sysadmin agreed to let us hook a computer to check their farm speed and connectivity. prefearbly, without the need to purchase any software.. How can we do it efficiently? How can we simulate users access and

OT: a matter of milliseconds?

2001-08-19 Thread Michael Lugassy
In an OPTIMAL NETWORK conditions, Will a server co-located in Israel perfrom as good as a co-located server in the US? Same hardware, same visitors from around the world (with a slight edge for US people). Any idea? Michael. ~~ Structure your

Re: OT: a matter of milliseconds?

2001-08-19 Thread Michael Lugassy
Len, probably not, ime. typically a lot worse, since connectivity and peering for .il is much poorer than for USA. Try to telnet or develop over ftp with 500 ms delay is painful. But will the visitors really see the diffrence? There was some @sshole in .il trying to anonymous ftp login

Re: OT: a matter of milliseconds?

2001-08-19 Thread Michael Lugassy
That's a problem because I'm in Israel and would like to see the affect on US surfers. Would you mind trying www.imvamp.com www.jpost.com Thanks, Michael - Original Message - From: Len Conrad [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, August 19, 2001 4:22 PM

Pushing VERITY limits

2001-08-14 Thread Michael Lugassy
I'm trying to push VERITY (version that is supplied with CF) to its limits. Have anyone tried Verity with hunderds of thousdans of text records? Is there a big diffrence with the version supplied on CF 4.5/5? Thanks, Michael ~~ Structure your

Re: Pushing VERITY limits

2001-08-14 Thread Michael Lugassy
Dave, notenough 125-250,000 is not enough. any alternatives to Verity that I should consider? /notenough Thanks, Michael - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 14, 2001 3:36 PM Subject: RE: Pushing VERITY limits

Re: CFMAIL and SMTP on IIS4.0 (NT4.0)

2001-08-14 Thread Michael Lugassy
Good one. Again, are there any other HEAVY=DUTY solutions for full-text? Other then Verity built-in (or Verity pro add_on)? Thanks, Michael - Original Message - From: David Berger [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 14, 2001 3:09 PM Subject: CFMAIL and

Hebrew with SQL Full-Text

2001-08-14 Thread Michael Lugassy
I can't seem to run SQL Full-Text queries (FREETEXT/CONTAINS) using hebrew. every word/phrase I try to search on, SQL is throwing: All noise words error. I know I have to change the SQL settings to Neutral Language. Is that true? how can I do that? Michael.

OT: buying/leasing SQL

2001-08-08 Thread Michael Lugassy
I need to license SQL for DUAL cpu server and didn't find answer on MS site. 1. is it possible to still buy SQL server 7 somehow? does the new (per-cpu) pricing apply to this? 2. is it possible to lease SQL 7/2000 somewhere? 3. is it possible to have the rather high price splitted into monthly

OT: rent a coder

2001-08-08 Thread Michael Lugassy
Someone know other sites like: rentacode.com where I can rent a coder to do c/c++/delphi work for me? for mostly small projects. Michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

OT: multiple IE installations

2001-08-07 Thread Michael Lugassy
Is it possible to install several Internet Explorer browers (diffrent version) on the same machine for testing? (IE4, 5, 5.5, 6) and what about Netscape? anyone tried it? how should I do it? Michael. ~~ Structure your ColdFusion code with

PostgreSQL with CF

2001-08-03 Thread Michael Lugassy
Anyone tried PostgreSQL with Coldfusion? I'm trying to develop a full-text mechanisem of 10gb table with it. Possible? Recommended? All comments welcome! Michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

default.ida?

2001-08-03 Thread Michael Lugassy
I keep seeing on the log files some default.ida request. are those hacking attempts? what is this file do? Michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

POSTgreSQL

2001-08-03 Thread Michael Lugassy
Anyone tried PostgreSQL with Coldfusion? I'm trying to develop a full-text mechanisem of 10gb table with it. Possible? Recommended? All comments welcome! Michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Resizing images

2001-07-31 Thread Michael Lugassy
Search the archives for thumbnails Thanks, Michael - Original Message - From: Hamid Hossain [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 11:16 AM Subject: Resizing images Hi, I want to be able to resize gif, jpg or bmp pictures with coldfusion.

OT: Developing IE toolbar

2001-07-31 Thread Michael Lugassy
Prett OT, but anyone know how hard it is to program IE toolbar that will run queries on a cf server? something which is similar to Google's great toolbar? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Got the fellow, but....

2001-07-31 Thread Michael Lugassy
For servers? Thanks, Michael I heard BlackIce was useless. ZoneAlarm does a better job apparently. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jon Hall Sent: Tuesday, 31 July 2001 5:41 AM To: CF-Talk Subject: Re: Got the fellow, but

mySQL

2001-07-31 Thread Michael Lugassy
I was wondering if someone is using mySQL with coldfusion? and in general, can someone tell me how good mySQL is compared to msSQL, does it support full-text? and reasonable (3-5 gb) amount of data? Michael. ~~ Structure your ColdFusion code with

Re: mySQL

2001-07-31 Thread Michael Lugassy
. MS-SQL is going to give you alot more functionality though. - Original Message - From: Michael Lugassy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 5:10 PM Subject: mySQL I was wondering if someone is using mySQL with coldfusion

Got the fellow, but....

2001-07-30 Thread Michael Lugassy
I'm doing a pretty intensive watch on my server stastics and log files in real-time. sometimes I see people who try stupid stuff like: /winnt/system32/cmd.exe and trying to url hack (with ;drop tables) . my question is: when I'm seeing the guy's IP address in the stas server or log files, and

Re: DOSS Attacks (Was: Got the fellow, but....)

2001-07-30 Thread Michael Lugassy
- Original Message - From: Michael Lugassy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 30, 2001 1:14 PM Subject: Got the fellow, but I'm doing a pretty intensive watch on my server stastics and log files in real-time. sometimes I see people who try stupid stuff

Put into Reverse

2001-07-30 Thread Michael Lugassy
I'm having difficulties reversing a long string that was written in backward hebrew. which means it was first written from right to left AND opposite (dont ask...) something like: skrab dna riah tuo evael yehT. sgod etah I. I want to get this string back to it's straight form (I hate dogs. They

Re: Put into Reverse (cf_hinojosa)

2001-07-30 Thread Michael Lugassy
, 1) /cfloop cfoutput#newStr#/cfoutput -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 5:25 PM To: CF-Talk Subject: Put into Reverse I'm having difficulties reversing a long string that was written in backward hebrew. which means

Re: Put into Reverse (WWF)

2001-07-30 Thread Michael Lugassy
!--- Output the sentences --- cfloop from=1 to=#arrayLen(sentences)# index=i cfoutput#sentences[i]#/cfoutput /cfloop -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 5:25 PM To: CF-Talk Subject: Put into Reverse I'm having difficulties

Re: To hell with it all......

2001-07-30 Thread Michael Lugassy
You guys are starting in Monday and still complaining??? Michael, Israel - Original Message - From: Justin Hansen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 1:16 AM Subject: RE: To hell with it all.. Sounds like someone has a case of the

Big, Very BIG

2001-07-25 Thread Michael Lugassy
I'm looking for a big search engine solution. Not a simple verity collection, something very big (10-20 million rows of text). I've looked into SQL full text search but it has it disadvantages. can someone help in reffering me to some solution? maybe outsource or a 3rd party which is

Hebrew in SQL

2001-07-25 Thread Michael Lugassy
Do you know if I can put hebrew characters inside a SQL 7.0 database? I want to enable full-text searching via MS-SQL capability, Will one of MSSQL versions will support it? Do I need a hebrew supported operating system for that? (I don't want to use unicode) Thanks, Michael.

Re: Big, Very BIG

2001-07-25 Thread Michael Lugassy
10,000,000 rows of text? can Verity handle that? is this what the big portals and search indexes are doing? Thanks, Michael - Original Message - From: Paul Ihrig [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 6:33 PM Subject: RE: Big, Very BIG i would

Re: Making A Local Copy of a CF site...

2001-07-24 Thread Michael Lugassy
Try offline explorer Pro at http://www.metaproducts.com this will create an offline version of any given site no matter how complex it is (coldfusion, javascript, flash, java...) Check it out,. Michael. - Original Message - From: Dasher [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: date field

2001-07-24 Thread Michael Lugassy
IsDate Returns TRUE if string can be converted to a date/time value; otherwise, FALSE. Note that ColdFusion converts the Boolean return value to its string equivalent, Yes and No. cfif isDate(weirdcolum) #DateFormat(weirdcolum)# cfelse #weirdcolum# /cfif Helps? Michael.

Re: Fusebox and Search Engines/Statistics

2001-07-24 Thread Michael Lugassy
if something goes wrong (better not track a single view then to give a stupid error). Anyhow, I'm intrested too if a cfinclude template=/comp/welcome.html would count as a hit on welcome.html with IIS stastics? anyone? Michael Lugassy, Interactive Music Ltd. http://www.imvamp.com - Original

Me Vs. Complexed Table Design

2001-07-23 Thread Michael Lugassy
We have a big index of sites, each site belongs to a certain main category and a sub_category. Certain sites are nested inside 2,3 and even 5 sub-sub categories. How can I create a category(ies) table(s) that will store the catID and catNAME? (each category/subcategory ID takes 2 places xx)

Re: Me Vs. Complexed Table Design

2001-07-23 Thread Michael Lugassy
. You'd probably have to loop over a CFQUERY, which gets nasty. Hope this helps Norman Quoting Michael Lugassy [EMAIL PROTECTED]: We have a big index of sites, each site belongs to a certain main category and a sub_category. Certain sites are nested inside 2,3 and even 5 sub-sub

Re: Me Vs. Complexed Table Design

2001-07-23 Thread Michael Lugassy
Let's say I'm using the second (following) alternative: CATEGORIES: catID parentCat catName SITES: siteID siteName catID (FK) and I want to display a tree of categories, based on a catID from sites how can I SQL-SELECT recursivley, all the relevent catNAMES? Sounds pretty messy... Michael.

Re: Me Vs. Complexed Table Design

2001-07-23 Thread Michael Lugassy
has a parent of zero. I've wanted to go back and convert it to the nested tree model, but haven't gotten around to it :) If you need more detailed info, i can dig up the code. Norman Quoting Michael Lugassy [EMAIL PROTECTED]: Let's say I'm using the second (following) alternative

OT: Complex Select

2001-07-22 Thread Michael Lugassy
Is it possible to SQL-SELECT a specific number of rows from between the result set. NOT by using the BETWEEN keyword in the WHERE clause, but by choosing to select only rows x through y. let's say I have this results set personID personNAME 1 Michael 2

Re: [OT: Complex Select]

2001-07-22 Thread Michael Lugassy
Alex, The Database is Access, how can I loop, exactly? Michael. what dastabase? you could do it it in a stored proc with a loop Michael Lugassy [EMAIL PROTECTED] wrote: Is it possible to SQL-SELECT a specific number of rows from between the result set. NOT by using the BETWEEN keyword

Re: General windows question

2001-07-22 Thread Michael Lugassy
CF_formatkindaWay OFF TOPIC and Not intresting!/CF_format Thanks, Michael - Original Message - From: jonathan hamner [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, July 22, 2001 6:21 PM Subject: General windows question When you click on start, then click on run. Then

Re: HTML image

2001-07-21 Thread Michael Lugassy
Adrian - Check out http://www.html2jpg.com I recently checked ver 2.1 and had great success! Michael - Original Message - From: Adrian Cesana [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, July 21, 2001 9:38 PM Subject: HTML image Anyone know of any tools available

Re: HTML image

2001-07-21 Thread Michael Lugassy
I've succesfuly used CFHTTP in the past to GRAB the data from a publisher website, then parsed the information using left,mid,find, and other functions and then created an image (on_the_fly) using CFX_image's action: PASTE_TEXT you can create any image you'd like, in any format and define x,y,

sending a file directly

2001-07-19 Thread Michael Lugassy
I have a page with direct links to ZIP files (i.e http://mydomain/1.zip, 2.zip and so on..) I'm trying to find a way to count hits on that link WITHOUT opening a pop up window. I.e - users will click on the ZIP file, a cf page will answer, count the hit to the database and then release the

Re: sending a file directly

2001-07-19 Thread Michael Lugassy
Thomas, It's not that simple. I don't want a pop up window to relase the file with cfcontent, yet I don't want the file to be displayed on the main page on every view. just on click. Thanks, Michael - Original Message - From: Thomas Chiverton [EMAIL PROTECTED] To: CF-Talk [EMAIL

RequestTimeOut

2001-07-18 Thread Michael Lugassy
Can I set a special RequestTimeout value for certain files that are located in the same directory using application.cfm? if so, what should I add there? Thanks, Michael ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Scoping Variable

2001-07-18 Thread Michael Lugassy
how do I enforce CF to use only url.q and not simply q i.e - how to ask cf to search for scoping on every variable? where is it in the administrator? Thanks, Michael ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Scoping Variable

2001-07-18 Thread Michael Lugassy
of it is strictly prohibited without our authority. If you are not the intended recipient, you are not authorised to disclose, copy, distribute, or retain this message. Please notify us on +44 (0)207 387 8890. -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED

OT: COUNT(*)

2001-07-18 Thread Michael Lugassy
Which is faster? COUNT(*) or COUNT(fileID) assuming fileID is a regular INT, that is also my primary key Thanks, Michael ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

Re: COUNT(*) I think I think ;-)

2001-07-18 Thread Michael Lugassy
No straight answer, ha? Thanks, Michael - Original Message - From: Pete Freitag [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 18, 2001 5:58 PM Subject: RE: COUNT(*) I think this depends on the DBMS that you are using. In SQL Server I think COUNT(field)

Re: Reversing Text Order BUT...

2001-07-17 Thread Michael Lugassy
Paul, I will first need to make use of all the offline content that the company have on backward hebrew... Thanks, Michael - Original Message - From: Paul Hastings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 17, 2001 7:48 AM Subject: Re: Reversing Text Order

IE crashes when copying shortcut?

2001-07-17 Thread Michael Lugassy
I've seen this in a couple of sites, now it's happening to me! Did someone tried to right click an image or link in IE 5.5 and chose copy shortcut and got a IE crash? I'm trying to do so on every one of our thumbnails here: http://www.imvamp.com/photoshare/?action=browsegrid=Pokimon and

Me Vs. Counters

2001-07-17 Thread Michael Lugassy
I'm trying to find the best way to count hits on multiple files on a photoshare site. Each photo (jpeg) is called using a .cfm page (to include the next/prev interface and photo details) like this: http://www.imvamp.com/photoshare/?action=browsegrid=Pokimonphid=1787colid=1cols=3 Questions: 1.

Re: Licensing Search Engine Results

2001-07-16 Thread Michael Lugassy
is would you WANT other search results? Lee -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 15, 2001 12:05 PM To: CF-Talk Subject: WOT: Licensing Search Engine Results Can anyone recommend a good search engine company

Love CF, what about CFFLUSH?

2001-07-16 Thread Michael Lugassy
calculations and manipulation before showing the final page. this may take some time a bit. will the CFFLUSH help to show the page, part by part? so users won't click STOP and vanish?? Thanks, Michael Lugassy VAMP Photo Share! http://www.imvamp.com/photoshare/index.htm Serving all of your media

Re: Love CF, what about CFFLUSH?

2001-07-16 Thread Michael Lugassy
the same thing... Gene Kraybill On 16 Jul 2001, at 19:12, Michael Lugassy wrote: I just finish one heck of a Photo Share mechanisem with CF 4.5 in JUST 2 weeks! :))) Databases, Images, thumbnails, subscriptions, http calls, everything! but one thing IS DEFINITLY MISSING - the new CFFLUSH

Re: execute programs

2001-07-16 Thread Michael Lugassy
use cfexecute! almost every program can run very well with params or in command line mode to create great stuff. make sure the coldfusion user/system has enough privilieges, though. Michael. - Original Message - From: Jones, Becky [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

javascript vars to cf vars?

2001-07-16 Thread Michael Lugassy
this might sound stupid but - is it possible to put js vars (like, screen width) into coldfusion vars? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Reversing Text Order BUT...

2001-07-16 Thread Michael Lugassy
I need to do a complexed revers of a long text file that includes hebew, english and numbers. because hebrew is written backwards on htmls, I will need to reverse all hebrew chars, recognized by specific chr numbers (150-179, for example) BUT keep the english and numbers in the same order. I

WOT: Licensing Search Engine Results

2001-07-15 Thread Michael Lugassy
Can anyone recommend a good search engine company that will license the search results and allow me to put them on my site, after full customization? (Other the the OBVIOUS google/altavista which seem a bit expensive.) This is kinda WOT but I'm gonna use CF to customize the results on the back

Re: CFTry/CFCatch

2001-07-12 Thread Michael Lugassy
Yes - Original Message - From: Duane Boudreau [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 11, 2001 8:38 PM Subject: CFTry/CFCatch If an error is caught by cftry/cfcatch is it logged in the server or application log? TIA, Duane

Re: Important ColdFusion Security Patch Released Today

2001-07-11 Thread Michael Lugassy
Maybe they don't want no hackers to take advantage of that melicous bug? Let's install it, god d$$m Michael. - Original Message - From: Larry W. Virden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 11, 2001 11:47 PM Subject: Re: Important ColdFusion Security

Re: cffile error

2001-07-10 Thread Michael Lugassy
Weird, I'm getting the same error when I ran out of ram or restart the cf-server (while trying to view a .cfm file), maybe the file you are uploading is very big? try uploading a simple 10Kb TXT file, see what happens. also - try changing upload2.cfm to include only 1 task (file upload OR db

Re: Column names containing a # sign

2001-07-10 Thread Michael Lugassy
Try calling the # with its respectebly chr(num) I don't know which asacii code is # but try this (although it may sounds silly): (let's say the 19 ASCII code is #)... UPDATE Registration#chr(19)# SET . bla bla bla It might help because I've seen cases where the char itself and the

HTML to JPEG?

2001-07-09 Thread Michael Lugassy
I need to create a thumbnail view of the front/home page of a given site. that should be done automaticlly, ofcourse. does anyone know such a program that will allow batch convert of html files to jpegs (as if I would hire a peon to capture/grab the pages manually)? Thanks, Michael Lugassy

Re: Is it really POST? [SOLVED]

2001-07-09 Thread Michael Lugassy
? -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 2:40 PM To: CF-Talk Subject: Is it really POST? How can I check if the .cfm file was submitted using POST and not GET? (I'm trying to prevent, as possible, people to submit the params using URL

CGI.variables list

2001-07-08 Thread Michael Lugassy
Does someone has a full/partial list of CGI variables? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

Re: KILL THE COOK!

2001-07-08 Thread Michael Lugassy
But I didn't understand what they put inside the cf_inputfilter that deleted the cookie whenever I closed the browser (although it was set to never). did you happen to take a look at it? btw: I thought the data in the cookie is encrypted, how does people suppose to change it? Thanks, Michael

Is it really POST?

2001-07-08 Thread Michael Lugassy
How can I check if the .cfm file was submitted using POST and not GET? (I'm trying to prevent, as possible, people to submit the params using URL and not form fields). Thanks, Michael Lugassy ~~ Structure your ColdFusion code with Fusebox. Get

Re: URL Hacks (even more)

2001-07-06 Thread Michael Lugassy
What about people who write something like this: http://www.vawter.com/slideshow.cfm?seldir=90;'%20DROP%20TABLE%20IMAGES or http://www.vawter.com/slideshow.cfm?seldir=90;''%20DROP%20TABLE%20IMAGES ' or '' between/after/in middle the URL, thus closing the first condition and opening a new

single IP mode?

2001-07-06 Thread Michael Lugassy
I've just installed the cf 5.0 evaluation. what is that Single IP mode restriction after 30 days? Thanks, Michael Lugassy ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

Re: URL Hacks

2001-07-06 Thread Michael Lugassy
Would it be a good solution to add something like this into my application.cfm file? cfloop index=IDelement list=numID1,numID2,numID3,numID4,numID5 cfif isDefined(url.#IDelement#) cftry cfparam name=url.#IDelement# type=numeric cfcatch !--- Replace the parameter with a good one --- cfset

html and plain text on the same cfmail?

2001-07-03 Thread Michael Lugassy
something about it? Thanks, Michael Lugassy ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http

Multiple file upload / activeX?

2001-07-03 Thread Michael Lugassy
Anyone know a good activex com' that will be installed on the user computer (as with the Install and Always Trust software from... window) and will allow multiple files upload to server w/ the client's directories tree, selection etc.? Thanks, Michael Lugassy

ot: SQL select all BUT

2001-06-28 Thread Michael Lugassy
Is there a way to run a select statment that fetch ALL (*) colums BUT colum5,coulm6 something which is similiar to: SELECT colum1,colum2,colum3,colum4 ~~ Structure your ColdFusion code with Fusebox. Get the official book at

cfx_imageinfose

2001-06-28 Thread Michael Lugassy
has someone had the problem with cfx_imageinfose that suddently it stoped working? just giving 0,0,0 for all images? Thanks, \ michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Generating a .txt document with CF

2001-06-27 Thread Michael Lugassy
Yea, it's very easy! if you can create a variable or a regular cfoutput with the formatting you want, you just need to use CFFILE action=write/append to write this information into a file. cffile action=WRITE file=fullpath\filename.txt output=put output string here Thanks, Michael -

Re: Problem with cfhttp

2001-06-27 Thread Michael Lugassy
Here is my help on the subject for someone else, but maybe can help you: JM, you must seperate between the two tasks: 1- first fetch for the page using cfhttp, then output cfoutput#cfhttp.filecontent#/cfoutput 2- write to another file using CFFILE. As I see it, you do have a problem of

replication software for sql

2001-06-27 Thread Michael Lugassy
-in mechanisem in sql 7? Thanks, Michael Lugassy ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http

  1   2   3   4   >