User Profile

Collapse

Profile Sidebar

Collapse
theS70RM
theS70RM
Last Activity: Jul 8 '09, 07:49 AM
Joined: Jul 13 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • theS70RM
    replied to WDS x64 problem
    hmmm, if i remember correctly you need to add an x64 boot image to WDS. You can get it from the windows disc
    See more | Go to post

    Leave a comment:


  • theS70RM
    replied to access/migration problem
    if i dont enter a default schema locally it list all the databases, if i do it from the remote machine it doesnt list any, or it lists 1. It's the same user and I cant see any difference between the host settings for the user. =(

    additionally, if I enter a schema that doesnt exist it creates it, if i chose one that does exist, it says it doesnt exist then gives me a "Could not connect to the specified instance" error number...
    See more | Go to post

    Leave a comment:


  • theS70RM
    started a topic access/migration problem

    access/migration problem

    Hi,

    Im having some issues migrating a database using mysql tools.

    I have a windows 2000 server running an older version of mysql hosting several databases. If I connect locally on that server using a standard user account I set up (not root) I can see all the schemata.

    When I connect from another machine (winxp) I can only see (and therefore migrate) only one database. All I need to be able to do...
    See more | Go to post

  • theS70RM
    replied to objectGuid clipped with ldap
    in PHP
    sorry its actually win server 2000 where it doesnt work

    Cheers
    See more | Go to post

    Leave a comment:


  • theS70RM
    started a topic objectGuid clipped with ldap
    in PHP

    objectGuid clipped with ldap

    Hi,

    I have a php script to retrieve data about a user from the active directory using ldap. Here's a cut down version:

    Code:
    	$domainName = "domain.com";  
    	$serverName = "server";
    	$baseDomainName = "DC=domain,DC=com";
    
    	$connection = ldap_connect($serverName);
    
    	ldap_set_option($connection, LDAP_OPT_PROTOCOL_VERSION, 3);
    	ldap_set_option($connection,
    ...
    See more | Go to post

  • theS70RM
    started a topic Freeware Disk image

    Freeware Disk image

    Hey,

    Does anyone know some good freeware disk imaging software?

    What i'm really looking to do is turn physical drives into .vhd virtual hard disks foor microsoft virtual server.

    Ive kind of given up on Virtual server migration toolkit because as far as I can tell the pre-requisites required can only run on windows server and you can only migrate from another physical disk which is a pain.
    ...
    See more | Go to post

  • theS70RM
    replied to Array sort/merge
    in PHP
    hmmm, I see where you are going but this didnt quite work for me. Ive tried a few different ways now with recursive functions and all sorts.


    Can anyone help me do it this way, first I get a list of the groups, each group is an array of the various parts...

    Code:
    Array ( [DC=com] => 0 [DC=mydomain] => 1 [CN=Users] => 2 [CN=DHCP Users] => 3 )
    Array ( [DC=com] => 0 [DC=mydomain] => 1 [CN=Users]
    ...
    See more | Go to post

    Leave a comment:


  • theS70RM
    replied to Fopen Permission Denied
    in PHP
    you probably need to set the file or folder permissions with chmod. take a look at this http://www.w3schools.com/php/func_filesystem_chmod.asp and do a bit of research with google.


    Andy
    See more | Go to post

    Leave a comment:


  • theS70RM
    started a topic Array sort/merge
    in PHP

    Array sort/merge

    hey,

    I have a listing of active directory groups in an array by distinguished name, like so:


    Code:
    myar[0] "CN=my sub group, CN=my group, OU=myou"
    myar[1] "CN=another subgroup, CN=my group, OU=myou"
    myar[3] "CN=diff group, OU=myou"
    myar[4] "CN=foo group, OU=ou2"
    myar[5] "CN=wowgroup, CN=foo group, OU=ou2"
    ...
    See more | Go to post

  • theS70RM
    started a topic Single machine virtualisation

    Single machine virtualisation

    (or virtualization if you aint from round here)

    Hey,

    Just looking for some advice really. I can see a big advantage of virtualising servers. But suppose I have a server that needs basically all the resources of the machine, what would be any disadvantages of virtualising just the one server onto the machine its on already. Im thinking particularly so the hard disk can be easily backed up and restored somewhere else...
    See more | Go to post

  • theS70RM
    replied to child node position
    wow it totally but extra spaces in my code, why'd it do that?? :-S
    See more | Go to post

    Leave a comment:


  • theS70RM
    started a topic child node position

    child node position

    Whats the quickest way to get the position of a node in its parent, i dont mean the physical position, i mean the index order....

    So if you have:

    Code:
    <div id="theparent">
        <div id=adiv>something</div>
        <div id=anotherdiv>something</div>
        <div id=divtrois>something</div>
        <div id=mydiv>something</div>
    &l
    ...
    See more | Go to post

  • theS70RM
    started a topic Vista Wireless

    Vista Wireless

    Hey,

    I know there are so many posts about this round the net, but I've yet to see the problem resolved properly.

    If you're using a wireless network adapter in Vista it will search for new networks every minute whether you want it to or not! It lags the connection for a couple of seconds which can stop web pages loading correctly and makes it impossible to play online games. If you uncheck the box that says "scan...
    See more | Go to post

  • theS70RM
    replied to Processor_architecture question
    ah ok.. I'll just ignore it then.

    cheers!
    See more | Go to post

    Leave a comment:


  • theS70RM
    started a topic Processor_architecture question

    Processor_architecture question

    Hi,

    I use an Intel Core 2 processor, and under my environmental variables I have the following values:


    PROCESSOR_IDENT IFIER = Intel64 Family 6 Model 15 Stepping 6, GenuineIntel
    PROCESSOR_ARCHI TECTURE = AMD64


    my question is, why is the process architecture set to AMD64, should it be some other variant of x64 thats for Intels rather than AMD's???

    I use vista x64 and...
    See more | Go to post

  • theS70RM
    replied to Iframe check
    aha, that's what I've been missing.


    I've never used that property before but it seems to do the trick nicely.


    Thanks very much!


    Andy
    See more | Go to post

    Leave a comment:


  • theS70RM
    replied to Iframe check
    hmmm, well that does get called when the iframe has been loaded. But i think that's seperate from the contained document's onload function.

    My ultimate aim is simply to get the height of the contained document so I can ammend the iframes height to suit.
    See more | Go to post

    Leave a comment:


  • theS70RM
    replied to Iframe check
    it doesnt seem right to me, can someone test the above code in firefox please :-\
    See more | Go to post

    Leave a comment:


  • theS70RM
    replied to Iframe check
    hmm, do you mean use the onload property of the document that is to be loaded?

    I thought about that, I could edit the actual document to be loaded in the iframe and get it to call a function in the parent once it's loaded... I dont want to do that because it means editing every document I ever load in there, some I will not be able to as they are external.

    If you're talking about something like this:

    ...
    See more | Go to post

    Leave a comment:


  • theS70RM
    replied to Iframe check
    ok, so as soon as i set iframe.src = "whatever.html" ; then iframe.document should exist..... well it does in IE, but not in Firefox.

    Anybody know a way round this??
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...