FAQ
 
Install a new version of an extension and Dw use the old one

The problem is the Dw cache file.
To remove the Dw cache you must delete the Dw cache file located in the Dw configuration folder:

Configuration folder location in windows computers:
C:\Documents and Settings\<User>\Application Data\Adobe\Dreamweaver 9\Configuration\WinFileCache-xxxxxx.dat

Configuration folder location in Mac computers:
On Mac OS: Macintosh HD:Users:MAC_User:Library:Application Support:Macromedia:Dreamweaver MX 2004:Configuration:MacFileCache-xxxxxx.dat



The Upload start but I receive the error: Permission denied
You have a Folder permission problemDetail page

30 days money back guarantiee
DwZone offers a 30 Day Money Back Guarantee for our Dreamweaver extensions if fall into any one of the following categories:
  • You have made a double purchase
  • Refunds are only issued within 30 days from the date the product was purchased
  • Our product has design flaws and/or bugs preventing you from working properly.
  • Our product did not work as advertised.
  • The product has been verified that it is not working properly by DwZone support team. It is your responsibility to ensure the product(s) will run on your computer/server/Internet browser and will serve the purpose for which you purchase it. We do not provide refund for issues due to environment in which the code of our product(s) is used (This includes but not limited to server security settings and software, browser settings, and third-parties products)

    In case of bugs the refund is approved only if we cannot release a new version that fix the bugs in max. 5 days from the request date.

  • If you fall into any of these categories, you may contact us and request a refund.
    To request a refund you must use the following link and fill all the required fields. Ask a refund


    The Upload start but I receive the error: Write File Failed
    You have a Folder permission problemDetail page

    ASP error 0131: disabled parent paths
    configuring my extensions to support disabled parent paths in IISDetail page

    The upload don't start and the page is blank
    You have a problem on AntiVirus settingsDetail page

    Advanced Mail: When does the "Advanced Mail" Component get executed?
    My code work in 2 different system: if you apply my extension in a page with a form the mail will be send on the onSubmit event of the form and if you apply my extension in a page without a form the mail is send on the onLoad event of the page.

    Advanced Mail:
    Should I Create a registration Page using "Advanced Mail" or should I usebuilt-in Dreamweaver components and just use "Advanced Mail" for the email part?

    You have 2 method to create a registration page:

    1° method) You need use my AdvMail extension and the standard Insert Record Dw server behavior.

    - Create a 1° page with the registration form

    - Apply to this page the standard Insert Record Dw server behavior and insert the data in the Db

    - Redirect to a 2° page

    - in the second page create a query to retrieve the last record Id from your Db.

    - Redirect to a 3° page and pass to this page the record id in the queryString

    - In this page apply my extension without form or any other visual code (only my extension).

    - In this page, with my extension, create a query to get the values from the record inserted** and set all the parameters for the mail you need send.

    ** To create the query to get the last record you have 2 method:

    1°) use the "order by" in the sql and order for the ID field in DESC mode, so the first record will be the record you find. In this case you must also put the "TOP 1" parameters in the select.
    The result query must be:
    SELECT TOP 1 YourTable.* from YourTable ORDER BY ID DESC
    this will give you the last record.

    2°)Insert an hidden field in the form like
    <input type=hidden name=sessionId value="<%=session.sessionId%>" >
    Insert a Field in the DB and call this field SessionId
    In the insert behavior put the value of the sessionId form field in the sessionId DB field.
    Create the query to get the field like:
    "SELECT TOP 1 YourTable.* from YourTable where SessionId = '" & session.sessionId & "' ORDER BY ID DESC"
    The second is a method more sure because if there are 2 user that create the record in the same time with the second you will be sure to get the right record.



    2° method) You need my AdvMail extension and my PlugIn

    With my plugIn you can do all in the same page so

    Create a page with the registration form

    - Apply to this page extension and set all the parametrs for the mail you need send

    - Apply the InsertRecord PlugIn to insert the data from the form to the Db