Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tleish
  • Content: Threads
  • Order by date
  1. tleish

    XSL: Convert Escaped XML into DOM

    I'm using xsl to parse an xml document. It's a bit rediculous, but part of the xml is escaped and there's currently nothing I can do about it. <parent> <child> &lt;id&gt;1&lt;/id&gt; &lt;name&gt;Test&lt;/name&gt; </child> </parent> I want to be able to read it as: <parent> <child>...
  2. tleish

    Wilcard Ports/Subdomains

    I am running apache on NT and am having a difficult time figuring out how to set up a wildcard port. I've read the apache docs and can't seem to get it to work. Anybody have insight on this or on WildCard subdomains? - tleish
  3. tleish

    Java Editors

    Are there any Java Freeware Editors that are comparible to applications like the old Kawa? - tleish
  4. tleish

    CFMODULE/Custom Tags Running Twice

    Anyone know why all of the sudden my CFMODULE and CF Custom tags are executing twice, and I can't figure out why. I've re-booted, looked through the documentation and I can't figure out what is causing it. Any ideas? - tleish
  5. tleish

    Query Analyzer : Open Window

    How do I set up a DB in SQL Server to allow an individual to open up a table window in SQL Query Analyzer that is not &quot;Read-Only&quot; ...so as to allow them to edit the date in the table like an excel sheet? - tleish
  6. tleish

    Name in CFMAIL From/To

    Anyone know how to put a name into a from/to parameters in <CFMAIL> ? I tried the following, but CF didn't even send the email because it didn't recognize the email address as valid: <CFMAIL FROM=&quot;Bob Johnson <bjohnson@email.com>&quot; TO=&quot;Tim Doolittle <tdoolittle@email.com>&quot...
  7. tleish

    Database Design Methodology

    Does anyone know of any good DB Design methodologies? I was talking with a DB admin recently who told me that his developers were tired of learning a new db schema every time they started a new web application that involved a database. He said he was trying to somehow come up with a...
  8. tleish

    CFHTTP and SSL

    I want to be able to send a file from one server to another server via SSL. Previously I read a bunch of documentation that said that you had to run ColdFusion as a Descktop app if you're running on NT. See: http://www.allaire.com/Handlers/index.cfm?ID=1608 But in the article that explains how...
  9. tleish

    SSL File Transfer AS/400

    I have a client who runs their intranet on AS/400. I have very little knowledge of the AS/400 and it's capabilities. Is there a way a client machine can upload files through a batch type process using an SSL connection to an AS/400? Or, is there a way I can securely transfer files from an NT...
  10. tleish

    Fuzzy Search Engine

    Anybody have any experience with a site search engine with ColdFusion that uses &quot;fuzzy logic&quot;? Verity that comes with ColdFusion doesn't appear to have much in this area. I need something better than just using LIKE in a query. Anybody have any experience or recommendations on this...
  11. tleish

    CFFILE - Best Practice

    I've had some scripts that read and write to txt files. Every once in a while I get an error the page, and find out that the last time the txt file was updated, it never finished the lines of text, so it threw errors in my parsing. I'm assuming this happens because the server crashed or...
  12. tleish

    Parse Complex Date

    I have a small C++ time card application that writes the info to a txt file. I'm trying to parse through the txt file in a web app language, but I'm not sure how to parse out the date format. I've talked to the developer of the application, but they don't know anything about the date, they use...
  13. tleish

    Parse Complex Date

    I have a small time card application that writes the info to a txt file. I'm trying to parse through the txt file with ColdFusion, but I'm not sure how to parse out the date format. I've talked to the developer of the application, but they don't know anything about the date, the use another...
  14. tleish

    Include Library Module

    I'm fairly new to PHP, but not to programming. The hosting company recently told me that if there was a library/module that I wanted to use that wasn't compiled with their current version of PHP4, then I could upload the lib to a directory and include it myself in the code. I can't seem to...
  15. tleish

    Download HTML Perl Reference

    Anybody know where I can download a Perl Reference library in html? - tleish
  16. tleish

    Dynamic Image Paths

    I have a global variable set on a PHP site that establishes a path to the image directory. <? // Global Image Directory Path $img_root = &quot;/test/images&quot;; ?> Why is it when I reference this image path to display my images... <IMG SRC=&quot;<? echo &quot;$img_root/myimage.jpg&quot...
  17. tleish

    PHP and DB File

    A while back my ISP said there was a flat text file format you could save data in that you could query in PHP just like it's a DB. They suggested this for learning purposes. I remember I searched for the info on PHPBuilder and got some info, but didn't read it at the time. I forgot what it...
  18. tleish

    Dynamic sites and search engines

    I read the following article and tried to implement it, but I get an error. ARTICLE: http://www.sitepointforums.com/showthread.php?s=&threadid=15798 I change a url from: http://www.mydomain.com/test.php?test=hello to: http://www.mydomain.com/test.php/test/hello And I get the following...
  19. tleish

    How secure is htaccess with AuthUserFile

    How secure is using an .htaccess file with AuthUserFile parameter that points to a .pass file that is located beneath the root of the website. The reason I ask this is because a client want's this application that basically gives them full access to the site files. It uses the .htaccess as...
  20. tleish

    &lt;BASE HREF&gt; tag and Dreamweaver

    I would like to add a <base href=&quot;http://www.absolutepath.com/&quot;> at the head of a doucment and have Dreamweaver use this as the base path for all the images, links, etc on the page. It works in the browser, it's just that Dreamweaver won't recognize it and show any of the images if...

Part and Inventory Search

Back
Top