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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ahmtech123

  1. ahmtech123

    redirect script

    no issue just posting the answer
  2. ahmtech123

    redirect script

    <?php $host = getenv("REMOTE_ADDR"); list ($octet1, $octet2, $octet3, $octet4) = split ("\.", $host, 4); // The next lines are the redirections based on octet values. if ($octet3 == "132") { $Redirect= "http://foo/new"; } else { $Redirect= "http://foo"; } header ("Location: ".$Redirect)...
  3. ahmtech123

    redirect script

    Hi is it possible to redirect someone based on hostname, domain name sunet or ip?. for example. Users on dubnet 192.168.1.* attempts to go to http://foo however I want him to be redirected to http://foo/newsite/ Thanks
  4. ahmtech123

    Redirect

    I have to do this. For internal network only. Static ips. i will ask in PHP forum as I know some. Thanks.
  5. ahmtech123

    how can I deny a subnet form access a server

    Is there an internal firewall on windows server 2003 that I can user to block the entire subnet from accessing it or doing anything?
  6. ahmtech123

    redirect script

    Hi is it possible to redirect someone based on hostname, domain name or ip. for example. User 192.168.1.3 attempts to go to http://foo however I want him to be redirect to http://foo/user1 Thanks.
  7. ahmtech123

    Redirect

    Hi is it possible to redirect someone based on hostname, domain name or ip. for example. User 192.168.1.3 attempts to go to http://foo however I want him to be redirect to http://foo/user1 Thanks. Maybe I should ask this in the javascript forum?
  8. ahmtech123

    ODBC connection

    Hi I keep getting the error below when attempting to connect to a SQL 2000 database: Warning: odbc_connect(): SQL error: [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'., SQL state 28000 in SQLConnect in on line 3 Connection Failed: My code...
  9. ahmtech123

    Deny ip question

    I figured it out deny from 10.10.141.0/255.255.255.0
  10. ahmtech123

    how can I deny a subnet form access a server

    Hi is it possible to deny a subnet 192.168.2.* from hitting my share or even seeing that the computer is online? I blocked smtp requests but they still can do this \\foo and see scheulded taks. Thanks.
  11. ahmtech123

    Deny ip question

    Hi is it possible to use deny 192.168.1.* ? I want to deny a whole subnet to my site. Thanks.
  12. ahmtech123

    bat file - How to delete question

    I have taken care of the part how I am installing. using psexec. i think del will work.
  13. ahmtech123

    bat file - How to delete question

    Hi I am not very good at bat files, actually I do not know much about them. Anyway I am installing java using a bat file. The bat file contains 1 line: java.exe Which will simply install java on the machine by executing java.exe which is in the same directory as the execute.bat file. My...
  14. ahmtech123

    disable Media player

    Sounds good. Group policy on the domain level. Can you give me a clue how to do this.

Part and Inventory Search

Back
Top