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: mrmtek
  • Content: Threads
  • Order by date
  1. mrmtek

    Boot disk drive letter changed

    We are running win2000, terminal server and a few MS updates came in, rebooted and now my drive letters on the machine have changed from C: to F: , yet still have a C: drive as a local drive. When I go into computer management, my dynamic disks are named Local Disk(F:) -(they are Mirrored) Is...
  2. mrmtek

    pandora - taking full site content

    A web crawler run by the national library has been setup to copy all information from web sites and then re publish them as a archive to allow university staff and general public so search and browse, I would have thought that this was illegal, where they are replicating web sites within there...
  3. mrmtek

    php self posting - how do you stop resend data message

    We have a self posting form that contains bid information (the page refreshes every 40 seconds) on our products on offer, after a user has entered a bid and submitted the form and when the form refreshes again we get a message window to resend the data, how do you stop this message from...
  4. mrmtek

    Exporting data via php/mysql

    On our web site I have to setup a export function on page driven by php with a mysql backend is it possible to export data via sql? for example: $sql="SELECT a,b,a+b INTO OUTFILE 'c:\result.text' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '\"' LINES TERMINATED BY '\n' FROM test_table;"...
  5. mrmtek

    advise -on php logon

    Simple logon script: logon page php script <?php session_start(); header("Cache-control: private"); //IE 6 Fix if($_POST['Submit'] == "GO"){ $username = $_POST['memberid']; $password = $_POST['password']; $DBhost = "localhost"; $DBuser = "dba"; $DBpass = ""; $DBName = "databasename"...
  6. mrmtek

    Power surge - proliant 1600

    We have had a power surge, our Proliant 1600 mail server was attched to a UPS, however now it wont boot, all I get is a blank screen and flashing light on the cdrom. On reboot the hard drive lights flash for a while , then go off and do not come on again at all. What should I check out, in...
  7. mrmtek

    using multi language within a html/php page

    We are trying to setup a multi language page, not having any luck at all, currently we are using gif's to display chinese, japanese and korean translation on the page.
  8. mrmtek

    Loading csv file with php problem

    using following code to load a csv into php, when hard coded works fine, however when I echo the path I get the following: f:\\pathname\\filename.csv the php code work fine when hard coded however I found extra \\ between each path seperator the code: $path=$_POST['csvselect']...
  9. mrmtek

    stop email harvesting -

    We are running several web sites - and have been getting hit a bit with unwanted emails - double checked our logs and found some bot's that are not obeying our robots.txt. so we have setup a trap of sorts : created a folder call emaillist and put a page with fake emails on it with a link to a...
  10. mrmtek

    to allow cache or not -

    by using the following on my php pages, I can stop people from cache my site : <?php header("Cache-Control: private"); header("Pragma: no-cache"); ?> what are the full ramifications of doing this , for search engines etc...
  11. mrmtek

    sharing pages across multi domains-

    we are hosted on a linux server and use php with mysql to produce/calculate interactive market data. To make this avaiable to other domains is there a way to hide our address from any users so that there current users always think they are on the customers url address- without the use of...
  12. mrmtek

    to locate source management DLL

    using PB 6.5, 2 years ago we had a consultant company come in and write a application , now I have to change some code, which is not hard, however when I goto (hate that word) compile i get the following message -'Unable to locate source management DLL. No connection to source management system...
  13. mrmtek

    passing a value to another page

    basic problem: I have a text box which a user can change (enter the exchange rate), how do you pass the value entered by the user with out using a form where $rate needs to contain the value entered into the text text box. <a href='appDatacalc.php?recid=$ref&exrate=$rate'>
  14. mrmtek

    Running crystal 7 within PB 6.5

    following code - brings up crystal paramter prompts , however after you select your paramters and go to run the report the following error occours: Predefined Message "C55-0012" not found. Message Arguments: 1) A System error has occured.... 2) 39 3) Error accessing external object property...
  15. mrmtek

    Optimising terminal server

    are there any ticks/options to be set to get terminal server running applications smoother, remote users are using ADSL - yet they can type faster than the screen can keep up in applications.
  16. mrmtek

    striping characters from strings

    is there away of stripping unwanted characters from strings and replacing them with other characters. for example is a string contains a ' I want to replace it with a space, is this possible.
  17. mrmtek

    Cr 10 graphing -

    Im graphing 6 points on a report - and using a Dual axis which I only want 1 point to be graphed, after saving the report - crystal moves 2 other points into the dual axis level, does crystal default that if using dual axis the data points must be slpit on a 50/50 basis. Is there anyway around...
  18. mrmtek

    VPN - drop outs

    We are running Win2000 server and have remote sites using WIN nt4.0 server, they are using vpn connection to connect to our server to gain email, the vpn drops out, yet when you check the connection it still shows vpn is connected.???, Generates no logs saying any errors but you cant...
  19. mrmtek

    php and MySql problem with strings

    I can save strings into the mysql database, however if I have a string with a space in it such as 'MARY HAD A LITTLE LAMB' when I call the string back up to display in a text box only MARY will display the rest of the string does not, yet it is in the database when I go into mysql and view the...
  20. mrmtek

    Crystal reports graphing -

    Im using version 10 of CR, I have created a graphing report using dual Axis - report worked ok, however after saving and then re running again the Dual axis points changed - seams to be a bug within crystal reports. Any one else having this type of problem???

Part and Inventory Search

Back
Top