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 bkrike 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: hc1619
  • Content: Threads
  • Order by date
  1. hc1619

    Page Compression

    If you go to www.trademe.co.nz.. and View Source, you'll see all their HTML stacked up up the top and all the whitespace removed. I want to know what sort of software is used to achieve this. Their pages come up ultra fast and I want to achieve this level of speed on my own site.
  2. hc1619

    Distinct wont work

    I have two tables (its a message board). One table is Topics, the other is TopicPostings. Topics contains the title of each discussion, date created etc and has ID called "TID". TopicPostings has all the postings.. it has a unique id "TPID", and also a "TID" column so i know which topic the...
  3. hc1619

    General Best Practice

    I have a dating site.. with profiles. On each profile page I do a select from two tables using inner join. I have information on a 3rd table (about 10 varchar(250) fields) which contains more profile info. To view this though the user must click on another area of the profile and open up the new...
  4. hc1619

    Auto close window

    I have a window which pops up from my site using javascript. In this window the user types in their message in a form and pushes the submit button. WHat i want to happen is I'd like the confirmation page to close the window automatically... so the user types in their message.. .pushes submit...
  5. hc1619

    AVG Function

    I have a photo rating system on my site.. one table, RateMe, which contains the votes, who made the vote, and who the vote was for. In my stored proc, whenever a vote is cast I then do a count of the votes and get a new average to store against the members profile. This is what I'm doing at...
  6. hc1619

    Running CF site from a CD

    I have a situation whereby I need to put my Coldfusion site (with database) on a CD. The whole site needs to run standalone from the CD. The site has queries to the DB and everything. I found a way to get solve the CF server problem.. but couldnt query the DB as the datasource needed to be...
  7. hc1619

    Security- Preventing duplicate people

    I am building a referral system for my site. Members will be able to refer friends to my site (via a mechanism I'm building), and if 5 join up, then I'll give that member 1 free week of paid membership. I want to prevent people scamming the system... stopping people from just signing up...
  8. hc1619

    Mail problems

    I'm having real problems with sending email. I just sent out my newsletter to 21,000 people.. and I sent them at 150 per minute.. but still they get backed up and there's 5000 now in the queue folder. WHat I'm wondering is if there are any services out there which I can pay for to send my mail...
  9. hc1619

    Trim question & IF question

    Hi there. I need to do something which I would usually do in ColdFusion but this thing in particular I HAVE to do within the SQL.. and I'm not sure how. First is a Trim. I have a char field called Nickname... and I need to have it trimmed of the whitespace when it comes out of the stored proc...
  10. hc1619

    Positioning a Popup window

    I really need to launch a popup window and display it in the bottom right corner of the user's screen. It's an Instant Messenger application on my website, so just like match.com do it (if any of u have seen it), the popup launches in the bottom right corner. Can anyone point me in the right...
  11. hc1619

    Next Profile navigation

    I have a dating site.. and people do a typical search etc and bring back let's say 100 results. If someone clicks one of the results, they get taken to that member's profile page. What I'd like to have is a link on that profile page to navigate to the "next profile" in the search results. How...
  12. hc1619

    Language/character set question

    I have a dating site which currently caters for USA/UK/Australia/Canada (all english speaking countries). I'm using an SQB db for this. Soon though I would like to add new countries.. specifically Germany, France and Italy. I'm wondering what problems I will have or things I need to think...
  13. hc1619

    Creating an INDEX

    This may seem a really dumb question, but anyway. I have a dating site.. SQL DB. Got about 150,000 messages now in my "messages" table that members send to each other. Everything is still running OK so far. But I was looking through enterprise manager today and saw a thing to create an index...
  14. hc1619

    Users keep getting logged out

    I have a CF dating site... getting quite a lot of traffic. 99% of the users have no problems.. and I have put cookie checking code which displays a warning on the site that the site mightn't work properly if their cookies aren't enabled. I'm using Sessions to track the users when the log in...
  15. hc1619

    500 internal server error

    I have a dating site and it seems to be running OK but on the very odd occasion the pages will be very slow to load.. they will just hang for a while and then a 500 internal server error comes up. i reload and the pages comes up fine. It happens at random times and very infrequently (so its not...
  16. hc1619

    dynamic image cropping

    I have a dating site where I wish to crop all the photos that people upload.. I want to crop around their face so the xy are going to be different every time. I have a custom tag that can crop image for me, but I need to supply the xy for where the crop is to begin and also the height and width...
  17. hc1619

    Email Validation

    I'm wanting to do some thorough validation on the email address people use to sign up with on my site. I'm not using cfinput (and dont want to).. so I need a solid RE script to do this for me. At the moment all I'm using is this: ReFind(".+@.+..+", form.emailAddress). But i'd like to use...
  18. hc1619

    Checkboxes and SQL Queries

    Hi there. Me again.. on my site (dating site) I have an advanced search feature which lets people get specific about their criteria. One thing I don't have I'd LIKE to have is checkboxes instead of drop downs. Lets say I'm giving the user the option of choosing the hair colour.. at the moment I...
  19. hc1619

    Simple SQL query question

    Hi there.. I have a dating site.. and on the member profile page I need to query two tables to get the info.. so i do it like so: SELECT members.*, MainProfile.* From Members INNER JOIN MainProfile ON Members.MemberID = MainProfile.MemberID Where Members.MemberID = @memberID But I'm going to...
  20. hc1619

    cfmail not working anymore!!!

    I have a dating site.. the site sends out approximately 5000 emails a day. It launched a few months ago and started out fine until the past week where it has stopped sending out mail. FIrstly I checked the logs on the server and there were errors in the mail log regarding disk space. So more...

Part and Inventory Search

Back
Top