Pls help me: about log in

Dear all,
I have a created a dynamic page (PHP and mysql) with log in
(server vehaviour) page. and after user had enter their username
and password, if succeed they go to new page. in this new page ,
they can submit news. and my big problem is (sorry iam new bie) how
i can get their username in this new page that they had entered in
log in page, i want to search id_user in tabel1( field: id_user,
username, password) with their username and after got it , i want
to insert this id_user into table2 (filed: id_user, no_news,
date_news, news ). I hope my explaination will be understood. tks 4
any help....

I don't need the code, you do. :O) Read the instructions
below. Replace
the parts of the code that are bad with parts of the code
thar are good.
Let's look at the tutorial/post, posted below in it's
entirety from
http://friendsofed.infopop.net/2/OpenTopic?a=tpc&s=989094322&f=8033053165&m=324102421&r=32 4102421#324102421.
1. Log In User needs changes in two places, plus the removal
of three
lines. Find the following lines of code
$GLOBALS['PrevUrl'] = $accesscheck;
session_register('PrevUrl');Replace them with
$_SESSION['PrevUrl'] = $accesscheck;2. Then find
$GLOBALS['MM_Username'] = $loginUsername;
$GLOBALS['MM_UserGroup'] = $loginStrGroup;Change them to
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
3. Finally, DELETE the following lines
//register the session variables
session_register("MM_Username");
session_register("MM_UserGroup");That's it. You're done with
your Login
form. You know need to replace a few lines in your logout,
but we'll wait
on
that.===========================Article========================I
have
discovered there is a serious bug with the Dreamweaver MX
2004 User
Authentication server behaviors when used in conjunction with
PHP5.
Basically, the problem is that the DW server behaviors use
obsolete code
that appears to work with PHP4, but breaks once deployed on
PHP5 (with
register_globals set to the default off setting).
I have notified Macromedia of the problem, and they have
logged it as a high
severity bug, but have given no indication as to when a patch
will be
issued. Fortunately, the solution is easily fixed by hand.
The server
behaviors affected are Log In User and Log Out User.
Log In User needs changes in two places, plus the removal of
three lines.
Find the following lines of code
$GLOBALS['PrevUrl'] = $accesscheck;
session_register('PrevUrl');Replace them with
$_SESSION['PrevUrl'] = $accesscheck;Then find
$GLOBALS['MM_Username'] = $loginUsername;
$GLOBALS['MM_UserGroup'] = $loginStrGroup;Change them to
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;Finally, DELETE
the following
lines
//register the session variables
session_register("MM_Username");
session_register("MM_UserGroup");
In Log Out User, locate these two lines
session_unregister('MM_Username');
session_unregister('MM_UserGroup');Replace them with
unset($_SESSION['MM_Username']);
unset($_SESSION['MM_UserGroup']);
NOTE: There is NO need to do this if you are still using
PHP4, and not
experiencing any difficulties with User Authentication.
However, it does
affect the instructions for Chapters 14 and 15 of Foundation
Dreamweaver MX
2004 for anyone switching to PHP5.
David Powers
Co-author: Foundation Dreamweaver MX 2004
"jangade" <[email protected]> wrote in
message
news:[email protected]...
> Sorry, i still don't understand about that tutorial, can
u explain me more
> detail pls ( i am using php triad: php 4, mysql 1.3 and
apache 1.3 ). i
> give u
> the code :
>
> login page code:
> <?php require_once('Connections/koneksi.php'); ?>
> <?php
> // *** Validate request to login to this site.
> session_start();
>
> $loginFormAction = $_SERVER['PHP_SELF'];
> if (isset($accesscheck)) {
> $GLOBALS['PrevUrl'] = $accesscheck;
> session_register('PrevUrl');
> }
> login page :
>
> if (isset($_POST['pemakai'])) {
> $loginUsername=$_POST['pemakai'];
> $password=$_POST['sandi'];
> $MM_fldUserAuthorization = "";
> $MM_redirectLoginSuccess = "sukses_login.php";
> $MM_redirectLoginFailed = "tmbhdtteknisi.php";
> $MM_redirecttoReferrer = false;
> mysql_select_db($database_koneksi, $koneksi);
>
> $LoginRS__query=sprintf("SELECT username, password FROM
tblteknisi WHERE
> username='%s' AND password='%s'",
> get_magic_quotes_gpc() ? $loginUsername :
addslashes($loginUsername),
> get_magic_quotes_gpc() ? $password :
addslashes($password));
>
> $LoginRS = mysql_query($LoginRS__query, $koneksi) or
die(mysql_error());
> $loginFoundUser = mysql_num_rows($LoginRS);
> if ($loginFoundUser) {
> $loginStrGroup = "";
>
> //declare two session variables and assign them
> $GLOBALS['MM_Username'] = $loginUsername;
> $GLOBALS['MM_UserGroup'] = $loginStrGroup;
>
> //register the session variables
> session_register("MM_Username");
> session_register("MM_UserGroup");
>
> if (isset($_SESSION['PrevUrl']) && false) {
> $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
> }
> header("Location: " . $MM_redirectLoginSuccess );
> }
> else {
> header("Location: ". $MM_redirectLoginFailed );
> }
> }
> ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
4.01//EN"
> "
http://www.w3.org/TR/html4/strict.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
> <title>Selamat Datang</title>
> .......
>
>
>
> and new page :
> <?php
> //initialize the session
> session_start();
>
> // ** Logout the current user. **
> $logoutAction = $_SERVER['PHP_SELF']."?doLogout=true";
> if ((isset($_SERVER['QUERY_STRING'])) &&
($_SERVER['QUERY_STRING'] !=
> "")){
> $logoutAction .="&".
htmlentities($_SERVER['QUERY_STRING']);
> }
>
> if ((isset($_GET['doLogout']))
&&($_GET['doLogout']=="true")){
> //to fully log out a visitor we need to clear the
session varialbles
> session_unregister('MM_Username');
> session_unregister('MM_UserGroup');
>
> $logoutGoTo = "index.php";
> if ($logoutGoTo) {
> header("Location: $logoutGoTo");
> exit;
> }
> }
> ?>
> <?php
> session_start();
> $MM_authorizedUsers = "";
> $MM_donotCheckaccess = "true";
>
> // *** Restrict Access To Page: Grant or deny access to
this page
> function isAuthorized($strUsers, $strGroups, $UserName,
$UserGroup) {
> // For security, start by assuming the visitor is NOT
authorized.
> $isValid = False;
>
> // When a visitor has logged into this site, the Session
variable
> MM_Username set equal to their username.
> // Therefore, we know that a user is NOT logged in if
that Session
> variable
> is blank.
> if (!empty($UserName)) {
> // Besides being logged in, you may restrict access to
only certain
> users
> based on an ID established when they login.
> // Parse the strings into arrays.
> $arrUsers = Explode(",", $strUsers);
> $arrGroups = Explode(",", $strGroups);
> if (in_array($UserName, $arrUsers)) {
> $isValid = true;
> }
> // Or, you may restrict access to only certain users
based on their
> username.
> if (in_array($UserGroup, $arrGroups)) {
> $isValid = true;
> }
> if (($strUsers == "") && true) {
> $isValid = true;
> }
> }
> return $isValid;
> }
>
> $MM_restrictGoTo = "index.php";
> if (!((isset($_SESSION['MM_Username'])) &&
> (isAuthorized("",$MM_authorizedUsers,
$_SESSION['MM_Username'],
> $_SESSION['MM_UserGroup'])))) {
> $MM_qsChar = "?";
> $MM_referrer = $_SERVER['PHP_SELF'];
> if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
> if (isset($QUERY_STRING) &&
strlen($QUERY_STRING) > 0)
> $MM_referrer .= "?" . $QUERY_STRING;
> $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar .
"accesscheck=" .
> urlencode($MM_referrer);
> header("Location: ". $MM_restrictGoTo);
> exit;
> }
> ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
4.01//EN"
> "
http://www.w3.org/TR/html4/strict.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
> <title>Registrasi</title>
> <link href="css/stylesnew.css" type="text/css"
media="screen"
> rel="stylesheet">
> <!--[if gte IE 5]>
> <style>
> #LeftMNav ul a {height: 1em;}
> #LeftMNav li {float: left; clear: both; width: 100%;}
> </style>
> <![endif]-->
> <style type="text/
> ........
>
> how i can get username that user entered(login page) in
new page ?
> pls help me i'm just new bie....
> tks 4 kind attentions,
>
> regds
>
>
>
>
>
>

Similar Messages

  • Pls help me about Runtime.getRuntime().exec("java...")

    I have two applications. One is Client, the other is Platform.
    In the Platform, there are source files packaged into a library named ZtConfig.jar used by Client. If run Client and Platform, two applications can execute normally.
    But if Client is started by user from platform, there is something wrong.
    I noticed the error difficultly with finally catching exception.
    I was puzzled. It is so strange. Pls help me. I list some codes here.
    In Client where finally exception catched:
    import zt.config;
            try {
              xmlFileUrl = new java.net.URL(
                  "file:///e:/Client/src/config/nsr1000.xml");
            catch (IOException ex1) {
              FileLogger.error(ex1.getMessage());
            FileLogger.info("NSR1000Document.setIEDContent", xmlFileUrl.toString());
            try {
              xmlLoader = new XMLConfigLoader(xmlFileUrl);
            finally {
              FileLogger.error("NSR1000Document.setIEDContent",
                               "cannot new XMLConfigLoader object");
              return; // the following codes cannot execute, so have to return here.
    In the XMLConfigLoader, the constructor is
      public XMLConfigLoader(java.net.URL xmlFileUrl) {
        this.xmlFileUrl = xmlFileUrl;
        configDoc = null;
        builder = null;
        xmlDoc = null;
    Platform start Client application using the following code
      Runtime.getRuntime().exec(
                    "java -jar e:/Client/Client.jar");

    I've got it!
    Briefly, it is because classpath setting was overwritten by JBuilder.
    Firstly, I start Platform from JBuilder. In its messages window. The command is
    d:\j2sdk1.4.2_06\bin\javaw -classpath "JBPATH" zt.client.nsr1000.NSR1000App
    Now, classpath environment variable was changed to be JBPATH. While I start
    Client use Runtime.getRuntime().exec("java -jar Client.jar"), it will not run for classpath changed.
    Then, I configured all packages used by Client into JBuilder libraries, including
    Client.jar. And changed codes Runtime.getRuntime().exec("java -jar Client.jar") to be Runtime.getRuntime().exec("java -Xmx128m zt.client.nsr1000.NSR1000App")
    I also changed CLASSPATH windows system environment variable.
    I found this from command console, it can display exceptions. But from JBuilder, there is no exception that can be captured. So debug is difficult.

  • Pls help me about two java virtual machine

    have two applications. One is Client, the other is Platform.
    In the Platform, there are source files packaged into a library named ZtConfig.jar used by Client. If run Client and Platform, two applications can execute normally.
    But if Client is started by user from platform, there is something wrong.
    I noticed the error difficultly with finally catching exception.
    I was puzzled. It is so strange. Pls help me. I list some codes here.
    In Client where finally exception catched:
    import zt.config;
            try {
              xmlFileUrl = new java.net.URL(
                  "file:///e:/Client/src/config/nsr1000.xml");
            catch (IOException ex1) {
              FileLogger.error(ex1.getMessage());
            FileLogger.info("NSR1000Document.setIEDContent", xmlFileUrl.toString());
            try {
              xmlLoader = new XMLConfigLoader(xmlFileUrl);
            finally {
              FileLogger.error("NSR1000Document.setIEDContent",
                               "cannot new XMLConfigLoader object");
              return; // the following codes cannot execute, so have to return here.
            }In the XMLConfigLoader, the constructor is
      public XMLConfigLoader(java.net.URL xmlFileUrl) {
        this.xmlFileUrl = xmlFileUrl;
        configDoc = null;
        builder = null;
        xmlDoc = null;
      }Platform start Client application using the following code
      Runtime.getRuntime().exec(
                    "java -jar e:/Client/Client.jar");

    I've got it!
    Briefly, it is because classpath setting was overwritten by JBuilder.
    Firstly, I start Platform from JBuilder. In its messages window. The command is
    d:\j2sdk1.4.2_06\bin\javaw -classpath "JBPATH" zt.client.nsr1000.NSR1000App
    Now, classpath environment variable was changed to be JBPATH. While I start
    Client use Runtime.getRuntime().exec("java -jar Client.jar"), it will not run for classpath changed.
    Then, I configured all packages used by Client into JBuilder libraries, including
    Client.jar. And changed codes Runtime.getRuntime().exec("java -jar Client.jar") to be Runtime.getRuntime().exec("java -Xmx128m zt.client.nsr1000.NSR1000App")
    I also changed CLASSPATH windows system environment variable.
    I found this from command console, it can display exceptions. But from JBuilder, there is no exception that can be captured. So debug is difficult.

  • Pls help ? about snapshot,urgent!

    first i create a database link remote_connect,and test it,it's active;
    then i create a snapshot log on remote master table:table_one, table_one has it's primary key(id), and last i create snapshot in local like this:
    create snapshot local_table_one
    storage(initial 100k next 100k pctincrease 0)
    tablespace snaps
    refresh fast
    as
    select * from table_one@remote_connect;
    but the errors occur:
    ORA-12014: 1m'TABLE_ONE'2;0|:,Vw9X<|WVT<JxLu<~(table 'table_one' not include primary key check condition);
    my question is:
    how can i do for this,i want use primary key not rowid:
    thanks first!

    This problem occurs when you try to create a snapshot with using WITH PRIMARY KEY option, and the Master table either doesn't have primary key or the primary key is disabled.
    If you don't want to use WITH ROWID option, you'll have to check your master table.
    Either create a primary key or enable it if already exists on the Master table.
    Hope this will help
    Faheem

  • PLS help me about file access!!

    now the file struct is like the bellow:
    <root>/db
    db.db
    <root>/server
    RemoteDataImp.java
    how to write the code in RemoteDataImp.java to access file db.db??
    the code writen bellow is wrong!
    dataWrapper = new Data("../db/db.db");

    first if this is a file for your database then you need to connected to
    the machine and then you make the code that can access this file
    if you use windows then all you have to do is go to control panel
    and then open Data Sources (ODBC)in User DSN click on Add button
    there choose the database driver if you use Access then double click on
    that then anther box will popup there in Data Source Name write the name
    of the file or any name let say in your case the name is db.db
    then down there you will see a button calls Select click on that
    button to select the file you have saved you database in
    I will give you an idea about how to call you database files if you use Access
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    public class RemoteDataImp {
      private static final String DEFAULT_DRIVER = "sun.jdbc.odbc.JdbcOdbcDriver";
      private static final String DEFUALT_CONNECTION_INFO = "jdbc:odbc:db.db";
      private PreparedStatement setUserNames,removeUserNames;
      private static Connection connection;
      public RemoteDataImp(String driver,String info)throws Exception{
        if (driver == null) driver = DEFAULT_DRIVER;
        if (info == null) info = DEFUALT_CONNECTION_INFO;
        Class.forName(driver).newInstance();
        connection = DriverManager.getConnection(info);
        connection.setAutoCommit(true);
      public PreparedStatement prepareConnection(String sql) throws Exception{
        return connection.prepareStatement(sql);
      public RemoteDataImp()throws Exception {
        this(DEFAULT_DRIVER,DEFUALT_CONNECTION_INFO);
      public void saveToDB(/*the user calss which is containing the set and get */ user) throws Exception{
        RemoteDataImp r = new RemoteDataImp();
        if (setUserNames == null) {
           setUserNames = r.prepareConnection("INSERT INTO userTable (USER_ID,NAME,E_MAIL) VALUES(?,?,?)");
         setUserNames.setString(1,user.getUserId());
         setUserNames.setString(2,user.getName());
         setUserNames.setString(3,user.getEmail());
          setUserNames.execute();
      ublic void removeFromDB(/*the user calss which is containing the set and get */ user) throws Exception {
        DatabaseConnection d = new DatabaseConnection()
        if (removeUserNames == null) {
       removeUserNames = d.prepareConnection("DELETE FROM userTable WHERE USER_ID =?");
    removeUserNames.setString(1,user.getUserId());
        removeUserNames.execute();
      public void finalize() throws Throwable {
        try {
          connection.close();
        catch (Exception ex) {
    }

  • Pls help me about oytput types  URGEEEEEEEEEENT

    hi friends,
    i devoloped a Z smartform and attatched in NACE to output type ZUS3 in V3 application
    that above form is modified to standard from.
    but i am getting the output for VF02 tcode it is generating one spool request properly with some hard code missing that i given in SF.
    but the issue is if i attatch the same form to other output type in NACE like YPFI iam getting the correct output.
    i kept break point in my SF both output types picking the same form (mine only)
    what could be the mistake.
    thanks in Advance.
    VENUMADHAV -SATYAM

    hi
    try this
    hi
    try this
    SQL> conn tom
    Enter password:
    Connected.
    SQL> select count(*) from smitemout;
    COUNT(*)
    1326661
    SQL> disconnect
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Pr
    oduction
    With the Partitioning, OLAP and Data Mining options
    SQL> conn / as sysdba
    Connected.
    SQL> select DBMS_LOB.substr(sql_text, 4000)
    2 from v$session s, v$sqlarea where address = sql_address and
    3 Hash_value= sql_hash_value and s.sid = 149;
    DBMS_LOB.SUBSTR(SQL_TEXT,4000)
    SELECT COUNT(*) FROM SMITEMOUT
    SQL>
    regards
    Mohammadi52

  • Pls help! about formatted output.

    for example, I want to print "double a = 2.33, b =45.123" like:
    ###2.330
    # 45.123 (# should be blank, in fact. )
    with fixed width, precision and right alignment. But it seems there are no class can do this like printf function in C.
    BTW:I tried DecimalFormat("00.000") but got 02.330.
    Thanks in advance!

    or perhaps try_1d could try reading the java docs...
    ###.### is exactly the same as the following
    I could come up with an infinite number of possibilities so I will stop now.

  • What should i do i buy a second hand iphone 4s but its lock to the previous owner in find my iphone pls help me i cant use my iphone for a year already

    pls. help me about find my iphone lock. because i buy a second hand iphone 4s but still lock to the previous owner when i restore factory settings still searching for the previous owner of this phone still now i cant use this phone

    Hello jimmy ii
    The only option is to contact that person to have them remove Activation Lock from the iPhone. They can do it online and do not have to come to you. Check out the article below for more information.
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/TS4515
    Regards,
    -Norm G.

  • What to do for activate wi fi in iphone 5 pls help

    in my iphone 5 no wi fi function is getting on off pls help me about to turn on wi fi pls

    Hi there ramesh272,
    I would recommend taking a look at the troubleshooting steps found in the article below is you are unable to turn on Wi-Fi on your device. 
    iOS: Wi-Fi settings grayed out or dim
    -Griff W.

  • TS3844 compressor failed Log. Pls help! ?xml version="1.0" encoding="UTF-8" standalone="yes"? logs tms="357248472.250" tmt="04/27/2012 15:41:12.250" pnm="Batch%20Monitor"     log tms="357248472.250" tmt="04/27/2012 15:41:12.250" pid="7121" kind="mrk" sub=

    COMPRESSOR Failed Log....Pls help!

    digital rebellion has a crash analyzer that's part of Pro Maintenance Tools
    http://www.digitalrebellion.com/promaintenance/
    There's a free trial, but it's worth every penny.

  • I don't understand why i cant log in to my fb account using mozilla but with googlechrome i am able to do that.. mozilla can load up the fb site but cannot log in to my fb account.. i am comfortable with using the mozilla as my browser.. pls help thanks

    i don't understand why i cant log in to my fb account using mozilla but with googlechrome i am able to do that.. mozilla can load up the fb site but cannot log in to my fb account.. i am comfortable with using the mozilla as my browser.. pls help thanks

    hey thanks alot.. it helped me alot!! bring it on!!! cheers!!!

  • HT1766 yesterday i connect my iPhone with iTunes then one MSG displayed on screen about backup i ignore that but same time i have lost all my installed app from my iPhone pls help me.

    yesterday i connect my iPhone with iTunes then one MSG displayed on screen about backup i ignore that but same time i have lost all my installed apps incouled my pics and vids from my iPhone pls help me.

    1) ensure iTunes is authorized for your iTunes store account(s)
    2) connect your device and right-click or control-click it in the iTunes Source list, then choose transfer purchases from the shortcut menu that appears.
    3) sync the device
    iTunes will wipe the iPhone but, since you transferred your purchases in the previous step, your content will be in your library and you can re-populate the iPhone with it.
    above works for purchases from the iTunes store. for everything else, check out this post by Zevoneer.

  • Hİ My ipad's screen is black. When it  take charge, I can hear sound but still black. I press and hold both the sleep and home buttons for about 10 to 15 seconds but this doesn't work. Screen still black! PLS HELP ME!


    My ipad's screen is black. When it  take charge, I can hear sound but still black. I press and hold both the sleep and home buttons for about 10 to 15 seconds but this doesn't work. Screen still black! PLS HELP ME!

    How long did you let it charge? It may take 30 minutes before the iPad responds when the battery is completely drained. Let it charge for at least 30 minute using the wall charger. Then rest the iPad. Press and hold both the Home button and the Sleep/Wake button continuously until the Apple logo appears. Then release the button and let the device restart. You will not lose data doing this. It's like a computer reboot.
    If the iPad restarts let it continue to charge until the battery is 100%.
    If the iPad still does not start make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • About COPA value fieds assignment-- pls help

    Dear gurus,
    we use COPA in project, SD create a condition type in pricing list, i will create a value fields and assign this condition type to the value fields.
    and also we used incoming and actual in COPA. (different record type) . when i tested the new config, i found that:
    in incoming sales order, i can get the data for the new value fields from SD condition type, but for the actual sales order which has billed, this field is empty.
    this is the first time i meet this case.  i feel a littele confused.
    so pls help! your value point will be appreciated!
    thanks
    Ivan

    hi Shammi,
    thanks for your quickly response.
    in SD partner function we use sales rep, but we never refer to the SBU.
    so i still confused, could you explain more details.
    thanks & regards
    IVAN

  • My gmail wont link up to my phone, it says invalid password,however i log in on my computer with this gmail acc and password. Pls help

    My gmail acc wont link up to my iphone it says invalid password..although I get in on my computer with that username and password.pls help!!

    double check the passowrd.  Failing that delete the account form the phone and carefully re enter all the information making sure the incoming and outgoing server names are correct as well as user name and password

Maybe you are looking for

  • My MBP (mid 09)/ folder with a flashing question mark.

    My MBP (mid 09) is showing a folder with a flashing question mark. I tried the usual things like PRAM Reset and booting with a external drive. I also changed the hard drive and could use it as a external drive on an other Mac - so this seems to work.

  • Why do I get the message " 'Song Tiltle' was not copied to iPod because it cannot be played on this iPod"

    I got a new gen iPod Classic (160G) for Christmas, purchased Bob Marley's Album "Legend" and when I sync the playlist to the iPod I get an error message saying this one song cannot be played on this iPod. What gives? Is it something about "I Shot the

  • JCO Client Pool

    Hi All,         I have a situation where I'm supposed to initialize JCO Client pool at server startup(Weblogic 8.1). Could someone please let me know how to achieve this.        Any pointers to documentation or sample startup servlet code would also

  • Google Chrome can't open downloaded files

    Hello. I'm having a little problem with Google Chrome. Made package from AUR. Everything is working fine, but I can't get chrome to open any files it downloads, I have to manually go to the downloaded file and open it. I'm sure the answer is trivial,

  • Airport Utility can't find my base stations

    I've got an Airport Extreme base station with a printer connected to it - all three of my Macs print to it wirelessly. Now I'm trying to set up an Airport Express elsewhere in the house for AirTunes. But Airport Utility doesn't see my AE... in fact,