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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by postwick

  1. postwick

    What is the best way to do this.

    The proper way to do this is with a separate table for ingredients with a foreign key to the recipe table. How you have the user enter the info is up to you - separate text boxes, one at a time, a textarea with ingredients separated by comma or carriage return, but when you put it in the db...
  2. postwick

    can CFPOP retrieve email in HTML format?

    Hopefully you're watching this thread. I went to Macromedia's site and did the following search from their forum search page: http://webforums.macromedia.com/coldfusion/search.cfm CFPOP AND HTML in Title OR Body I checked all the Forum Categories except Int'l Char Sets, Security, Java with...
  3. postwick

    CFPOP and from field

    if you're outputting the information to a web page, the email address is there between the < and > signs, but the browser is interpreting it as an HTML tag. I usually use a replace statement like the following, to replace the < and > characters with [ and ]: #replace(replace(FROM...
  4. postwick

    can CFPOP retrieve email in HTML format?

    I'm trying to use CFPOP to retrieve emails and forward them along to other addresses. When I output the email message body to the browser, there is no HTML, and when I re-send the message there is no HTML. I know for sure the email being sent to it is in HTML format. Is there a way to get...
  5. postwick

    backing up linux server??

    I've been looking at using Amanda on Linux. If you're going to back up your Linux files to a Windows system, you could just use the Windows Backup that comes with it. It doesn't sound like you have any real special requirements, so that would do the job. I have a question...what are the most...
  6. postwick

    backing up linux server??

    No, it wouldn't be horrible. The main drawback is copying all that data over the network, but you could set it to run at night.
  7. postwick

    How to encrypt the .cfm file

    what version of CF? In 4.5 there is a cfcrypt.exe file that comes with ColdFusion. I don't know if it exists in later versions, though. if you have it, just tpye cfcrypt at the command line and it'll tell you how to use it.
  8. postwick

    Session management doesn't work

    why are you resetting the cookie values in the last couple lines? those cookies are already set...it looks like what you're doing is setting them so they are not persistent. take out those last two CFCOOKIE lines - they're already set.
  9. postwick

    backing up linux server??

    If you can access the files from Windows systems, anything you do to copy the files should be sufficient. But that's where knowledge of the accounting software is important. The key is whether or not you're able to back up the files when NO software or person is accessing them, and if simply...
  10. postwick

    what does /etc/mail/access block?

    Say a particular email goes from some system on the Internet called serverA, to serverB, to serverC, to myServer. Would putting a &quot;serverB REJECT&quot; in /etc/mail/access block this example email? Or does the access file only block based on the server that is actually connecting to...
  11. postwick

    How do I set linux file permissions for RDS access

    I can connect to my Linux (RedHat 7.2/CF 4.5.1) server remotely using RDS, with no problems. I can browse to my /var/www/html folders OK. As soon as I try to create or edit a file, I get: &quot;Error attempting to open file: /var/www/html/ubeek/untitled.cfm. <P> Error = Tried to open...
  12. postwick

    logwatch crontab - what user?

    Logwatch automatically runs every night, which I want. However, I want to modify the crontab that is running it. When I look in root's crontabs it's not there. What user does logwatch put it's crontab in?
  13. postwick

    firewall - NAT translating internal-to-internal communication

    I've spent days getting this all set up and this was the last bug I had to work out. I don't know a ton about routing, and this one had me stumped. You are my savior! Thanks for the help.
  14. postwick

    firewall - NAT translating internal-to-internal communication

    ifconfig from 10.1.1.10: eth0 Link encap:Ethernet HWaddr 00:10:5A:E4:D3:52 inet addr:65.1.1.10 Bcast:65.1.1.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:51572 errors:0 dropped:0 overruns:0 frame:0 TX...
  15. postwick

    firewall - NAT translating internal-to-internal communication

    Decided to make time... Here's 'route -v' from 10.1.1.10 65.1.1.0 * 255.255.255.0 U 0 0 0 eth0 10.1.1.0 * 255.255.255.0 U 0 0 0 eth0 127.0.0.0 * 255.0.0.0 U 0 0 0 lo default 10.1.1.254 0.0.0.0 UG 0 0 0 eth0 from 10.1.1.11 65.1.1.0 * 255.255.255.0 U 0 0 0 eth0...

Part and Inventory Search

Back
Top