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 Chriss Miller 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. JoeAtRevolutionUnltd

    PHP Version 4.4.9 - sendmail issues

    I'm working on a godaddy.com hosting account with PHP Version 4.4.9. I'm trying to send mail using the mail() function, but whenever an invalid email is entered, I get an error message saying the message has been saved in a dead.letter folder. Is there a way for me to disable this message...
  2. JoeAtRevolutionUnltd

    Installing quickbooks 2010 error 1402

    I'm trying to install Quickbooks Pro 2010 on my windows xp sp3. When trying to install about 1/4 of the way through I get this error: Error 1402: Could not open key I tried the solutions listed here and nothing worked...
  3. JoeAtRevolutionUnltd

    Zip code radius search

    I want to be able to search for items within a certain radius of the entered zip code. Users will be able to enter a zip code, select the radius, and results within that radius will be returned. I will be using a mysql database. Any recommendations? Joe Web Developer http://www.cmdsonline.com
  4. JoeAtRevolutionUnltd

    PDF zoom level

    Had a user with an issue with pdf zoom levels. When downloading the pdf would be zoomed in to 300%. I assume this is some kind of browser/local setting on the users computer. Anyone know anything that can be done about this? Thanks Joe Web Developer http://www.cmdsonline.com
  5. JoeAtRevolutionUnltd

    Convert a SWF to FLV

    I need to convert some SWFs to FLVs. I have CS3 and don't have the flas. Can anyone help me out? Thanks Joe Web Developer http://www.cmdsonline.com
  6. JoeAtRevolutionUnltd

    Database driven keyword link generator

    Here is what I'm looking to do. I have a table of keywords with associated links. I want to search through the copy on a page and replace those keywords with the associated link. I was thinking javascript would be the best approach but was looking for a little input. Anyone have any ideas...
  7. JoeAtRevolutionUnltd

    TinyMCE & Safari

    Anyone have any issues with TinyMCE and Safari? Sometimes the editor loads, and if it doesn't load the first time it loads on refresh. tinyMCE.init({ // General options mode : 'textareas', theme : 'advanced', editor_deselector : 'noEditor', plugins ...
  8. JoeAtRevolutionUnltd

    Creating a shopping cart, session or database?

    I'm working on building a shopping script and have come to a small issue and can't decide which way to go. I can store the cart in a session or in a database. My problem is I'm not sure which is the better route to go. Any recommendations? Pros and Cons? Thanks, Joe
  9. JoeAtRevolutionUnltd

    Resizing gifs gives a black box

    Here is my code. It works fine with jpgs, but gifs give me a black box. Any help is appreciated. Here is how it is called. resize_Image($name,$directory,100,125,'thumbs/') php5 function resize_Image($cur_file,$dir,$w,$h,$thumbs) { $cur_dir = $dir; $filename = $cur_dir.$cur_file...
  10. JoeAtRevolutionUnltd

    Disable button with jquery ie8

    I'm trying to disable a button when clicked using jquery. In firefox it works fine in ie the form wont submit. Here is the code: $('#continue').click(function(){ $(this).attr("disabled","disabled"); });
  11. JoeAtRevolutionUnltd

    Resize PNG with transparent background

    I'm trying to resize a png with a transparent background. The file gets saved but when I try to view it, it says no preview available. This is the code i'm using. $newImg = imagecreatetruecolor($newwidth, $newheight); imagealphablending($newImg, false); imagesavealpha($newImg,true)...
  12. JoeAtRevolutionUnltd

    Submitting a form with javscript

    When submitting a form using document.myform.submit, how is the form submitted? I am validating my form using PHP but I'm not getting anything in the $_POST array. Any ideas?
  13. JoeAtRevolutionUnltd

    html email from php not rendering correctly

    Here is the code I am using. The email is being sent but the html isn't rendering when it is recieved. $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: SummitChem Contact Form <>'; $subject = 'Someone has filled...
  14. JoeAtRevolutionUnltd

    Firefox 2 form issue

    When tabbing between fields on a contact form, you have to tab twice in order to move to the next field. I'm using jquery to validate the form. It works fine in ie7 and ff3. The page is http://summit.jkdesign.com/contact-us
  15. JoeAtRevolutionUnltd

    datediff substitute in mysql 3.23.58

    I'm looking for a way to subtract and event date from the current date in order to find upcoming events. This is a piece of the old working code. $SQL = 'SELECT * FROM events e WHERE DATEDIFF("'.$today.'",e.E_End_Date) <= 1 ';
  16. JoeAtRevolutionUnltd

    Creating a .zip in php 4.3.2

    This code works in PHP Version 5.2.3-1 but not 4.3.2. Can anyone point me in the right direction? if (file_exists('../podcast/download/'.$id.'.zip')) unlink('../podcast/download/'.$id.'.zip'); $zip = new ZipArchive(); $filename = "../podcast/download/".$id.".zip"; if...
  17. JoeAtRevolutionUnltd

    Auto suggest help, enter submits in IE not Firefox

    I am working with an auto suggest box that retrieves a list of "suggestions" from my database and shows as a drop down when you start typing. I am having a problem when selecting one of the options. In IE and Firefox when you click an option it works fine, doesn't submit the form. But in IE...
  18. JoeAtRevolutionUnltd

    Googles youtube api

    Does anyone have any experience with this? http://code.google.com/apis/youtube/overview.html.
  19. JoeAtRevolutionUnltd

    Setting up a test site on a remote server

    I have a site that is live on Windows server 2003 running WAMP. I want to setup a test site for changes and updates but am unsure how to go about it. I have read about virtual hosts, but would I be able to set up virtual host and be able to access it through my web browser remotely to view my...
  20. JoeAtRevolutionUnltd

    Tracking page views, calculate hours between 2 mysql datetime fields

    I'm trying to track page views. I am storing the ip, date_viewed, and total_views. I want to check the ip and if it is the same as the last stored, check that the last visit was more than an hour ago, and if so then update the total page views. Can anyone point me in the right direction?

Part and Inventory Search

Back
Top