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

  1. clarkmurray

    Allow Linking only from a certain page?

    I'm getting ready to release a training product, and I want only the customers to be able to access certain information on my website. The customer would bring up an html page from his hard drive and click on a link. This doesn't have to be super tight security and I don't want to add the...
  2. clarkmurray

    htaccess--specific link

    Is there a way to code an htaccess file to allow access to a directory only if the request comes from a specific link?
  3. clarkmurray

    MySQL Date/Time Format?

    My hosting company has a utility which allows me to dump the tables of a MySQL database in csv format for Excel. However, I can't figure out how to translate the numbers in date/time fields. Can anyone help?
  4. clarkmurray

    smtp authentication

    My smtp server now requires authentication. I have an existing mail script but I have no idea how to add the authentication. var $mailprog="/usr/sbin/sendmail -t"; ... $sm=popen("$CFG->mailprog","w"); fputs($sm,"To: $email\n"); fputs($sm,"From: $CFG->admin_email\n"); fputs($sm,"Reply-to...
  5. clarkmurray

    Can't get to site--tried everything

    Starting yesterday, I am no longer able to get to my business site, digitalmusicdoctor.com using Comcast. I can get to the site just fine using Earthlink dialup. I can get to anywhere else on the Internet that I try using Comcast. I have tried Comcast support 4 times and they can only tell me...
  6. clarkmurray

    invoke javascript function from http link?

    I have an html page with a link on it that invokes a javascript function [javascript:movienew('Preview')]. Is there any way I can create an http link that invokes that function directly, without having to go to the page first?
  7. clarkmurray

    Windows Search & ASP Script

    Windows Search will not find any text string in an ASP file between the <% and %> tags. I have changed my configuration as specified in Microsoft Knowledge Base Article - 309173 which basically says to turn on "Index files with unknown extensions", but it still won't work. I am running...
  8. clarkmurray

    Windows Search & Script Tags

    Windows Search will not find any text string in an ASP file between the <% and %> tags. I have changed my configuration as specified in Microsoft Knowledge Base Article - 309173 which basically says to turn on "Index files with unknown extensions", but it still won't work. I am running...
  9. clarkmurray

    Wait Until Midi Finishes

    If I launch a midi file with document.write('<EMBED SRC= &quot;MyMidiFile.mid&quot; HEIGHT=0 WIDTH=0 AUTOSTART=TRUE VOLUME=100%>') is there any way to wait until the file has finished playing and detect that condition?
  10. clarkmurray

    IE 6 Javascript Errors

    I have created and market a training product that uses IE for menus and then uses javascript to launch Flash movies in a separate browser window. I have a customer who says he that when he clicks on a link to launch a movie, he receives an &quot;Error on Page&quot; message on the status bar and...
  11. clarkmurray

    Force Use of IE?

    Is there a way force the use of IE when someone clicks on an html file, even though another browser has been specified as the default?
  12. clarkmurray

    Install Old Flash Version

    I am using the Macromedia Flash Deployment Kit and need to test upgrading to Flash 6 from an older version. I uninstalled Flash 6 and downloaded a .cab file for Flash 5 from Macromedia which has 2 files: swflash.inf and SwFlash.ocx. Unfortunately I have no idea how to use those files to...
  13. clarkmurray

    how to view document.write file?

    How do you view the file that is actually created by a document.write() using either NS7 or IE6? View Source in either browser shows only the original file.
  14. clarkmurray

    Dynamically construct OBJECT tag using javascript

    Is there a way to use javascript to dynamically construct an OBJECT tag? Specifically what I'm trying to do is something like this: In Main.html there is a function: function openmovie(WhichMovie) { moviewin = window.open(&quot;MyMovie.html&quot;,WhichMovie,...) ... So, for example, if...
  15. clarkmurray

    SetVariable/Netscape 7

    After a fair amount of beating my head against the computer, I have not be able to get the Flash javascript method SetVariable to work with Netscape 7. Of course, it works just fine in IE 6. I did figure out that if you remove the OBJECT tag entirely and use only an EMBED tag, then it will...
  16. clarkmurray

    Error When 2nd Window Closed

    I need to either open a second window or reload the 2nd window if it is already open, so I'm using the code: function openmovie(url) { if (!moviewin.open) { moviewin = window.open(&quot;Window_2.htm&quot;,url,&quot;&quot;); moviewin.focus(); } else { moviewin.window.name = url...

Part and Inventory Search

Back
Top