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 TouchToneTommy 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: OSR
  • Order by date
  1. OSR

    get IP of user/browser?

    thank you Rocco is the BOY!! SHUT YOUR LIPS...
  2. OSR

    get IP of user/browser?

    How do I get the IP of the browser, i know about gethostbyaddr()... how can i get the IP of the browser/user visiting my site? Rocco is the BOY!! SHUT YOUR LIPS...
  3. OSR

    Ensure Data Written to HDD - option in W2K SERVER?

    I've found out that the way to do this is to actually create a 'mirrored drive' using the Computer Management Console however I'm still unable to do this as per the instructions given in the Windows Help... Look under Mirror in the help under windows. Anybody have any ideas on how to create...
  4. OSR

    Ensure Data Written to HDD - option in W2K SERVER?

    I found these keywords that should help -- 'ensuring data integrity' 'fault tolerant' Rocco is the BOY!! SHUT YOUR LIPS...
  5. OSR

    Setting up a VPN with Linksys Router

    is it a VPN linksys router or are you port forwarding to the W2K Server? Rocco is the BOY!! SHUT YOUR LIPS...
  6. OSR

    Ensure Data Written to HDD - option in W2K SERVER?

    I want to be able to ensure that data that is written to one of my harddrives from a network share is actually written. I've seen this option I think in Windows 2000 Professional to ensure data write for a logical drive... I've had enormous problems with this 80gig MAXTOR drive of actually...
  7. OSR

    Access Table Files via PHP

    <?php // get contents of a file into a string $filename = &quot;/usr/local/something.rec&quot;; $handle = fopen ($filename, &quot;r&quot;); $contents = fread ($handle, filesize ($filename)); fclose ($handle); ?> see if that works - if the files are not within the web or server root u may...
  8. OSR

    Create USERS and PASSWORDS in PHP

    I want to create users and passwords in my .htpsswd file and I know I have to use the console command-- example: htpasswd -c /usr/local/etc/httpd/users martin can PHP run UNIX commands, otherwise i will have to use PERL I know in the manual it says that if you put something in `backtick` marks...
  9. OSR

    How do I restrict my results to 10 a page?

    Querying the database is probably the best solution in SQL u can put the LIMIT SELECT * FROM `myTable` LIMIT 0,30 Rocco is the BOY!! SHUT YOUR LIPS...
  10. OSR

    mysql database webserver upload

    Use the Export option and choose SQL... This will generate sql files that contain all the values and tables in your db... Import them into the new host db - usually there is a seperate utility that the web host will provide through their control panel to upload/backup your site files including...
  11. OSR

    Window Close / focus question : newbie

    Try this, In your window.open() function u should name the popup your opening so u can refer to it window.open(&quot;popup.html&quot;,&quot;MyPopup&quot;,....) Now you can call it from the (list) page by putting an Onclick event in your links and setting the focus --...
  12. OSR

    one click two destinations

    You would use: // this is to open the popup window.open() //This is to set the main windows URL location.assign() or location.reload() Rocco is the BOY!! SHUT YOUR LIPS...
  13. OSR

    Matching

    explode() Rocco is the BOY!! SHUT YOUR LIPS...
  14. OSR

    Matching

    sorry I counldn't understand fully what you want... why can't u use SQL statements to do this?? What are you trying to do exactly - find the users whose countries equal each other or find users from both tables that have countries equal to a specific country? Your current SQL statement...
  15. OSR

    Need to convert Mysql to Excel?

    I echo that PHP may not be the most suitable solution here but it's capable of doing this... <?php // starting word $word = new COM(&quot;word.application&quot;) or die(&quot;Unable to instanciate Word&quot;); print &quot;Loaded Word, version {$word->Version}\n&quot;; //bring it to front...
  16. OSR

    streaming video

    This is called 'HTTP STREAMING' u can find info about it here - it's FREE. http://www.realnetworks.com/resources/contentdelivery/documentation/httpstream.html I don't know about MGEG streaming delivery. Check out msdn.microsoft.com for any information about that. Rocco is the BOY!! SHUT YOUR...
  17. OSR

    Modeless Dialog using .net

    Taken from MSDN: ---------------------------------------------------------- To create a modal dialog box, construct an object on the stack using the constructor for your derived dialog class and then call DoModal to create the dialog window and its controls. If you wish to create a modeless...
  18. OSR

    Calling MFC from win32 program...Possible?

    Do you mean that you created a Win32 console program and are using MFC code in it? If so, this is most likely a PROJECT SETTINGS problem - U need to make sure that the MFC.dll or lib is among the listed Libraries for your project I think - I'm not sure if that's it b/c wouldn't give you a...
  19. OSR

    php execute javascript

    I think this requires some clever javascript - u can run your own javascript function on the returned document that returns the actual Document html when the scripts on the page are executed maybe something like &quot;document.body&quot; in javascript may return all the contents withing the body...
  20. OSR

    PHP mail form help on IIS

    form action=&quot;/php/phpcontact/feedback.php this looks like the problem - don't put the '/' infront of php/phpcontact/.... instead do this: form action=&quot;php/phpcontact/feedback.php&quot; or use the FULL PATH instead of the relative one. Rocco is the BOY!! SHUT YOUR LIPS...

Part and Inventory Search

Back
Top