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 SkipVought 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: *

  1. RustyMason

    Selling Files: Keeping the File Location Secret

    Barbie, Here's what I ended up doing: #!/usr/bin/perl -w # #testpdf.cgi $real_doc_path = &quot;/usr/users/bclinton/public_html&quot;; $doc = &quot;$real_doc_path/ReadMe.pdf&quot;; print &quot;Content-Type: application/pdf\n\n&quot;; open (IMAGE, $doc); while (<IMAGE>){ print $_; }; close...
  2. RustyMason

    Selling Files: Keeping the File Location Secret

    I have a site that I want to sell files (.pdf, .doc, etc.) from. All of the solutions I've tried so far expose the file's URL. But, I want to hide the actual location of the files to keep non-paying customers from accessing them. I could make a temporary file for the paying user, and put it...
  3. RustyMason

    Oracle8i Data Encryption

    Here is a link to the 8.1.6 Oracle Documentation on DBMS_OBFUSCATION_TOOLKIT : http://technet.oracle.com/doc/oracle8i_816/server.816/a76936/dbms_ob3.htm Rusty Rusty Mason ThinkSpark, Houston, Texas (713)961-4060 x49 Rusty.Mason@ThinkSpark.com Attitude, Faith, Persistence
  4. RustyMason

    UTL_TCP

    I was able to get UTL_TCP to work just fine in 8.1.6, but not 8.1.5. BTW, the example in the package documentation slightly off. It shows calling utl_tcp.write_line as a procedure, but it's really a function. << CREATE OR REPLACE PROCEDURE SEND_MAIL ( -- Example taken from: --...

Part and Inventory Search

Back
Top