PHP MODE에서 바로 MENU로 이동하기(11.5.9)

제품 : AOL
작성날짜 : 2004-05-20
PHP MODE에서 바로 MENU로 이동하기(11.5.9)
================================
Problem Description
User에 하나의 Menu를 가진 하나의 권한을 등록했을 때,
이전 version에서는 로긴하자마자, PHP화면을 거쳐 바로 해당 Web-page가 나왔으나,
11.5.9에서는 PHP화면에서 해당 권한을 한번 눌러줘야 다음으로 넘어가도록
변경되었다. PHP 화면을 거치지 않고, 바로 해당 Menu로 이동하는 방법은 없는지?
Solution Description
Patch 3124672적용 후 System Profile화면에서 해당 User에 대한
'Self Service Personal Home Page Mode' 값을 'Personal Home Page'로 변경하면 된다.

Similar Messages

  • BIG problems with iOS 8.2 Safari ("dark mode" menu bar, no auto-fill, etc)... HELP, please?

    So I was simply wiping the dust off my screen, with Safari open, and once I had finished... Safari just went belly-up.
    And I need some help badly.
    First thing that I noticed was that Safari now has a "dark mode" menu bar.
    Secondly, my auto-fill user names and passwords no longer "auto-fill" - I have to place the cursor in a field and have the keyboard pop up in order to access the auto-fill function: previously, the fields simply, well, auto-filled.
    And, thirdly, when I attempt to post a message to the Apple Support Communities, there is no visible text in the body of the text. I'm using my MacBook Pro to type this message.
    I have searched and searched to try to find remedies to my problems, but I can't find a thing. There's nothing unusual in Accessibility (that would make the whole screen, for example, grayscale), nothing changed in passwords, etc.
    I'm at my wits end! Even restoring from an older backup doesn't remedy any of the problems.
    Can anyone help?
    Clinton
    iPad Air 2, WiFi only

    If the menu bar at the top of Safari show white text on a grey background, and autofill isn't working, then you probably have private browsing 'on'. Tap the icon top right of the Safari screen (the square on top of a second square), tap the Private button at the top of the next screen and then Done - Safari should then go back to its normal colours and autofill should work again

  • Open pdf in IE using #toolbar = 0 does not display read mode menu

    I m trying to open up a pdf document using IE 9 and Adobe Reader XI and if I have the toolbar hidden the first time the document displays the read mode menu bar does not display.  I have to refresh the browser to get the read mode menu to display.
    How do I get the read mode menu bar to display every time?
    I have been able to reproduce this issue consistently using the link : http://www.adobe.com/misc/pdfs/TM_GuideforThirdPartiesFinalPrint.pdf#toolbar=0&navpanes=0

    I mean, When I click on link which contains the PDF, The link gets open in another TAB of browser but not in proper format, please refer below mentioned screen shot.
    he attach screen shot.

  • 6288 - Active Standby Mode menu lost

    Hello,
    The Active Standby Mode menu has disappear from
    Menu-Settings-Standby Mode Settings.
    I can't access this setting any more.
    My firmware version is 6.10.
    Thanks for any advices.
    JeromeMessage Edited by hidje on 21-Jul-200707:37 AM

    I have the same problem. I don't know if I'll use that option but is annoing that I can't activate it. I have software version 6.10 and in display-standby option first submenu is wallpaper (not active standby setting).
    Does anyone fixed this BUG?

  • PHP: Dynamic Menu/List

    I have a database that has a bunch of locations and I have
    created a page using PHP that has a Dynamic Menu/list that pulls
    the locations. Users have the option to select a location and
    perform a search returning information. My problem is, I want to
    create an option "Search All Locations." I have tried every special
    character that I can think of and all results bring back nothing. I
    am using Dreamweaver 8. I have pasted some of my code below:
    <form id="form1" name="form1" method="get"
    action="resultslocations.php">
    <label></label>
    <p>
    <label>
    <select name="neighborhood_list"
    id="neighborhood_list">
    <option value=""%"">Search by
    Neighborhood</option>
    <?php
    do {
    ?>
    <option value="<?php echo
    $row_Location['Location']?>"><?php echo
    $row_Location['Location']?></option>
    <?php
    } while ($row_Location = mysql_fetch_assoc($Location));
    $rows = mysql_num_rows($Location);
    if($rows > 0) {
    mysql_data_seek($Location, 0);
    $row_Location = mysql_fetch_assoc($Location);
    ?>
    </select>
    </label>
    </p>
    <p>
    <label>
    <input name="neighborhood_submit" type="submit"
    id="neighborhood_submit" value="Submit" />
    </label></p>
    </form>

    Here's the code again, it seems it was cut off.
    <?php
    require_once('../../Connections/ResturantsDatabase.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "", $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "'" : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    mysql_select_db($database_ResturantsDatabase,
    $ResturantsDatabase);
    $query_Location = "SELECT Location FROM Locations ORDER BY
    Location ASC";
    $query_LocationFindAll = "Select * FROM Locations ORDER by
    Location ASC";
    $resultalllocations=mysql_query($query_LocationFindAll);
    $Location = mysql_query($query_Location, $ResturantsDatabase)
    or die(mysql_error());
    $row_Location = mysql_fetch_assoc($Location);
    $totalRows_Location = mysql_num_rows($Location);
    mysql_select_db($database_ResturantsDatabase,
    $ResturantsDatabase);
    $query_Cuisine = "SELECT * FROM Cuisine ORDER BY Cuisine
    ASC";
    $Cuisine = mysql_query($query_Cuisine, $ResturantsDatabase)
    or die(mysql_error());
    $row_Cuisine = mysql_fetch_assoc($Cuisine);
    $totalRows_Cuisine = mysql_num_rows($Cuisine);
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Wigz Menu Venu Homepage</title>
    <script src="../../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <style type="text/css">
    <!--
    body {
    background-image:url(../images/background.jpg);
    background-repeat:repeat-x repeat-y;
    background-position:top left;
    a:link {
    color:#FFFFFF;
    text-decoration:none;
    </style>
    <link href="navigation_menu_class.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <table width="70%" height="522" align="center"
    bgcolor="#FFFFFF">
    <tr>
    <td height="206" colspan="2" valign="top"><div
    align="center">
    <table width="100%" border="0">
    <tr>
    <td width="80%"><div align="left"><img
    src="../images/logo2.png" width="613" height="192" alt="Wigz Menu
    Venue Logo" /></div></td>
    <td width="20%" align="right" valign="top"><img
    src="../images/menu2.jpg" alt="menu2" width="277"
    height="201"/></td>
    </tr>
    </table>
    </div></td>
    </tr>
    <tr>
    <td width="20%" height="270" valign="top"
    background="../images/menu_back.jpg"><div id="navigation">
    <ul>
    <li><a href="search.php">Browse
    Menus</a></li>
    <li><a href="#">Home</a></li>
    <li><a
    href="advertise.php">Advertise</a></li>
    <li><a
    href="recommendations.php">Recommendations</a></li>
    <li><a href="media.php">Media
    Kit</a></li>
    <li><a href="map.php">Site
    Map</a></li>
    <li><a href="about.php">About
    Us</a></li>
    <li><a href="contact.php">Contact
    Us</a></li>
    </ul>
    </div></td>
    <td width="80%" valign="top"><table width="100%"
    border="0" background="../images/background.jpg">
    <tr>
    <td width="50%"><div id="browsebyheaders">Browse
    by Neighborhood</div></td>
    <td width="50%"><div id="browsebyheaders">Browse
    by Cuisine </div></td>
    </tr>
    </table>
    <table width="70%" border="0" align="center">
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td colspan="2"><font size="+2"><b>Wigz
    Menu Venu.com </b></font> is your one-stop-shop to
    locate resturants, menus, and bars in the Arlington, VA region.
    Here you will be able to find your favorite resturant's contact
    information along with viewing or downloading their current menu.
    To begin your search, select one of the two search options below.
    You may search by neighborhood or by food cuisine. </td>
    </tr>
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td width="50%"><div align="center">
    <form id="form1" name="form1" method="get"
    action="resultslocations.php">
    <label></label>
    <p>
    <label>
    <select name="neighborhood_list"
    id="neighborhood_list"></label>
    <option value=""SearchALL""><Search by
    Neighborhood></option>
    IF (option value=="SearchALL")
    {<?php echo$resultalllocations ?>
    while ($row_Location = mysql_fetch_assoc($Location));
    $rows = mysql_num_rows($Location);
    if($rows > 0) {
    mysql_data_seek($Location, 0);
    $row_Location = mysql_fetch_assoc($Location);
    ?>
    <?php
    do {
    ?>
    <option value="<?php echo
    $row_Location['Location']?>"><?php echo
    $row_Location['Location']?></option>
    <?php
    } while ($row_Location = mysql_fetch_assoc($Location));
    $rows = mysql_num_rows($Location);
    if($rows > 0) {
    mysql_data_seek($Location, 0);
    $row_Location = mysql_fetch_assoc($Location);
    ?>
    </select>
    </label>
    </p>
    <p>
    <label>
    <input name="neighborhood_submit" type="submit"
    id="neighborhood_submit" value="Submit" />
    </label></p>
    </form>
    </div></td>
    <td width="50%"><div align="center">
    <form id="form2" name="form2" method="get"
    action="resultscuisine.php">
    <label>
    <select name="cuisine_list" id="cuisine_list">
    <option value="'Cuisine'LIKE'*'">Search by
    Cuisine</option>
    <?php
    do {
    ?><option value="<?php echo
    $row_Cuisine['Cuisine']?>"><?php echo
    $row_Cuisine['Cuisine']?></option>
    <?php
    } while ($row_Cuisine = mysql_fetch_assoc($Cuisine));
    $rows = mysql_num_rows($Cuisine);
    if($rows > 0) {
    mysql_data_seek($Cuisine, 0);
    $row_Cuisine = mysql_fetch_assoc($Cuisine);
    ?>
    </select>
    </label>
    <label>
    <br />
    <br />
    <input name="cuisine_submit" type="submit"
    id="cuisine_submit" value="Submit" />
    </label>
    </form>
    </div></td>
    </tr>
    </table>
    <p> </p></td>
    </tr>
    </table>
    <blockquote> </blockquote>
    </body>
    </html>
    <?php
    mysql_free_result($Location);
    mysql_free_result($Cuisine);
    ?>

  • Command Line/Console Mode Menu's and ASCII-Graphics

    Dear Sun java friends:
    Pardon me if this has been asked. I have used the search function but have been unable to find useful information.
    I am developing a series of programs to parse servers logs and compute certain statistics. There will also be a real-time monitor of active connections. This would be an extrodinarily simple task with swing and awt, but i am limited to the console mode only. In my quest for neatness (i do not want a continious screen scroll of active connets/disconnects with System.out), i am looking for a way to create simple ASCII-like graphics, not much unlike the TSR's from the old DOS days.
    Obviously, System.out.println() does not give me the power i need. I would like to be able to print text/characters at a certain x,y coordinate. Is it even possible with Java? Where can i look for tutorials or get more information?

    There is no standard package in Java for console graphics but a number of third party packages exist. For example the ncurses library has been ported to Java, do a web search on "java curses." IIRC it's open source but I've never used it..

  • In Elements 5 I can no longer drop down menu for Blending modes

    Hi
    Something has broken my Elements 5 or is it me? I load a Jpeg make a copy, click on copy layer the blending mode writing goes from greyed out to normal. If I now click on the blending mode menu to drop it down or darken it so I can use the up/down keys to change modes nothing happens. I'm using Vista all updated and Elements 5.0.2. Tried repairing it to no avail. Any Ideas? Cheers Terry

    Hi Trish, Thanks for your help. I tried what you said and it worked but if I then reload the program without pressing ctrl-alt-shift (so it now reads in the new Prefs file which it produced when it closed down) it's doesn't work again. I downloaded a trial of Elements 7 and that work OK and if I click on the Elements 5 prefs.psp Elements 7 loads and works OK as well. So I'm flommaxed as to what is happening. I reckon some update of Windows has broken it. Looks like I'll have to upgrade. Cheers Terry

  • Wi-Fi Menu below Airplane Mode Touch is not working

    Hi Every body i am using iPhone 4 and i am having a problem with it's WI-FI when i tries to click on SETTINGS>Wi-Fi it's not entering in wifi menu option or not even touch works on this menu when i tries to touch it sometimes it goes in Airplane mode menu or sometimes in BLUETOOTH menu the touch on Wi-Fi menu is not working and same is the case with shortcut to brightness from where we can increase/decrease brightness and also turn's on or off the flash light in iOS 7.0.4. All other things are going well touch is also working on home and anywhere else only wi-fi menu touch and brightness increase/decrease shortcut touch is not working Please help me.

    See here: iOS: Wi-Fi or Bluetooth settings grayed out or dim
    Note that if none of the suggestions resolve the issue, it's likely hardware related, meaning you'll need to have your iPod serviced or replaced.
    B-rock

  • 80GB iPod Classic stuck in recovery mode, tried EVERYTHING

    Hello, i'm Michael, and i need some help right now :c
    i just got an iPod Classic with 80GB of HDD, just a gift, but it had some "issues" (the screen showed a dock connector and it reads "Use iTunes to Restore"), i had an iPod Touch 4G, and i had that restored several times, so i knew the trick.
    Okay i came from my grandmother's house and plugged my new fancy iPod! (it came with no USB cable so i bought a cheap one) but when i plugged the iPod had not enough power to remain connected, so i though (maybe the usb cable is not powerfull enough to mantain the charge cicle, it's a 2$ one, so it's big deal) plugged my iPod to my speakers on the Dock station, and leave it there for the entire night
    The next morning i plugged my super charged iPod to my Windows 7 PC, and it got detected YAAY!, iTunes asked me to download the software to restore, so i let it do just that, waited for the 56mb ipsw file to download, and after that the restore process begun. At 57 seconds of the process (i timed it) the PC turned OFF (not big deal, my processor is not the best processor ever, and my PC usually turns off after a small overdrive)
    Well, the iPod restarted and it was at the "Use iTunes to Restore" screen again. So i tought (Well, let's try my sis laptop) connected my iPod to the Windows 8 Laptop from my sister, and the iTunes download (iTunes + iPod ipsw) took a lot of time to me.. But when it comes to the Restore Process, after the same amount of time, i got the "1439" error, and after looking foward throught a lot of web pages, i came out with the "Windows 8 is the one of the problem :L" so i plugged my iPod out and leave it charging in my speakers, at the next day, i was in my Grandmother's house again..
    So i came out with my uncle and told him to lend me his Lap, a Windows 7 64X Core i5 Extreme with VT (super machine i loved it *¬*) and plugged my iPod in, i tried to Restore with his iTunes version (11 one) and guess what? 1439 error! it looked like the USB cable was the problem one, but i didn't gave up, and installed Virtual Box with Widnwos XP (i rode some guy had it working with a restaration with XP, and makes sense, since Windows 7/8 can't format large drives with FAT32, and XP sure can) so i plugged my iPod and installed Guest additions and the Expansion pack (for USB 2.0 support) installed the last iTunes version and tried to restore, and guess what? 1434!
    So, i tried something different, i tried to format the iPod with Windows Explorer, and guess what? it worked! NTSF system was loaded ad working, i dragged some 134mb files to it, and they could be readen every time i wanted. But there's a problem, iPod software is not NTSF but FAT32, so i downloaded EaseUS partition manager and formated it to Fat32, 128kb cluster size, and unplugged it to plug the speakers again (YES, I TOOK THEM TO MY GRANDMOTHER'S) after the battery's top capacity was acomplished, i tried the restore form XP again, and after a few tries, i got a succefull restore!
    The iTunes screen showed "your iPod is going to restart, please leave it connected, and it will be recognized after the reboot" (or something like that Cx) i was really happy i could get my iPod to work, but when the Apple logo appeared with the progress bar, it filled like 84%, and the screen became white, it showed the same "do not disconnect" regular screen, and iTunes told "iTunes has detect and iPod in Recovery Mode, please restore it to be used with iTunes"
    So, i tried a LOT of methods from Apple Discussion, formating in Disk Mode, Restoring in Disk Mode, regular mode, DFU mode (only downloads a 1.4mb file and says "preparing the ipod" after 34 seconds and an uncomplete bar it closes ._.) restoring with XP, 7, 8, rebooting the iPod (select + menu, 6 secs) DFU mode (menu + select 12 secs) disk mode (play + select, 6 secs in apple icon) and a lot of hard work.. nothing worked.
    So i tought.. (maybe the iPod's HDD is broken or something) opened Diagnostics and this are the results:
    Retracts :432
    Reallocs: 319
    Pending sectors: 0
    Poweron Hours: 560
    Start /Stop: 426
    Temp status are not important right now, current 23, max 43c, min 15c
    it's obviously an used iPod.  But the Reallocs count is not THAT big
    Okay so i tried something different and asked my friend's iPad cable, this one connected pretty well with Windows 8 and it did restore with no problems at all. but there's one little small issue.. it didn't work either...
    So, i'm here, out of ideas, i can imagine a restore with OS X will change my point of view in some way, but i can't do that right now...
    i Must add that the HD is completely functional, i can add files to it right now, and use them in another PC, i can format it, partition it, and a lot of crazy things, so the HDD is not the problem one..
    Please help me.. i have EVER SEEN a iPod's menu, other than my DSi iPod themed homebrew music player.. (wich looks fantastic)
    Thank's in advance, i'm sorry for the lenght of my note, i have been thinking on it for a long time hehe c:

    After hours of searching for a fix I may have found one on a Mac Forum. This worked for mine but I had to restore it from the last back up. I also gave me the option of restore to new condition (out of hte box) but Ichoose from the last backup that itunes made. It took about 4 hours to fully restore all my 24gb of material. BUT,Now it's working perfectly. For how long...who knows?
    Here's the link to the page where I found the info. http://forums.macrumors.com/showthread.php?t=447185
    Below is the solution that worked for my 2nd gen 32 gig.
    "Originally Posted by vegas-steven
    try and do this:
    1. start itunes.
    2. plug the ipod into your computer
    3. hold the power (on top) and home (on front) buttons for a few seconds.
    the ipod should power up, and if if is screwed up, will be in recovery mode... from there itunes will tell you that it finds your ipod in that mode, and needs to restore it.
    just click restore, sit back and it should work again.
    did you hack it at all?
    if you did not hack it, and that doesnt work, call applecare and see what they say. maybe it is faulty?
    still, from my experience with my friends ipod that i made 100% unusable, there is a way to restore even the most broken ipod as long as it has a battery charge.
    i suspect a small portion of the memory is dedicated to keeping emergency boot files that allowe you to restore, no matter how bad things get."

  • Syslinux - Live CD Type Menu with borders.

    OK, before I begin this is not a case of not reading the forums or documentation.  I have trawled through various forums and the Syslinux documentation.  That's not to say I haven't missed the wood for the tree's though
    I recently re-installed Arch on my laptop and all is great.  However, this time upon installation I opted to try Syslinux instead of Grub.  So far I am really happy. 
    I have configured Syslinux just how it needs to be and followed the instructions to create a basic graphical menu using the 640x480 image used on the Arch Live CD.  However, the menu fills my screen on boot.  Although not the end of the world I would be really interested to find out the Arch Live CD centres the menu (and image) in the middle of the framebuffer on load.  Stretched out it just looks a bit "wrong".  No matter what I have tried (including adding the MENURESOLUTION line in the syslinuc.cfg file) it just fills the screen.
    I have tried to look at the git repo that contains the Live cd config's but I can see nothing obvious.  If anyone has any idea I would appreciate a pointer.
    Cheers in advance.

    Trilby, Thanks for the fast response!
    I compared your config settings to mine and they are almost identical.
    The relevant section of my config is
    DEFAULT arch
    PROMPT 0 # Set to 1 if you always want to display the boot: prompt
    TIMEOUT 50
    # You can create syslinux keymaps with the keytab-lilo tool
    #KBDMAP de.ktl
    # Menu Configuration
    # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
    #UI menu.c32
    UI vesamenu.c32
    MENU WIDTH 78
    MENU MARGIN 4
    MENU ROWS 5
    MENU VSHIFT 15
    MENU TIMEOUTROW 13
    MENU TABMSGROW 11
    MENU CMDLINEROW 11
    MENU HELPMSGROW 16
    MENU HELPMSGENDROW 29
    MENU RESOLUTION 640 480
    # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
    MENU TITLE Arch Linux
    MENU BACKGROUND splash.png
    MENU COLOR border 30;44 #40ffffff #a0000000 std
    MENU COLOR title 1;36;44 #9033ccff #a0000000 std
    MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
    MENU COLOR unsel 37;44 #50ffffff #a0000000 std
    MENU COLOR help 37;40 #c0ffffff #a0000000 std
    MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
    MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
    MENU COLOR msg07 37;40 #90ffffff #a0000000 std
    MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
    As you can see I am identical to you!
    Running hwinfo --framebuffer give's me the following output:
    02: None 00.0: 11001 VESA Framebuffer
    [Created at bios.459]
    Unique ID: rdCR.ku_DuSHewh1
    Hardware Class: framebuffer
    Model: "Intel(R)Sandybridge Mobile Graphics Controller"
    Vendor: "Intel Corporation"
    Device: "Intel(R)Sandybridge Mobile Graphics Controller"
    SubVendor: "Intel(R)Sandybridge Mobile Graphics Chipset Accelerated VGA BIOS"
    SubDevice:
    Revision: "Hardware Version 0.0"
    Memory Size: 63 MB + 960 kB
    Memory Range: 0xe0000000-0xe3feffff (rw)
    Mode 0x0305: 1024x768 (+1024), 8 bits
    Mode 0x0317: 1024x768 (+2048), 16 bits
    Mode 0x0318: 1024x768 (+4096), 24 bits
    Mode 0x0312: 640x480 (+2560), 24 bits
    Mode 0x0314: 800x600 (+1600), 16 bits
    Mode 0x0315: 800x600 (+3200), 24 bits
    Mode 0x0301: 640x480 (+640), 8 bits
    Mode 0x0303: 800x600 (+832), 8 bits
    Mode 0x0311: 640x480 (+1280), 16 bits
    Config Status: cfg=new, avail=yes, need=no, active=unknown
    So I can't see why it is not working!!
    I have read on the Arch Wiki and in several other places that for the menu to load the image needs to be the correct size.  I have used the image from the Arch Live cd git repo which is 640x480 but no matter what I try the menu "fills" my screen.
    Any advice gratefully received.
    Thanks

  • How do I use my index spry menu bar on my other pages?

    I'm trying to use the same bar for all of my pages as on the index page, but not all of the information transfers, just some of it.  The font and placement, for instance, are different when I try to copy and paste all of the code.  However, if I try to start fresh with a new menu bar, it assumes the coloring, and some of the sizing, of my index page bar.
    Hopefully the attached files will be enough.  My website (obviously a work in progress) is www.uniquehomedesigns.net.
    Thanks!

    Take this
    <div id="banner">
        <ul id="UHD_menu" class="MenuBarHorizontal">
          <li><a href="specialty_painting.html">Specialty Painting</a>      </li>
          <li><a href="repairs&amp;maintenance.html">Repairs &amp; Maintenance</a></li>
          <li><a href="underconstruction.html">Home Makeovers</a></li>
          <li><a href="home_staging.html">Home Staging</a></li>
          <li><a href="underconstruction.html">Contact Information</a></li>
        </ul>
      </div>
    And cut it from your code.  Then open a new document, delete ALL code from it, pastee the above into this new fileand call it menu.inc.php.
    Then
    In place of where you removed the code, put this
    <?php include('menu.inc.php');?>
    And you now have an include file that can be put into any new page.  If you change this file, it will be changed on all pages that have it.
    DO NOT put the js or the css in the new file, leave it where it is.  You will have to include these files in any new pages, but you should look into using a template for that.
    Gary

  • PHP include in DW CS3

    If I put a tag like this <?php include ('menu.php'); ?>
    in my file, I can only preview it after putting the file on a
    server. How can I preview it in my local computer without uploading
    the files to a server?
    Thanks

    The use of virtual or a root reference in the include
    function forces Apache
    to look at its root folder for the files. It will not find
    them there, and
    therefore the include will fail. The only way to make this
    work would be to
    set up virtual hosts, in which case the root of the site is
    always the
    virtual root you have specified in the httpd.conf file.
    Your use of the $_SERVER['DOCUMENT_ROOT'] autoglobal will
    work on the
    server, but not within DW (I think).
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "polar_bare" <[email protected]> wrote in
    message
    news:glskk4$dnu$[email protected]..
    >I did change the include to: <?php
    virtual('/includes/header.inc.php'); ?>
    > from: iv id="header">
    > <?php include
    ($_SERVER['DOCUMENT_ROOT']."/includes/header.inc.php");
    > ?>
    > and it did display in DW, UNTIL... I save the file.
    >
    > I think it is how my web host is set up. When I changed
    the include
    > to:<?php
    > virtual('/includes/header.inc.php'); ?> and uploaded
    the page, I get an
    > error:
    > Fatal error: Call to undefined function virtual() in
    > /home2/user/public_html/indextest.php on line 35.
    >
    > I searched this forum on how to set the base url for
    includes in php and
    > came
    > up with the method: ?php include
    > ($_SERVER['DOCUMENT_ROOT']."/includes/header.inc.php");
    ?> which works,
    > but
    > design view does not show it. No Big Deal.
    >
    >
    http://www.jhcarpenter.com
    >
    >
    >

  • Local Web Sharing php issue

    I am running OS 10.6 on a macbook pro. I host copies of my websites for testing on the laptop, using php5.3.8
    Darwin Kernel Version 10.8.0:
    My web host runs FreeBSD 6.4 and php 5.3.6
    I am having an issue with extra space rendering in pages on the testing server.
    Below is a screen shot of a php-generated menu. On the left is the internet version, and on the right is the version as it is rendered on my local machine.
    Note the unsightly extra space.
    When I look at the source code in BBedit, it shows an odd character at the start of each iteration of the menu. The first three lines are hard-coded, and do not have the character. The subsequent list items are generated by a foreach statement in php, and display the odd character. (BBedit doesn't know what it is: it's not a break or a whitespace character.) Oddly, these characters are not created by a foreach statement within the loop that generates submenus.
    Any ideas? I had this issue once before, but it went away. I've just upgraded the php installation on the laptop.

    very carefully
    you jsut open it in a text editor like TextMate, BBEdit, vi, pico, emacs, etc.. and edit away. Where the file live depends on how you installed php. Its generally in <pre>[path to php]/lib<pre>
    if you used one of the entropy binaries that would be:
    <pre>/usr/local/php/lib/php.ini</pre>
    or
    <pre>/usr/local/php5/lib/php.ini</pre>
    if you used another package check its documentation. If you compiled from source yourself you should know d**n well where you put it

  • Weird PHP issue with Server 4.0.3

    Yosemite 10.10.2
    OS X Server 4.0.3
    default PHP installation 5.5.14
    Ok, so I successfully added a couple of Virtual Host websites, strictly using the OS X Server.app, and I can browse on my local network using the private url I gave them.
    The problem is, on one of my websites, the PHP that renders the menu isn't working properly. I'm not smart enough to understand exactly why or what's going wrong. It does this whether I host the files in the standard document root, or my own virtual host folder.
    Here's how it looks when hosted by OS X Server's Apache (i.e. - wrong)
    And for comparison, here's how it looks using MAMP (i.e. - perfect)
    The index.php of the site is literally just this and nothing more…
    <?php
         include('head.html');
    ?>
    <?php
         include('logo.html');
    ?>
    <?php
         include('menu.html');
    ?>
    <?php
         include('showreel/showreel.html');
    ?>
    The PHP error appears to be happening in the menu.html portion, in particular the array section. I've copied it here for you to see http://pastebin.com/fpAi2YjF
    I have a info.php file that confirms php is on, and the checkbox 'Enable PHP Web Applications' is checked in Server.app.
    Now, I now I could use MAMP, but I'd rather not. I just want a simple, clean OS X solution. I've paid for Server.app and I want to use it. I'm only hosting these sites for dev purposes on my local network. Also I have no use for MySQL, etc. MAMP is overkill for my needs.
    Any idea what I did wrong? Or what I need to change? I'm thinking maybe apple's version of PHP may have slightly different settings.

    Mark,
    Using the following code I got a properly formatted bullet list - as you would expect as I do not have the css.
    <?php
      ini_set('display_errors', '1');
      $current_url = $_SERVER['REQUEST_URI'];
    ?>
    <?php
    $menu_items = array(
            "Showreel" => "/",
            "Motion" => "/motion/index.php",
            "Animation" => "/animation/index.php",
            "Interface" => "/interface/index.php",
            "Live Action" => "/live_action/index.php",
            "Info" => "/info/index.php",
    ?>
    <div class="main_menu_container">
            <ul id="main_menu">
            <?php
        foreach ($menu_items as $title => $url)
            if($current_url==$url)
            ?>              
                            <li class='active'><?php echo $title; ?></a></li>
                            <?php
                        else  
                            ?>
                            <li><a href="<?=$url?>"><?php echo $title; ?></a></li>
                            <?php
            ?>
            </ul>
    </div>

  • ZEN TOUCH 20GB - Stuck in Recovery Mode, during Firmware upgrade. HEL

    Ooooh dear.
    Me and my Zen Touch are completely stuck. Decided to upgrade the Zen's Software and Firmware and am now in deep trouble. Here are the steps I took.
    First I sensibly backed up the 2000 songs on the player to my computer. Then I updated the MediaSource software and restarted the computer. Then I decided to go for the big change and downloaded the new PlayForSure firmware installation and that's where the problem starts - It never completed the installation, which I had to manually stop. I knew as part of puting this new Firmware onto the player, the Zen would be wiped clean, which it has. However, I now cannot get it out of recovery mode and it will not respond to attempts to download the new (or any) Firmware onto it.
    What I now get is:
    -Plug the Zen in, the computer recognises that there is plug and play equipment attached and makes the appropriate noise.
    -The Zen will switch itself on as a response (or I can do it manually), with a normal-looking startup. It then briefly flashes a screen saying "Firmware Problem" before going into recovery mode.
    -If I choose Clean Up, it takes a few seconds to clean the now empty disk, and returns to the recovery menu
    -If I choose Format All, pretty much the same as Clean Up
    -If I choose Reload Firmware, it warns me that the firmware will be erased. And asks if it should reload it via USB. You say 'yes' and it briefly flashes up "Start firmware update now" before returning to the recovery mode menu.
    And finally, if I select Reboot, that's exactly what it does; the computer recognises that it's turned off, makes the noise, and recognises when it's turned on again.
    Trying to download the Firmware from the computer, however, has turned into a nightmare. I've tried downloading the PlayForSure firmware and old Firmware from the files on my computer (running XP, by the way). And I've also tried prompting the Zen starting up the Media Source software, BUT they all claim that the player is NOT connected! Even though it is! The Zen switches on and Windows makes a sound every time I connect or disconnect it!
    So what to do? I'm stuck in this vicious circle and no matter what random tricks I try, I can't get out. The player needs Firmware, but the software on the computer claims the player's not connected.
    The player is now more than a year old, so I can't return it, and Creative's less-than-generous telephone support is not an option, so I'm left to any imaginati've and kind-hearted subscribers to this list to offer suggestions.
    HELP!
    Mark in the UK

    My son?s Zen simply turned on one morning and refused to do anything except enter recovery mode, giving a firmware problem error and Creative Zen v0.0.58After an hours research I solved the problemI hope this helps someone out, but remember anything you do is your responsibility not mine, continue at your own judgment
    Creative site SingaporeDownload driver and firmwarehttp://sg.creative.com/support/downl...ype=0&x=30&y=6
    download driverCreative Zen and Jukebox Driver Upgrade version .30.03
    firmwareCreative Zen Firmware .00.02
    Install driver, connect Zen, should show up in my computerAnd yes, when you open the Zen from there it WILL say not correctly connectedBecause the firmware is corrupted! But it is connected Go to the firmware file and double click, the firmware software will connect to the ZenAnd overwrite the firmware. Follow the on screen instructionsYou may get a warning that the firmware is the same version etc. just do it, as at the moment the Zen is useless. Good luck and if it works repay me by helping someone

Maybe you are looking for

  • Active Directory : Replication Issue - "Disconnected" sub-domain from the Forest

    Hello everyone, I'm managing a multi-domain forest (with 7 sub-domain).  All are working fine except for one.  Throught repadmin (Repadmin /replsum /bysrc /bydest /sort:delta), I noticed I got both domain controllers of a subdomain (there are only 2

  • File Upload and Download with XSQL Utility

    Dear all, I'm working on a Web-based application to communicate with users. This application is based on the XSQL-Utility (XSU). Currently I cannot find any possibility to pass an arbitrary binary file from the client side to store it in a LOB column

  • Email notify, can it be recurring?

    ok, just had an issue where we had a 2hour outage due to notification on email. Since my migration from the BB Curve, the only problem / issue I am having is mail. I miss an email, I could get a re-notify tone as well as the blinking LED a different

  • Will not load alot of websites, followed all suggestions here with no help

    Completed all on line troubleshooting suggestions but mozilla refuses to load alot of sites. They come up in other browsers with no problem.

  • Printing existing PDF-File via SAP-Spool

    Hi to all, I'm looking for a solution to print existing PDF-Files (external Directory) via SAP-Spool, in order to create a set of documents in correct succession, where some of them are created within SAP and others beeing created externally (PDF-Fil