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

  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

    White content on a grey background

    Are you loading large images or other large files? What speed is your connection? Joe Brown Web Designer & Developer http://www.revolutionunlimited.com
  3. JoeAtRevolutionUnltd

    Installing quickbooks 2010 error 1402

    SubInAcl Command did the trick! Thank you so much. Joe Brown Web Designer & Developer http://www.revolutionunlimited.com
  4. 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...
  5. 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
  6. 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
  7. 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
  8. JoeAtRevolutionUnltd

    Database driven keyword link generator

    That's just what I was looking for. Thanks! Joe Web Developer http://www.cmdsonline.com
  9. JoeAtRevolutionUnltd

    Database driven keyword link generator

    I was thinking about using a regular expression, but unfortunately my reg ex skills are limited too. Joe Web Developer http://www.cmdsonline.com
  10. JoeAtRevolutionUnltd

    Database driven keyword link generator

    I have a basic idea for how I can tackle this, but I've run into another issue. The copy from my database is formatted with html and some of the keywords and phrases are already linked. How would I make sure the tag isn't already a link? Joe Web Developer http://www.cmdsonline.com
  11. JoeAtRevolutionUnltd

    Database driven keyword link generator

    The "copy" is from a mysql database. The thing I was worried about was if I have say 100 keywords, and every page has to be checked every time it's loaded, would this slow down loading times too much? Definitely not going the javascript route. I'm thinking about setting up a cron job to run a...
  12. 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...
  13. JoeAtRevolutionUnltd

    Change URL for php pages

    Another spot you can try is .htaccess files. An htaccess file can be redirecting anything coming to that page to another area on the site. Joe Web Developer http://www.cmdsonline.com
  14. 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 ...
  15. JoeAtRevolutionUnltd

    Creating a shopping cart, session or database?

    Yeah, I meant the actual "shopping cart". I was leaning towards sessions but then I was thinking about having abandoned cart info saved could be useful too.
  16. 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
  17. 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...
  18. JoeAtRevolutionUnltd

    Disable button with jquery ie8

    What if I added an onsubmit to the <form> to disable the button? Basically I'm trying to stop users from clicking a submit button twice. Is this the best way to go about it? Thanks for the help.
  19. JoeAtRevolutionUnltd

    Disable button with jquery ie8

    I'm trying to submit the form with the button. Since the button is being disabled after it was clicked I don't understand why the first click won't post the form. And the fact that it works fine in firefox but not ie is a little strange.
  20. 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"); });

Part and Inventory Search

Back
Top