HTML common menus

Hi,
I have a html website which is growing and it's now becoming
increasingly difficult to amend the menu which obviously appears on
every page, every time a new page is added/deleted.
Currently I have to add/delete/amend the link on one page and
then copy/paste the menu to all over pages (50+). What I would like
is to create a file called topmenu.html which links to all pages
within the website. When this single file is updated, it in turn
updates all other pages.
A few things to consider.
1. Does it cause problems if I have html pages within sub
folders.
2. Can the solution work with two menus on each page. The
first is a text based menu which runs vertically down the page. The
second is a Spray drop down-menu along the top of the page.
Can this be done? If so, go easy on me, I'm only a novice web
designer.
Thanks you.

> 1. Does it cause problems if I have html pages within
sub folders.
Not if you understand how to use root relative links. Since a
root relative
link directs the browser to a path that begins at the root of
the site, it
doesn't matter where the page containing the link is located
within the
site, the path will be correct.
> 2. Can the solution work with two menus on each page.
The first is a text
> based menu which runs vertically down the page. The
second is a Spray drop
> down-menu along the top of the page.
I assume you mean "Spry" and yes, server-side includes (that
would be how to
solve your problem) can work with anything you are clever
enough to build).
To read more about server-side includes, use DW's F1 Help,
and Google.
When you use server-side includes, there are at least two
files involved:
1. The parent file
2. The include file
The parent file (the one RECEIVING the included file's code)
must be named
with a file extension that triggers a server parse to find
the include
directives (e.g., *.shtm(l), *.asp, *.php, etc.). Of course,
the extension
would have to match the server models supported by a) your
site definition,
and b) the hosting server. The include file (the code
fragment file) may be
named with any extension you desire (we joke here about
naming them with the
'monkeybutt' extension, since that extension name is
irrelevant to the
function of the file itself). HOWEVER, if the include file is
named with an
extension that DW doesn't recognize, then you will not get a
Design view
option when the file is opened.
For this reason, it's best to just name your include files
with the *.htm(l)
extension. Alternatively, if you *really* like
'*.monkeybutt', you can add
this extension to the list of file extensions that DW
recognizes -
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16410&sliceId=1
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
==================
"Mr_Gareth" <[email protected]> wrote in
message
news:[email protected]...
> Hi,
>
> I have a html website which is growing and it's now
becoming increasingly
> difficult to amend the menu which obviously appears on
every page, every
> time a
> new page is added/deleted.
> Currently I have to add/delete/amend the link on one
page and then
> copy/paste
> the menu to all over pages (50+). What I would like is
to create a file
> called
> topmenu.html which links to all pages within the
website. When this single
> file
> is updated, it in turn updates all other pages.
>
> A few things to consider.
> 1. Does it cause problems if I have html pages within
sub folders.
> 2. Can the solution work with two menus on each page.
The first is a text
> based menu which runs vertically down the page. The
second is a Spray drop
> down-menu along the top of the page.
>
> Can this be done? If so, go easy on me, I'm only a
novice web designer.
> Thanks you.
>

Similar Messages

  • Using Dreamweaver to edit *partial* web page (chunks of HTML code)?

    Hello,
    I am using a custom PHP framework to build a website.
    This framework is quite simple, it relies on 2 types of files:
    Templates: site-wide PHP/HTML files including all the logic, HTML header (links to CSS & JS files), Company logo HTML menus & related navigation code, searchbox, footer etc. Only 2 templates exist: one for the homepage, another one for all the other pages.
    "content files": these files contain mostly static HTML code. Content files are imported by the PHP template using PHP's include() function.
    As content files are inserted within a global HTML page, these only  contain chunks of HTML code: no tags such as "head" "body".
    On the attached PNG, the green part is the code from the template, the red part is the code from the "content file".
    A typical template file would be:
              <html>
                <head>
                  (load CSS files, JS files...)
                </head>
                <body>
                  (HTML headers & menus)
                  <?php include($content_file); ?> <!-- Includes partial HTML file with page content -->
                  (HTML footer)
                </body>
              </html>
    A typical content file would be:
              <h1>TITLE</h1>
              <h2>subtitle</h2>
              <p>Lorem ipsum<img src=""  class="myimg" /></p>
              <h2>subitle</h2>
              <p>Lorem  ipsum</p>
    Templates are NOT editable by users.
    Content files are editable by users, using Dreamweaver.
    The problem is, users cannot edit those content files since it is not a valid HTML page. The CSS required to enforce the styles are not loaded since HTML headers are not present. It looks ugly and Dreamweaver tries to insert standard HTML tags such as <html>, <body> and so on.
    I see 2 hypothesis, but I cannot find an answer in the Dreamweaver documentation:
    have DW edit the content files alone, in which cas we would need to tell DW that it is editing a partial web page and not a full one
    have DW edit the content file while applying the PHP template, in which case we would need to tell DW that is should discard most of the code and save only the "content file"
    Hypothesis 1: Standalone edit of content files. Is there a way to tell Dreamweaver
    that it is editing a partial HTML file,
    that it needs to load additional CSS stylesheet to display the styles
    that it should not insert standard HTML body and headers tags, that we know the page is not standard compliant as-is
    that creating additional style is forbidden, it is only allowed to use styles defined in the stylsheet
    Hypothesis 2: Edit of content files within the template. is there a way to tell Dreamweaver
    that it is should add HTML code from the template before and after the loaded "content file"
    that when saving the "content file" it should discard all HTML/PHP code from the template, saving only the content itself
    that creating additional style is forbidden, it is only allowed to use  styles defined in the stylsheet
    I cannot believe noone has been faced with this problem before, the fact is I cannot find any answer about this issue.
    Best Regards,
    M

    I have moved this thread to the Dreamweaver Application Development forum, which deals with PHP and similar issues.
    Several things spring to mind.
    Do your template files have a standard .html file name extension? If so, you could add .html to the file types that Dreamweaver does not automatically rewrite. Select Code Rewriting in the Preferences panel, and add .html to the list of files in "Never rewrite code".
    If your template files use a file name extension not recognized by DW, add them to the list using the instructions in http://go.adobe.com/kb/ts_tn_16410_en-us. You might also need to add them to the list of files that DW doesn't rewrite.
    To get access to styles in pages that are composed of fragments, use Design Time Style Sheets. See http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-7e17a .html.

  • Xml menu not showing in published html

    Hi all my problem is that when iam trying to publish an flash
    project containing a dynamic xml menu as html file ,the menu is not
    showing although it is showing in the accompannying swf file,any
    body knows the problem??

    There is not enough here to know what you are doing.
    Flash reads XML fine. You can then use that XML inside of
    Flash to create menus (or any UI thing) using Flash objects such as
    MovieClips and TextFields.
    You will not be able to create HTML based menus as Flash does
    not handle more than a few HTML tags via the TextField object.

  • Insert script into html file

    Hello,
    I am using jdev 10.1.3. In my Project, I cannot add script to html file, because there is not any icon on the component paletta>html common.
    Also there is not any jsp page on the paletta too.
    Do you know anything about this issue? Am I change jdev release or is there anything that I can do on this release?

    this should work
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
    <%@ page language="java" contentType="text/html;charset=iso-8859-1"%>
    <html>
      <head>
        <title>TEST PAGE</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
        <meta http-equiv="Content-Script-Type" content="text/javascript"/>
        <meta http-equiv="Content-Style-Type" content="text/css"/>
        <script language="JavaScript" src="javascript/ClientFunktionen.js"></script>
      </head>
      <body>
        <h1>TEST</h1>
      </body>
    </html>If you don't use struts, remove the tablib entries.
    Timo

  • How add new HTML5 input tags to Insert,Form menu and Insert,Tag,HTML?

    how do I add new HTML5 input tags to the Insert,Form menu and Insert,Tag,HTML tags menus of dw cs5?
    I remember seeing some documentation about the latter, but it wasn't very good.  can't figure out how to actually implement something, so need a mentor - and I am a software developer. :-/
    http://help.adobe.com/en_US/dreamweaver/cs/extend/WS5b3ccc516d4fbf351e63e3d117f53d77c2-800 0.html
    but I am not sure what this applies to.  manual is not clear on this.

    I am removing it from my WATCHES since I find out what was wrong. In the submit.jsp, current needs to be setup instead of create.
    <jbo:Row id="myrow" datasource="ds" action="current" >
    Have a great week.
    Kamran

  • Xml Menu not shown in html

    Dear all
    I have a problem when I publish an falsh document as html,the
    dynamic xml menu that is loading from a file is not
    showing,althought it is shown in the swf file accompanying the html
    published file.can some body help me?

    There is not enough here to know what you are doing.
    Flash reads XML fine. You can then use that XML inside of
    Flash to create menus (or any UI thing) using Flash objects such as
    MovieClips and TextFields.
    You will not be able to create HTML based menus as Flash does
    not handle more than a few HTML tags via the TextField object.

  • Clicking "page from template" does not allow me create new pages

    I stared designing a site with the trial version of CS4. Of course it involved a lot of trial and error, creating a page and canceling it again etc. At last I was able to design the index page and a few other pages, but suddenly just about 7 days into the trial period, the template started looking different; not displaying the images and displaying the home page article in an improper way. I also discovered that I could not create new pages by selecting file\new. When the new document dialogue page opens and I select "page from template" and then select a site I am working on, nothing shows in the items list. I only see the message "no items". Moreover, the "create" (new page) button is no more a click-able area.
    I even tried it by proceeding as if I wanted to design a new site. I click file\new\page from template\the site, but when it comes to the stage where I should select "2 column liquid, left sidebar, header and footer" after clicking “page from template” I don't see anything in the items column. It only tells me "no item."
    I thought this problem was due to the fact that I was using the trial version and that the trial version was limited in the number of new pages I could create. So I bought the full version. Alas! I discovered that changed nothing. Right now am stuck. Do you have any suggestion?

    I think you're are confusing DW Templates with CSS Page Designs and Starter Pages.
    Templates are a DW proprietary device.  They permit you to have sitewide elements such as common menus, headers and footers on all your pages along with Editable Regions for page specific content (i.e. the stuff that changes on every page).
    DW Templates looks like this (notice the Template Editable Comments):
    <!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" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body>
    <!-- TemplateBeginEditable name="Content" -->My Page Specific Content Goes here
    <!-- TemplateEndEditable -->
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Null connection when trying to connect to SQL Server 2000 in Tomcat4.1.29

    Hi All,
    I am still struggling with null connection when trying to connect to sql server 2000 with tomcat using sun.jdbc.odbc.JdbcOdbcDriver
    Here is my server.xml
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <Resource auth="Container" description="Users and Groups
    Database" name="UserDatabase"
    scope="Shareable"
    type="org.apache.catalina.UserDatabase"/>
    <Resource name="jdbc/DefaultDS" scope="Shareable"
    type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.
    MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 --><Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/DefaultDS" auth="container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <!-- Maximum number of dB connections in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxActive</name>
    <value>8</value>
    </parameter>
    <!-- Maximum number of idle dB connections to retain in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxIdle</name>
    <value>4</value>
    </parameter>
    <!-- Maximum time to wait for a dB connection to become available
    in ms, in this example 10 seconds. An Exception is thrown if
    this timeout is exceeded. Set to -1 to wait indefinitely.
    -->
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <!-- MS Sql Server dB username and password for dB connections
    -->
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <!-- Class name for MS Sql Server JDBC driver
    -->
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <!-- The JDBC connection url for connecting to MS Sql Server dB.
    -->
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <!-- This Databae Connection Pool Description.
    -->
    <parameter>
    <name>description</name>
    <value>JDBC Driver: sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    and my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <!-- Standard Action Servlet Mapping -->
    <web-app>
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    and JBoss-SQL is data source I created from control panel settings and here is way I am retrieving connetion
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/DefaultDS");
    Connection con = ds.getConnection();
    return con;
    I tried connecting as mentioned in this website
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Common%20Problems.But didn't help
    Please help urgent
    Sorry for long file. Can any one please help me in solving this problem.
    Thanks in advnace
    Kurakula

    I'd recommend that you not use the JDBC-ODBC bridge driver to connect to SQL Server. M$ and jTDS are two free type IV JDBC drivers that you should use instead. Put those JARs in the WEB-INF/lib directory.
    The database URL you're using is not correct if you change drivers. Consult the docs to find out what the proper syntax is.
    MOD

  • The design of this website is confusing and hard to use.

    Adobe are regarded as the industry standard of design software, so it seems ironic (or embarrassing) that this website is so poorly designed. I came here simply wanting to post a question about Flash Player but found it the whole experience to be confusing, bewildering and frustrating.
    I will list my ten major criticisms below:
    1. ILLEGIBLE FONTS
    Many of the site's styles (eg discussion titles) use horribly small fonts, to the point of being illegible and nauseating at normal viewing distance. I have to lean forwards towards the screen to read it. I have never had this issue with any other site I visit. The font used is not a screen font and is simply not suitable for being displayed at that size and looks quite ugly (eg lower case 'e' has no hole). In addition, some of the styles use almost illegible colors (eg gray on lighter gray). This kind of "minuscule" typography might be perfect for a small space (eg application control panels), but for a website displayed on a modern computer monitor (at least 1920 pixels wide) it is totally inappropriate. And my monitor is large, I dread to think how small the text would look on a small screen.
    2. UNCOMFORTABLE LAYOUT
    The layout spans the whole width of the screen, making it very uncomfortable to use the site. All the important elements are aligned either to the left or the right of the screen, with a vast gap in the middle, meaning that one has to constantly dart one's eyes (or neck) back and forth, which is made even worse by the small font size which requires a person to "move in" towards the screen.
    3. LACK OF PAGE TITLES
    To add to the sense of disorientation, many of the key pages don't have a title, so you simply do not know where you are or what you are looking at. For example if you go to the main list of all the communities (forums.adobe.com/places), there is no title; nothing to tell you what you are looking at. Likewise, if you do a search, there is no title (eg "Search results"). Having titles at the top of pages is fundamental to web design so people don't get confused about where they are.
    4. THE "FORUMS" DON'T LOOK LIKE FORUMS
    I was brought to the "Using Flash Player" page by an external link, and when I arrived I was just totally confused about where I was and what I was looking at. The page title "Using Flash Player" didn't tell me I was in a discussion community. The page is littered with so many different links and features it is hard to know where to look and what the purpose of the page is. The page does not have a sense of being a discussion forum. I expect a discussion forum to have the word "discussion" somewhere at the top, with a list of threads and information such as last post, replies, views, as well as a way to see how many threads there are in that forum and a way to navigate between pages and see older threads. Not to mention all the strange buttons which I will mention in my next point…
    5. MYSTERIOUS BUTTONS
    A good website uses terminology and controls that people recognize and understand. But all the buttons on this site are strange. At the top of each discussion forum we have "Overview", "Content", "People", "Sub-communities" and "Follow". I can honestly say I have no idea what any of those mean or do (with the exception of "Sub-communities"). Websites should use clear, unambiguous language so that people know what the controls do and are not clicking on the "unknown". If your site does have unconventional controls that people are not going to be familiar with, you should have tooltip popups which explain, to make it easy for newcomers. I have clicked on those strange buttons but on the whole I have not been able to work out what they do. The "People" button would seem to be a way of finding users/members but surely that is a rare function and it should be at the foot of the page not in a prominent location? Likewise when you do a search, you must choose whether to search for "Content", "People" or "Communities". Most people will have no idea what the first two of these options mean, I certainly don't. It's just a very weird site.
    6. INCONSISTENT LAYOUT
    Another confusing thing is that there seem to be as many page layouts as there are pages! Every different page I have been to has no common elements or common menus, everything changes. Even different community pages have different features and different layouts. This leaves you feeling totally disoriented. A website's basic controls and menus should not keep shifting around, it leaves the user with no sense of continuity; it cripples their understanding of how the site functions; and it prohibits them from distinguishing between a page's controls and its content, since both keep changing around.
    7. BUGGY
    I am less critical of bugs because I know that inevitably they happen, and likewise will inevitably be resolved. But in my brief time using the forums I came across plenty of bugs, two are on the main welcome page:
    A) First of all, a pop-up box appears which says "Say Something" inviting me to click on the pencil icon. I then click on the pencil icon and another box appears with options. However, the "Say Something" box is still there and it obscures the box below it. You can't click on it, so you have to click off both boxes, then the "Say Something" box is active again, then you can click on the small "skip" button, and then finally you can click on the pencil icon again and see what was there all along. Not a serious bug, but clumsy.
    B) Also on the welcome screen there is a link at the top which says "New to the community? Check out our guidelines". I didn't hesitate to click on this because by this point I felt totally lost and confused and wanted all the help I could get. I clicked on that button and it took me to a page called Community Guidelines. I clicked on the first link ("Find answers to questions") which took me to an error page ("Unauthorized. Access to this community or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here.
    8. TERMS AND CONDITIONS
    Finally, the terms and conditions upon signing up are unreasonably long, to the point of being prohibitive. If someone is having a problem with their software, they don't want to have to spend hours reading through terms and conditions before they can even get to ask a question. It is completely out of order to force people to read all those terms and conditions, and especially forcing people to re-read the whole thing any time there is an update. It is simply laziness on the part of the admin. They could carefully go through the terms and conditions and identify the key elements which have been changed and provide the user with a neat summary, thus saving thousands of people many hours of reading. When I take out a mortgage on a house, I have terms and conditions to read, and I expect there to be a lot. But when I simply want to sign up to a discussion forum, I do not expect a similar level of terms and conditions. People can go to, say, Yahoo or Google or YouTube and discuss these issues freely without having to read any terms and conditions at all. By putting up all these barriers you are just turning people away.
    9. IDENTITY CRISIS
    Finally (and in conclusion) I would say that the site doesn't seem to know why it exists: whether it is aimed at helping the general public or amusing technology lovers?
    I would have expected a site like this to be aimed at the general public, since it is promoted as a help resource by Adobe, and covers a very wide range of products, meaning that a very large and wide range of people should be expected to visit it.
    However, the site gives the opposite impression. It has what I would call a steep "learning curve", with complex page layouts, full of unconventional controls and features, as well as the emphasis on community. This would all seem to suggest it is more of an exclusive site aimed more at techy people who want to "hang out" here and become regular users. I feel it is excluding laypeople and casual visitors who are simply seeking quick help.
    To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help".
    If you want a good example of a good, clean, elegant design that is easy to use, go to www.google.com you will notice that the controls are simple and easy: the eye is immediately drawn to the central part of the screen where the main controls are and there are only two buttons. Then if you want to see more advanced features you can go to the smaller controls which are tucked away in the top right corner and do not distract anyone.

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • How do I link a drop down menu with product pictures?

    I wan to have  a product picture and then have a drop down menu to choose the color, so when I select the color in the drop down menu the product picture chages to its corresponding color, is this possible?
    Or is there an alternative way?

    Not in iWeb. You have to look beyond it.
    Here :
    http://www.cssplay.co.uk/menus/
    Lots of menus to choose from. For some you need permission.
    Then use the HTML Snippet to paste the code.
    For HTML Snippet alternatives, have a look here :
    http://www.wyodor.net/mfi/roodhout/How_To_Do.html
    http://www.wyodor.net/mfi/Maaskant/How_To.html
    Sample menus made with this technique here :
    http://www.wyodor.net/mfi/Maaskant/Some_Menus.html

  • Updating a record using variables

    I want to use a variable(s) to update my record. I get a Java excpetion when using this code:
    <%@ page import="java.sql.*"%>
    <%@ include file = "/html/common/init.jsp" %>
    <% String ticketid = request.getParameter("ticketid"); %>
    <% String comment = request.getParameter("comment"); %>
    <% String userid = user.getUserId(); %>
    <% String comment_body = "comment_body" %>
    <%
    Class.forName("com.mysql.jdbc.Driver");
    Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/helpdesk", "root", "password");
    Statement updStmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
    ResultSet updRs = updStmt.executeQuery("SELECT * FROM HISTORY WHERE (ticketid) = ('"+ticketid+"')");
    updRs.next();
    updRs.updateString "('"+comment_body+"', '"+comment+"')";
    updRs.updateRow();
    con.close();
    %>
    Here is the exception;
    An error occurred at line: 7 in the jsp file: /Projects/Help Desk/PostComments.jsp
    Generated servlet error:
    C:\Program Files\Liferay\server\default\work\jboss.web\localhost\_\org\apache\jsp\Projects\Help_0020Desk\PostComments_jsp.java:546: ';' expected
    String comment_body = "comment_body"
    ^
    An error occurred at line: 10 in the jsp file: /Projects/Help Desk/PostComments.jsp
    Generated servlet error:
    C:\Program Files\Liferay\server\default\work\jboss.web\localhost\_\org\apache\jsp\Projects\Help_0020Desk\PostComments_jsp.java:558: not a statement
    updRs.updateString "('"+comment_body+"', '"+comment+"')";
    ^
    An error occurred at line: 10 in the jsp file: /Projects/Help Desk/PostComments.jsp
    Generated servlet error:
    C:\Program Files\Liferay\server\default\work\jboss.web\localhost\_\org\apache\jsp\Projects\Help_0020Desk\PostComments_jsp.java:558: ';' expected
    updRs.updateString "('"+comment_body+"', '"+comment+"')";
    ^
    3 errors

    Thanks for the insult.<rant>
    Your problem was that you were missing a semi-colon at the end of line, which every Java statement requires. The error messages that you posted would tell most people who have more than casual experience with compiling Java that you have a trivial syntax problem.
    The people who take the time to answer the questions in this forum are mostly experienced professionals who answer questions on a volunteer basis out of the goodness of their heart. It takes time, it takes work, and we get the gratification of helping people, learning about new problems, and learning the tricks that the other pros know that we don't. Therefore it is frustrating to see a problem that ought to be solvable by anyone who's gotten past their first program harder than "hello world".
    However, I don't see anything insulting in our responses so far, or about saying that the impression I have from this and all your other posts is that you don't have the first idea about how to do what you're trying to do and you want this forum to design your application for you. While design questions are certainly appropriate in the forum, both the basic level and the number of your questions suggest that you really need to spend some time getting educated, by reading books, all the Java "how to" articles on the web, or examining the code of all the open source projects that happen to do similar things. Or you should go to school, hire a tutor, or a mentor within your development environment. You're acting like you expect the forum to do your work for you, and be polite and happy about it.
    I appreciate that trying to learn all these areas of Java at once is very hard and can be frustrating; it's taken me about 5 years to get to "above average" in some areas and I still have an enourmous amount to learn about other areas, even though I started as a senior programmer who has been working in non-Java, non-web areas for 25 years. Learning new technologies takes an enormous amount of work; your posting of an issue that many college freshman solve in their first "hands-on" project suggests to me that you are utterly unwilling to do your own work or take the time to think about your problems before posting. I write that not to insult you - it's truly how I feel - but to help you understand why you might not be getting the answers you seek in this forum; for many of us, you're just asking too much and whining about "insults" doesn't help your cause.
    Sorry if we hurt your feelings. After that rant, I'm going to attempt to restrict my responses to the technical issues at hand.
    </rant>

  • Upgrade to Win7 & PSE-9; Can't Reconnect Photos in Catalog

    Just bought a new computer, which upgraded me from XP to Win 7, and at  the same time I upgraded to Photoshop Elements 9. I restored my Catalog backup, but found a majority of my photos had become disconnected due to a change in the folder hierarchy from XP to Win 7. Many of my photos when I was using XP were in C:\documents and  settings\..., but in Windows 7 there is no documents and settings folder  under C:, and Windows won't even let me create a folder with that name so as to move the photos back into it. So now all my photos are in  C:\Users\My Pictures\... and PSE can't seem to find them. I have to browse on each one to manually reconnect it. Very tedious and no way that is going to work for nearly 10,000 photos in my catalog.
    What's  worse, the program freezes after I perform a half-dozen or so reconnects, and I have to do a force-quit. I've tried uninstalling and reinstalling the program, and also the suggestion on this Adobe tech note (http://kb2.adobe.com/cps/400/kb400848.html) and neither seems to abate the freezing issue. I've also tried both restore options (restore to same location and restore to new  location/preserve folder layout) and the folder hierarchy is still messed up either way. Any suggestions?

    I suggest that you refer to this technote for general info about the catalog and upgrading
    http://kb2.adobe.com/cps/859/cpsid_85996.html
    Common catalog issues when you upgrade | Elements 6, 7, 8, or 9 Organizer
    and then that you look at the specific problem discussed in
    http://kb2.adobe.com/cps/404/kb404560.html
    Can't edit, open, reconnect photos or media | Incorrect drive letter | Elements 6, 7, 8 or 9 Organizer | Windows
    Message was edited by: Barb__O : text reworded for clarification

  • Session in JSF JSP page

    Hi All,
    I am using JSF JSP pages. One such page is login.jsp I have backing object backing_login
    On successful login, listUser.jsp page is displayed. In this page, I have a HTML --- Commons Hyperlink component as follows.
      <tr>
                  <td height="17">
                    <a href="http://129.212.139.36:8991/GeminiLogin-ViewController-context-root/faces/listUsers.jsp">
                      Manage Users
                    </a>
                    <afh:script binding="#{backing_createModify.script1}"
                                id="script1"/>
                  </td>
                </tr>
    Now the question:---
    I do get to know the UserType in the backing_login object (either 'cma' or 'ea').
    Now, if it is cma I want the above link tobe dispalyed in listUser.jsp else DO NOT display the link.
    How can I do that ? I dont know, how to pass UserType information available in baking_login to the listUser.jsp and
    second, how can conditionally use that info to either hide or display that hyperlink ?
    Your help appreaciated.
    thanks in advance
    pp

    You can use an ADF Faces link component and condition the display attribute for it on the value of your backing bean
    There are some samples of conditional display in the posts from Grant here:
    http://groundside.com/blog/GrantRonald.php?m=200512

  • Oracle application installation on AIX IBM P6

    Hi,
    I need help regarding pre-req how i install VAC 7 C and C++ verison 7 on AIX IBM P6. (vac.70.aix52-61.jun2009.ptf.tar.Z)
    When I install VAC 7 using "smitty install_all"
    there are some files set missing and installation failed.
    Please help me.
    Regards,
    Syed Shabuddin

    Hi Hussin,
    Thank your response. see error and our AIX administrator not understading the way or work around. plz hlep filesset of TL level we have AIX 5.3 TL 7.
    [Entry Fields]
    * INPUT device / directory for software /home/sysadmin/vac-in>
    * SOFTWARE to install [_all_latest] +
    PREVIEW only? (install operation will NOT occur) no +
    COMMIT software updates? yes +
    SAVE replaced files? no +
    AUTOMATICALLY install requisite software? yes +
    EXTEND file systems if space needed? yes +
    OVERWRITE same or newer versions? no +
    VERIFY install and check file sizes? no +
    Include corresponding LANGUAGE filesets? yes +
    DETAILED output? no +
    Process multiple volumes? yes +
    ACCEPT new license agreements? no +
    Preview new LICENSE agreements? no +
    F1=Help ┌──────────────────────────────────────────────────────┐
    F5=Reset │ Running command... │
    F9=Shell └──────────────────────────────────────────────────────┘
    COMMAND STATUS
    Command: running stdout: yes stderr: no
    Before command completion, additional instructions may appear below.
    [MORE...119]
    vac.man.ZH_CN 8.0.0.22 Requisite failure
    vac.man.Ja_JP 8.0.0.22 Requisite failure
    vac.man.JA_JP 8.0.0.22 Requisite failure
    vac.man.EN_US 8.0.0.22 Requisite failure
    vac.lib 8.0.0.22 Requisite failure
    vac.include 8.0.0.22 Requisite failure
    vac.html.zh_CN.C 8.0.0.22 Requisite failure
    vac.html.ja_JP.C 8.0.0.22 Requisite failure
    vac.html.en_US.C 8.0.0.22 Requisite failure
    vac.html.common.search 8.0.0.22 Requisite failure
    vac.aix50.lib 8.0.0.22 Requisite failure
    vac.C 8.0.0.22 Requisite failure
    vac.Bnd 8.0.0.16 Requisite failure
    [BOTTOM]
    COMMAND STATUS
    Command: failed stdout: yes stderr: no
    Before command completion, additional instructions may appear below.
    [TOP]
    geninstall -I "a -cgNQqwX -J" -Z -d /home/sysadmin/vac-installer/vac8 -f File
    2>&1
    File:
    S:vac.Bnd 8.0.0.16
    S:vac.C 8.0.0.22
    S:vac.aix50.lib 8.0.0.22
    S:vac.html.common.search 8.0.0.22
    S:vac.html.en_US.C 8.0.0.22
    S:vac.html.ja_JP.C 8.0.0.22
    S:vac.html.zh_CN.C 8.0.0.22
    S:vac.include 8.0.0.22
    vac.lib 8.0.0.22 # IBM XL C Compiler Libraries
    vac.man.EN_US 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.man.JA_JP 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.man.Ja_JP 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.man.ZH_CN 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.man.Zh_CN 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.man.en_US 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.man.ja_JP 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.man.zh_CN 8.0.0.22 # IBM XL C Compiler Man Pages-...
    vac.ndi 8.0.0.22 # IBM XL C Non-Default Install...
    vac.pdf.en_US.C 8.0.0.22 # IBM XL C Documentation (PDF)...
    vac.pdf.ja_JP.C 8.0.0.22 # IBM XL C Documentation (PDF).
    MISSING REQUISITES: The following filesets are required by one or more
    of the selected filesets listed above. They are not currently installed
    and could not be found on the installation media.
    vac.Bnd 8.0.0.0 # Base Level Fileset
    vac.C 8.0.0.0 # Base Level Fileset
    vac.aix50.lib 8.0.0.0 # Base Level Fileset
    vac.html.common.search 8.0.0.0 # Base Level Fileset
    vac.html.en_US.C 8.0.0.0 # Base Level Fileset
    vac.html.ja_JP.C 8.0.0.0 # Base Level Fileset
    vac.html.zh_CN.C 8.0.0.0 # Base Level Fileset
    vac.include 8.0.0.0 # Base Level Fileset
    [MORE...55]
    vac.lib 8.0.0.0 # Base Level Fileset
    vac.man.EN_US 8.0.0.0 # Base Level Fileset
    vac.man.JA_JP 8.0.0.0 # Base Level Fileset
    vac.man.Ja_JP 8.0.0.0 # Base Level Fileset
    vac.man.ZH_CN 8.0.0.0 # Base Level Fileset
    vac.man.Zh_CN 8.0.0.0 # Base Level Fileset
    vac.man.en_US 8.0.0.0 # Base Level Fileset
    vac.man.ja_JP 8.0.0.0 # Base Level Fileset
    vac.man.zh_CN 8.0.0.0 # Base Level Fileset
    vac.ndi 8.0.0.0 # Base Level Fileset
    vac.pdf.en_US.C 8.0.0.0 # Base Level Fileset
    vac.pdf.ja_JP.C 8.0.0.0 # Base Level Fileset
    [MORE...43]
    vac.pdf.ja_JP.C 8.0.0.0 # Base Level Fileset
    vac.pdf.zh_CN.C 8.0.0.0 # Base Level Fileset
    << End of Failure Section >>
    BUILDDATE Verification ...
    Verifying build dates...done
    FILESET STATISTICS
    21 Selected to be installed, of which:
    vac.man.Ja_JP 8.0.0.22 Requisite failure
    vac.man.JA_JP 8.0.0.22 Requisite failure
    vac.man.EN_US 8.0.0.22 Requisite failure
    vac.lib 8.0.0.22 Requisite failure
    vac.include 8.0.0.22 Requisite failure
    vac.html.zh_CN.C 8.0.0.22 Requisite failure
    vac.html.ja_JP.C 8.0.0.22 Requisite failure
    vac.html.en_US.C 8.0.0.22 Requisite failure
    vac.html.common.search 8.0.0.22 Requisite failure
    vac.aix50.lib 8.0.0.22 Requisite failure
    vac.C 8.0.0.22 Requisite failure
    vac.Bnd 8.0.0.16 Requisite failure

  • Import Not Finding All Files in Folder Tree (which files were missed?)

    I'm a new LR4.1 user running on a 15" Macbook Pro (OS X 10.7.4).
    I exported my Aperture Library masters: mostly NEF files from Nikon D100, D200, D300, D800 cameras, and also JPG, TIF, and PSD files, etc.
    Aperture reported this export count: 
    51285 of 50582 (don't ask me why it exported more than it thought it had!).
    After export, I used "find" (case-insensitive) in the output directory tree to count all NEF, TIF[F], PSD, PNG, JPG, GIF, AVI, and MOV files spit out by Aperture: I found 51277 such files (pretty close to the Aperture export count, although not exactly the same).
    However when I point Lightroom to that folder tree with the exported Aperture masters, an IMPORT operation only reports 44279 photos for import (at lower left of expanded import dialog). About 7,000 less than Aperture exported! I have "Include Subfolders" checked and "Don't Import Suspected Duplicates" unchecked in the LR import dialog. Also, I am using the "ADD" option in the import dialog.
    How can I figure out which files Lightroom is missing? (I haven't actually imported anything yet due to the discrepancy.)
    I can't see how the discrepancy could be so large. I think LR should support most of my Aperture-supported files.
    I see LR doesn't support 32 bit files, but I don't see how I could have 7K files (maybe some, but I don't think 7k!) (I will check this later, am installing Xcode and ImageMagick to check the count of 32 bit deep files).
    If anyone can offer ideas on how I can find the missed files, it would be appreciated.
    (Maybe if I proceed with the import and there is some way to export a text file listing of library files, then I could process that file vs. the actual files in the directory tree to deduce the problem issues.)
    Regards,
    Colin

    randomenemy wrote:
    Also, interesting you say 32 bit files are supported:
    on the following Adobe page, it says they are not supported:
    http://help.adobe.com/en_US/lightroom/using/WS42D207D7-B290-4baa-A896- AB71965BF24B.html
    -Colin
    LR4.1 Update Readme 'Supported File Formats:
    Supported File Formats:
    • JPEG
    • TIFF (8 bit, 16 bit, 32 bit)
    • PSD (8 bit, 16 bit)
    • DNG
    • Raw (Please visit  for a full list of raw file support) /products/photoshop/cameraraw.html
    • Common DSLR video formats, including MOV, MPG, AVI, and AVCHD
    Important File Format Support Exceptions (Formats not supported):
    • PSD files saved without a composite image. (Saved without “Maximize Compatibility” setting)
    • Files with dimensions greater than 65,000 pixels per side (512 Megapixel Total)
    • AVCHD support is limited to MTS and M2TS video files.

Maybe you are looking for