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

  • Users: vipm
  • Order by date
  1. vipm

    CFADMIN MAPPING

    Logical Path should usually be "/" and Directory Path should be where your webserver puts your web pages. With Apache, it's usually at C:\Program Files\Apache Group\Apache\htdocs\ while IIS uses C:\INETPUB\WWWROOT\ so, given an Apache server, your mappings will be... Logical Path = /...
  2. vipm

    Browser Back Button

    Can't you prevent resubmits by simply putting a cookie or setting a session, client, or database variable that the current client is already logged in and shouldn't be allowed to resubmit? So even if they can go "back" with back button, they can't resubmit by clicking on submit button...
  3. vipm

    configure coldfusion 5 on apache

    If you'll look in your ColdFusion 5 documentation (which should have been installed on your hard disk when you installed ColdFusion 5), you'll find a section on manually configuring Apache. Look in your hard disk for something like "CFDOCS\Installing_and_Configuring_ColdFusion_Server&quot...
  4. vipm

    Popup help?

    I'm afraid different versions of IE and Netscape perform Javascript differently. If it works in the IE version, there's actually nothing wrong with your code, it's just that the Netscape version you're trying doesn't support that code. Unless you're willing to check for browser type and version...
  5. vipm

    QUERYING FROM DATABASE AND FOLDER ??

    You need to also store the file name of the images in your database so you can dynamically show them. So it'll be something like: <cfoutput query=&quot;q_cars> OWNER: #name# CAR: #car# PICTURE: <IMG SRC=&quot;#carpic#&quot;> </cfoutput>
  6. vipm

    Need CFFILE to write to network directory

    There might be a problem with your path that's why it can't be found. If your CF template is on the same directory as the XML file, try just using the file name and see if it works: file=&quot;RASFORMCONFIG.xml&quot; Otherwise, try experimenting opening the file in your Explorer window and...
  7. vipm

    Delete row of info via a checkbox, need help with SQL

    If checkbox is not filled up, it doesn't get the value &quot;0&quot; but is &quot;undefined.&quot; As for the data type mismatch error, the field &quot;id&quot; most probably is of type integer. Thus you shouldn't put quotes around it--this is only for strings. Try... DELETE FROM...

Part and Inventory Search

Back
Top