Did DW update 8.0.2 change the code?

I would really appreciate a look into this problem. I I have
ordered some Interakt extensions and have noticed the code changed
on me (see lots below). But then I went to another machine with the
8.0.2 update with NO EXTENSIONS ENABLED or the Interakt installed
and I get the same code change. I have posted this to Interakt as
well so I am looking for a reason for this bizzare problem. I have
a client who has already paid up front for a quite involved dynamic
site and I cant get the folders, database and connections strings
to work together like the site before the extensions and upgrade.
Posted to Interakt:
I have been at this for 5 days now and I am at a complete and
total loss and do not have a clue why this is happening. But I can
say that this problem started AFTER I installed the Interakt
products KHTML4, Kollection3, MxCalendar, MX CSS Menus AND/OR
DW8.0.2. - I don't know which came first.
Several months back I created a web site
www.bobbygainesfunktion.com - site works. I was not using the
products or upgrade (pretty sure) upgraded DW, then I bought the
Interakt products 3 weeks ago hoping I could make fabulous websites
but I am not able to do the simplest thing like create a folder and
link to the database ASPVBScript style. I keep getting a reoccuring
error and the code has also changed in how the pages are created
dynamically.
I created the funktion site without the upgrade and the
products - about 90% sure. I was able to create a folder and link
to the database from inside it with no problem.
The code is as follows for the page as well as its
cooresponding connection file:
PAGE
BAND.ASP
%@LANGUAGE="VBSCRIPT"%
<!--#include file="Connections/connfunktion2.asp" -->
<%
Dim tourlist
Dim tourlist_numRows
Set tourlist = Server.CreateObject("ADODB.Recordset")
tourlist.ActiveConnection = MM_connfunktion_STRING
tourlist.Source = "SELECT * FROM Gig WHERE GStamp >=
Date() ORDER BY GStamp ASC"
tourlist.CursorType = 0
tourlist.CursorLocation = 2
tourlist.LockType = 1
tourlist.Open()
tourlist_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = 4
Repeat1__index = 0
tourlist_numRows = tourlist_numRows + Repeat1__numRows
%>
CONNECTION PAGE; connfunktion2.asp:
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="true"
' Catalog=""
' Schema=""
Dim MM_connfunktion_STRING
MM_connfunktion_STRING =
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
Server.MapPath("data/funkdata.mdb")
%>
Band.asp is located in the root of the directory so the
address to the connection file: Connections/connfunktion2.asp
works.
A FILE IN FOLDER CALLED ADMIN:
GIGLIST.ASP
<!--#include file="../Connections/connfunktion.asp" -->
<%
Dim seeGig
Dim seeGig_numRows
Set seeGig = Server.CreateObject("ADODB.Recordset")
seeGig.ActiveConnection = MM_connfunktion_STRING
seeGig.Source = "SELECT * FROM Gig ORDER BY GStamp ASC"
seeGig.CursorType = 0
seeGig.CursorLocation = 2
seeGig.LockType = 1
seeGig.Open()
seeGig_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
seeGig_numRows = seeGig_numRows + Repeat1__numRows
%>
CONNECTION PAGE: Connfunktion.asp
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="true"
' Catalog=""
' Schema=""
Dim MM_connfunktion_STRING
MM_connfunktion_STRING =
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
Server.MapPath("/data/funkdata.mdb")
%>
Note that the addresses have changed for both the Map.Path
and the include file to accomidate the folder.
THIS SITE WORKS
Now That I have bought the Interakt product AND/OR upgraded
to DW8.0.2 I cannot for the life of me replicate this process.
The following address is live:
http://www.homecomputertutor-sc.com/twoconn/admin/
This uses the exact same method of connection file and
database address change.
Index page in folder named admin:
@LANGUAGE="VBSCRIPT" CODEPAGE="1252"
<!--#include file="../Connections/twoconn.asp" -->
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
Recordset1_cmd.CommandText = "SELECT * FROM News"
Recordset1_cmd.Prepared = true
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
NOTICE A DIFFERENCE! -
{{{Dim Recordset1_cmd
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
Recordset1_cmd.CommandText = "SELECT * FROM News"
Recordset1_cmd.Prepared = true}}}
This is the line of code that is failing:
Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
Connection File code:
<%
' FileName="Connection_odbc_conn_dsn.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="true"
' Catalog=""
' Schema=""
Dim MM_twoconn_STRING
MM_twoconn_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=" & Server.MapPath("/database/twoconn.mdb")
%>
Have I upgraded to DW8.0.2 since the creation of Funktion - I
think. Could this be a Dreamweaver problem and not yours - I don't
know. I would appreciate a good look into this.
Thanks so very much,
Katherine Wakefield
[email protected]

Part of the 8.0.2 update of DW8 was to secure recordsets to
prevent SQL
injection attacks. This has caused some problem with
extensions that work
with or create recordsets and extension developers have been
working to make
their extensions work with the new code.
It was my understanding that Interakt had published updates
of all their
affected extensions for 8.0.2. I found this technote on their
site that
should answer a lot of your questions. If it doesn't, they
have extensive
forums on their site for all of their products.
http://www.interaktonline.com/Support/Knowledgebase/Technote/Details/217/15/Working+with+t he+latest+InterAKT+Extensions+Dreamweaver+8.0.2+compatible.html
Nancy Gill
Adobe Community Expert
BLOG:
http://www.dmxwishes.com/blog.asp
Author: Dreamweaver 8 e-book for the DMX Zone
Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
2003)
Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
A Beginner's
Guide, Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
Web Development
"Awakekats" <[email protected]> wrote in
message
news:[email protected]...
>I would really appreciate a look into this problem. I I
have ordered some
> Interakt extensions and have noticed the code changed on
me (see lots
> below).
> But then I went to another machine with the 8.0.2 update
with NO
> EXTENSIONS
> ENABLED or the Interakt installed and I get the same
code change. I have
> posted
> this to Interakt as well so I am looking for a reason
for this bizzare
> problem.
> I have a client who has already paid up front for a
quite involved dynamic
> site
> and I cant get the folders, database and connections
strings to work
> together
> like the site before the extensions and upgrade.
>
> Posted to Interakt:
>
> I have been at this for 5 days now and I am at a
complete and total loss
> and
> do not have a clue why this is happening. But I can say
that this problem
> started AFTER I installed the Interakt products KHTML4,
Kollection3,
> MxCalendar, MX CSS Menus AND/OR DW8.0.2. - I don't know
which came first.
>
> Several months back I created a web site
www.bobbygainesfunktion.com -
> site
> works. I was not using the products or upgrade (pretty
sure) upgraded DW,
> then
> I bought the Interakt products 3 weeks ago hoping I
could make fabulous
> websites but I am not able to do the simplest thing like
create a folder
> and
> link to the database ASPVBScript style. I keep getting a
reoccuring error
> and
> the code has also changed in how the pages are created
dynamically.
>
> I created the funktion site without the upgrade and the
products - about
> 90%
> sure. I was able to create a folder and link to the
database from inside
> it
> with no problem.
> The code is as follows for the page as well as its
cooresponding
> connection
> file:
> PAGE
> BAND.ASP
> ##########
> %@LANGUAGE="VBSCRIPT"%
>
> <!--#include file="Connections/connfunktion2.asp"
-->
> <%
> Dim tourlist
> Dim tourlist_numRows
>
> Set tourlist = Server.CreateObject("ADODB.Recordset")
> tourlist.ActiveConnection = MM_connfunktion_STRING
> tourlist.Source = "SELECT * FROM Gig WHERE GStamp >=
Date() ORDER BY
> GStamp
> ASC"
> tourlist.CursorType = 0
> tourlist.CursorLocation = 2
> tourlist.LockType = 1
> tourlist.Open()
>
> tourlist_numRows = 0
> %>
> <%
> Dim Repeat1__numRows
> Dim Repeat1__index
>
> Repeat1__numRows = 4
> Repeat1__index = 0
> tourlist_numRows = tourlist_numRows + Repeat1__numRows
> %>
> #####
> CONNECTION PAGE; connfunktion2.asp:
> <%
> ' FileName="Connection_ado_conn_string.htm"
> ' Type="ADO"
> ' DesigntimeType="ADO"
> ' HTTP="true"
> ' Catalog=""
> ' Schema=""
> Dim MM_connfunktion_STRING
> MM_connfunktion_STRING =
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> Server.MapPath("data/funkdata.mdb")
> %>
>
> Band.asp is located in the root of the directory so the
address to the
> connection file: Connections/connfunktion2.asp works.
>
> A FILE IN FOLDER CALLED ADMIN:
> GIGLIST.ASP
> #####
> <!--#include file="../Connections/connfunktion.asp"
-->
> <%
> Dim seeGig
> Dim seeGig_numRows
>
> Set seeGig = Server.CreateObject("ADODB.Recordset")
> seeGig.ActiveConnection = MM_connfunktion_STRING
> seeGig.Source = "SELECT * FROM Gig ORDER BY GStamp ASC"
> seeGig.CursorType = 0
> seeGig.CursorLocation = 2
> seeGig.LockType = 1
> seeGig.Open()
>
> seeGig_numRows = 0
> %>
> <%
> Dim Repeat1__numRows
> Dim Repeat1__index
>
> Repeat1__numRows = -1
> Repeat1__index = 0
> seeGig_numRows = seeGig_numRows + Repeat1__numRows
> %>
> ####
> CONNECTION PAGE: Connfunktion.asp
> <%
> ' FileName="Connection_ado_conn_string.htm"
> ' Type="ADO"
> ' DesigntimeType="ADO"
> ' HTTP="true"
> ' Catalog=""
> ' Schema=""
> Dim MM_connfunktion_STRING
> MM_connfunktion_STRING =
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> Server.MapPath("/data/funkdata.mdb")
> %>
>
> Note that the addresses have changed for both the
Map.Path and the include
> file to accomidate the folder.
>
> THIS SITE WORKS
>
> Now That I have bought the Interakt product AND/OR
upgraded to DW8.0.2 I
> cannot for the life of me replicate this process.
>
> The following address is live:
>
http://www.homecomputertutor-sc.com/twoconn/admin/
>
> This uses the exact same method of connection file and
database address
> change.
>
> Index page in folder named admin:
> @LANGUAGE="VBSCRIPT" CODEPAGE="1252"
> <!--#include file="../Connections/twoconn.asp" -->
> <%
> Dim Recordset1
> Dim Recordset1_cmd
> Dim Recordset1_numRows
>
> Set Recordset1_cmd = Server.CreateObject
("ADODB.Command")
> Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
> Recordset1_cmd.CommandText = "SELECT * FROM News"
> Recordset1_cmd.Prepared = true
>
> Set Recordset1 = Recordset1_cmd.Execute
> Recordset1_numRows = 0
> %>
> <%
> Dim Repeat1__numRows
> Dim Repeat1__index
>
> Repeat1__numRows = -1
> Repeat1__index = 0
> Recordset1_numRows = Recordset1_numRows +
Repeat1__numRows
> %>
> NOTICE A DIFFERENCE! -
>
> {{{Dim Recordset1_cmd
> Set Recordset1_cmd = Server.CreateObject
("ADODB.Command")
> Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
> Recordset1_cmd.CommandText = "SELECT * FROM News"
> Recordset1_cmd.Prepared = true}}}
>
> This is the line of code that is failing:
> Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
>
> ####
> Connection File code:
>
> <%
> ' FileName="Connection_odbc_conn_dsn.htm"
> ' Type="ADO"
> ' DesigntimeType="ADO"
> ' HTTP="true"
> ' Catalog=""
> ' Schema=""
> Dim MM_twoconn_STRING
> MM_twoconn_STRING =
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> Server.MapPath("/database/twoconn.mdb")
> %>
>
> Have I upgraded to DW8.0.2 since the creation of
Funktion - I think. Could
> this be a Dreamweaver problem and not yours - I don't
know. I would
> appreciate
> a good look into this.
>
> Thanks so very much,
> Katherine Wakefield
> [email protected]
>
>
>

Similar Messages

  • HT6203 Did this update make a physical change? Branching from that question, will this update confuse lets say, a parent that isn't savvy?

    Did this update make a physical change? Branching from that question, will this update confuse lets say, a parent that isn't savvy?

    Did this update make a physical change?
    No
    will this update confuse lets say, a parent that isn't savvy?
    This will depend on whether they are savvy enough to open Macintosh HD > Applications > Utilities > AirPort Utility on their Mac , click on the picture of the AirPort, and then click the Update button.
    It that sounds too complicated, best to let someone else handle the update.

  • I have a Mac book pro and I did an update for itunes and now the itunes application won't open t

    I have a Mac book pro and I did an update for itunes and now the itunes application won't open

    Yes. Check to see if the iTunes application has been moved or renamed before installing it.
    (67527)

  • HT1848 I rented four movies on my mac and then transfered them to my iPad, i then did an update to my iPad, now the rentals are not on my ipad nor my mac. I did not watch them and I was charged for them. How do find them and transfer back on my iPad

    I rented four movies on my mac and then transfered them to my iPad, i then did an update to my iPad, now the rentals are not on my ipad nor my mac. I did not watch them and I was charged for them. How do find them and transfer back on my iPad

    If you moved them to your iPad then they will have been removed from your Mac.  If they are no longer in the iPad's Videos app following the update then you will need to try contacting iTunes support and see if they will let you re-download them : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Changing the Software Update preference file to change the Scheduled Check

    Hi All,
    I have 500 users and an XServe which I use to push out the software updates.
    I've changed the plist file to point at the server, but I am now thinking as some users haven't got auto check, some have, is there a way to edit the preference to force the OS to check for updates.
    I dont fancy going round every Mac to check manually, I'd prefer just to push out a plist file through ARD,
    Any thoughts
    Alan

    Hi,
    Most of that is in...
    /Users/TheirUserName/Library/Preferences/com.apple.scheduler.plist
    But how to do it is in...
    /Users/TheirUserName/Library/Preferences/ByHost/com.apple.SoftwareUpdate.0009383bd427.plist
    Bold part changed for obscurity, and will be likely different for every user... seems to contain shortname, but 12 digits always it seems.

  • Can I update my phone without changing the interface/design?

    I haven't updated my iPhone 4S in ages - I think I may still be using IOS 4 or IOS 5. I love the old interface, and I really, really don't want to have to change to the new interface (I've seen it and it looks completely different). I'm very fond of how safari works, how pass code locking works, how photo albums are designed, the proccess of clearing apps - everything. The problem is that there are a few apps I'd like to download that require IOS 6 or above. My question now is either,
    1) is it possible to update your phone without changing the design/interface
    2) is it possible to download IOS 6 or 7 apps on an earlier version phone without updating the entire phone
    Thanks so much

    1. No.
    2. No.

  • I did not update my iPad 3 with the last update, will that affect me updating to IOS 6?

    I did not update my iPad 3 with the last update, will that affect me updating to the new IOS 6? Will I get all the updates I missed in the previous update if I update to IOS 6. If not, tell me where to go to get the last update before I update to IOS 6. I thought I had time before this new one came out. Thanks for any help I get.

    You can update directly to iOS 6 now. Not updating to iOS 5.1.1 does not matter. If you have updated the iPad before, you know what to do.

  • How do we change the code of incoming emails?

    Prior to downloading the latest version of Firefox, we were able to access the code-changing service via the orange button in the top left corner of the screen.
    The latest version has done away with that orange button and its associated drop-down menu, wherein we used to be able to change the transmission code of incoming emails to Unicode.
    How can we change the codes now?
    It is very disappointing that you make stupid changes without any notification.
    What was wrong with the old orange button, that it HAD to be changed?
    It appears that some ignorant newbie, who is unaware of what is really going on decides to make a name for himself, making cosmetic changes – simply for the sake of making changes!!!
    Whenever changes are made, they firstly should be absolutely necessary; and secondly your users should be notified of the implications of any changes.
    The current disregard of customers is just not good enough!!!
    Since the loss of the orange button, we have been forced to perform the tedious, time-consuming task of editing each email which is to be stored, removing all the ASCI-type codes from the text. Previously, Firefox altered the transmission code on request – MUCH simpler & MUCH quicker & MUCH more convenient!!!
    How are we supposed to get Firefox to do the change?? Pray tell.

    Hi, I am sorry that you do not like the changes in Firefox 29. I would be happy to help you with the problem that you have.
    Mozilla did not completely remove the menu function that you are talking about. If you look at the top left side of the browser you will see an icon with three horizontal lines. This has the same function as the Firefox button that you talked about. It is customizable and takes up less space when configured this way. That was the rational behind the change. From this point you click on options. After that it is all the same. I hope this helps. If you are really unhappy with the changes to Firefox 29 I wold recommend that you let Mozilla know. Everyone here is a volunteer that is passionate about helping users. Here is the link [https://input.mozilla.org/en-US/feedback Mozilla feedback]

  • When i copy code from DW to BC it change the code inside BC

    Hi
    I'm uploaded a html page to a BC account from Dreamweaver and BC changed some of the code,
    I tryed to open the Site Manager / Pages and the page i uploaded and did a copy & past to get the code inside, but it still changes the code.
    Im trying to get the code <i class="icon-caret-down"></i> in but it change that code to <em class="icon-caret-down"></em>
    Anyone know why this is happening or how i can go about this??
    Best
    Morten Håland - Sitespark

    The editor inside BC is XHTML compliant and will edit things into that format unfortunatly. Try to avoid using it for anything other then content.

  • I changed the code for saving usernames and passwords, it didn't work, so I restored a backup of the code I had made, now usernames and passwords don't work at all. Help?

    I found a method online to force firefox to save usernames and passwords which the site itself requested not to be saved. I made a backup of the file on my hard drive, moved it to the desktop, changed the code and tried it. It didn't work as expected so, I deleted that file, returned the original file to it's appropriate place and restarted firefox. Now it won't save ANY passwords or user names, even on sites it previously did so. I've tried reinstalling over the existing copy, and would REALLY prefer not to uninstall/reinstall since I have a ton of bookmarks, addons etc, which I don't want to have to restore. Has anyone encountered this issue? or have a suggestion on how to fix it?

    Do you still see names and passwords in the Password Manager?
    Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    You can still reinstall Firefox. Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected.
    See also http://kb.mozillazine.org/Password_Manager (Troubleshooting)

  • How to change the code page on windows 2008 r2 ?

    How do I configure a specific code page on windows 2008 r2 ?
    I understand that I can go into control panel and change regional settings but if  want to change the code page from one codege to say CP850 how do i do that ?.
    There is no option in the control panel to select  code page ?
    Thanks

    Hi,
    I have followed the below steps which did not cause any issue to my server. Have a full latest backup and then follow the below steps.
    Create a start up batch file that includes all the commands you want.
    Then edit the registry to point to your start up file.
    http://technet.microsoft.com/en-us/library/cc779439%28WS.10%29.aspx
    c:\startup.cmd
    @echo off
    chcp 437
    HKLM\SOFTWARE\Microsoft\Command Processor
    AUTORUN="C:\startup.cmd"
    Thanks,
    Umesh.S.K

  • I live in the UK but visit the US regularly. The price of a new MacBook Pro is much less in the US, and is where I plan to buy one. However, I have read that a US machine will not play UK DVD's. Is this true and if so is it possible to change the codes?

    I live in the UK but visit the US regularly. I plan to buy a MacBookPro in the US but have read that it will not play UK DVD's. Is this so? If so, is it possible to change the codes?

    All modern & new Macs can play both PAL and NTSC DVDs.  I do it all the time and it works perfectly.
    The DVD drive is set to its first region code when you first play a DVD in it.  So when you buy a Mac, whatever type of DVD you play first will determine the initial region code that is set.   If it's a PAL/Region 2 DVD it will set the DVD drive to region 2.
    The only thing you have to watch out for is if you have a collection of DVDs that have different region codes.  In those cases you may be faced with changing the region code in the DVD drive in order to play one or more of the DVDs; and as others have noted there is a limit to the number of times you can change the region code (most modern DVD drives allow up to 5 changes; the 5th change becomes the permanent change).  This is due to industry licensing practices.
    If you have DVDs that are Region 0 or All Regions you don't have to worry about region codes.

  • How to skip a selection screen mandatory field in debugging mode with out changing the code?

    Hi Team,
    In my report there is two fields on selection screen, one is obligatory field , but i just want to execute the report(for testing per pus) with out entering  the data for the mandatory field with out changing the code. could u let me know which event and how to debug the report. or else  in debugging mode how can i change that field as non mandatory field.
    Regards,
    Venkat.

    If the value is not of importance how come it became obligatory in your program?
    Any how you can do one thing...Put some value in your obligatory field, put a debugger point where you are interested in  and use the pencil tool to change the value of the field while debugging. 
    Regards,
    Philip.

  • Can I change the code region again after the 5th time?

    Hello! I wanted to know if it was possible to change another time the code region on the dvd player to the original one after the fifth try? Also when I put a DVD of a different zone, it says I have one last try to change the code region but when I do it doesn't  work ... Thanks for your help

    Allegedly, if you wipe out your system...per David Pogue.  Do a Google & You Tube "How To" search. 

  • My iPad Air is locked (my brother change the code, so I don't know it) and is not connected to the internet, in more Find my iPhone is activate, so what i can do to find the pass code?

    My iPad Air is locked (my brother change the code, so I don't know it) and is not connected to the internet, in more Find my iPhone is activate, so what i can do to find the pass code? Help me please!

    In iTunes, select iTunes Store under STORE, scroll to the bottom and change the flag (bottom right) to the country where you are.

Maybe you are looking for