Multiple insert transaction for image uploads

Hello !
I can't figure it out how to connect multiple insert transactions on one page?
For example - I want to upload images from page with different categories(have menu list) and insert by the one button all the images at once.
image 1, cat 1
image 2, cat 2
image 3, cat 3
button to insert
Any Ideas? Where to start from?
Thanks, Nick.
Please help ! Maybe link for some tutorials?

Hi Nick,
What you are asking for is very possible to make with ADDT but if you are totally unfamiliar with ADDT you should probably go over the manual to go over the many functions that ADDT offers. You can find the manual two ways.
1. After you have created your site and created one blank page you can open the page to have the Developer Toolbox Tab un-greyed out. Then you can click on the last icon (Control Panel) and press the help button.
That will open up the manual.
2. Go to: http://help.adobe.com/en_US/Dreamweaver/10.0_ADDT/help.html?content=MXK3_052000_MX_K3_con trol_panel.htm
Same place the help button takes you.
Yes, Waleed is having hosting issues that I think he is sorting out.

Similar Messages

  • This is my Jsp code for image upload in database:

    This is my Jsp code for image upload in database:
    -----------Upload.jsp----------------
    <html>
    <head>
    </head>
    <body bgproperties="fixed" bgcolor="#CCFFFF">
    <form method="POST" action="UploadPicture.jsp" enctype="multiform/form-data">
    <%! int update=0; %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.text.*" %>
    <%@ page import="java.sql.Date" %>
    <%@ page import="java.io.*"%>
    <%@ page language = "java" %>
    <%
    try
    String ct="3";
    String path;
    File image=new File(request.getParameter("upload"));
    path=request.getParameter("upload");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:itPlusElectronics","","");
    PreparedStatement pstmt=con.prepareStatement("insert into graphics values(?,?,?)");
    pstmt.setString(2,path);
    pstmt.setString(3,ct);
    InputStream is=new FileInputStream(path);
    pstmt.setBinaryStream(1, is, (int)(image.length()));
    int s=pstmt.executeUpdate();
    if(s>0)
    out.println("Uploaded");
    else
    %>
    unsucessfull
    <%}
    is.close();
    pstmt.close();
    catch(Exception e)
    }%>
    </p>
    <p><br>
    <img src="UploadedPicture.jsp">image</img>
    <p></p>
    </form>
    </body>
    </html>
    My database name is itPlusElectronics and the table name is "graphics".
    I have seen as a result of the above code that the image is stored in database as "Long binary data". and database table is look like as follows-------
    picture path id
    Long binary data D:\AMRIT\1-1-Picture.jpg 3
    To retrive and display i use this JSP code as--
    ------------------------UploadedPicture.jsp------------------------------
    <html>
    <head>
    </head>
    <body bgproperties="fixed" bgcolor="#CCFFFF">
    <%! int update=0; %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.text.*" %>
    <%@ page import="java.io.*"%>
    <%@ page language = "java" %>
    <%@page import="javax.servlet.ServletOutputStream"%>
    <%
    try
    String path;
    path=request.getParameter("upload1");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:itPlusElectronics","","");
    PreparedStatement pst = con.prepareStatement("SELECT * FROM graphics WHERE id ='3'");
    // pst.setString(3, id);
    ResultSet rs = pst.executeQuery();
    path=rs.getString("path");
    if(rs.next()) {
    byte[] bytearray = new byte[4096];
    int size=0;
    InputStream sImage;
    sImage = rs.getBinaryStream(1);
    response.reset();
    response.setContentType("image/jpeg");
    response.addHeader("Content-Disposition","filename=path");
    while((size=sImage.read(bytearray))!= -1 )
    response.getOutputStream().write(bytearray,0,size) ;
    response.flushBuffer();
    sImage.close();
    rs.close();
    catch(Exception e)
    %>
    </body>
    </html>
    Now after browsing a jpg image file from client side and pressing submit button ;
    I am unable display the image in the Upload.jsp file.Though I use
    <img src="UploadedPicture.jsp">image</img> HTML code in Upload.jsp
    file .
    Now I am unable to find out the mistakes which is needed for displaying the picture in the Upload.jsp page..
    If any one can help with the proper jsp code to retrive and display the image ,please please help me !!!!!!!!!!!!!!!!!!!!!!!!!!

    dketcham wrote:
    cotton.m wrote:
    >
    2) I'm looking at how you called stuff, and you're trying to call the jsp file as an image? That jsp isn't the source of the image, just a page linking to an image. I think if you really want to do things that way you're going to need to just include that jsp within the jsp you're calling it from (or you can do it the easy way, and if you have the information to get the path of the image you want, you could simply call the image from the first jsp you posted)This is incorrect.
    There are two JSPs. The second when called will (if it worked) return the source of an image as stored in the database.even when called with <img src=xx.jsp>??
    Yes.
    If any of what I say next seems obvious or otherwise negative I apologize, just trying to explain and I don't know what you know vs what you don't.
    The link in the src is just a URL not a filetype. So just because it ends with JSP does not mean it has to return HTML. The content type is determined by the browser using the Content-Type header returned by the server in the HTTP response. In this case the header is set to be a jpeg so that's what the browser will attempt to interpret the content part of the response as.
    So in fact one is not limited to just HTML or images but whatever content type you would like to return (that the browser can understand anyway). This could be HTML or it could be an image of some type or it could be a PDF or it could be an Excel spreadsheet. All you have to do in the JSP is set the header appropriately and then send content that is actually in that format.
    This does not just apply to JSP by the way but all other web programming languages. You can do similar things to produce the same results in PHP, Perl, ASP etc.
    The only JSP/Servlet complication is whether or not doing this in a JSP is a "good" idea but I am not an expert enough at that to make a definitive statement. Mostly though JDBC in a JSP is a no-no.

  • Max Size for Image Upload

    Hi Frenz,
    I am planning to use Oracle AppEx's file upload functionality to upload image to DB. I would like to know
    Is there any size limitation for Image to be uploaded. Ex: can't exceed more that ! MB?
    Does it support all types of Image format like JPG, BMP.
    Will be Using a third party reporting tool to generate roprts.
    So need to know how fast is the retrival process from backend.
    (Am aware this is not a Oracle AppEx related question!! But incase if any use this in your projects !!)

    The following parameters should be used
    org.apache.myfaces.trinidad.UPLOAD_MAX_MEMORY
    org.apache.myfaces.trinidad.UPLOAD_MAX_DISK_SPACE
    Instead of
    oracle.adf.view.faces.UPLOAD_MAX_MEMORY
    oracle.adf.view.faces.UPLOAD_MAX_DISK_SPACE
    Please check the following post:
    ADF file upload size
    Thanks,
    Navaneeth

  • MultipartParser vs MultipartRequest for Image Upload

    We are facing a weird issue. We were using MultipartParser for all our file uploads till now. We now need to upload image files and we are facing issues. We came across various knowledge base articles that said we can't upload an image using MultipartParser.
    If that is true, has anyone used MultipartRequest and have got the image uploaded to the server?
    Once the image is uploaded we need to create a thumbnail out of it. We are using javax.imageio.* package to do that.
    Any help is appreciated.

    If that is true, has anyone used MultipartRequest and
    have got the image uploaded to the server?
    Unless you're using Creator 2004Q2, you should take a look at the file upload component included with Creator 2.
    Best regards.
    Antonio.

  • Placing Insertion Point for Images

    Virtually all of the instructions for inserting images in
    Dreamweaver tell you to first "place the insertion point in the
    document where you want the image." How can I (Move) that is place
    the cursor at a particular place on the blank page without using
    carriage returns, tabs, etc that add unnecessary code.
    Thank you for your assistance on what must be a trivial
    matter for those more experienced than I

    You cannot. You must build an HTML infrastructure that allows
    your
    insertion point to be placed where you want it on the page.
    For example, if you want an image to be placed 100px down
    from the top of
    the page, and 100px to the right of the left margin, you
    could do that by
    building an HTML table with a cell that falls at exactly that
    point. Then
    you would just drop the image into that cell.
    See - web authoring is not like using Microsoft Word, or a DT
    Publishing
    application. Unfortunately, you need to have some
    understanding of the
    underlying HTML/CSS to begin to work efficiently.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Intlcom" <[email protected]> wrote in
    message
    news:f2l2p7$7hh$[email protected]..
    > Virtually all of the instructions for inserting images
    in Dreamweaver tell
    > you
    > to first "place the insertion point in the document
    where you want the
    > image."
    > How can I (Move) that is place the cursor at a
    particular place on the
    > blank
    > page without using carriage returns, tabs, etc that add
    unnecessary code.
    >
    > Thank you for your assistance on what must be a trivial
    matter for those
    > more
    > experienced than I
    >

  • How To - Validate Multiple Image Upload

    Ok... I have a page where user can insert some informations in a database and also upload related images (without saving to the database).
    This is a free site that I'm developing for humanitary proposes, and I do want him to be good. If people responsable for submiting information of an abandonned dog do not upload an associated image, the site will have no sucess. So, its mandatory to upload some images of the dog.
    Question: How can we validate the multiple upload image SB to be "required" and IF no image is uploaded then, no Insert transaction will be made?
    Thanks

    Hi Marcio,
    >>
    Question: How can we validate the multiple upload image SB to be "required" and IF no image is uploaded then, no Insert transaction will be made?
    >>
    well, there´s a problem with using the Multiple Image Upload *without* saving image names etc to a table :: the Insert or Update transaction that´s required to use this "multi upload" flavor, will be executed *first* and
    (just hope this isn´t plain wrong, but I don´t think so) has no clue of what´s exactly getting triggered afterwards
    This is a sort of "master/slave" chain of actions where the "slave"
    (the upload process) will just do his work after the "master"
    (the Insert transaction) has successfully done something else before -- but not vice versa.
    About the validation as such :: ADDT will always let you validate fields, as long they belong to a certain transaction -- but the "without save to database" image upload procedure is not part of the transaction, that´s why it´s not validatable.
    I would suggest using the "with save to database" multi-upload flavor instead. This variant will be adding an Insert transaction, and the uploaded file names will be part of this transaction and hence are supposed to be validatable. I hope :-)
    Now you might wonder why, because you assumingly don´t need all the file name info that has been stored. That´s right, but if you´d store that stuff in a "dummy" table which has no other purpose than to simply "be there", it might make some sense -- noone will ever force you to query that dummy table, so what ? :-)
    That´s actually all just some "food for thought" for you, as I never tried that myself -- but from knowing ADDT´s "logic", I´m somewhat certain it will work out after all.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Multiple delete linked to multiple insert

    Hello folks!
    I'm developing a CMS and using ADDT to build most of the database operations. I'm registering user's activities in a db table. After each insert, update or delete, I link the requested transaction to an insert transaction to register it in my "changes" table. I'm having a little problem with linking multiple transactions. When I link a multiple delete, for example, to a multiple insert transaction in my detail page, they end without registering values in my tables. No errors are shown. I thought maybe an ADDT hero around could give me a hand and also this scenario could bring good ideas to others.
    The dynamic list sends the url variables correctly (detail.php?id=1&id_1=2.. etc). The delete transaction are trigged by the "KT_delete1" form variable. I presume it is been passed as the transaction finish and I'm redirected as I should (the url gets the "transaction=deleteTxt" variable). Here's my code:
    //start Trigger_LinkTransactions trigger
    function Trigger_LinkTransactions_del(&$tNG) {
    global $ins_alteracoesDelete;
    $linkObj = new tNG_LinkedTrans($tNG, $ins_alteracoesDelete);
    $linkObj->setLink("altFKey");
    return $linkObj->Execute();
    //end Trigger_LinkTransactions trigger
    // Make an instance of the transaction object
    $del_textos = new tNG_multipleDelete($conn_equylybraCMS);
    $tNGs->addTransaction($del_textos);
    // Register triggers
    $del_textos->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Delete1");
    $del_textos->registerTrigger("AFTER", "Trigger_LinkTransactions_del", 98);
    $del_textos->registerTrigger("ERROR", "Trigger_LinkTransactions_del", 98);
    $del_textos->registerTrigger("END", "Trigger_Default_Redirect", 99, "listar.php?modulo=Textos&categoria={GET.categoria}&transaction=deleteTxt");
    // Add columns
    $del_textos->setTable("inscricoes_pagamentos");
    $del_textos->setPrimaryKey("pgtNumInscricao", "NUMERIC_TYPE", "GET", "txtID");
    // Make an insert transaction instance
    $ins_alteracoesDelete = new tNG_multipleInsert($conn_equylybraCMS);
    $tNGs->addTransaction($ins_alteracoesDelete);
    // Register triggers
    $ins_alteracoesDelete->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "");
    // Add columns
    $ins_alteracoesDelete->setTable("alteracoes");
    $ins_alteracoesDelete->addColumn("altUsuario", "NUMERIC_TYPE", "POST", "altUsuario");
    $ins_alteracoesDelete->addColumn("altTipo", "NUMERIC_TYPE", "VALUE", "3");
    $ins_alteracoesDelete->addColumn("altDescricao", "STRING_TYPE", "VALUE", "Excluiu texto - {POST.txtTituloDelete}");
    $ins_alteracoesDelete->addColumn("altFKey", "NUMERIC_TYPE", "VALUE", "");
    $ins_alteracoesDelete->setPrimaryKey("altID", "NUMERIC_TYPE");
    * To makes it easier: "alteracoes" means "changes" and "textos" means "text" in my language (portuguese)

    There are a few ways:
    Google Disjointed rollovers
    Set Text of Layer
    Swap Image in the Behaviors Panel
    Hope this helps
    Jo
    "serestibi" <[email protected]> wrote in
    message
    news:fpgc4m$9tj$[email protected]..
    > Hi, i am a beginner, so go eazy on me,
    > I am trying to link multiple images (thumbnails) to one
    big picture frame.
    > So if you click the thumbnails, each will blow up in the
    same frame.
    > The easy solution would be to link to a table, but it
    doesn`t seem
    > linkable.
    > I tried different slide viewers but I cant personalize
    them enough.
    > Please sombody help me!
    >

  • Using Resource type in Netweaver 7.1 for file upload

    Dear All,
    I want to check the file extension and file size before uploading it through a file upload UI element in Web Dynpro 7.1.
    How to go about it? And I am using following code for image upload. Is it correct one?
    IWDResource photoData = wdContext.nodePhotos().getPhotosElementAt(i).getPhotoData();
    FtpURLConnection myConnection = new FtpURLConnection(myUrl);          
    myConnection.connect();                    
    OutputStream out = myConnection.getOutputStream();               
    int temp = 0;
    InputStream text = photoData.read(false);
    while((temp=text.read())!=-1)
            out.write(temp);
    out.flush();
    out.close();
    myConnection.close();               
    Kindly help.
    Regards,
    Amey Mogare

    Did you check [this|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71] one?
    Bala

  • Image upload directory or server

    I want to upload imges file into directory and want to use
    for Database. I could not get any option in the Form of Dreamweaver
    for image uploading.
    please help me

    Dreamweaver does not come with any file upload scripts. You
    need to either create the script yourself or locate one on the web
    appropriate for the scripting language you are using.

  • Image upload

    Hi Experts,
      I have a reqiurement that to upload only the jpg,pnf and gif image file. Then I have to pass the url to backend..
    can anyone pls explain me with code..
    regrds
    Kiruba

    Hi Raghu,
    As u already reply that, I have to creat the resource for image upload..(jpg,gif,pnf) But Wht I have done was,I have not binded the resource property.suppose when i bind that, the details of my uploaded file has not displayed. Here I have attached my code.
    File ff=new File("New file");
              ff.mkdir();
              try {
                        byte[] b=null;
                        IWDAttributeInfo att=null;
                        IWDModifiableBinaryType bintype=null;
                        File f=null;
                        FileOutputStream fos=null;
                      IWDResource resource=wdContext.currentContextElement().getPhotores();
                        if(wdContext.currentContextElement().getResource()!=null){
                             b=wdContext.currentContextElement().getResource();
                             att=wdContext.getNodeInfo().getAttribute(IPrivateUploadView.IContextElement.RESOURCE);
                             bintype=(IWDModifiableBinaryType)att.getModifiableSimpleType();
                             wdContext.currentContextElement().setFileExtension(bintype.getMimeType().getFileExtension());
                             wdContext.currentContextElement().setFileSize(this.getFileSize(b));
                          wdContext.currentContextElement().setDetailsVisiblity(WDVisibility.VISIBLE);
                        wdComponentAPI.getMessageManager().reportMessage(IMessagePhUpload.UPLOAD,new Object[]{bintype.getFileName()},false);
                             f=new File(""+bintype.getFileName());
                                      fos=new FileOutputStream(f);
                             fos.write(b);
                             fos.flush();
                             fos.close();
                   else{
                        wdContext.currentContextElement().setDetailsVisiblity(WDVisibility.NONE);
                                  wdComponentAPI.getMessageManager().reportContextAttributeMessage(wdContext.currentContextElement(),wdContext.getNodeInfo().getAttribute(IPrivateUploadView.IContextElement.RESOURCE),IMessagePhUpload.NOFILE,new Object[]{""},true);
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    where I have to write the code for filtering the images..(jpg,pnf,gif)
    reg
    kiruba

  • Multiple Image Uploading Question

    Please forgive my ignorance here but I saw the question on multiple image uploading and this is something i have been trying to do for a few days now without any success.
    I am using CS3 with ADDT and PHP
    I want to allow my users to be able to upload say 5 pictures at a time, each user has multiple photo albums the names of which are stored in mysql table, the image name is stored in a different table with a reference to the album id.
    So, I assume that i put an insert record on the page, I followed the usual process used to have a single image upload and thought it would give me or add the extra file field options on the form when telling the multi upload to allow 5 images to be uploaded, not the case. Do i have to create a form on the page first with 5 file fields or am i just missing the plot here.
    Sorry if this is just something that seems simple but i just don't seem to be able to get it to work at all. I have no working example to look over and have serach google to see if there are any tutorials for doing this but can't find any at all.
    Thank you in advance of any help and guidance given
    Regards
    Ray

    Hi Günter
    Thank you for your reply and also for the great tutorial site you run which has helped me quite a lot with several things.
    ok, so i am maybe a little confused here, so what is the multiple image uploader for if not for uploading multiple images, and how does it give you the option to select more than one file or is it that you can't use it when inserting the image file into a database?
    Please forgive my ignornace again, i can see when i have tried using the multiple image upload thatit puts a text link called upload, what is that for because it doesn't seem to do anything on the page i have tried it on?
    Kind Regards
    Ray

  • Upload/Insert PDF with Image Manager

    I used to be able to insert a PDF and MP3 file through the Image Manager within the Item Description area but for some time have not been able to. I had asked the question in the old forums to no resolve. I've tried multiple sites from multiple browsers on both Mac and Windows but same issue.
    What I do:
    1.) From within any webpage/web app item description text area, I click on the Image Manager icon (little picture with sun and mtn. in the toolbar above the text area) and the Image Manager opens up.
    2.) Now the Image Manager DOES allow me to upload both PDF and MP3 files onto the server from here (which is good). Then I go to the list and find the file on the server, I'll select the file and then click on "Insert" but the Image Manager just closes and nothing is inserted into the Item Description area.
    This had worked for many years and like I said I can't get it to work in any testing scenerio. Same issue everytime when inserting, nothing gets inserted. The only alternative is manually inserted the href into the HTML but several of my clients have difficulty with this and it used to work before.
    I know it's been stated that the Literature/Media Module is how you handle files but this is way more cumbersome then it should be and the way I and my clients used to do it through the Image Manager worked great. Any help or clarification would be great. I can't even find if this is a feature done away with. Thank you for the help.

    Tersieff,
    I know you mentioned it had worked for your over the years. However I would recommend using the either the file manager or better the media downloads to upload and manage your media files. I see that it would come in handy to be able to select the file through the image manager, but I don't think it's working for media files other than images. Using the media downloads you will be able to provide a download link to this file, the downside is that you will have to manually enter the module for each media download within the item description.
    Nicole Windham | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Js-error while executing Multiple Image Upload wizard

    If i want to save the configured window of Multiple Image Upload with Save to Database wizard i get this js-error: "While executing onClick in MIUploadWSaveWizard.htm, a JavaScript error occured".
    can someone help?
    thanx
    peter

    That again would be more of a question for the Cold Fusion group.
    Try http://forums.adobe.com/community/coldfusion/coldfusion_administration
    Those people will be able to help you out more.
    Brad Lawryk
    Adobe Community Expert, Dreamweaver
    Adobe Usergroup Manager, Northern British Columbia Adobe User Group

  • Can you move a 'Multiple Image Upload' button  into the 'Update Form'?

    I am able to creat and an Update form and an image upload using the "Update Form Wizard" tool and the "Multiple Image Upload" tool succesfully.
    <br />
    <br />The problem comes when I try to move the "UPLOAD" button inside the Update form. Right now it looks like this:
    <br />http://www.webritesolutions.com/Test/upload/now.JPG
    <br />
    <br />This is how I would like it to show:
    <br />http://www.webritesolutions.com/Test/upload/tryingto.JPG
    <br />
    <br />I want to "Upload" button to go next to the "Update record" button. When I do this I get a javascript error and the "Update record" button is disabled.
    <br />Here is the code of what I tried to do:
    <br />
    <br />
    <br />
    <br />
    <br />
    <table>
    <tr class="KT_buttons">
    <td>
    <?php<br />        // Multiple Upload Helper<br /> echo $muploadHelper->Execute();<br /> ?>
    </td>
    <td colspan="1">
    <input type="submit" name="KT_Update1" id="KT_Update1" value="Update record" />
    <br /></td>
    </tr>
    </table>
    <br />
    <br />Here is the Javascript error:
    <br />http://www.webritesolutions.com/Test/upload/error.JPG
    <br />
    <br />thanks for your help.

    A control can only appear once in the visual tree. So you have to remove it from the Grid before you can add it to the DockPanel.
    This code will move the Border element from the Grid to the DockPanel when you click the button:
    Private Sub Button_Click(sender As Object, e As RoutedEventArgs)
    Dim border = CType(LayoutRoot.FindName("myborder"), Border)
    LayoutRoot.Children.Remove(border)
    contain.Children.Add(border)
    End Sub
    <StackPanel>
    <Grid x:Name="LayoutRoot">
    <Border x:Name="myborder" BorderBrush="Black" BorderThickness="2">
    <TextBlock>...</TextBlock>
    </Border>
    </Grid>
    <DockPanel x:Name="contain" Background="Yellow">
    <TextBlock>2</TextBlock>
    </DockPanel>
    <Button Click="Button_Click" Content="Move"/>
    </StackPanel>
    You can try it for yourself. But please post your code as formatted text and not as embedded images if you want anyone to be able to reproduce your issue and help you in the future.
    Please remember to close your threads by marking helpful posts as answer.

  • Multiple image upload CRASH!!! but works with simple image upload

    I'm getting MAD.
    I'm using php and GD
    While the simple image and re size works like a charm, the multiple image upload or the multiple file upload have a strange behavior.
    It opens the pop-up with flash, then eventually shows me files or thumbnails but when I try to up load I just wait and get the typical "system becoming unstable" flash error.
    As I can see the directory is always generated (I've tried also to put a static directory) but after stargin the upload the flash uploader just crashes and no result.
    Any help would be really appreciated

    Hi Fonzie,
    as the folder is getting created, the issue you´re having is not related to wrong folder permission - it´s something else...
    As I wrote before, che common upload and resize function works perfectly
    this one works perfectly, because it´s just one file to upload and to process, wheras doing that with multiple files might collide with some settings on your server
    So for sure it's not a simple issue as the max filesize
    Are you sure ? Did you check the current "max_upload_filesize" setting ? As long you don´t check it, you can´t know :-)
    As a general rule of thumb, it´s important to be aware of the fact that uploading & resizing images on the server might collide with several PHP settings -- and the more images you upload and resize in one swoop, the closer you´re getting to these limits respectively might even be exceeding them. The following "directives" are those which have an effect on whether your image/file upload & processing will work or not:
    - "max_upload_filesize" :: is sometimes set to just 8 MB on a shared hosting, sometimes 16 MB, sometimes more. This setting will affect the file upload procedure only
    - "set_time_limit" (e.g. 30 seconds) :: if the execution time of a script exceeds this limit for whatever reason, the server simply shuts it down without letting you (respectively the flash uploader) know it´s been shut down. This *might* be the reason why ADDT´s flash uploader hangs respectively returns that error message after some time, because it´s waiting for some response from the server which never comes.
    - "memory_limit" (e.g. 8 MB) :: this directive is a sort of "allocated server RAM" for your account, and it´s in particular the image resizing process which will grab more or less memory resources -- the higher the the resizing factor is, the more RAM is spent, and the more images are getting resized in one swoop, the worser it gets.
    However, all these PHP directives can be changed, and your host might even be so courteous to increase the currently defined values of those abovementioned directives for you -- and that´s what I´m suggesting at this point.
    Cheers
    Günter Schenk
    Adobe Community Expert, Dreamweaver

Maybe you are looking for

  • How to use true type font in smartform with ECC6

    hi,expert: I want to use true type font "Comic Sans MS.ttf". I upload this font file by SE73 named ZTT2I. In SE73.. select the Radio button "Font Families" And click on the "True type Font Installation" button. click the font attribute ITALIC. Our pr

  • Help - issue with update 10.2.0.429

    I updated my Z10 to10.2.0.429, now I have to keep taking my battery out  to send or read text messages and twitter no longer updates.  Also my battery runs down really quickly.  My Z10 is less than a year old.  (about 8 months).  Now when I connect t

  • Strange characters on report from field overrun

    We have a report, created with Cystal Reports 10, that is now giving us an issue. It is displayed via web browser. When displayed using Crystal Enterprise 10, it looks fine. But when displayed with CR XI r2 JRC, we get strange characters after the fi

  • LMS 4.2.3: Catalyst 6500 with SUP-2T is invisible in Inventory

    Catalyst 6506 with SUP-2T (s2t54-advipservicesk9-mz.SPA.151-1.SY1.bin) was discovered by LMS, but he is invisible in Inventory. I see this switch on Topology and Cisco View is working fine, but I never seen him in Hardware Summary Tab for example. Ho

  • How can I buy music from itunes germany?

    I want to buy music from iTunes Germany but I don't have a German credit card. How can I do this? There is a lot of music from one of my favorite artists (Enigma) that is in ITMS Germany but not in ITMS USA.