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 Mike Lewis 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. popeus

    May be simple, but I'm not getting it.

    The column name in the dbtable would be Animal. For each row of records that field may contain only cat or could contain cat,dog or it could contain cat,dog,bird or cat,dog,bird,fish. So that field could contain a single word or a comma separated list of words. I need to be able to select...
  2. popeus

    May be simple, but I'm not getting it.

    No, same results as the other way. Select one option in the form and the query works, select two options and get 0 results.
  3. popeus

    May be simple, but I'm not getting it.

    No, I'm searching the db.
  4. popeus

    May be simple, but I'm not getting it.

    The column name would be animal. With the values of that column being row upon row, of comma separated values. In each row, there may only be one entry in the column for example cat or it may be cat,dog,bird
  5. popeus

    May be simple, but I'm not getting it.

    I need to query a list against a list in the db field. Example: <cfqery name="MyQuery" datasource="application.ds"> select MyField from DbTable where cat,dog,fish,bird LIKE '%form.cat,form.dog%' </cfquery> The above is a rough example, but I have a select box on a form where you can select...
  6. popeus

    DNS Issue I Think?

    I have 3 dns servers and 2 internet connections, dsl and cable both with static ip addresses. One email server behind router that routes all traffic on ports 25 and 110 to the single mail server, doesn't matter which internet connection the requests comes in on. I'm trying to use round-robin...
  7. popeus

    Resolution slows down

    I have a small website hosting company. The issue is I have two internet con nections, internet connection 1 is dsl with static ip's. internet connection 2 is cable with static ip's. Router is rv082, both connections plug into it and it handles web requests t o port 80. Two Win2k dns servers...
  8. popeus

    Second CF installation

    Need help guys. I have Win2K, IIS5, CFMX6.1. ServerA, has cf installed, but the cfide is located on a shared resource. Everything works fine. I'm setting up a second web server on a separate machine ServerB, installed CF on the separate machine and pointed the cfide to be installed on the same...
  9. popeus

    Local System - Script Permission

    Most services can be started using any account with the correct permissions. Login as administrator, right click My Computer, click Manage, expand Local User and Groups, right click Users, click New User, type in User name, "whatever". Type in Password, Confirm password. Un-check User must...
  10. popeus

    Where is CFusionMX7\wwwroot\examples

    Usually, you have to specify the examples be installed on the original installation, because it actully sets up databases and websites for the examples. I don't think you can install them other than on the original install. You may have to un-install and re-install to get the examples. I've...
  11. popeus

    Failed windows 2000 RAID mirror

    It sounds like the master boot record is corrupt. Even though you have an active partition the master boot record is what points to that partition as being the boot partition. The safest plan would be to setup a new machine install os, and applications, copy data over to new machine and you're...
  12. popeus

    barcode images generate images in coldfusion

    You may want to try a barcode font like code 39 ttf. The font would have to be installed on the client machine and you would have to format the page to fit the labels they're printing. There are free barcode fonts available just Google for them. For instance you could query the products table...
  13. popeus

    Send email when a visitor comes to site

    You may try: <cfif #CGI.REMOTE_ADDR# IS "205.12.25.56"> <cfmail to="me@me.com" username="me@me.com" password="mypassword" from="me@me.com" subject="Visitor Stopped By"> Visitor hit site. </cfmail> </cfif> Hope this helps. http://www.xorbmedia.com
  14. popeus

    print in html or pdf to a printer in scheduled task without user

    A Coldfusion scheduled task only runs applications and programs on the server. If you're wanting to print to a clients printer over the internet you'll have to think of another way. Perhaps a scheduled task on the clients machine that loads a url that contains your programming. Hope this...
  15. popeus

    IIS

    Make sure you can access the share through my computer. I always actually map the shared drive to a drive letter. If you can access the share from somewhere other that iis, try deleting the site and re-creating it in the iis console. It sounds like a networking problem since it will not connect...
  16. popeus

    What are Front Page Server Extensions?

    Server extensions is software that is integrated with IIS. When someone designs a page with MS FrontPage, the server extensions allow that person to use more advanced features such as submit a form. So the person can create a form without knowing how to use form post or action or sendmail. The...
  17. popeus

    IIS 5 Multiple Sites, showing same index page

    Never mind, fixed it.
  18. popeus

    IIS 5 Multiple Sites, showing same index page

    This is the first time I've seen this, I run my own dns and web server and have setup several web sites on the same ip address using host headers in the past but now I'm having trouble. I'm using examples below. Using host headers 2 entries for each site. 192.168.1.2, 80, www.site1.com...
  19. popeus

    Need suggestions for dns behind firewall

    Thanks, NetoMeter I'll give it a try.
  20. popeus

    Need suggestions for dns behind firewall

    Thanks, for your response. For arguments sake, lets say that each of the domains have too much traffic and database requests for one server to handle. 216.192.1.7 is actually a firewall, where port 80 can be opened and mapped to one internal ip address, that leaves the other two servers out...

Part and Inventory Search

Back
Top