Cannot Modify Navigation Button Text

Is it possible to change the font, color, size, etc. for the navigation text buttons in iweb? I've tried everything (or maybe not everything!) and can't figure it out. I know how to modify text for everything else on the page. Thank you in advance!

there certainly is a way
in your inspector panel there is an option to not include navigation bar
since you already know how to create text, etc
you can create your own and then just hyperlink them to the designated page
good luck

Similar Messages

  • Firefox doesn't display Amazon.ca website properly. Text is missing and some navigation button texts are screwy. Older version of FF worked well but each time I upgrade the same thing happens. Help!

    With each new version of Firefox, I run into the same issue with Amazon.ca (amazon.com works fine). For instance, on Amazon.COM the links for my account and help are stated as "Your Account | Help". On amazon.CA the links for my account and help are stated as "your-account_279 | topnav-help_1057".
    When I log into my account on Amazon.COM I have a web page with text and buttons and links. all functioning. When I log into my account on Amazon.CA I get nothing except two orange buttons - "Your Orders" and "sell my stuff". everything else is blank.
    This has happened with each upgrade of Firefox. It seems that Amazon.CA finally gets their coding right and FF comes out with a new version which then screws the website up. are you making your upgrades available to Amazon.CA?
    And just so you know, The same thing happens on IE and Chrome.

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    See also [[Websites look wrong]]

  • Cannot replace navigation button???

    Hi,
    I'm trying to replace the button in an iDVD project but when I do, it just disappears.
    It is meant to allow me to move back to the main menu from the scene selection menu.
    I've changed this button on previous projects, even allowed to change the direction it is pointing, but I can't figure out what is wrong now.
    Any ideas?
    While I'm asking, is it possible to replace this button with text?
    Cheers.

    Hi NeddySeagoon
    Welcome to apple discussions. Apple's Pro apps, as in FCS /DVDSP has much better control over button creation and establishing links to said button/s than iDvd currently has (as you have discovered on your own).
    But there are 3rd party software products that may help here if all prior attempts w/in iDvd have failed. However, I suggest reading the following link very carefully prior to actually using this software to make any necessary adjustments. Good luck.
    http://www.mydvdedit.com/
    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software / products that may be mentioned in this topic. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information above at your own discretion.

  • Cannot view HTML navigation buttons

    On my computer, Firefox (5.0) does not show the forward and back navigation buttons on one particular website. But on another computer with Firefox 5.0 the navigation buttons are visible and functional. I checked the "Websites look wrong" suggestions, but it isn't page styles, zoom level, font size, or script.
    The navigation links appear to be in a table. I see the other cells, but not the forward and back links. Here is an example:
    <title>Diario de Yucat&aacute;n - Ciudadanos rechazan la violencia</title>
    <div id="paging" align="center">
    <div id="notatitu">Ciudadanos rechazan la violencia</div>
    <table height="25" border="0" cellpadding="0" cellspacing="0" style="position:relative; margin-top:10px;">
    <tr>
    <td width="111" align="right" valign="top">
    <a href="funcion_subportada.php?galeria_slide=20110408&seccion=146460&id=90043&pag_=1"><img border="0" title="Foto anterior" alt="Foto anterior" src="http://www.yucatan.com.mx/images/bantenota.gif" style="padding-bottom:4px" /></a></td>
    <td valign="top"><div style=" color:#333; ">&nbsp;&nbsp;<strong>2 </strong> de <strong>22</strong>&nbsp;&nbsp;</div>
    </td>
    <td width="111" align="left" valign="top"> <a href="funcion_subportada.php?galeria_slide=20110408&seccion=146460&id=90043&pag_=3"><img title="Foto siguiente" alt="Foto siguiente" border="0" src="http://www.yucatan.com.mx/images/bsignota.gif" /></a>
    </td>
    </tr>
    </table>
    </div>
    <style>
    .principal{clear: both; display: block; height: 0;overflow: hidden;visibility: hidden;width: 0;}</style>

    Thanks so much for taking the time to address my question. Although your suggestion wasn't the fix, it led me to the solution. I had gotten a little carried away with AdBlock Plus. (Mexican websites can be extremely trashy with flashing graphics and ads.) In return for unubstructed reading, I had lost ability to see the navigation arrows, which are also .gif graphics! Thank you again!

  • Error says: Warning: Cannot modify header information

    I keep receiving an error message after my form is sent (the form still send the information I need just wont re-direct to the next page)
    It redirects to a page that says:
    Warning: Cannot modify header information - headers already sent by (output started at /home/tommyle/public_html/newp.php:10) in /home/tommyle/public_html/newp.php on line 41
    my php code looks like this:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Tommy Lemonade Beta</title>
    <link href="style1.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <?php
    /* Set e-mail recipient */
    $myemail = "profiles@tommylemonade";
    /* Check all form inputs using check_input function */
    $name = check_input($_POST['name'], "Enter your name");
    $subject = check_input($_POST['subject'], "Enter a subject");
    $email = check_input($_POST['email']);
    $message = check_input($_POST['message'], "Write your message");
    /* If e-mail is not valid show error message */
    if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
    show_error("E-mail address not valid");
    /* Let's prepare the message for the e-mail */
    $message = "
    Name: $name
    E-mail: $email
    Subject: $subject
    Message:
    $message
    /* Send the message using mail() function */
    mail($myemail, $subject, $message);
    /* Redirect visitor to the thank you page */
    header('Location: thanks.html');
    exit();
    /* Functions we used */
    function check_input($data, $problem='')
    $data = trim($data);
    $data = stripslashes($data);
    $data = htmlspecialchars($data);
    if ($problem && strlen($data) == 0)
    show_error($problem);
    return $data;
    function show_error($myError)
    ?>
    <html>
    <body>
    <p>Please correct the following error:</p>
    <strong><?php echo $myError; ?></strong>
    <p>Hit the back button and try again</p>
    </body>
    </html>
    <?php
    exit();
    ?>
    </body>
    </html>
    This is line 41:
    header('Location: thanks.html');
    Can anybody see what I'm missing?

    Yeah, rework the code so you don't get any output before the php code is executed (like below):
    <?php
    /* Set e-mail recipient */
    $myemail = "profiles@tommylemonade";
    /* Check all form inputs using check_input function */
    $name = check_input($_POST['name'], "Enter your name");
    $subject = check_input($_POST['subject'], "Enter a subject");
    $email = check_input($_POST['email']);
    $message = check_input($_POST['message'], "Write your message");
    /* If e-mail is not valid show error message */
    if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
    show_error("E-mail address not valid");
    /* Let's prepare the message for the e-mail */
    $message = "
    Name: $name
    E-mail: $email
    Subject: $subject
    Message: $message
    /* Send the message using mail() function */
    mail($myemail, $subject, $message);
    /* Redirect visitor to the thank you page */
    header('Location: thanks.html');
    exit();
    /* Functions we used */
    function check_input($data, $problem='')
    $data = trim($data);
    $data = stripslashes($data);
    $data = htmlspecialchars($data);
    if ($problem && strlen($data) == 0)
    show_error($problem);
    return $data;
    function show_error($myError)
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Tommy Lemonade Beta</title>
    <link href="style1.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <p>Please correct the following error:</p>
    <strong><?php echo $myError; ?></strong>
    <p>Hit the back button and try again</p>
    </body>
    </html>
    <?php
    exit();
    ?>

  • How do I create more than one navigation button in Adobe Fireworks CS6?

    Hi guys, 
    Apologies if this comes across as very stupid question. I am a complete beginner with Adobe Fireworks and I'm in the process of creating my first website and I have got to the stage where I want to create navigation buttons and the book I have recommends using Adobe Fireworks so I have downloaded. My problem I have encountered is after I have created my first two state button what is the next step to create another two state button which has the identical size and colour of the previous two state button?
    Here is a brief rundown of the steps I have done to do the first two state button:
    1) Edit-Insert-New Button
    2) Chose the rectangle and then specified the width and height of the button and chose my stroke and fill colour
    3) Centred the button and used the text tool to put the button as a 'Home' button for my website. I then went on Window and Align in order to centre the text on the button
    4) I went on Select-Select All and then went on Windows-States to open the states panel. I right clicked on state 1 which is Up and clicked on copy to states. I then selected the next state radio button and clicked OK.
    5) I selected State 2 and slightly modified it by changing the colour of the text.
    6) I then clicked the back button to return to the main window.
    After this what step should I take to create my another button which has the same size, colour and text style as I have created for the first button? I tried just repeating these steps again but when I do step 1 it creates a new fireworks document which means I have to create the buttons size, colour, text style from scratch.
    Your help would be greatly appreciated guys and once again I do apologise if this comes across as a silly question.
    PS Please could you let me know if the steps I have taken to create the 1st two state button are correct

    Initially you need to configure via the provider's own web based control panel multiple e-mail accounts. If they don't have one, work it out with their customer support to have three distinct mail accounts. Then you can setup multiple logins by adding new accounts to mail. Since mail checks all accounts per Mac OS X user account simultaneously, it probably is best to use different usernames on the same internet provider. If you don't want mail to show all the information from all three mail accounts simultaneously, configure Apple menu -> System Preferences -> Accounts to have multiple users on your computer, and configure each of the internet service provider accounts for each separaet user on Mac OS X.
    Message was edited by: a brody

  • Trouble with Lumia 900 navigation button not worki...

    Hei guys,
    This afternoon, all of a sudden, without nothing happened, my 3 navigation buttons (back, start and search) on my nokia lumia 900 stopped working. I really can't understand what happened since 2 minutes before the buttons were working perfectly and then the sensibility of the button is completely zero.
    Tried to turn off the phone several times, but it didn't worked at all. Searched around the web but noone seems having the same problem. I found only one guy that posted a similar problem like mine but recieved only an answer that didn't look really helpful (turn off the phone for 3 days and see later).
    All the rest of the touch screen still works perfectly,  it's just the three navigation button that don't work, even tapping all the time. there's no sign of response from the phone.
    I really have no idea what's happened. Did someone had a similar, if not the same problem? any suggestion how to fix it?
    please help guys
    Thanks.

    I know this is a month old but all of  a sudden this morning I begane having the exact same problem.  
    My troubleshooting tasks so far have been to reboot the phone about 3 times.  
    I have hard reset my phone with just holding the power button down (not sliding the screen when asked to). Connected it to my computer to make sure it was updated.
    Deleted all new text messages (there was a bug a while back that can cause Windows 7 to lock up on certain formatted text messages. Then rebooted the phone again
    Deleted all new email messages from my google account on the phone. Rebooted the phone.
    And still I do not have any of my bottom buttons usable.  Has anyone figurec this out yet?  Every time I do something I have reboot the phone since I cannot back up or get to the home screen.

  • Modify the Buttons of a TitleBar of a windowedApplication

    Hi all,
    I'd like to modify the button of my title bar of my windowed
    application (it's an AIR application).
    At first, I wanted to change the title rendrer so I modify my
    application-app.xml and add the following lign :
    [code]<systemChrome>none</systemChrome>[/code] (au lieu
    de standard)
    So my title is well displayed thanks those ligns in my css
    file :
    [code]WindowedApplication {
    color: #000000;
    backgroundAlpha: 1;
    title-text-style-name : "titleTextStyle";
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    background-image : "styles/OldSchool/bg.gif";
    backgroundColor: #EEEEEE;
    .titleTextStyle {
    font-family : luna;
    font-size : 30;
    }[/code]
    By I don't manage to customize my buttons that are grey and
    small (not handsome) instead of the fancy colors as usual (red,
    yellow, green). I saw in debug that the application had a TitleBar
    with a closeButton, a minimize and a maximize, but the following
    ligns don't change anything..
    [code]TitleBar
    closeButtonDisabledSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonDisabledSkin");
    closeButtonDownSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonDownSkin");
    closeButtonOverSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonOverSkin");
    closeButtonUpSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonUpSkin");
    }[/code]
    ou
    [code]TitleBar {
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    }[/code]
    or :
    [code].wideCloseButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    downSkin: Embed(source="wmp11.swf", symbol="wideCloseBttn");
    overSkin: Embed(source="wmp11.swf", symbol="wideCloseBttn");
    upSkin: Embed(source="wmp11.swf", symbol="wideCloseBttn");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    color: #ffffff;
    textRollOverColor: #ffffff;
    textSelectedColor:#ffffff;
    // ButtonBars
    ButtonBar
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    ToggleButtonBar
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    .roundedButtonBar
    buttonStyleName: "roundedButtonBarButton";
    firstButtonStyleName: "roundedFirstButtonBarButton";
    lastButtonStyleName: "roundedLastButtonBarButton";
    // ButtonBarButtons
    .firstButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstDisabledSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstDownSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstOverSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .buttonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonDisabledSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonDownSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonOverSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .lastButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastDisabledSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastDownSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastOverSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .roundedFirstButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstUpSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .roundedButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_buttonUpSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_buttonUpSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_buttonUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .roundedLastButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastUpSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastUpSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    }[/code]
    with the wmp11.swf contained in the same folder as my css
    file but nothing happens !
    Does anybody knows how to resolve it ?
    Thanks !

    Hello Casperloo, 
    Your last statement makes me a liitle suspicious of what's going. So you cannot create a property node such as the ones below. 
    What about manually left clicking one of the properties and changing it like in the image below?
    Also is this only occurring with the specific property you are trying to utilize or all Daqmx Timing properties?
    Best Regards,
    Izzy O.
    Applications Engineer
    National Instruments
    www.ni.com/support

  • Can't Modify Navigation Bar!

    Okay, I've played with this for long enough...now I'm
    desperate!
    I have a template, which is based on another template, and I
    have inserted a Navigation Bar. Works fine. BUT, when I try to add
    more elements to the Navigation Bar, I get an error message:
    "Making this change would requirechanging code that is locked by a
    Template or a translator. The change will be discarded." and, as
    promised, it promptly disregards all the work I just did. Does
    anyone have any ideas? I'd really appreciate it.

    Your method seems like it's the wrong approach.
    It's easy to do with CSS or with javascript.
    With CSS you would have a little stylesheet embedded in the
    head of each
    page that allows you to set the down state for any given
    button (each button
    would have a unique id - for example -
    <a href="foo.html" id="button1">...<a
    href="bar.html" id="button2">
    and then your stylesheet would have this -
    a#button1 {{ styles }
    on one page, and on another this -
    a#button2 {{ styles }
    See how that works?
    With javascript, put this in script tags in the head of the
    document -
    function P7_downImage() {{
    var g7="<imagename>"
    var g7url="<pathname>"
    if ((g7=MM_findObj(g7))!=null) {{g7.src=g7url;}
    and this on the <body> tag
    onload="P7_downImage()"
    Then on each page you would need to make two edits:
    Set g7 to the *name* of the button (not the file name but the
    HTML name -
    e.g., "productsbutt"), and g7url to the pathname to the
    button (e.g.,
    "images/nav/button3.gif"), and bada bing, bada boom!
    There is an excellent tutorial here -
    http://www.projectseven.com/support/answers.asp?id=126
    This will allow you to keep the navigation in non-editable
    regions of the
    template page....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "pflew" <[email protected]> wrote in message
    news:elfp32$n1d$[email protected]..
    >I finally solved my problem, which was I wanted to change
    the down image
    >for
    > each of the buttons on the navigation bar when the page
    associated with
    > the tab
    > was loaded. You cannot do this in a template via modify
    / navigation bar.
    > You
    > can do it using the tag inspector / behavours.
    >
    > Hope this helps
    >

  • Menu navigation buttons do not appear when viewing page on iPhone

    My webpage shows the menu navigation buttons on all browsers and platforms but when viewing on an iPhone they are not there. Hence you cannot view other pages. Is this a restriction of pages created in iWeb or am I doing something wrong?
    I have trawled through the discussion forum and tried tips such as the height of the menu bar from the top on the page, pixel width and making sure the menu box is at the front or brought forward.
    my website is www.sussexgolfcaptains.org

    This may or may not be of interest, but some site builders (such as weebly.com) are mobile friendly — click here:
    http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html   http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html
    Also, unlike sites made with iWeb, Weebly sites respond to desktop Safari's +View > Zoom In+ command — this is helpful for many who don't have perfect eyesight for reading small text. (iWeb's default font sizes are relatively small.)

  • Warning: Cannot modify header information..../includes/common/KT_functions.inc.php on line 465

    Hi,
    I've moved a website from a server to another, and have got this little issue,
    I've a form witch gets submit and the user redirects to a "thank you" page, on the submittion I've added mail send so I get an email when the form is submitted, the mail part works fine, I get the emails. but after clicking the submit button this error comes up instead of redirecting to the thank you page.
    Warning:  Cannot modify header information - headers already sent by (output started at ..../index.php:79) in /...../includes/common/KT_functions.inc.php on line 465
    This is the KT_functions.inc.php part,
    function KT_redir($url) {
        $protocol = "http://";
        $server_name = $_SERVER["HTTP_HOST"];
        if ($server_name != '') {
            $protocol = "http://";
            if (isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == "on")) {
                $protocol = "https://";
            if (preg_match("#^/#", $url)) {
                $url = $protocol.$server_name.$url;
            } else if (!preg_match("#^[a-z]+://#", $url)) {
                $script = KT_getPHP_SELF();
                if (isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] != '' && $_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) {
                    $script = substr($script, 0, strlen($script) - strlen($_SERVER['PATH_INFO']));
                $url = $protocol.$server_name.(preg_replace("#/[^/]*$#", "/", $script)).$url;
                    session_write_close();
            $url = str_replace(" ","%20",$url);
            if (KT_is_ajax_request()) {
                header("Kt_location: ".$url);
                echo "Redirecting to: " . $url;
            else {
                header("Location: ".$url);
        exit;
    I'm not a coder and appreciate any help.
    Thanks in advance.

    addField("fornamn", true, "text", "", "", "", "Vänligen skriv ditt namn"); $formValidation->addField("efternamn", true, "text", "", "", "", "Vänligen skriv efternamn"); $formValidation->addField("gatu", true, "text", "", "", "", "Vänligen skriv gatuadress"); $formValidation->addField("postnummer", true, "text", "", "", "", "Vänligen ange postnummer"); $formValidation->addField("ort", true, "text", "", "", "", "Vänligen skriv ort"); $formValidation->addField("telefon", true, "numeric", "int", "5", "", "Vänligen skriv ett giltilgt telefon nummer"); $formValidation->addField("epost", true, "text", "email", "", "", "Vänligen skriv en e-post adress. dit skickar vi status på din service"); $tNGs->prepareValidation($formValidation); // End trigger //start Trigger_SendEmail trigger //remove this line if you want to edit the code by hand function Trigger_SendEmail(&$tNG) {   $emailObj = new tNG_Email($tNG);   $emailObj->setFrom("[email protected]");   $emailObj->setTo("{epost}");   $emailObj->setCC("");   $emailObj->setBCC("[email protected]");   $emailObj->setSubject("Upplåsning: {modell} Nr: {id}");   //WriteContent method   $emailObj->setContent("Hej {fornamn},
    \n");   $emailObj->setEncoding("UTF-8");   $emailObj->setFormat("HTML/Text");   $emailObj->setImportance("Normal");   return $emailObj->Execute(); } //end Trigger_SendEmail trigger 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; } } $colname_phone = "-1"; if (isset($_GET['mobil_id'])) {   $colname_phone = $_GET['mobil_id']; } mysql_select_db($database_wd, $wd); $query_phone = sprintf("SELECT * FROM mobiler WHERE id = %s", GetSQLValueString($colname_phone, "int")); $phone = mysql_query($query_phone, $wd) or die(mysql_error()); $row_phone = mysql_fetch_assoc($phone); $totalRows_phone = mysql_num_rows($phone); // Make an insert transaction instance $ins_bestall = new tNG_insert($conn_wd); $tNGs->addTransaction($ins_bestall); // Register triggers $ins_bestall->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1"); $ins_bestall->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation); $ins_bestall->registerTrigger("END", "Trigger_Default_Redirect", 99, "http://domain.com/---------.html"); $ins_bestall->registerTrigger("AFTER", "Trigger_SendEmail", 98); // Add columns $ins_bestall->setTable("bestall"); $ins_bestall->addColumn("fornamn", "STRING_TYPE", "POST", "fornamn"); $ins_bestall->addColumn("deb", "STRING_TYPE", "POST", "deb", "{phone.deb}"); $ins_bestall->addColumn("efternamn", "STRING_TYPE", "POST", "efternamn"); $ins_bestall->addColumn("gatu", "STRING_TYPE", "POST", "gatu"); $ins_bestall->addColumn("postnummer", "STRING_TYPE", "POST", "postnummer"); $ins_bestall->addColumn("ort", "STRING_TYPE", "POST", "ort"); $ins_bestall->addColumn("telefon", "NUMERIC_TYPE", "POST", "telefon"); $ins_bestall->addColumn("epost", "STRING_TYPE", "POST", "epost"); $ins_bestall->addColumn("modell", "STRING_TYPE", "POST", "modell"); $ins_bestall->addColumn("imei", "STRING_TYPE", "POST", "imei"); $ins_bestall->setPrimaryKey("id", "NUMERIC_TYPE"); // Execute all the registered transactions $tNGs->executeTransactions(); // Get the transaction recordset $rsbestall = $tNGs->getRecordset("bestall"); $row_rsbestall = mysql_fetch_assoc($rsbestall); $totalRows_rsbestall = mysql_num_rows($rsbestall); ?>  displayValidationRules();?> getErrorMsg(); ?>
    Modell:
    Pris:
    ------: Kr      -----      ----- ----
    Postförskott (Vi bjuder på postförskotts avgiften)       
    Förnamn:
              displayFieldHint("fornamn");?> displayFieldError("bestall", "fornamn"); ?>
    Efternamn:
              displayFieldHint("efternamn");?> displayFieldError("bestall", "efternamn"); ?>
    Gatuadress:
              displayFieldHint("gatu");?> displayFieldError("bestall", "gatu"); ?>
    Postnummer:
              displayFieldHint("postnummer");?> displayFieldError("bestall", "postnummer"); ?>
    Ort:
              displayFieldHint("ort");?> displayFieldError("bestall", "ort"); ?>
    Telefon:
              displayFieldError("bestall", "telefon"); ?>
    E-Post:
               displayFieldError("bestall", "epost"); ?>
              displayFieldHint("modell");?> displayFieldError("bestall", "modell"); ?>
    IMEI:
                    displayFieldHint("imei");?> displayFieldError("bestall", "imei"); ?>         -----.
    Debranding:
                Ja                        Nej
              ------           ";         }        else{           echo "Denna telefon kan ej debrandas!    Nej";         }?>         
    Here is the complete code for the form page, I've replaced some textes with "-------------"

  • Cannot Modify Header Information Errors

    Hello all,
    I am working on building an members only area to my website, and have used the "turorial" provided in dreamweaver help.  After creating the pages though I am encountering erros which I believe have to do with the redirecting.
    On my registration page (www.hondovfd.org/newsite/register.php) I am getting the error:
    Warning:  Cannot modify header information - headers already sent in /var/home/hondovfd/hondovfd.org/www/newsite/register.php on line 50
    The registration goes through, as I can see it in my database, but the error prevents anything further.
    On my login page (www.hondovfd.org/newsite/login.php) I immediatly get these two errors when loading the page:
    Warning:  session_start() [function.session-start]: Cannot send session cookie - headers already sent in /var/home/hondovfd/hondovfd.org/www/newsite/login.php on line 1074249146
    Warning:  session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/home/hondovfd/hondovfd.org/www/newsite/login.php:1074249146) in /var/home/hondovfd/hondovfd.org/www/newsite/login.php on line 1074249146
    And once I enter a valid username/password this error is also added:
    Warning: Cannot modify header information - headers already sent by (output started at /var/home/hondovfd/hondovfd.org/www/newsite/login.php:1074249146) in /var/home/hondovfd/hondovfd.org/www/newsite/login.php on line 68
    If you would like to try and diagnose the username/password I have been using is"test" for both fields.
    Anyone have any ideas why this is occuring?
    Thanks,
    David

    Here is the code from my login page:
    <?php virtual('/newsite/Connections/hondovfd.php');?>
    <?php if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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;
    ?>
    <?php
    // *** Validate request to login to this site.
    if (!isset($_SESSION)) {
      session_start();
    $loginFormAction = $_SERVER['PHP_SELF'];
    if (isset($_GET['accesscheck'])) {
      $_SESSION['PrevUrl'] = $_GET['accesscheck'];
    if (isset($_POST['username'])) {
      $loginUsername=$_POST['username'];
      $password=$_POST['password'];
      $MM_fldUserAuthorization = "";
      $MM_redirectLoginSuccess = "/newsite/membersonly.php";
      $MM_redirectLoginFailed = "/newsite/loginfailed.html";
      $MM_redirecttoReferrer = true;
      mysql_select_db($database_hondovfd, $hondovfd);
      $LoginRS__query=sprintf("SELECT username, password FROM login WHERE username=%s AND password=%s",
        GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
      $LoginRS = mysql_query($LoginRS__query, $hondovfd) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      if ($loginFoundUser) {
         $loginStrGroup = "";
        //declare two session variables and assign them
        $_SESSION['MM_Username'] = $loginUsername;
        $_SESSION['MM_UserGroup'] = $loginStrGroup;          
        if (isset($_SESSION['PrevUrl']) && true) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];     
        header("Location: " . $MM_redirectLoginSuccess );
      else {
        header("Location: ". $MM_redirectLoginFailed );
    ?>
    <!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"><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="Title" -->
    <title>Login</title>
    <!-- InstanceEndEditable -->
    <meta name="description" content="Hondo Fire and Rescue serves the Arroyo Hondo and Canada Village areas of Santa Fe County, NM." />
    <meta name="keywords" content="hondo, hondo fire, hondo vfd, hondo fire department, santa fe county fire department, santa fe county, volunteer fire department, hondo volunteer fire department" />
    <link href="/newsite/stylesheet.css" type="text/css" rel="stylesheet" />
    <!--[if IE]>
    <style type="text/css">
    #mainContent, #sidebar1 { zoom: 1;}
    </style>
    <![endif]-->
    <script src="/newsite/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="/newsite/SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="thrColLiqHdr">
    <div id="container">
    <div id="header"></div>
      <div id="sidebar1">
      <h3>Navigation : </h3>
      <ul id="MenuBar1" class="MenuBarVertical">
      <li><a href="/newsite/index.html">Home</a></li>
    <li><a href="/newsite/support.html">Support Hondo</a></li>
      <li><a class="MenuBarItemSubmenu" href="#">Information Menu</a>
        <ul>
          <li><a href="/newsite/people.html">Our People</a></li>
          <li><a href="http://www.google.com/maps/ms?ie=UTF8&hl=en&msa=0&msid=101620713606637979698.00045b6ead4ab4ea70b78&z=11" target="_blank">Response Area</a></li>
          <li><a href="/newsite/medical.html">Medical</a></li>
          <li><a href="/newsite/apparatus.html">Apparatus</a></li>
          <li><a href="/newsite/training.html">Training</a></li>
          <li><a href="/newsite/volunteer.html">Volunteer</a></li>
          <li><a href="/newsite/statistics.html">Statistics</a></li>
          <li><a href="/newsite/patchtrading.html">Patch Trading</a></li>
        </ul>
      </li>
      <li><a href="#">Photo Gallery</a></li>
      <li><a href="/newsite/calendar.html">Calendar</a></li>
      <li><a href="/newsite/news.html">Blog/News</a></li>
      <li><a href="/newsite/links.html">Links</a></li>
      <li><a href="/newsite/contact.html">Contact Us</a></li>
    </ul>
    <br />
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <span class="lefttext">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="8567201">
    <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" />
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </img></input></input>
      </span>
    </form>
    <span class="lefttext"><br />
    </span>
    <center>
      <span class="lefttext"><a href="http://www.facebook.com/pages/Santa-Fe-NM/Hondo-Volunteer-Fire-Department/74284233488" target="_blank" class="lefttext">Hondo VFD on Facebook</a></span>
    </center>
      <!-- end #sidebar1 --></div>
      <div id="sidebar2"> 
        <p>Call Statistics for November</p>
      <table width="90%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="60%">EMS Calls</td>
        <td width="40%">##</td>
      </tr>
      <tr>
        <td>Fire Calls</td>
        <td>##</td>
      </tr>
      <tr>
        <td>Other Calls</td>
        <td>##</td>
      </tr>
    </table>
      <hr />
        <div id="cse" style="width:100%;">Loading</div>
    <script src="http://www.google.com/jsapi" type="text/javascript"></script>
    <script type="text/javascript">
      google.load('search', '1');
      google.setOnLoadCallback(function(){
        new google.search.CustomSearchControl().draw('cse');
      }, true);
    </script>
         <!-- End Google Search Element -->
      </div>
      <!-- end #sidebar2 -->
      <div id="mainContent">
      <div class="top"></div><div class="wrap"><!-- InstanceBeginEditable name="Main Content" -->
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="47" class="h2">Members Only Login</td>
      </tr>
      <tr>
        <td><form id="login" name="login" method="POST" action="<?php echo $loginFormAction; ?>">
        <table width="40%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="31%">Username:</td>
        <td width="69%"><input name="username" type="text" /></td>
      </tr>
      <tr>
        <td>Password</td>
        <td><input name="password" type="password" /></td>
      </tr>
    </table>
    <input name="Submit" type="submit" />
        </form></td>
      </tr>
    </table>
      <!-- InstanceEndEditable -->
    </div>
    <div class="bottom"></div>
    </div>
         <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --> <br class="clearfloat" />
      <div id="footer">
        <p align="center">&copy; Copyright 2009 Hondo Volunteer Fire Department | <a href="mailto:[email protected]">Contact Us</a><a href="http://www.legalhelpers.com/chapter-13-bankruptcy/chapter13.html"></a><br />Hosting provided by <a href="http://studiox.com/" target="_blank">Studio X</a></p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>
    Here is the code from my registration page:
    <?php virtual('/newsite/Connections/hondovfd.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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;
    // *** Redirect if username exists
    $MM_flag="MM_insert";
    if (isset($_POST[$MM_flag])) {
      $MM_dupKeyRedirect="/newsite/registerinvalidusername.html";
      $loginUsername = $_POST['username'];
      $LoginRS__query = sprintf("SELECT username FROM login WHERE username=%s", GetSQLValueString($loginUsername, "text"));
      mysql_select_db($database_hondovfd, $hondovfd);
      $LoginRS=mysql_query($LoginRS__query, $hondovfd) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      //if there is a row in the database, the username was found - can not add the requested username
      if($loginFoundUser){
        $MM_qsChar = "?";
        //append the username to the redirect page
        if (substr_count($MM_dupKeyRedirect,"?") >=1) $MM_qsChar = "&";
        $MM_dupKeyRedirect = $MM_dupKeyRedirect . $MM_qsChar ."requsername=".$loginUsername;
        header ("Location: $MM_dupKeyRedirect");
        exit;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO login (username, password, email, name) VALUES (%s, %s, %s, %s)",
                           GetSQLValueString($_POST['username'], "text"),
                           GetSQLValueString($_POST['password'], "text"),
                           GetSQLValueString($_POST['email'], "text"),
                           GetSQLValueString($_POST['name'], "text"));
      mysql_select_db($database_hondovfd, $hondovfd);
      $Result1 = mysql_query($insertSQL, $hondovfd) or die(mysql_error());
      $insertGoTo = "/newsite/registersuccess.html";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO login (username, password, email, name) VALUES (%s, %s, %s, %s)",
                           GetSQLValueString($_POST['username'], "text"),
                           GetSQLValueString($_POST['password'], "text"),
                           GetSQLValueString($_POST['email'], "text"),
                           GetSQLValueString($_POST['name'], "text"));
      mysql_select_db($database_hondovfd, $hondovfd);
      $Result1 = mysql_query($insertSQL, $hondovfd) or die(mysql_error());
      $insertGoTo = "/newsite/registersuccess.html";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location:", $insertGoTo));
    ?>
    <!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"><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="Title" -->
    <title>Register</title>
    <!-- InstanceEndEditable -->
    <meta name="description" content="Hondo Fire and Rescue serves the Arroyo Hondo and Canada Village areas of Santa Fe County, NM." />
    <meta name="keywords" content="hondo, hondo fire, hondo vfd, hondo fire department, santa fe county fire department, santa fe county, volunteer fire department, hondo volunteer fire department" />
    <link href="stylesheet.css" type="text/css" rel="stylesheet" />
    <!--[if IE]>
    <style type="text/css">
    #mainContent, #sidebar1 { zoom: 1;}
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="thrColLiqHdr">
    <div id="container">
    <div id="header"></div>
      <div id="sidebar1">
      <h3>Navigation : </h3>
      <ul id="MenuBar1" class="MenuBarVertical">
      <li><a href="/newsite/index.html">Home</a></li>
    <li><a href="/newsite/support.html">Support Hondo</a></li>
      <li><a class="MenuBarItemSubmenu" href="#">Information Menu</a>
        <ul>
          <li><a href="/newsite/people.html">Our People</a></li>
          <li><a href="http://www.google.com/maps/ms?ie=UTF8&hl=en&msa=0&msid=101620713606637979698.00045b6ead4ab4ea70b78&z=11" target="_blank">Response Area</a></li>
          <li><a href="/newsite/medical.html">Medical</a></li>
          <li><a href="/newsite/apparatus.html">Apparatus</a></li>
          <li><a href="/newsite/training.html">Training</a></li>
          <li><a href="/newsite/volunteer.html">Volunteer</a></li>
          <li><a href="/newsite/statistics.html">Statistics</a></li>
          <li><a href="/newsite/patchtrading.html">Patch Trading</a></li>
        </ul>
      </li>
      <li><a href="#">Photo Gallery</a></li>
      <li><a href="/newsite/calendar.html">Calendar</a></li>
      <li><a href="/newsite/news.html">Blog/News</a></li>
      <li><a href="/newsite/links.html">Links</a></li>
      <li><a href="/newsite/contact.html">Contact Us</a></li>
    </ul>
    <br />
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <span class="lefttext">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="8567201">
    <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" />
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </img></input></input>
      </span>
    </form>
    <span class="lefttext"><br />
    </span>
    <center>
      <span class="lefttext"><a href="http://www.facebook.com/pages/Santa-Fe-NM/Hondo-Volunteer-Fire-Department/74284233488" target="_blank" class="lefttext">Hondo VFD on Facebook</a></span>
    </center>
      <!-- end #sidebar1 --></div>
      <div id="sidebar2"> 
        <p>Call Statistics for November</p>
      <table width="90%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="60%">EMS Calls</td>
        <td width="40%">##</td>
      </tr>
      <tr>
        <td>Fire Calls</td>
        <td>##</td>
      </tr>
      <tr>
        <td>Other Calls</td>
        <td>##</td>
      </tr>
    </table>
      <hr />
        <div id="cse" style="width:100%;">Loading</div>
    <script src="http://www.google.com/jsapi" type="text/javascript"></script>
    <script type="text/javascript">
      google.load('search', '1');
      google.setOnLoadCallback(function(){
        new google.search.CustomSearchControl().draw('cse');
      }, true);
    </script>
         <!-- End Google Search Element -->
      </div>
      <!-- end #sidebar2 -->
      <div id="mainContent">
      <div class="top"></div><div class="wrap"><!-- InstanceBeginEditable name="Main Content" -->
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="47" class="h2">Create an Account</td>
      </tr>
      <tr>
        <td><p>Please fill in the following information to create an account:</p>
        <form action="<?php echo $editFormAction; ?>" id="form1" name="form1" method="POST">
          <table width="53%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="38%">Name</td>
        <td width="62%"><input name="name" type="text" /></td>
      </tr>
      <tr>
        <td>E-Mail Address</td>
        <td><input name="email" type="text" /></td>
      </tr>
      <tr>
        <td>Desired Username</td>
        <td><input name="username" type="text" /></td>
      </tr>
      <tr>
        <td>Desired Password</td>
        <td><input name="password" type="password" /></td>
      </tr>
    </table><input name="submit" type="submit" />
    <input type="hidden" name="MM_insert" value="form1" />
    </p></form></td>
      </tr>
    </table>
      <!-- InstanceEndEditable -->
    </div>
    <div class="bottom"></div>
    </div>
         <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --> <br class="clearfloat" />
      <div id="footer">
        <p align="center">&copy; Copyright 2009 Hondo Volunteer Fire Department | <a href="mailto:[email protected]">Contact Us</a><a href="http://www.legalhelpers.com/chapter-13-bankruptcy/chapter13.html"></a><br />Hosting provided by <a href="http://studiox.com/" target="_blank">Studio X</a></p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>
    Dreamweaver also created this file:  hondovfd.php
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_hondovfd = "localhost";
    $database_hondovfd = "hondovfd_org";
    $username_hondovfd = "silver";
    $password_hondovfd = "m3d1c4u2c";
    $hondovfd = mysql_pconnect($hostname_hondovfd, $username_hondovfd, $password_hondovfd) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>

  • Ulimit "cannot modify limit" error when starting Apache

    This isn't exactly an OSX Server problem, but I am trying to start Apache and subsequently Tomcat on my MacBook Pro so I can locally test a website before I deploy it to our test server. (The MacBook is a new machine to which I recently migrated my setup from my old PowerBook. The PowerBook is running 10.4.11, FWIW, and all worked well there.)
    When I do this from the command line:
    sudo /Library/Apache2/bin/apachectl start
    I get:
    /Library/Apache2/bin/apachectl: line 70: ulimit: open files: cannot modify limit: Invalid argument
    And Apache is not started. This runs fine on my old machine. The culprit line from apachectl is:
    ULIMITMAXFILES="ulimit -S -n `ulimit -H -n`"
    Just running the'ulimit -H -n' yields 'unlimited'.
    What's the problem here, and how do I fix it? I haven't found the answer by Googling.

    Back up all data.
    Select
    Shell ▹ New Command
    from the Terminal menu bar. Copy and paste the following line into the text box that opens:
    mkdir disabled_shell_files; mv .profile .bash* $_
    Your old shell initialization and history files will be saved in a directory with the indicated name at the top level of your home directory. Test.

  • Can't modify line item text in financial document

    Dear all,
    In some cases I'm not able to modify line item text field in financial documents, and I don't know why.
    I've checked customizing and BSEG-SGTXT appears as modificable field in any case.
    As far as i know text field is not a relevant field, so the system should let me modify it if the customizing is right.
    Does anyone know if there could be any other customizing that affects this transaction (FB02)?
    Thanks

    Hi
    Since you indicated the entry is from goods receipt, I understand that you are trying to change the line item text in a GL line item.
    If so, please ensure the following:
    1. in OB32, for Account type S and Field name BSEG-SGTXT, the trasaction type is blank, "Field can be changed" is ticked and "Posting period not closed" and "Line item not cleared" are not ticked. 
    2. In OB32, for Account type S and field name BSEG-SGTXT, no other entry is there along with company code which has a different rule.
    3. You can enough authorization to change the document.
    4. If you can change the text, but cannot save it, then please check whether any validation/BTE is in place which is not allowing to do so.
    Regards

  • Navigation Buttons, and Branching

    I have a project with about 100 slides. I originally didn't expect to have to do any "Branching," so I thought I'd just use a standard skin for navigation. Turns out that I am now requuired to branch to some optional information, and return when done. I had a smaller project where I just went  in and added buttons to go back and forth, and jump around. I dread the thought of having to do that again with all 100 slides.
    Is there a way to add a button to all slides at once, or disable the back and forward buttons on the skin, for just one or two slides?
    By the way, I've read on this forum that you can have the user go back to where he left off, when he jumped to the branch and returned. For the life of me, I can't find info on how to accomplish this.

    Hi there,
    Thanks for reaching Adobe Community. You can manage branching between slides through the branching panel. It can be accessed through Window>Branching View. You can refer to the below mentioned links for further help:
    http://blogs.adobe.com/captivate/2011/08/captivate-training-let%E2%80%99s-explore-the-bran ching-view-in-adobe-captivate-5-5.html
    http://help.adobe.com/en_US/captivate/cp/using/WSedb8e841cbc0b796-7e01079512800b31423-8000 .html
    Coming to your other questions, you cannot use a button to all the slides at once but you can instead use Master Slides for such purpose. You can insert a Smart Shape on your Master Slide and use it as a button from the Properties pane on the right hand side. You can disable the back and forward buttons on the playbar through skin editor but unfortunately they will be disabled for the entire project.
    Hope the above information helps!
    Thanks!
    Shekhar

Maybe you are looking for

  • Adobe Bridge CS4 Thumbnails

    I just installed Adobe CS4 couple days ago! Everything worked fine. I could see the thumbnail previews of all my pictures but today now I can't! It looks like I'm using Camera Raw 5.4 if that matters. I moved my Bridge and Photoshop Icons to my deskt

  • Browser is not reading style sheets to website, works in all other browsers

    I created my site using templates in Dreamweaver. The new 4.0.1 Firefox browser does not render the site properly. The nav bar is split and all of the content is missing. It rendered correctly in 3.__.17 as well as current Safari and Chrome browsers

  • Imporing iDVD 5 (iLife 05) into DVD SP 3/4?

    I've got a music theatre project on iDVD 5 that I'd need to import into DVDSP 3 to do further interactive work but I get an error on trying to import. I've tested it by creating a simple movie in iDVD4 and iDVD5. In DVDSP3 I can import the iDVD4 OK b

  • HT4972 ipod touch reset unable to connect to  wifi

    Got rid of white screen after three days of trying to connect to I Tunes and was able to reset Ipod Touch.   Now I cannot get wifi, that area is faded. Why does everthing have to be so difficult.

  • JSP-HTML communication

              I have a HTML form that supplies 3 parameters to a jsp file. Inside the Jsp file,           I validate those 3 parameters and throw an exception if any of them are null.           How would I tell the HTML file if there happens an exception