Stuck in first dynamic website tutorial

I am going through first dynamic website tutorial, I am having difficulties with: Create a MySQL connection.  I get an error message when I hit the test button, I get error 1045, access denied for user 'phptestuser@localhost' (using password: yes).  I have tried all the mentioned suggestions.  Any help would be appreciated.  My email is [email protected]

Javascript errors can be a pain sometimes.
These seem to occur quite frequently when applying behaviours but I can't remember the exact answer, maybe someone else will help out - it involves deleting a file in Dreamwear to try and clear the issue.
I had the same problem a few months back and nothing seems to work then suddenly it just went away.
You can try copying the code to a new Dreamweaver file and see if that has any effect OR try a clean file and rebuild. I found that for some reason when a file becomes corrupt no matter what you seem to do nothing works other than to start afresh.

Similar Messages

  • Building your first dynamic website – Part 1: Setting up the site and database by David Powers

    Hi all,
    I have just gone through this tutorial http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html and i have managed to get it to work but im trying to adapt it to a few pages with images and content but cant figure out how to add images to the page through pypmyadmin and mysql (im not sure if this is the correct place to look) and i was hoping that someone could shed some light on this for me please. Any help would be much appreciated.
    Kind regards
    Marcus

    This page isnt but i was using the "news" php page:
    this is the php at the top of the page:
    <?php require_once('Connections/check_mag.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;
    mysql_select_db($database_check_mag, $check_mag);
    $query_getArchives = "SELECT DISTINCT DATE_FORMAT(news.updated, '%M %Y') AS archive, DATE_FORMAT(news.updated, '%Y-%m') AS link FROM news ORDER BY news.updated DESC";
    $getArchives = mysql_query($query_getArchives, $check_mag) or die(mysql_error());
    $row_getArchives = mysql_fetch_assoc($getArchives);
    $totalRows_getArchives = mysql_num_rows($getArchives);
    mysql_select_db($database_check_mag, $check_mag);
    $query_getRecent = "SELECT news.post_id, news.title FROM news ORDER BY news.updated DESC LIMIT 10";
    $getRecent = mysql_query($query_getRecent, $check_mag) or die(mysql_error());
    $row_getRecent = mysql_fetch_assoc($getRecent);
    $totalRows_getRecent = mysql_num_rows($getRecent);
    mysql_select_db($database_check_mag, $check_mag);
    $query_getDisplay = "SELECT news.title, news.blog_entry,  DATE_FORMAT(news.updated, '%M %e, %Y') AS formatted FROM news ORDER BY news.updated DESC LIMIT 2";
    $getDisplay = mysql_query($query_getDisplay, $check_mag) or die(mysql_error());
    $row_getDisplay = mysql_fetch_assoc($getDisplay);
    $totalRows_getDisplay = mysql_num_rows($getDisplay);
    $var1_getDisplay2 = "-1";
    if (isset($_GET['archive'])) {
      $var1_getDisplay2 = $_GET['archive'];
      $query_getDisplay = sprintf("SELECT news.title, news.blog_entry, DATE_FORMAT(news.updated, '%%M %%e, %%Y') AS formatted FROM news WHERE DATE_FORMAT(news.updated, '%%Y-%%m') = %s ORDER BY news.updated DESC", GetSQLValueString($var1_getDisplay2, "text"));
    } elseif (isset($_GET['post_id'])) {
      $var2_getDisplay3 = $_GET['post_id'];
      $query_getDisplay = sprintf("SELECT news.title, news.blog_entry, DATE_FORMAT(news.updated, '%%M %%e, %%Y') AS formatted FROM news WHERE news.post_id = %s", GetSQLValueString($var2_getDisplay3, "int"));
    } else {
      $query_getDisplay = "SELECT news.title, news.blog_entry, DATE_FORMAT(news.updated, '%M %e, %Y') AS formatted FROM news ORDER BY news.updated DESC LIMIT 2";
    $getDisplay = mysql_query($query_getDisplay, $check_mag) or die(mysql_error());
    $row_getDisplay = mysql_fetch_assoc($getDisplay);
    $totalRows_getDisplay = mysql_num_rows($getDisplay);
    ?>
    this is the other code:
    <!-- START COL 1/3 -->
      <div class="col_1_5 archivesColor">
    <h2 class="silver">Archives</h2>
        <div class="line"></div>
        <ul>
          <?php do { ?>
            <li><a href="news.php?archive=<?php echo $row_getArchives['link']; ?>"><?php echo $row_getArchives['archive']; ?></a></li>
            <?php } while ($row_getArchives = mysql_fetch_assoc($getArchives)); ?>
        </ul>
        <div class="clear"></div>
        <div class="clear padding10"></div>
      </div>
      <!-- START COL 2/3 -->
      <div class="col_1_5 recentPostsColor">
        <h2 class="silver">Recent Posts</h2>
        <div class="line"></div>
        <ul>
          <?php do { ?>
            <li><a href="news.php?post_id=<?php echo $row_getRecent['post_id']; ?>"><?php echo $row_getRecent['title']; ?></a><div class="line"></div></li>
            <?php } while ($row_getRecent = mysql_fetch_assoc($getRecent)); ?>
        </ul>
      <div class="clear"></div>
        <div class="clear padding10"></div>
    </div>
    <!-- START COL 3/3 -->
    <div class="col_2_3 last blogPostsColor">
      <?php do { ?>
        <h2 class="pink"><?php echo $row_getDisplay['title']; ?></h2>
        <div class="line"></div>
        <p class="align_justify"><?php echo nl2br($row_getDisplay['blog_entry']); ?></p>
          <div class="line"></div>
        <p class="updated silver">Updated on
          <?php echo $row_getDisplay['formatted']; ?><div class="line"></div><div class="clear padding40"></div></p>
          </li>
        <?php } while ($row_getDisplay = mysql_fetch_assoc($getDisplay)); ?>
    </div>
    <div class="clear"></div>
        <div class="clear padding10"></div>
    </div>
    </div>
    </section>
    <!-- END CONTENT -->

  • Help with building dynamic website using tutorial (was: I know this is a repost but I'm still stuck!)

    Perhaps this was missed by the group but here goes:
    I am slogging thru a dynamic PHP tutorial but  I cant continue without losing some understanding of the process due to ?
    I am trying to complete the following:
    Building your first dynamic website – Part 2: Developing the back end
    However,
    my Insert record form dialog (below) looks like this, and I need to change both 'title' and 'blog_entry' values (as shown above), but I cannot make that choice in my form.
    I am using DW CC with the Deprecated Server Behavior from DMX zone.
    I have made sure my results match the tutorial, but I cant get past the above inconsistency in functionality.
    Any help would be appreciated.
    Thanks folks!

    The Columns area indicates which form field is used to insert a value in each column. Although the post_id and updated columns are listed as getting no value, their values are generated automatically by the database.
    Check that the title and blog_entry columns are being assigned the correct values. If either is marked as getting no value, it means that you have spelled the names of the form fields differently from the column names. Correct this by selecting the column name in the Columns area and selecting the form field's name from the Value pop-up menu.
    Nancy O.

  • Dynamic Website

    Hi Guys,
    I have created my dynamic website and it works alright, but I need assistant with orginization of my files.
    I have putting together an on-line store for products such as jeans.  My SQL data based is designed as follow:   categories (denim, non denim) body ( boot cut, flare, skinny and etc), style ( style number, description and 4 photos for each style)  These photos are listed in PHP with a  specific number assigned to them like st001.jpg . In Dreamweaver I linked image folder to the area where the photos are to be repeated all the way down the page for each style
    I will have over 500 SKU ( style Number) each SKU will have 4 photos. How would I be able to organize all these photos in folders?
    I found the reapeating region easy andI am planning to use my data base and use the repeat region method to list all the style number.  Do I put 2000 puts in a Image folder, or do I create a main image folder and add sub-folder for each body such as skinny, boot cut, flare and etc.  I also need to fiter these styles based on wash, rise, body and etc. if that make sense.
    Please help me with the correct  and easy method to do this task.
    I also would like the shopper to be able to magnify on the photo.  I am using the "thickbox widget" for my gallery. Please tell me if this is the correct way or suggest if there is better method.
    Thank you so much and everyone have a happy holiday.

    bobbak2011 wrote:
    Well I need a specific look for my website for high end designer clothing. Most shopping bag software I came a cross were really basic.  If there are shopping bags that have good datbase features available i would like to link them in dreamweaver to my website.
    Of course, i would not put all the photos and for each style on one page.  They will be displayed in different pages with filtering capabilities built in to the each page.
    Look should be the least of the concerns.  Most pre-built apps can be skinned to match your site.
    I am attaching an image to this post to describe details below.  It is of a wireframe of your database structure (images are easier to talk with then text in many cases).
    As you describe it you have 4 tables right now and you are trying to organize images.  The 4 tables you describe having now are:
    Products - Contains product data, pricing, and subcategory information
    Categories - Denim, etc.
    Body - Boot cut, etc.
    Style - Style number, etc.
    In the diagram you will see text in 2 colors, red and blue.  The Blue text columns are your primary keys and the Red are where foreign keys should lie.  Because there are foreign keys the tables should be setup with the InnoDB engine as opposed to the default myisam.  The foreign keys create the proper dependancies to ensure the integrity of the data so that all fields entered in are valid (this will help a lot with updating down the road).
    Next, is your images.  The table 5 is a very basic depiction of what your images table should look like.  At the very least you need to know the path, alt_tag (in case image doesn't load and to make page valid), and a foreign key on the product_id column linking to your products table.  To make things easier on your script you should have all the images in one folder.  The database will do the heavy lifting to sort the pictures to the proper items.  And because you have multiple images for each product you have an "Order_By" column to that table as well to ensure that they are printed in the proper order.
    Lastly is the query.  Your query should have the LIMIT and utilize the "offset" to select the specific rows within that range.  More info on the offset can be found here ( http://dev.mysql.com/doc/refman/5.0/en/select.html ).  The page listing query will select the first image for each product and basic information.  Then run a loop to print X number of items to the screen.  Then for your product detail page gather all the data from the multiple tables and you should be good to go.
    That should get you started.  If you have any questions post back.

  • Start to build my first flash website

    I've learned actionscript form resources like video and
    books. i read some serious tutorials and did many practices and
    small projects. I'm trying to build my first flash website. do i
    need to learn Flex? or anything else? do i need to study some other
    courses? My problem is where to start. what's a structure of a
    professional and serious full flash website? links? components (if
    any)? and ... yes i've worked on small swf files. creating
    actionscript effects, building some easy components before but i'm
    sure they are not enough. and one more thing! is there any good
    practical (and specially free!) tutorials based on this concept?
    (i've already reviewed actionscript.org and kirupa.com, thx!)

    Your first question: subjective to your skillset. http://Zen-Cart.com has their own tutorials/FAQ/Forum that has plenty of information on the subject. Make your determination from the information they provide. It's free... download it and try it yourself to find out, perhaps?
    Second question: you would not build additional product pages. There's only one product page that is populated with data from, wait for it... you guessed it, a database. If you're unfamiliar with working with database data then familiarize yourself with it if you wish to work on dynamic shopping carts.
    I recommend http://Cartweaver.com if you want to work in Dreamweaver on the design and coding of the cart. It is very easy to implement your design into a cartweaver shopping cart.

  • I need to know how I will create a dynamic website using php and mysql

    I need to know how will I create a dynamic website using php and mysql that people could have the abilities of registering in the website, and modify their profile where they can add their pictures and everything. apart from that, they should have the ability to search about other member. hope to here more from you.

    If you are a right-brained creative, and have no previous experience or propensity to be able to understand coding and database "stuff", and/or if your time can be better spent on other skills, I recommend you save your sanity and hire a developer... or at least the first time around. I have been attempting to grasp this for years... and have a library of marked up books to prove my efforts, all while trying to keep up with an ongoing client base that is always cramped. It's a wonder I still have my sanity... then again, I might not be the best person to determine that. Others might question it.
    That said, I still plan to master php... one of these days.

  • POST Installation Error while deploying my First Web Dynpro Tutorial

    Hi Experts,
    I have installed the SAP SneakPreview for java stack on my laptop. Also installed NWDS 7 in the laptop. Then tried the first Web Dynpro tutorial in SDN. But nt able to deploy the Web Dynpro application. My SDM, dispatcher and server0 are running. Infact i gave the settings for the SAP Enterprise Portal and SAP J2EE Engine in the Preferences page. For SAP J2EE Engine i selected the --SAP J2EE engine installed on local host.(second option). Inspite of all these settings it is giving a deployment error. Please do help me out. Thanks a lot in advance.
    The exact error message ::----
    Jul 31, 2007 9:43:16 AM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : CHAK
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/CHAKRA1/LOCALS~1/Temp/temp34211Welcome.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/CHAKRA1/LOCALS~1/Temp/temp34211Welcome.ear
    Aborted: development component 'Welcome'/'local'/'LOKAL'/'0.2007.07.30.22.40.05':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted

    I am having the exact same problem.  I get the "Only Administrators have the right..." error.  I even tried giving all users and groups I could see Administrator rights... probably not a smart thing to do, but hey its my laptop.  I have XP Professional SP2 I think, and passed all the system requirements, and yes I installed the loop back adapter.  I had previously had this same laptop to a point where I could deploy an ear, but the 90 day trial expired.  I then uninstalled and re-installed.  It is frustrating... it seems like it functions differently each time I attempt to install NetWeaver04 SP16.  It would be very nice to be able to complete the ejb tutorial....

  • How I detect in a dynamic website either PHP or CFM or JSP that cookies & javascript are enabled ?

    How I detect in a dynamic website either PHP or CFM or JSP that cookies & javascript are enabled ?

    You do that on the browser end using JavaScript. For cookies, simply establish session variables in PHP or whatever you use. if the browser refuses them, they wil lreturn a respective value in the referrers...
    Mylenium

  • Dynamic website advice needed

    Hi, I need a program that has an easy interface for a
    non-programmer. The
    client is a staffing agency and needs to update the available
    jobs on a
    daily basis. Right now they are using 8 year old software
    called Web Data. I
    would like the program to integrate with DW8 and be easy to
    install.
    Thanks, Ron

    Ron wrote:
    > Hi, I need a program that has an easy interface for a
    non-programmer. The
    > client is a staffing agency and needs to update the
    available jobs on a
    > daily basis. Right now they are using 8 year old
    software called Web Data. I
    > would like the program to integrate with DW8 and be easy
    to install.
    >
    > Thanks, Ron
    You would build a dynamic website with DW that gives your
    client access
    to a secure area where they can add jobs.
    Do you know any serverside languages? If you do, DW can help
    you out, if
    not, then you either need to do some learning, or pay someone
    else do
    this one.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Just published my first iweb website : need reviews and advices

    Hey all,
    I just published my first iWeb website, which I created over the past few days. It's in French and related to my wedding, but I'd be interested in hearing your reviews on how I can improve the website, add new functionalities, and make it even more user friendly.
    I'd like to add a guestbook, but haven't found one that I like enough as off now. I also would like to add more features / multimedia stuff, so any idea is welcome.
    Just a note : our wedding theme is on the 50s, and the colours are brown and old pink. The first pic on the welcome page is a drawing of me and my wife inspired by an old ad we found on internet.
    http://www.davidetcoraline.com/
    I also would like to know if I can have a facebook integration without using MobileMe. I'd like any new article published on the website to be posted directly on my facebook account. Is that possible ?
    Thanks for your reviews.

    FrenchDavid wrote:
    Is there something I can do to allow that zoom command to work properly ?
    David ~ I don't know, but you may be able to find something in the many threads on the topic — click HERE.
    If not, consider using a larger font for your text in iWeb. I run my MB Pro at a non-native resolution so that everything appears bigger — but the text on your site is still uncomfortably small.

  • "First Website" tutorial problem

    Hi all,
    I'm doing this tutorial right now
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt2.html
    When I get to the point to attach style sheet "check_cs5.css" I get a popup error from dreamweaver saying
    "The specified style sheet could not be found. Continue by adding the link/import statement in this page anyway?"
    If I click yes then it pastes the information into the code but nothing actually happens. I searched the forums for this issue and only found one person who had the same problem back in 2004 and their question was never answered.
    Thanks in advance
    MS
    PS - I tried using a dreamweaver template and attaching their styles also but I get the same message

    mszo wrote:
    If I click yes then it pastes the information into the code but nothing actually happens.
    What do you mean 'nothing actually happens'. If you look in code view do you mean that the link to the 'check_cs5.css' style sheet is not there?
    Have you checked in the site folder that 'check_cs5.css' file exists?
    If push come to shove then just manually link it. Copy and paste the below into the <head> section of the code:
    <link href="check_cs5.css" rel="stylesheet" type="text/css" />
    The link above means that the 'check_cs5.css' file resides in your site folder. If it is in another folder in the site folder the link would be:
    <link href="yourFolderName/check_cs5.css" rel="stylesheet" type="text/css" />

  • Creating a Dynamic Node for a Dynamic Graphic - Tutorial

    Hi everyone,
    I'm sharing my first tutorial, hope it'll be helpful for you.
    In the Layout tab, it's possible to create an UI element "Business Graphic". It's a very simple tool that only requires a context node with a category attribute (that means, the values that will appear in the 'x' axis) and one or more series (each one with a color, generally a numerical value). It's possible to add a label for each series for better understanding of the Graphic.
    Although it's a very powerful tool, there are some problems when we must create a graphic with N series and different labels. If the graphic use an ALV or internal table to fetch data, during runtime we can have more or less series. The definition of a static node and generic series is not enough in this case. That's why I'd like to present you this little tutorial to create a dynamic node that fetchs a dynamic graph:
    In the WDDOINIT or Event Handler method that starts the application (once the data is available) we should create the dynamic node in the following way:
      DATA: lr_node_info    TYPE REF TO if_wd_context_node_info,             
                 lt_attributes      TYPE cl_abap_structdescr=>component_table,
                 attribute           LIKE LINE OF lt_attributes,
                 struct_type       TYPE REF TO cl_abap_structdescr,
                 lo_dyn_node    TYPE REF TO if_wd_context_node.
    * Let's suppouse we can LOOP at the data table, so we can fetch the
    * category data type (for example company name, month, year, ...)
    * and each series with a numeric type
      attribute-name = 'CATEGORY'.
      attribute-type ?= cl_abap_datadescr=>describe_by_name( 'STRING' ).
      INSERT attribute INTO TABLE lt_attributes.
      attribute-name = 'SERIE1'.
      attribute-type ?= cl_abap_datadescr=>describe_by_name( 'I' ).
      INSERT attribute INTO TABLE lt_attributes.
      attribute-name = 'SERIE2'.
      attribute-type ?= cl_abap_datadescr=>describe_by_name( 'I' ).
      INSERT attribute INTO TABLE lt_attributes.
    * Once we have all the attributs for the node, we create a formal structure
      struct_type = cl_abap_structdescr=>create( lt_attributes ).
    * Now we can get the context information to add a new node
      lr_node_info = wd_context->get_node_info( ).
    * Create the node
      lr_node_info = lr_node_info->add_new_child_node(
                        name = 'GRPH_DYN'
                        IS_MANDATORY = ABAP_false
                        IS_MULTIPLE = ABAP_true
                        STATIC_ELEMENT_RTTI = struct_type
                        IS_STATIC = ABAP_false ).
    * Now we should populates the node, I'll create a hardcoded table,
    * simulating the internal table that you should already have
      TYPES: BEGIN OF tw_alv,
                        category  TYPE string,
                       SERIE1    TYPE i,
                       SERIE2    TYPE i,
                    END OF tw_alv.
      TYPES: tt_alv TYPE STANDARD TABLE OF tw_alv.
      DATA: lw_alv  TYPE tw_alv,
                  lt_alv   TYPE tt_alv.
      lw_alv-category = 'Alfa'.
      lw_alv-serie1   = 3.
      lw_alv-serie2   = 8.
      APPEND lw_alv TO lt_alv.
      lw_alv-category = 'Beta'.
      lw_alv-serie1   = 4.
      lw_alv-serie2   = 4.
      APPEND lw_alv TO lt_alv.
      lw_alv-category = 'Gamma'.
      lw_alv-serie1   = 1.
      lw_alv-serie2   = 3.
      APPEND lw_alv TO lt_alv.
    * Now let's call the recently created node and bind the lt_alv table.
    * Get node from context
      lo_dyn_node = wd_context->get_child_node( name = 'GRPH_DYN' ).
    * Bind table with ALV Container
      CALL METHOD lo_dyn_node->bind_table
        EXPORTING
          new_items = lt_alv.
    * It's always good to check if the table was succesfully binded.
    * I refresh the lt_alv table and get the values from the node for controlling
      REFRESH lt_alv.
      lo_dyn_node->get_static_attributes_table( IMPORTING table = lt_alv ).
    There are other ways of adding a node structure in the method add_new_child_node, but it works for me only with STATIC_ELEMENT_RTTI. The node is now created and has the data required for the graphic. Now, we should go to WDDOONMODIFYVIEW, or save the target view as a parameter, to create the graphic, bind the category and series and show it on the screen.
      DATA: lr_graph       TYPE REF TO cl_wd_business_graphics,
                  lr_cat           TYPE REF TO cl_wd_category,
                  lr_series1    TYPE REF TO cl_wd_simple_series,
                  lr_series2    TYPE REF TO cl_wd_simple_series,
                  lr_container TYPE REF TO cl_wd_uielement_container,
                  lr_flow         TYPE REF TO cl_wd_flow_data.
    * Get the root element from the Layout or the specific
    * container you have created for the graphic
      lr_container ?= view->get_element( 'ROOTUIELEMENTCONTAINER' ).
    * Creates a line busniess graph
      lr_graph = cl_wd_business_graphics=>new_business_graphics(
            BIND_SERIES_SOURCE = 'GRPH_DYN'
            CHART_TYPE = cl_wd_business_graphics=>e_chart_type-lines
            HEIGHT = 340
            WIDTH = 750
            ID = 'GRAPH'  ).
    * Create the flow data for the new UI Element business graphic
      lr_flow = cl_wd_flow_data=>new_flow_data( element = lr_graph ).
    * Set graph in the root container from the Layout tab
      lr_container->add_child( lr_graph ).
    * Bind the category from the dynamic node to the dynamic graphic
      lr_cat = cl_wd_category=>new_category(
                      view = view
                      bind_description = 'GRPH_DYN.CATEGORY'
                      tooltip = 'Company Name' ).
      lr_graph->set_category( lr_cat ).
    * Bind the two series from the dynamic node to the dynamic graphic
      lr_series1 = cl_wd_simple_series=>new_simple_series(
                      bind_value = 'GRPH_DYN.SERIE1'
                      label = 'Sales'
                      view = view
                      tooltip = 'Average Sales' ).
      lr_graph->add_series( lr_series1 ).
      lr_series2 = cl_wd_simple_series=>new_simple_series(
                      bind_value = 'GRPH_DYN.SERIE2'
                      label = 'Purchases'
                      view = view
                      tooltip = 'Average Purchases' ).
      lr_graph->add_series( lr_series2 ).
    Finally we have created our business graphic. Test the application and you'll see something like the attached image.
    Hope you'll find it useful.
    Daniel Monteros.

    Hi,
    http://htmldb.oracle.com/pls/otn/f?p=26372
    then ApEx>Trees and pick a level.
    Use Help for more information.
    I you think that tree could help I will put more explanation into help page.
    Konstantin

  • How to upload a dynamic website?

    Hi All,
    I have made a project on Netbeans 6.1 using JSF architecture and Apache Tom Cat 6.0.14. The database is Microsoft Sequel Server 2005. I want to host it on a website. I am prepared to purchase web space for web hosting.
    What features should be available in the web hosting package? Is there any good company that provides it? This is the first time I am doing it. I have a rough idea that the .war file of the project is required. What files should be added on the web space that enables proper functioning? Any tutorial or references are welcome.
    Thanks
    Best Regards

    1) You need to Buy Java Web Package.
    2) Find Out Hosting Operating System ( Windows /Unix....)
    3) Find out with the seller Which Webserver they are providing to you ( Jboss , Tomcat , Glassfish...)
    4) Find out which DB they are providing to you
    5) Based these parameters you need to change your developed projects if required other wise you can directly deploy
    Regards
    Vijay

  • Projector stuck on first frame on iMac

    Hi,
    I'm having a really weird problem. My projector version 11.5 and 12 gets stuck on an iMac with osx 10.8.2 on the first frame. Only way to make it progress is to disable the "run on background" and repeatedly deactivate and activate the projector window. Every activation progresses the movie for one frame. I tried this with a really simple movie with just two pics. On my MacBook Pro with same osx version everything works fine. And my old well tested projector works everywhere else.
    Does anyone have any idea why this might be happening?
    Best Regards,
    Lassi

    Thanks for the quick response and sorry for taking so long to answer.
    In the end, after lots of testing, I installed Director on the specific computer. Surprisingly the movie didn't progress on frames even in the author mode. At that point I decided to reboot the iMac, and that fixed the problem
    So anyone who's having Macintosh and Os X with the projector not starting, being stuck or not progressing in the movie, try restarting the machine.

  • Dynamic website with Flash?

    I'm using Dreamweaver 8 building a coldfusion website. The
    content for
    the webpages are pulled from an MS Access database. I'm
    trying to add
    in a flash photo gallery to a few of the pages. If I put the
    flash
    code directly on the webpage it will dispaly the flash photo
    gallery.
    However, if I put that same code into the database and
    display it
    dynamically it will not display the flash photo gallery. I
    have
    checked the source code of the dynamic page after it has
    loaded and
    the code is there.
    I'm sure the problem has something to do with the slight
    delay it
    takes for the code to be pulled from the database. Does
    anyone know of
    a fix for this?
    The html for both the static and dynamic page look exactly
    the same if
    you view the source code after the page has loaded. any help
    is
    GREATLY appreciated, thanks!
    here is a chunk of the flash code that is being inserted:
    <td width="492">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://fpdownload.macromedia.com/pub/
    shockwave/cabs/flash/
    swflash.cab#version=8,0,0,0','width','474','height','454','id','CoffeeCup','align','right' ,'src','finaltemplateCoffee','quality','high','bgcolor','#ffffff','name','CoffeeCup','scal e','noscale','salign','lt','pluginspage','
    http://
    www.macromedia.com/go/getflashplayer','movie','finaltemplateCoffee'
    ); //end AC code
    </script><noscript><object
    classid="clsid:d27cdb6e-
    ae6d-11cf-96b8-444553540000"
    codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/
    swflash.cab#version=8,0,0,0"
    width="474" height="454" id="CoffeeCup" align="right">
    <param name="movie" value="finaltemplateCoffee.swf"/>
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="salign" value="lt" />
    <param name="bgcolor" value="#ffffff" />
    <embed src="finaltemplateCoffee.swf" quality="high"
    bgcolor="#ffffff"
    width="474" height="454"
    name="CoffeeCup" scale="noscale" salign="lt" align="right"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    /></
    object></noscript>
    </td></tr>

    Usually the best source of information on working with a
    template is from the site where you purchased the template. There
    may be supplimental information packaged with the downloaded files,
    or there may be comments written directly into the files
    themselves.
    Exactly how you modify the file will depend on how it was
    designed, what version of Actionscript was used, whether it uses a
    component, or an swc file, and how well it was created.

Maybe you are looking for

  • One or more field types are not installed properly. Go to the list settings page to delete these fields.

    Hi Team, I have created Administrator -approved Infopath form template to my site and activated same template in CA. I have used this template in one of my Form library and i can able to submit the Form with success to the library. when i click "View

  • I lost my time machine's password ! how can i get it back ?

    Hello So i bought a hard disk and i thought it might be better add a password. Now guess what i lost it. so how can i get my password back ? thank you PS: I can understand french or english

  • Material number numeric only

    Hi team, I have customized the material type ,(ROH) to 1001;my requirement is material should be only numericals like 11000250,,,,,its asking for alpha numeric,so plz help to come out of this issues,,,, In T-code- mmnr (i have given external numberin

  • Use OIM 11g UI directly for password resets

    1. What is the best practice in using OIM for password resets? Two options that i have usually heard of are writing a custom app or UI and use OIM APIs for password resets. The other is use OIM UI directly. Are there any other options. 2. Of the two

  • CHaRM 2 system landscape possible??

    Hi Solman experts, I have a question. Is CHaRM possible in a 2 system landscape without creating extra clients? For example: BWDEV100 - >DWPRD100 Thanks in advance. Regards, Ricky