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 strongm 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. spelltwister

    Setting up ssl site-wide

    Hey everyone, I'm having some problems setting up Secure Sockets on my windows 2000 server box. I followed all the steps from http://support.microsoft.com/kb/290625, however, the ssl lock icon only appears on the first page of my site. Is there a way to make all pages have the lock? Thanks...
  2. spelltwister

    Global vs pass by reference

    Hey all, Is there any advantage to using pass by reference over global declaration in the function? Here's what I have: $myArray; function alterMyArray(){ global $myArray; //do something to my array } function alterMyArray(&$myArray){ //do something to my array }...
  3. spelltwister

    "log in" to write files

    I'm not sure if this goes here, but... Is there a way to add something to my php script that will make it act as though it is the server. Here's what I mean: I have a script that generates XML files. I want to have users upload xml to post XML to that script, which I then parse and generate...
  4. spelltwister

    read XML attribs PHP 4.3.10

    Hey all, I'm having a hard time finding any examples of parsing XML that has attributes. Here's the xml: <units> <persiancamp unit="infantry" number="8" owner="persian" ranged="0" /> <persiancamp unit="xerxes" number="1" owner="persian" ranged="0" /> <m1 unit="sInfantry" number="1"...
  5. spelltwister

    set group permissions batch

    Hey everyone, I was wondering how to set group permissions with a batch file. I have to create about... 150 groups and need to give them permissions to specific folders. Is there a command that can be run from a batch file that will set the permissions? Thanks, Mike Online multiplayer...
  6. spelltwister

    Newbie -- Slow login to Domain

    Hey, I've done some searching around the internet for ways to "fix" my domain login time. It takes roughly 5-10 mins to login if you haven't logged into that machine before, and 3 if you have. I'm not really too savvy with all this domain controller stuff so I'm really in need of a very basic...
  7. spelltwister

    Security: user icon goes white with question mark

    Hey, I'm having a problem setting up some permissions and I'm not sure what I'm doing wrong. Here's what's up: I have a domain called DCS with a computer called NOVA on it. This machine is very important and needs a bunch of permissions on it. I need to give an account on the DCS domain...
  8. spelltwister

    Move users from one domain to another

    Hey, I have two servers, one called Magnum, one called NTSERVER. The new plan is to move everyone to Magnum and demote NTSERVER to just a file server (the plan will probably change yet again, but hopefully it won't). Is there a way to port everyone from NTSERVER to Magnum without going in by...
  9. spelltwister

    Setting up FTP

    Hey everyone, I currently have in place a rather long and tedious process for creating FTP accounts for clients to upload work to. It's pretty much a spread sheet with a random password generator. First, I run the password generator, add the passwords to the spreadsheet, create an FTP...
  10. spelltwister

    Grabbing part of an image

    Hey, I was wondering if there is a way to grab only part of an image to use for a background image in a picturebox. Here's what I mean: I have a picture box called map that has dimensions 2000x1300. This map has 170 different sub sections that i have all the regions for. What I'm trying to do...
  11. spelltwister

    Grabbing offscreen image

    Hello everyone! I do have a question however. My application creates about ... 1000 objects, cuts the up into the shapes of countries, infantry, calvary, ships, etc, but obviously this can only be viewed in my application. I was wondering if there is a way to take what's being display and turn...
  12. spelltwister

    Randomly select element from array

    Hey everyone, I was wondering, just for efficiency, is there a way to randomly select a non-zero element in an array. Here's what I got: $offense_infantry = array( "number" => array(), "nation" => array() ); $defense_infantry = array( "number" => array(), "nation" => array() )...
  13. spelltwister

    Domain Server to File Server

    Hey everyone, I was wondering if there is a way to use a current domain server as a file server. Here's the idea. I have two domain servers, one named NTSERVER another named Magnium. On Magnium, users have their data to be backed up. NTSERVER handles their login. I want it so that once...
  14. spelltwister

    Randomly select an entry in a multidimensional array

    Hello, Here's the problem. I have a multidimensional array that has typical data of: {"infantry","infantry","knight" 7 , 4 , 2 "poland" ,"german" ,"russian" } I need to be able to randomly select a unit by the first field, "type". Is there a way to do this? Thanks so much...
  15. spelltwister

    Mouse Training

    Hello, I have been trying for quite a while, without any leads as to how to train the mouse. By this, I mean I want the computer to prompt the user to click on a part of the screen. It will then grab the mouse coordinates and store them somewhere for later use. Then it will prompt them for...

Part and Inventory Search

Back
Top