Web photo album error - need help please

I am using the newer version, which is Web Phot Album 2.1. It
used to work fine, i installed the new update for dreamweaver and
now it doesn't work. When i did update dreamweaver, I did what it
said and disabled the exentions. So, to the problem. When I click
on the open files button to choose which pictures i want, it gives
me this error :
' A script in file C:\Program Files\Macromedia\Dreamweaver
MX\Configuration\Shared\Common\Scripts\dwscripts.js has been
running for a long time. Do you want to continue?'
so after i click yes, it will build the images using flash,
but it will not create any of the html or any of the html pages.
please let me know if anyone has any other ideas?????

In addition to the missing correlation between the
amsSettings table and at least one of the other tables per Ken's
suggestion (which will give you a Cartesian join if unresolved),
you should either remove the double quotes from the
#SESSION.auth.NewLinesNo# parameter if it is numeric, or use single
quotes if it is a text field ('#SESSION.auth.NewLinesNo#')
Phil

Similar Messages

  • The web photo album command needs some improvement

    First I'd like to thanks for the
    web
    photo album command embed with Dreamweaver. My job requires me
    create photo albums with thousands of pictures, it saves a lot of
    time for me.
    Now I'd like to ask someone to improve this fuction. I need
    to click the thumbnails on the index page to pop-up a window that
    show up the detail picture page (If I can key in the pop-up window
    size in the command UI will be perfect). Currently this album
    generator only links to the large picture's page. I need to make
    them to a pop-up window for each manually (thousands of them).
    I tried
    Web
    Photo Album 2.2 for Dreamweaver 8 and MX 2004, V2.2.6, it
    doesn't have this function either. Compare to the web photo album
    command in Dreamweaver, it can't generate filename to caption in
    the detail picture page automatically (You can key in captions in
    Fireworks manually though).
    If someone can improve the web photo album command to pop-up
    window available, I think use "close window" link instead of the
    link to the album index page in the detail picture's page will be
    helpful.

    On 19 Sep 2006 in macromedia.exchange.extensions.dreamweaver,
    moonjeep
    wrote:
    > If someone can improve the web photo album command to
    pop-up window
    > available, I think use "close window" link instead of
    the link to
    > the album index page in the detail picture's page will
    be helpful.
    Not free, but if you do photo albums regularly, you might
    like:
    http://projectseven.com/products/galleries/hgmagic/
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/email.php

  • Scholar92 - Strange error Need help please

    Lecori Salutem
    The program I have a problem with is supposed to extract info from a DB. It extracts the info perfectly but I cannot access the info with my get commands from other classes.
    When i fire the program it says " [Ljava.lang.String;@1ba34f2 ". Can anyone help me to solve this problem please.
    ////////CODE STARTS HERE
    import java.sql.*;
    import javax.swing.*;
    /** Description:
    *  Die program word gebruik om al die metadata en paths wat getabuleer is
    *  op die Music DB te access en te stoor.
    *  @author Benni( [email protected])
    public class SQLImport
        private Connection connSQL;
            int tel = 2; // ID in SQL tabel begin by "2"
            String [] tName = new String [100];
    String [] tArtist = new String [100];
    String [] tGenre = new String [100];
    String [] tMood = new String [100];
    String [] tPath = new String [100];
    String [] tJavaPath = new String [100];
    String [] tID = new String [100];
    String [] tTime = new String [100];
    public SQLImport( )
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    connSQL = DriverManager.getConnection("jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=Music.mdb");
    JOptionPane.showMessageDialog(null, "Connection Successfully Established", "Notification",JOptionPane.INFORMATION_MESSAGE);
    catch (Exception sqlConnectionFailed)
    JOptionPane.showMessageDialog(null, sqlConnectionFailed, "ERROR:",JOptionPane.ERROR_MESSAGE);
    Statement statement = null;
    try
    statement = connSQL.createStatement( );
    catch (SQLException statementERROR)
    JOptionPane.showMessageDialog(null,statementERROR, "ERROR:",JOptionPane.ERROR_MESSAGE);
    char optionChoice;
    do
    optionChoice = getMenuChoice();
    if(optionChoice == 'A')
    try
    String querySQL = "SELECT * FROM tbl_ListedMusic ORDER BY ID ;";
    System.out.println(querySQL);
    ResultSet resultSet = statement.executeQuery(querySQL);
    while (resultSet.next( ))
    tID[tel] = resultSet.getString("ID");
    tName[tel] = resultSet.getString("TrackName");
    tArtist[tel] = resultSet.getString("TrackArtist");
    tTime[tel] = resultSet.getString("TrackTime");
    tGenre[tel] = resultSet.getString("TrackGenre");
    tMood[tel] = resultSet.getString("TrackMood");
    tJavaPath[tel] = resultSet.getString("TrackJavaPath");
    tPath[tel] = resultSet.getString("TrackPath");
    tel++;
    catch (SQLException infoImportError)
    JOptionPane.showMessageDialog(null,infoImportError, "ERROR:",JOptionPane.ERROR_MESSAGE);
    while (optionChoice != 'X');
    //NB! Strings are " " chars are ' '
    public String[ ] gettID( )
    return tID;
    public String[ ] gettName( )
    return tName;
    public char getMenuChoice( )
    String menu = "A) Import .mp3 info \n X) Exit";
    char choice = JOptionPane.showInputDialog(menu).toUpperCase( ).charAt(0);
    return choice;
    public static void main (String [ ] args)
    SQLImport sql = new SQLImport( );
    String [ ] blah = new String [10];
    blah = sql.gettID();
    System.out.println(blah);
    //Code ENDS
    How do I resolve the " [Ljava.lang.String;@1ba34f2   "  ? Much apreciated
    Regards,
    Bennu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    This forum is about the Messaging Server email server and related products. I think you have posted this question in the wrong forum.

  • Failed to connect Error - Need Help, Please

    I installed , created the simple "Hello" program and it ran fine on the simulator.
    Then, I click the run OTA and now I'm in deep yogurt!
    I get the message:
    *** Error ***
    Failed to connect to device 0!
    Reason:
    Emulator 0 terminated while waiting for it to register!
    BUILD SUCCESSFUL (total time: 4 seconds)
    I just want to restore things to what they were before I selected Run OTA. I've been reading for the past 3 hours and haven't found out to restore. I even deleted and re-installed but, still get the same meassge (probably some saved java pref file...). Anyway, HOW TO RESTORE to a virgin setup????
    Thanks

    ... I read somewhere I need to reboot - I did and it took care of it.

  • I dont know how i got my photos to my ipod touch from my pc and now i wanna delete them but couldn't. so need help. please let me know.

    i dont know how i got my photos to my ipod touch from my pc and now i wanna delete them but couldn't. so need help. please let me know.

    To turn off auto sync - launch iTunes and go to Edit>Preferences>Devices - check the box at the bottom that says - Prevent iPod, iPhones and iPads from syncing automatically. Click OK and then quit iTunes.
    Connect your iDevice to your PC.
    Launch iTunes,
    Click on the device name on the left side of the iTunes Window.
    Click on the Photos Tab in the iTunes window on the right.
    Untick all of the photos or albums that you want to remove.
    Click on Apply in the lower right corner of iTunes
    If you untick or uncheck the Sync Photos heading and then click Apply it will remove all of the photos from the device when it syncs. In this screenshot - I have only certain albums and events selected to sync.

  • After many months of non-use, when I opened Photoshop CS4 Extended, I got an error message 148.3.  "Licensing for this product has stopped working."  I need help, please.

    After many months of non-use, when I tried to open Photoshop CS4 Extended, I got an error message 148.3.  "Licensing for this product has stopped working."  I need help, please.

    Error "Licensing has stopped working" | Windows
    Error "Licensing has stopped working" | Mac OS
    Mylenium

  • HT201413 I need help please!!!!! My iPhone 4 s won't charge!!!!! I get error message 21. How can I get around this.

    I need help please I keep getting error messega 21 when i try uploading my iPhone 4 s!!!!!!!!! omg some one please tell me if and how to fix this please. thank you!!!

    Hopefully this link will help you: http://support.apple.com/kb/HT2109

  • Hello, I have a problem on my iPhone every second turn on and off I mean it shows the apple and off and again shows the apple icon and off and tried to Restore and it hangs on my iPhone and then waits Error 3004 Please I need help please!

    Hello, I have a problem on my iPhone every second turn on and off I mean it shows the apple and off and again shows the apple icon and off and tried to Restore and it hangs on my iPhone and then waits Error 3004 Please I need help please!

    Resolve communication issues
    Related errors: 17, 1004, 1013, 1638, 3014, 3194, 3000, 3002, 3004, 3013, 3014, 3015, 3194, or 3200.
    These alerts refer to gs.apple.com, say "There was a problem downloading the software," or say the "device isn't eligible for the requested build."
    I would guess your iphone has been hacked ( jailbroken ) ring any bells ?

  • Create Web Photo Album Problem

    Please help!!!!!! I have the Adobe Web Premium Suite CS3 so I
    have all the programs loaded on my computer.
    I have been working on this for 2 days and cannot get this
    command to work. I have 15 folders of pics that need to be put up
    and I want family to be able to click on the thumbnail and open up
    to a larger pic. There are over 100 pics in there. I loaded all the
    pics in their own folders; I have tried jpg, tiff, jpeg, psd and
    gif pics; (I separated them by file name so there are none mixed in
    the folders) I put the pic folders inside my web page folder, then
    I tried it on my desktop and I tried to use My Pictures folder.
    This is how I am doing this:
    I have the index.html page open on Dreamweaver CS3
    I hit Command > Create Web Photo Album >
    fill out "Photo album title:
    fill out "Subheading info:
    fill out "Other info:
    In the "Source images folder:" when I Browse I go to the
    folder and
    I click on it and when that opens there are no pics in there.
    Nothing shows up at all.
    I finish up the rest and an error message shows up "An error
    occurred".
    Anyone know what I am doing wrong????
    Thank you.... Linda

    Hello Do you happen to know if you get the same problem with windows 7
    Thanks

  • Trouble with making a link to Web photo Album in Dreamweaver cs4

    I am pretty new to this.  I have created my website, made all my links, which are working fine, but when I made a Web Photo Album in Adobe Bridge, saved in Dreamweaver under my other web pages on my site.
    Here comes the problem, I made a link from i.e. (parents.html) to go into my Web Photo Album but it won't work when I preview it in browser, but other pages will work when I test it with the same link on my (parents.html) page.
    I am pulling my hair out, I can't understand why the link to Web Photo Album won't work, it is the last thing I have to do before I have to upload website.  Can someone please, please, please tell me what is wrong.
    Cheers

    You may need to upload the pages anyway, so that people can help you find the problem.   Seeing the code and the associated files is the only way to try and help you  ;-)
    You can always upload the files to a test folder on the server instead of directly into the root of the site if that is going to be an issue for you,
    PS:  If it's working from being linked to from other pages, then there must a pathing issue when it comes to that one page.

  • Created Web Photo Album but Main Photos do not show on centre page in Firefox

    Site is
    I have used web photo album in this web site. In IE this is showing OK and all images are centralised, however in Firefox the main photo pages are showing to the left can anyone help me please?
    http://www.sancere.com/Album/pages/Picture-018_jpg.htm

    The page is showing OK in IE because it's in quirks mode - due to the fact that you are not using a doctype.  Firefox is showing the page as it really is :-)
    I've recoded the page for you - see if this works better.
    Notice the doctype at the top of the document. You should use this on every page of your site. Which version of DW are you using if it didn't create the doc type ??
    I've moved the body style into the style rules to the head of the document.  I've added an ID for the table #gallerytable and applied that to your table.
    If you look at the #gallerytable styles, you'll see I've given the table a width and set the margin to auto, which will center the page in both browsers.  I've also removed the centering you had in the <td> elements.. no need for that because it's covered in the #gallerytable styling
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <head>
    <title>Portfolio of Events / Picture-018.jpg</title>
    <link href="../../oneColFixCtrHdr.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    <!--
    body {
         background-color:#000;   /* this makes the body colour black */
    #gallerytable {
         width: 800px; margin: 0 auto;   /*sets the style so that the table is centered in the window */
         text-align:center;  /* everything in the table will be centered */
    a:link {
         color: #FFF;
    a:visited {
         color: #FFF;
    a:hover {
         color: #FFF;
    a:active {
         color: #FFF;
    -->
    </style>
    </head>
    <body>
    <table id="gallerytable">
    <tr>
    <td ><h2>Portfolio of Events/Picture-018.jpg</h2>
    <a href="Italy-2008-127_jpg.htm">Previous</a> | <a href="../album.htm">Home</a> | <a href="088_jpg.htm">Next</a><br><br>
    </td>
    </tr>
    <tr>
    <td >
    <br>
    <a href="../images/Picture-018_jpg.jpg"><img src="http://www.sancere.com/Album/images/Picture-018_jpg.jpg" border=0></a><br>
    </td>
    </tr>
    </table>
    </body>
    </html>
    Hope this helps  :-)

  • Creating web photo album

    Hi there,
    I was wondering if anyone can help me with a script that
    simply doesn't seem to want to run properly for me on some images.
    When I run the command from Dreamweaver to create a web photo album
    all starts well for the first couple of images and then comes up
    with the error "could not run the script. This command requires an
    active document". Has anyone had this problem, some images it is
    fine with but others I just can't get it to work on. Has anyone has
    this issue before? Is it related to file sizes? All of my images
    have been saved in exactly the same way so there should be no
    issues with some and not others.
    Any advice would be much appreciated.

    You do need to have saved the page before you start. Although
    you sound like
    you may have other issues.
    Peter
    "bentley675" <[email protected]> wrote in
    message
    news:e5afks$o64$[email protected]..
    | Hi there,
    |
    | I was wondering if anyone can help me with a script that
    simply doesn't
    seem
    | to want to run properly for me on some images. When I run
    the command from
    | Dreamweaver to create a web photo album all starts well for
    the first
    couple of
    | images and then comes up with the error "could not run the
    script. This
    command
    | requires an active document". Has anyone had this problem,
    some images it
    is
    | fine with but others I just can't get it to work on. Has
    anyone has this
    issue
    | before? Is it related to file sizes? All of my images have
    been saved in
    | exactly the same way so there should be no issues with some
    and not
    others.
    |
    | Any advice would be much appreciated.
    |
    |

  • Web Photo Album 2.2 in DW CS3

    Running the extension from the Command menu I got to
    selecting the folder of images and just after loading the folder,
    or selecting and image from the list I get this error:
    "While executing onClick in Create Web Photo Album 2.htm,the
    following Javascript error(s) occurred:
    At line 1626 of the file C:\Program Files\Adobe\Adobe
    Dremweaver CS3\Configuration\Commands\Create Web Photo Album 2.js
    ReferencedError:Dwsize is not defined"
    Any ideas how to solve this one?
    Thanks
    Timoto

    Hello,
    I have the same problem ad can't find a solution.
    Can you pls help me?
    Thx, Chrisje

  • Cannot Create Web Photo Album

    I have Dreamweaver 8 and Fireworks CS3. I am unable to create
    a Web photo album in DreamWeaver because I get an error saying that
    Fireworks 4 or greater is required to create a photo album. I have
    the full version of Fireworks CS3.

    I have upgraded to DW Studio 8 from MX2004 and have a similar
    problem...it's inconsistent though. Sometimes I am able to create
    the web photo album with no problems. But tonight it balked and
    balked and balked! I wound up opening up DW 2004 and FW 2004 and
    created the photo album that way and somehow it linked back to the
    DW 8 site. Is there a way to prevent this conflict??
    Help!

  • Create Web Photo Album

    I'm trying the 30-day version of Fireworks CS3 for two
    reasons: First I want to more easily create my web photo albums,
    and second, I want a graphical navbar with some elements having a
    popup menu.
    The issue I'm running into when I use the &quot;Create
    Web Photo Album&quot; command from within DW CS3 is that the
    resulting images get renamed to have a suffix of
    &quot;_jpg&quot; added. I HATE that! (This means that an
    image called &quot;name.jpg&quot; gets changed to
    &quot;name_jpg.jpg&quot;. Redundant, to say the least.
    How can this be controlled? If I use FW directly to optimize
    an image, this renaming doesn't happen, so I'm guessing this is
    something that DW controls. And I'd like to override that.
    Any help would be appreciated.
    Thanks!
    Eldor - Montreal

    NO! It's not that easy! Have you actually tried the advice
    you just gave? That'll break the whole routine!
    (Folks, whatever you do, before attempting ANY modifications
    to this file, MAKE A BACKUP!!!)
    You need to make changes in several places and everything
    must remain in sync - don't forget that this routine also writes
    the html table code to display both the thumbnails and full-size
    images and the href and img src references must point to the
    correct files! If you remove the references to .jpg the resulting
    html tables will NOT work! And the files will probably be wrongly
    named as well.
    Proceed with caution!
    I'll see what I can do about documenting what I did - I'm new
    to javascript but have many years of higher level programming
    experience. The first thing I did while going through the code was
    to put in comments explaining what certain parts of the code did,
    as I figured them out. And then with great care, I made my changes.
    By the way, Notepad certainly works for this, but it's a lot
    easier to use Dreamweaver itself or (what I did) the Adobe
    Extendscript Toolkit 2 that was included with my CS3 package. It
    makes it easier to visualize the blocks of code and how everything
    relates. And the find/replace dialog is superb.
    Eldor
    quote:
    Originally posted by:
    YonderAnt
    quote:
    Originally posted by:
    TibaTeebs
    can you share a) how/where you changed the code for JPEG in
    the JS? and b) what new functions did you add (such as addidng a
    title)
    Open .js with notepad, in notepad press CRTL-F, type ".jpg"
    in the search box, press the "find" button twice, change the ".jpg"
    word to "" (nothing), do that to the third, fourth, and fifth ones
    (there're only 5 ".jpg" words found in the .js file, don't change
    the first one).
    Then search "_", change all of that "_" to "" (don't change
    the ones that contain a letter between "_")
    done.
    (Excuse my English language)

Maybe you are looking for