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. chunkII123

    Magento Help - Grouping products in cart

    We currently are building a theme for a client who sells student day planners and the concept is “pick a planner, pick a cover, pick binding, pick accessories and inserts, add to cart.” We’re all new to Magento, but not new to programming; with that said how would we go about facilitating this...
  2. chunkII123

    SMTP Mail() problem

    If you use the double quotepost, the one i sent last, you don't have to use the singles-quote/ period one your have (' . *var* . '), instead you can just use "<html>....>$_name<....</html>"; it allows you to use the variable within the code, without extra steps. However, is you use the...
  3. chunkII123

    SMTP Mail() problem

    Try - <?php $to = "test1@yahoo.com"; $subject = "New Comment on domain1.com"; $message = ' <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> <html xmlns=\"http://www.w3.org/1999/xhtml\"> <head> <meta...
  4. chunkII123

    SMTP Mail() problem

    That was my mistake. You lost the post data because I am apparently an invalid. This will work without a problem for you. <?php $to = "test1@yahoo.com"; $subject = "New Comment on domain1.com"; $message = ' <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  5. chunkII123

    SMTP Mail() problem

    Godaddy's servers have some issues with sending off properly without valid headers being sent. Here is what my headers are, which send off an email everytime someone fills out a profile (sales lead) $headers = "MIME-Version: 1.0" . "\r\n"; $headers .=...
  6. chunkII123

    AVG Internet Security SBS 9.0 Task Schedule Issue

    I seem to be having a problem with AVG. I hope this is in the right section (:-/). I am currently running Windows 7 Professional x64, and have AVG ISSBS 9.0 installed as my complete "anti-virus". Here is my problem, I have scans scheduled daily at 7:00am, and they just DO NOT run at their...
  7. chunkII123

    HTML Formatting Using Heredoc and Mail()

    I don't know if this helps you at all, but I define the first line of headers (IE '=' only), then "sub-define" the rest (IE '.='). Here's what my code looks like, and when I send an email it works in outlook, web based clients (gmail), outlook express, etc... $headers = "MIME-Version: 1.0" ...
  8. chunkII123

    Some help from a PHP person (might be easy for you)

    EDIT** - It's not 'DESC', I meant ascending so sub 'ASC'. Sorry about that. Beware of hackers bearing executables. Happy Hunting. 'irc.2600.net'
  9. chunkII123

    Some help from a PHP person (might be easy for you)

    I am assuming you want the images to display the opposite direction (descending vs. ascending). Look in the display section of the code that you have, and look for something along the lines of <CODE> $query = 'SELECT * FROM".$pixelpost_db_prefix."pixelpost ORDER BY *Date-Time-Stamp*' //..etc...
  10. chunkII123

    ACS R7.0 Question

    Sys, That last post worked like a charm. As for the previous post, that worked too. Ever since I assigned a call group to the extensions, the caller ID has been working on the lines. Interesting. One final thing though - Caller ID is showing the name, but no incoming number on our 18D's...
  11. chunkII123

    ACS R7.0 Question

    I'm having another issue with the my PARTNER ACS R7, I have went through the manual multiple times, and tried programming the phone(s) at different stations to have a paging button. We don't have any call groups, and I tried loudspeaker paging via ICM-70, ICM-*70, and even checked the setting...
  12. chunkII123

    ACS R7.0 Question

    Just an update - 1. Called AT&T today, they said we HAVE caller ID and it is working on all lines. 2. Employees are NOT answering before third ring, it's a rule we've had, and I assume CID did at one time work, as there are multiple phones that have 'CID Table" handwritten on them. I have...
  13. chunkII123

    ACS R7.0 Question

    Your welcome for the star, I appreciate when I get help ;-). It's kinda like the "Thank You" button on vBulletin type boards. Anyhow, I wonder if one of or both of my boards are bad, CID isn't working, and it's on all lines entering the system. It's not exactly verifiable, unless I come in...
  14. chunkII123

    ACS R7.0 Question

    Thanks for your reply. I found out my system does support caller ID, and I just spoke with the Telco this morning to find out whether it was a feature we were subscribed to, it is. I guess the next question is, is this feature on automatically? Or is there some special steps I need to take...
  15. chunkII123

    ACS R7.0 Question

    We recently lost power to our phone system during a thunderstorm, and I had to reset/ reconfigure/ reprogram the processor and expansion cards. With that said, I have never serviced our phone system before this, and it was installed three IT personel ago. I had to get manuals and documentation...
  16. chunkII123

    Vista to XP drivers

    I have been an XP fan since it came out in 2001, I vowed to never ever ever switch from it. I have to say, I bought Seven Professional, and I have to say, I can't live without it, some of the features are simply amazing, and I had to download comparable freeware on my work PC to have things...
  17. chunkII123

    How do you Dynamically number rows?

    Andrew, Thank you for the prompt reply, I do really appreciate it! I will give you statement a try first thing in the morning. If it works like I want it to, then I can essentially remove the row numbering, as they won't really matter, considering, we're using LIMIT to step back one row...
  18. chunkII123

    How do you Dynamically number rows?

    Alright, I have been searching around the net for an answer to a question - How does one dynamically number a queries rows, and then select a specific row from that? Heres what I found, and it's not working out for me SELECT a.*, @num := @num + 1 b from test a, (SELECT @num := 0) d; Now I...
  19. chunkII123

    Question regarding subtracting two colums after being &quot;summed&quot;

    Heres what I need to do, I'm trying to find the sum of two different columns. Here is the two differnt columns SELECT SUM(amount) FROM paymentsscheduled WHERE membernumber = '15980'; and SELECT SUM(amount) FROM paymentsreceived WHERE membernumber = '15980'; What I want MySQL to do is sum...
  20. chunkII123

    Question regarding font path in respect of imagettftext()

    Worked like a charm. It's what I have been looking for all weekend! Thank you so much! Beware of hackers bearing executables. Happy Hunting. 'irc.2600.net'

Part and Inventory Search

Back
Top