Paypal ecommerce toolkit!

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Paypal ecommerce toolkit!

    Hei,

    Some nice people directed me to download "Paypal ecommerce toolkit for
    Dreamweaver" from [url]www.webassist.com[/url] site.

    I did. But I am new guy.

    What are some of the next few steps required to mix dreamweaver and the
    toolkit for them to be working together?

    I mean like install the toolkit and it automatically goet to dreamweaver, or
    manually put it, or where in dreamweaver I find it later etc. Just a few tips,

    Thanks you for all those help me in the first place.

    Mathuman

    mathuman Guest

  2. Similar Questions and Discussions

    1. Dynamic Shopping Cart and Paypal Ecommerce toolkit
      Hei This "paypal ecommerce toolkit" I downloaded from webassist is working alright. But I think I have to manually and individually attach the...
    2. looking for ecommerce app
      I am new to ecommerce and am looking for an application that runs well with Dreamweaver MX and is easily customized. ie: adding multiple products to...
    3. Best eCommerce Cart for DW
      I'd appreciate some feedback on the best, most easily set up eCommerce shopping card for DW. I'm trying to work with the osCommerce cart and its...
    4. [PHP] Novice in eCommerce
      I think I finally found my answer to the missing piece: from DevShed.com URL: http://www.devshed.com/Server_Side/Administration/CREDIT/ Looks...
    5. paypal and ecommerce
      Maybe it's just me, but I don't quite understand what you mean by this: "The problem is, when we allow anyone to post items, you may go to the...
  3. #2

    Default Re: Paypal ecommerce toolkit!

    Hi Mathuman:
    There are several ways to install the extension:
    The easiest way is double clicking on the mxp file you should have
    downloaded. A program called Extension Manager will open and will prompt you
    to accept some license agreements (click accept). It's recommended to keep
    DW closed at this point (if it's open, you will have to restart it later).

    When the extension has been installed, you should see it in the list of
    installed extensions in Extension Manager. Selecting it will display some
    info about it. It's very likely that the info will include the menu or menus
    from where you can access the extension in DW.

    Now, you have both the extension installed and the info you need to use it:
    Open DW and happy Paypalin' 8-)

    --
    Andres Cayon
    Spain Adobe Dreamweaver User Group
    [url]http://www.dwug.es[/url]
    ----------------------


    "mathuman" <webforumsuser@macromedia.com> escribió en el mensaje de noticias
    news:ghsa89$krv$1@forums.macromedia.com...
    > Hei,
    >
    > Some nice people directed me to download "Paypal ecommerce toolkit for
    > Dreamweaver" from [url]www.webassist.com[/url] site.
    >
    > I did. But I am new guy.
    >
    > What are some of the next few steps required to mix dreamweaver and the
    > toolkit for them to be working together?
    >
    > I mean like install the toolkit and it automatically goet to dreamweaver,
    > or
    > manually put it, or where in dreamweaver I find it later etc. Just a few
    > tips,
    >
    > Thanks you for all those help me in the first place.
    >
    > Mathuman
    >
    Andres Cayon Guest

  4. #3

    Default Re: Paypal ecommerce toolkit!

    Hei Andres,

    Thanks heaps. It is working now. It basically installs it by itself.

    I had another questions regarding this issue.

    This "paypal ecommerce toolkit" I downloaded from webassist is working
    alright. But I think I have to manually and individually attach the shopping
    cart system for each product on the website. These paypal toolkit come under
    "Insert" menu. But I do not think they are server behaviors. As such they do
    not work dynamically in sync with database.

    Am I right?

    Do you know why this can be done Dynamically? Or where to download "paypal
    server behaviors" which dynamically generates the "add to cart" button and the
    product info in sync with Database.

    Thanks again,
    Mathuman

    mathuman Guest

  5. #4

    Default Re: Paypal ecommerce toolkit!

    It's very likely that you must send the product_id to Paypal, so it
    shouldn't be hard to put the "add to cart" button inside a repeat region and
    edit the static code added by the toolkit to work with dynamic data. e.g:
    static code:
    <a href="http://paypal.com?productid=23">add to cart</a>

    Dynamic code:
    <?php do { ?>
    <a href=http://paypal.com?productid=<?php echo $row_Recordset1['id'];
    ?>">Add to cart</a>
    <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>

    This way, the id sent to paypal is dynamically addet to each item
    --
    Andres Cayon
    Spain Adobe Dreamweaver User Group
    [url]http://www.dwug.es[/url]
    ----------------------


    "mathuman" <webforumsuser@macromedia.com> escribió en el mensaje de noticias
    news:gi4cfb$t3m$1@forums.macromedia.com...
    > Hei Andres,
    >
    > Thanks heaps. It is working now. It basically installs it by itself.
    >
    > I had another questions regarding this issue.
    >
    > This "paypal ecommerce toolkit" I downloaded from webassist is working
    > alright. But I think I have to manually and individually attach the
    > shopping
    > cart system for each product on the website. These paypal toolkit come
    > under
    > "Insert" menu. But I do not think they are server behaviors. As such they
    > do
    > not work dynamically in sync with database.
    >
    > Am I right?
    >
    > Do you know why this can be done Dynamically? Or where to download "paypal
    > server behaviors" which dynamically generates the "add to cart" button and
    > the
    > product info in sync with Database.
    >
    > Thanks again,
    > Mathuman
    >
    Andres Cayon Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139