Dreamweaver Connections Folder Help Needed

I am working on Mac OS 10.4, Dreamweaver 8, PHP 4.1+ and
MySQL. I can get my database connection to work if I have it
directly in the PHP code but if I try to do it using the
Dreamweaver interface - the connection doesn't work. My testing
server and remote server all test ok on the connections. I believe
the problem is where the Connections folder is located but it
appears Dreamweaver only accepts it at the top level and the way my
hosting company configures their domains, it doesn't see the
connections folder and it doesn't work. I need to get it to work as
I want to use the Dreamweaver interface. I've searched every help
forum and tried many suggestions with no luck - anybody run into
the same problem?
Thanks!
Jammin' Julie

Thank you for writing. I do need your help, and here's the
scenario. I work for a company that deals with business credit. In
the previous post at
http://www.businesscreditbuilder.com
there is a login. Once logged in, there is a home page for the
members. That first page I need to change as soon as possible for
over 40,000 members. All the members will see the same home page
inside the members area. You're welcome to login as "makaiman",
password is "1143mak" to see the first page that comes inside the
members area I need to change just a little. PHP is installed on a
remote server running on Windows. I need help or guidance on this
immediately but I have to sleep right now as it is 1130pm pacific
and need to have this done by sometime tomorrow morning. I
appreciate all of your help so very much... any advice would be so
much appreciated...
m

Similar Messages

  • Computer restarts when ipod is connected urgent help needed

    alright this is weird, I've had my ipod for ages and suddenly I go to plug it in and the computer slows down really really really slow and eventually just turns it self off, restarts and then sits in a black screen. if I leave the ipod plugged into the computer and restart it again it just goes straight back to the black screen, but both my ipod and computer work fine when there not connected. i have the latest version of itunes which seemed to help the first time i tried it actually started to update the ipod but then guess what the computer has another heart attack. urgent help needed please!!!

    if I leave the ipod plugged into the computer and restart it again it just goes straight back to the black screen
    Given this, I'd put it down to a flaky power supply in the computer. Might want to try using another computer or replacing the PSU.

  • Dreamweaver and PHP Help Needed!

    If there is anyone out there who can help, I am working with
    a back-end secured website that is in php and need to manipulate
    and change pageson-the-fly. I'm not sure how to view and actually
    see in Design View my PHP page, as I can best work in Design View.
    Can anyone help out there?
    The website I need help with is
    http://www.businesscreditbuilder.com
    Help needed as soon as possible...
    Thank you...
    If you want to help, I can compensate you for helping with an
    immediate page..

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • Dreamweaver Patch Download - Help Needed

    Greetings - I desperately need to download the Dreamweaver
    8.0.2 Updater to resolve the IE issues with active content,
    rollovers, etc but can't get the download to work. I have tried RUN
    as well as SAVE and get either get a message saying something is
    wrong with the file and I need to try again OR I get problems with
    no signatures on the download.
    http://www.adobe.com/support/dreamweaver/downloads_updaters.html?pss=dw_8.0_win_en_full__D W_20040226#dw8
    I'm on XP with MSIE 7.0 (Friendly tip--if you didn't download
    7.0 yet DON'T DO IT!) if that's relevant.
    Any help would be greatly appreciated!
    Thanks!
    Scott

    Some people use a special application to manage their
    downloads and some
    times it is these that can cause an issue downloading from
    certain servers.
    Some examples of these manager would be like Download Studio,
    Internet
    Download Manager, or even AmazingDownload. If you are not
    using something
    like this then never mind.
    Have you cleared your browser's history and cache? I remember
    reading on
    these forums (think it may have been Murray) to try that and
    it did work for
    some. I may also be out of it right now and don't know what I
    am talking
    about. Recovering from some Diabetic related health issues.
    "OhioScott" <[email protected]> wrote in
    message
    news:eqlp9i$13j$[email protected]..
    > Baxter, Rob, thanks for the ideas. I had tried the
    download several
    > different
    > times and even turned off the virus protection, etc,
    during to see if that
    > helped. Each time, delete the download, try again. Tried
    both the 8.01 and
    > 8.02
    > with no better luck either time.
    >
    > Rob, I'm not sure I follow on not using a download
    manager... I think I
    > know
    > what you mean, but how would you get the download?
    >
    > I put a message in with support since I just bought the
    program but I'm
    > pretty
    > sure someone here will know the answer before support
    gets back to me.
    >
    > Thanks again!
    >
    > Scott
    >

  • Connection Pooling Help Needed

    Greetings.
    I am trying to get a database connection in Websphere 5.0 (running on Redhat Adv. Server) and my connection times are very, very slow. Below is the code to get the connection:
    Properties parms = new Properties();
    parms.setProperty(Context.INITIAL_CONTEXT_FACTORY,
    "com.ibm.websphere.naming.WsnInitialContextFactory");
    // Create the Initial Naming Context
    Context ctx = new InitialContext(parms);
    DataSource ds = (DataSource) ctx.lookup("jdbc/customer");
    Connection con = ds.getConnection();
    Here is the setup for the database connection within the Websphere Admin Console to an Oracle 8i database:
    Implementation: oracle.jdbc.pool.ConnectionPoolDataSource
    JNDI Name: jdbc/customer
    Statement Cache Size: 10
    Data source helper class name: com.ibm.websphere.rsadapter.OracleDataStoreHelper
    Connection Timeout: 1800
    Maximum Connections: 30
    Minimum Connections: 10
    Reap Time: 180
    Unused Timeout: 1800
    Aged Timeout: 0
    Purge Policy: Entire Pool
    We CAN connect to the database. We CAN run SQL statements and stored procedures just fine. Everything with the database is working correctly. ok, so here is the problem... The statement: Connection con = ds.getConnection(); Takes a long time. 3+ seconds. Every time. No Matter what the load is. We need to get this time down significantly. It's killing our web services.
    Using JMeter, We have tested it using a single thread and up to 50 concurrent threads and it all runs the same. 3+ seconds. We actually changed the code to create a database connection just using JDBC with no JNDI lookup and it runs at the same speed. It is almost as if the connection pool is not working correctly.
    So then we looked to see if we were ever getting the same connection twice, but when we printed out the object references, it looks like the connection is a brand new connection EVERY time because the object references are different. Please see the partial log file I have included below.
    Right now, our theory is that the connection pool is just getting us a new connection every time without reusing existing connections. We have played with all the settings on minimum connections, maximum connections, and everything else and nothing seems to help.
    Thank you to anyone that might be able to help us.
    Stephen
    Log File:
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7aac74cd
    ERROR -
    ----- getDatabaseConnection() ------
    1066140699427Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 3733 milliseconds to complete.
    getDatabaseConnection took 3733 milliseconds to complete.
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7580f4cd
    ERROR -
    ----- getDatabaseConnection() ------
    1066140699707Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 3454 milliseconds to complete.
    getDatabaseConnection took 3454 milliseconds to complete.
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@5b2b4cd
    ERROR -
    ----- getDatabaseConnection() ------
    1066140700199Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 2965 milliseconds to complete.
    getDatabaseConnection took 2965 milliseconds to complete.
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@2301b4ce
    ERROR -
    ----- getDatabaseConnection() ------
    1066140699752Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 3417 milliseconds to complete.
    getDatabaseConnection took 3417 milliseconds to complete.

    The problem might be the version of Driver Class you use... If you use Oracle 9x, u need to have new version of classes12.jar/zip. Do check it out.

  • J9 wlan connection handling - help needed

    I wrote an application which is running on phone and communicates with a server. I can open sockets, and communicate with the server (read/write data on chanel), but after ferw minutes/hours(depend on trafic) the wlan connection between the client and server breakes. The problem is, that after an exception is thrown, I close th connection and try to open a new connection, but can't. It seems, that somewhere in the phone's operatin system the connection is not closed.
    My question is , that is there anybody who meet this problem? The second question is that kind of workaround can be used to reconnect to the server?

    hi,
    have you found a solution? I have nearly the same problem now...
    My application runs on windows mobile 6.1 with IBM j9. Connecting to the WLAN inclusive VPN works well on the device, browsing with internet explorer is no problem and if necessary the WLAN and VPN connections are established automatically if needed.
    But when I try to invoke a webservice-request from within my java-application the connection isn't established. (Doing the webservice-request while a there is an existing connection everything works fine, e.g. when starting the application right after browsing in internet explorer).
    Probably I have to tell the connection manager on wm6 to connect - but how do I implement that?
    For .Net I found the following:
    - http://msdn.microsoft.com/en-us/library/bb840031.aspx
    - http://msdn.microsoft.com/en-us/library/ms849587.aspx
    Can anybody give me a hint, please?
    regards, blackfox86

  • Dreamweaver Template/Styles help needed

    Go SBI!!! My first site is ranked #9 on google and #14 on
    Yahoo!!!
    Okay, hello everyone, I could use some help. I'm stuck after
    lots of attempts. I am working on a new website using Dreamweaver.
    I have read most of 1,100-page DW Bible, but reading and
    implementing properly are two different things.
    I have 90% of my template file done. It has a header and
    footer and inbetween the content will site between two side colums
    (the left side will contain the nav bar and the right sidde misc
    info). My issue is in getting the three sections (left-column,
    center content, right-column) to have the same height so the
    bottoms line up.
    The issue is that each page varies in length based on the
    amount of content. Absolute seems to work, but I must be able to
    edit it from within each page individually. Here is the difficulty
    I'm having.
    I'm trying to setup my main page as a template so changes to
    items like the navbar get updated automatically throughout the
    webpages. Since the navbar sits within the left column (which
    contains CSS style codes such as border width, float, etc.) and
    I've gone in and chosen an editable area within that column, it
    makes everything else uneditable (like you'd want for a template
    page).
    But it also makes it impossible to edit that one height
    property. My main goal is to have the left center and right areas
    all lined up at the bottom and to be able to make changes to the
    master navbar and have it change all pages.
    Should I be looking to accomplish this another way?

    > My issue is in getting the three
    > sections (left-column, center content, right-column) to
    have the same
    > height so
    > the bottoms line up.
    There is no non-javascript way to do this. Google "faux
    columns" for a nice
    workaround.
    > like you'd want for a template page
    I'm worried that you don't quite understand how templates
    work when you say
    this. It's on the child pages where you want the navigation
    to be
    uneditable.
    > Should I be looking to accomplish this another way?
    Yes. Try the Google search.
    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
    ==================
    "svteclipse" <[email protected]> wrote in
    message
    news:[email protected]...
    > Go SBI!!! My first site is ranked #9 on google and #14
    on Yahoo!!!
    >
    > Okay, hello everyone, I could use some help. I'm stuck
    after lots of
    > attempts.
    > I am working on a new website using Dreamweaver. I have
    read most of
    > 1,100-page
    > DW Bible, but reading and implementing properly are two
    different things.
    >
    > I have 90% of my template file done. It has a header and
    footer and
    > inbetween
    > the content will site between two side colums (the left
    side will contain
    > the
    > nav bar and the right sidde misc info). My issue is in
    getting the three
    > sections (left-column, center content, right-column) to
    have the same
    > height so
    > the bottoms line up.
    >
    > The issue is that each page varies in length based on
    the amount of
    > content.
    > Absolute seems to work, but I must be able to edit it
    from within each
    > page
    > individually. Here is the difficulty I'm having.
    >
    > I'm trying to setup my main page as a template so
    changes to items like
    > the
    > navbar get updated automatically throughout the
    webpages. Since the navbar
    > sits
    > within the left column (which contains CSS style codes
    such as border
    > width,
    > float, etc.) and I've gone in and chosen an editable
    area within that
    > column,
    > it makes everything else uneditable (like you'd want for
    a template page).
    >
    > But it also makes it impossible to edit that one height
    property. My main
    > goal
    > is to have the left center and right areas all lined up
    at the bottom and
    > to be
    > able to make changes to the master navbar and have it
    change all pages.
    >
    > Should I be looking to accomplish this another way?
    >
    >

  • Wi-Fi Connections issues: HELP NEEDED!

    I've been running my iPhone mostly on the EDGE network the past few weeks. Some hair might have gone grey while I was waiting for it to laod, but it loaded after sometime.
    Anyways, I have a linksys wireless router and everytime I try and use my Wi-Fi with the iPhone it says "Safari can't open the page because it could not connect to the server."
    Does anyone have a solution for me to change settings through network settings, or anything eles that might be quick and easy?

    Here is a quick check list you can take a look at and try. As well as a couple questions. It sounds like possible interference of some kind.
    1. Has Firmware on the router been updated?
    2. Have you updated iPhone Software to 1.0.1?
    3. Have you done a restore on the iPhone and tested the network again?
    4. You may wish to inquire to your router provider about changing the channel on your router, To see if it is stopping the iPhone from grabbing a stable connection.
    Test your iPhone on another Wireless Network, If other Wireless Networks work, Then it could just be a compatibility issue with your router, But please inquire to your Router Provider about how your wireless device will not hold the information of the Router IP and other information, They may be able to change a setting in the router to help stabilize the connection.
    Apple has also released a new router, The Airport Extreme 802.11n
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=E84 08794&nplm=MB053LL/A

  • Connect by help needed

    Hello
    I am using an hierarchy query using a "connect by prior" and it working great.
    According to the start with it give me the list of "trees" I need.
    Can I add a where statement that check if the type_id of one of the elements in the tree is equal to 1 and if so return that tree with all of it's elements?
    Thank you

    That's different level.
    And I use that function for keeping sinligs sort.
    select deptno,ename,comm
          ,sys_connect_by_path(ename,'/') value4sort
    from scott.emp
    connect by prior empno = mgr
    start with ename in ('JONES','BLAKE','CLARK')
    order siblings by ename
        DEPTNO ENAME            COMM VALUE4SORT
            30 BLAKE                 /BLAKE
            30 ALLEN             300 /BLAKE/ALLEN
            30 JAMES                 /BLAKE/JAMES
            30 MARTIN           1400 /BLAKE/MARTIN
            30 TURNER              0 /BLAKE/TURNER
            30 WARD              500 /BLAKE/WARD
            10 CLARK                 /CLARK
            10 MILLER                /CLARK/MILLER
            20 JONES                 /JONES
            20 FORD                  /JONES/FORD
            20 SMITH                 /JONES/FORD/SMITH
    select deptno,ename,comm from
      (select deptno,ename,comm
            ,count(comm) over (partition by root_value) flag
            ,value4sort
      from (
        select deptno,ename,comm
              ,connect_by_root(empno) root_value
              ,sys_connect_by_path(ename,'/') value4sort
        from scott.emp
        start with ename in ('JONES','BLAKE','CLARK')
        connect by prior empno = mgr
    where flag >= 1
    order by value4sort
        DEPTNO ENAME            COMM
            30 BLAKE
            30 ALLEN             300
            30 JAMES
            30 MARTIN           1400
            30 TURNER              0
            30 WARD              500
    select deptno,ename,comm
          ,sys_connect_by_path(ename,'/') value4sort
    from scott.emp
    connect by prior empno = mgr
    start with ename in ('KING')
    order siblings by ename
        DEPTNO ENAME            COMM VALUE4SORT
            10 KING                  /KING
            30 BLAKE                 /KING/BLAKE
            30 ALLEN             300 /KING/BLAKE/ALLEN
            30 JAMES                 /KING/BLAKE/JAMES
            30 MARTIN           1400 /KING/BLAKE/MARTIN
            30 TURNER              0 /KING/BLAKE/TURNER
            30 WARD              500 /KING/BLAKE/WARD
            10 CLARK                 /KING/CLARK
            10 MILLER                /KING/CLARK/MILLER
            20 JONES                 /KING/JONES
            20 FORD                  /KING/JONES/FORD
            20 SMITH                 /KING/JONES/FORD/SMITH
    select deptno,ename,comm from
      (select deptno,ename,comm
            ,count(comm) over (partition by root_value) flag
            ,value4sort
      from (
        select deptno,ename,comm
              ,connect_by_root(empno) root_value
              ,sys_connect_by_path(ename,'/') value4sort
        from scott.emp
        start with ename in ('KING')
        connect by prior empno = mgr
    where flag >= 1
    order by value4sort
        DEPTNO ENAME            COMM
            10 KING
            30 BLAKE
            30 ALLEN             300
            30 JAMES
            30 MARTIN           1400
            30 TURNER              0
            30 WARD              500
            10 CLARK
            10 MILLER
            20 JONES
            20 FORD
            20 SMITH

  • Problem with my Zen touch USB connection. Help need

    Hey, I have a problem, my usb connection is damaged so I can't send songs to my ZEN TOUCH anymore...can I do something with it's? /warranty are not working/Message Edited by Jason-CL on 06-09-2006 0:4 AM

    Gvido_,
    Have you try using another USB cable to test just in case it's not a problem with the USB connector.
    Jason

  • Catalog/Folder help needed.

    How do I reinstate catalogs/folders in LR5?  Background is that when preparing to upgrade from LR4 to LR5, I decided to take time to delete some photos.  Suddenly, all photos completely disappeared.  After doing a net search I was able to get them back but all photos were shown together; all catalog/folders are gone.  I decided to import into LR5 anyway thinking to fix everything there.  But, I am unable to create separate folders.  Unless I've missed it, I find no instructions in Tutorials for such a situation.

    Juanitahere wrote:
    As previously stated, there are folders with dates that contain photos. 
    Yes, this seems to be clear, you can see date based folders (date named folders?) that contain photos by using Finder.  Yes?
    Meanwhile the same photos can be seen in LR but not their parent folders?
    Any folder I designated with a specific word does not open. 
    But here, I'm afraid, I do not understand what you mean.  Is this still within Finder or in LR?

  • IPod not connecting! HELP NEEDED BADLY!

    I have 2G iPod nano and I also have the newest iTunes downloaded (7.0.2). However, iTunes cannot find the iPod, or the iPod is not showing up in iTunes where it should (under the device section).
    A message does come up, it is this:
    An iPod has been detected, but the iPod software is not installed. Please install the iPod software from the CD that came with your iPod or download the iPod software updater from www.apple.com/ipod/download
    I have done this and all it does is bring me to a place where I can download iTunes, which I already have.

    Also, I do not have a CD.

  • Help - need to download previous Dreamweaver

    I am in school and they use Dreamweaver 5.5.  I downloaded Creative Cloud with the understanding that I would be able to retrieve Dreamweaver 5.5, but have been unable to find it or figure out how. Any clues out there???

    Deerduke wrote:
    Question- can I download and install 12, which is what my school is teaching, and get rid of 13? All on the same account? I am not sure of the process.
    I have a student CC membership, and was doing fine until DW updated to 13 and I lost 1/3 of my options, having to waste precious time finding workarounds, since Adobe has provided no reasoning or input for the changes. I rather liked 12
    You can have both installed under the same subscription.
    Is your school teaching DWCS5.5 (version 11.5) as you mention in your original post, DWCS6 Disk version (version 12.0x) or DWCS6 Cloud (version 12.1x)?
    All of them have some pretty big differences and are significantly different from DWCC (at least in menu options).
    Check the versions by going to Help > About Dreamweaver.
    DWCS6 Cloud (version 12.1x) is a totally separate program from DWCC (version 13.x) and doesn't get upgraded to 13 automatically by any kind of update.  If you are suddenly using DWCC, look in your Program Files (x86) folder for a Dreamweaver CS6 folder. They can both be installed at the same time, they just won't run at the same time, so you might already have the program you're looking for installed.
    There is also a fair amount of info in the Adobe blog giving the reasoning for the major changes to the program. Basically it boils down to internet standards and modernizing the program to fit what professional designers and coders need to produce to fit those standards.

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • SQL Server Database Connectivity with Visual Studio 2012 - Help Needed

    Hello,
    I am having Visual Studio 2012 and SQL Developer 4.0 installed on my system with Windows 8 - 64bit
    I want to shift a VS project with an SQL database connectivity to another new Laptop (above mentioned) ...
    I have the project opened in VS without bieng connected to the database.. 
    I have a backup file of the database (which needs to be restored to a new created database on SQL Developer) 
    The problem:
    I am unable to create a server connection in SQL Developer which will allow me to create a new database followed by the recovery from backup file.
    I am getting the following error message when I try to create a connection:
    Status: Faliure - IO error: The network adapter could not establish a connection
    Please help me in setting up a server connection and adding a new sql database

    The error message seemed unfamiliar to me and since I had never heard of SQL Developer before, I went to Google. Google might be pulling my legs, but it appears that SQL Developer is related to Oracle. This forum is devoted to SQL Server, so you are in the
    wrong place.
    Try finding a forum for SQL Developer.
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for