Pure ASP Upload help needed...

Trying to create simple upload page...
But nothing seems to be happening
Can anyone offer suggestions on what to check?
I created 2 pages...
Page #1 = Simple form with 3 fields title, file upload and
page
Page #2 = simple thank you message to confirm upload
Im sure its something simple... but when i click on Submit
nothing happens..
its like nothing is executing the upload...
I have checked the permissions on the scriptslibrary, the
upload folder
where the files will be placed and they are set to same
read/write/ execute
Below is the code on the page with the upload option:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include virtual="/Connections/webuplo.asp" -->
<!--#include virtual="/ScriptLibrary/incPU3Class.asp"
-->
<!--#include virtual="/ScriptLibrary/incPU3Utils.asp"
-->
<%
'*** Pure ASP File Upload 3.0.9
' Process form form1
Dim pau, DMX_uploadAction, UploadRequest, UploadQueryString,
pau_thePath,
pau_nameConflict, pau_saveWidth, pau_saveHeight
Set pau = new PureUpload
pau.ScriptLibrary = "/ScriptLibrary"
pau.TimeOut = 500
pau.ConflictHandling = "over"
pau.StoreType = "path"
pau.UploadFolder = """../vendor_compliance"""
pau.Required = true
pau.AllowedExtensions = "DOC,PDF" ' "custom"
pau.ProcessUpload
pau.SaveAll
%>
<%
Dim MM_editAction
MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (UploadQueryString <> "") Then
MM_editAction = MM_editAction & "?" &
Server.HTMLEncode(UploadQueryString)
End If
' boolean to abort record edit
Dim MM_abortEdit
MM_abortEdit = false
%>
<%
If (CStr(UploadFormRequest("MM_insert")) = "form1") Then
If (Not MM_abortEdit) Then
' execute the insert
Dim MM_editCmd
Set MM_editCmd = Server.CreateObject ("ADODB.Command")
MM_editCmd.ActiveConnection = MM_webuplo_STRING
MM_editCmd.CommandText = "INSERT INTO dbo.tbl_docs
(linktitle,
uploadfile, displaypage) VALUES (?, ?, ?)"
MM_editCmd.Prepared = true
MM_editCmd.Parameters.Append
MM_editCmd.CreateParameter("param1", 201,
1, 50, UploadFormRequest("linktitle")) ' adLongVarChar
MM_editCmd.Parameters.Append
MM_editCmd.CreateParameter("param2", 201,
1, 100, UploadFormRequest("uploadfile")) ' adLongVarChar
MM_editCmd.Parameters.Append
MM_editCmd.CreateParameter("param3", 201,
1, 5, UploadFormRequest("displaypage")) ' adLongVarChar
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
' append the query string to the redirect URL
Dim MM_editRedirectUrl
MM_editRedirectUrl = "/admin_new/insert_docu_com.asp"
If (UploadQueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0)
Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" &
UploadQueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" &
UploadQueryString
End If
End If
Response.Redirect(MM_editRedirectUrl)
End If
End If
%><!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>
<title>Upload Documents</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<script
type="text/javascript"><%=pau.generateScriptCode()%></script>
<script src="/ScriptLibrary/incPU3.js"
type="text/javascript"></script>
</head>
<body bgcolor="#FFFFFF">
<form ACTION="<%=MM_editAction%>" METHOD="post"
enctype="multipart/form-data" name="form1" id="form1"
onsubmit="<%=pau.submitCode()%>;return
document.MM_returnValue">
<label>Title<input name="linktitle" type="text"
id="linktitle" size="40"
/></label>
<br>
<label>Upload<input name="uploadfile" type="file"
id="uploadfile"
onchange="<%=pau.validateCode()%>;return
document.MM_returnValue" size="40"
/></label>
<br>
<label>Display Page
<select name="displaypage" id="displaypage">
<option>Please select a Page</option>
<option value="vc">Vendor Compliance</option>
<option value="n">News</option>
</select>
</label>
( Select page to be displayed on ) <br>
<input name="Submit" type="button" id="Submit"
value="Upload" />
<input type="hidden" name="MM_insert" value="form1">
</form>
</body>
</html>
ASP, SQL2005, DW8 VBScript

Not sure what or why this is happening.. or if its now
related to IE7,
But after all the problems i had and corrected below.. i now
have the same
problem and this time all the code seems to look ok..
All i did was add 4 more fields of data to be collected, made
sure that the
insert record behavior reflects the new fields and everything
is ok.. but
using IE7 when i complete the form and hit update, the page
post back saying
i have incomplete data and nothing is written to the
database.
ASP, SQL2005, DW8 VBScript
"Daniel" <[email protected]> wrote in message
news:[email protected]...
>I really appreciate everyones help.. i went thru and
compared line by line
>with the one that worked and the one that wasnt and it
was a simple code
>error...
>
> On the page that works: this is how the submit was
coded...
> <input type="submit" name="Submit" value="Submit"
/>
>
> On the page that didnt work it was coded like this:
> <input name="Submit" type="button" id="Submit"
value="Upload" />
>
> Apparently there is an order to this.. i ordered
everything the same and
> it finally worked...
>
>
> --
> ASP, SQL2005, DW8 VBScript
> "Daniel" <[email protected]> wrote in message
> news:[email protected]...
>> Trying to create simple upload page...
>>
>> But nothing seems to be happening
>>
>> Can anyone offer suggestions on what to check?
>>
>> I created 2 pages...
>> Page #1 = Simple form with 3 fields title, file
upload and page
>> Page #2 = simple thank you message to confirm upload
>>
>> Im sure its something simple... but when i click on
Submit nothing
>> happens.. its like nothing is executing the
upload...
>> I have checked the permissions on the
scriptslibrary, the upload folder
>> where the files will be placed and they are set to
same read/write/
>> execute
>>
>> Below is the code on the page with the upload
option:
>>
>> <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
>> <!--#include virtual="/Connections/webuplo.asp"
-->
>> <!--#include
virtual="/ScriptLibrary/incPU3Class.asp" -->
>> <!--#include
virtual="/ScriptLibrary/incPU3Utils.asp" -->
>> <%
>> '*** Pure ASP File Upload 3.0.9
>> ' Process form form1
>> Dim pau, DMX_uploadAction, UploadRequest,
UploadQueryString, pau_thePath,
>> pau_nameConflict, pau_saveWidth, pau_saveHeight
>> Set pau = new PureUpload
>> pau.ScriptLibrary = "/ScriptLibrary"
>> pau.TimeOut = 500
>> pau.ConflictHandling = "over"
>> pau.StoreType = "path"
>> pau.UploadFolder = """../vendor_compliance"""
>> pau.Required = true
>> pau.AllowedExtensions = "DOC,PDF" ' "custom"
>> pau.ProcessUpload
>> pau.SaveAll
>> %>
>> <%
>> Dim MM_editAction
>> MM_editAction =
CStr(Request.ServerVariables("SCRIPT_NAME"))
>> If (UploadQueryString <> "") Then
>> MM_editAction = MM_editAction & "?" &
>> Server.HTMLEncode(UploadQueryString)
>> End If
>>
>> ' boolean to abort record edit
>> Dim MM_abortEdit
>> MM_abortEdit = false
>> %>
>> <%
>> If (CStr(UploadFormRequest("MM_insert")) = "form1")
Then
>> If (Not MM_abortEdit) Then
>> ' execute the insert
>> Dim MM_editCmd
>>
>> Set MM_editCmd = Server.CreateObject
("ADODB.Command")
>> MM_editCmd.ActiveConnection = MM_webuplo_STRING
>> MM_editCmd.CommandText = "INSERT INTO dbo.tbl_docs
(linktitle,
>> uploadfile, displaypage) VALUES (?, ?, ?)"
>> MM_editCmd.Prepared = true
>> MM_editCmd.Parameters.Append
MM_editCmd.CreateParameter("param1", 201,
>> 1, 50, UploadFormRequest("linktitle")) '
adLongVarChar
>> MM_editCmd.Parameters.Append
MM_editCmd.CreateParameter("param2", 201,
>> 1, 100, UploadFormRequest("uploadfile")) '
adLongVarChar
>> MM_editCmd.Parameters.Append
MM_editCmd.CreateParameter("param3", 201,
>> 1, 5, UploadFormRequest("displaypage")) '
adLongVarChar
>> MM_editCmd.Execute
>> MM_editCmd.ActiveConnection.Close
>>
>> ' append the query string to the redirect URL
>> Dim MM_editRedirectUrl
>> MM_editRedirectUrl =
"/admin_new/insert_docu_com.asp"
>> If (UploadQueryString <> "") Then
>> If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare)
= 0) Then
>> MM_editRedirectUrl = MM_editRedirectUrl & "?"
& UploadQueryString
>> Else
>> MM_editRedirectUrl = MM_editRedirectUrl &
"&" & UploadQueryString
>> End If
>> End If
>> Response.Redirect(MM_editRedirectUrl)
>> End If
>> End If
>> %><!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>
>> <title>Upload Documents</title>
>> <meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1"
>> />
>> <script
type="text/javascript"><%=pau.generateScriptCode()%></script>
>> <script src="/ScriptLibrary/incPU3.js"
type="text/javascript"></script>
>> </head>
>> <body bgcolor="#FFFFFF">
>> <form ACTION="<%=MM_editAction%>"
METHOD="post"
>> enctype="multipart/form-data" name="form1"
id="form1"
>> onsubmit="<%=pau.submitCode()%>;return
document.MM_returnValue">
>> <label>Title<input name="linktitle"
type="text" id="linktitle"
>> size="40" /></label>
>> <br>
>> <label>Upload<input name="uploadfile"
type="file" id="uploadfile"
>> onchange="<%=pau.validateCode()%>;return
document.MM_returnValue"
>> size="40" /></label>
>> <br>
>> <label>Display Page
>> <select name="displaypage" id="displaypage">
>> <option>Please select a Page</option>
>> <option value="vc">Vendor
Compliance</option>
>> <option value="n">News</option>
>> </select>
>> </label>
>> ( Select page to be displayed on ) <br>
>> <input name="Submit" type="button" id="Submit"
value="Upload" />
>> <input type="hidden" name="MM_insert"
value="form1">
>> </form>
>> </body>
>> </html>
>>
>> --
>> ASP, SQL2005, DW8 VBScript
>>
>
>

Similar Messages

  • Pure ASP Upload 3 error

    I have tried the few suggestions i found, but nothing seems
    to work...
    I installed Pure ASP 3 when it first came out.. and then all
    the updates
    afterwards... but since the initial install i have yet to
    successfully use
    the new version and get rid of this error....
    The error is a pop-up window that has the following:
    The following JavaScript error occurred:
    At line 1 of file "D:\Program
    Files\macromedia\dreamweavermx\dreamweaver
    MX\configuration\inspectors\Pure ASP Upload 3 FC.js":
    |>>?// Pure Upload 3 - File Upload Control Inspector
    illegal character
    So i am having to use version 2...
    Can anyone suggest anything new i can try...

    Hi yea,
    I have had the same issues with both the latest pure upload
    and SIP, I also
    found that they didnt do a clean uninstall, thus when I
    reloaded version 2
    of the pure upload it was a dirty install..
    I even deleted the .dat file before loading version 2 but
    that didnt help.
    I have dropped them a line,
    I dont know of any other extension that can compete with pure
    upload (when
    its working) at present.
    kenny

  • Pure ASP upload

    Is anyone using version 3 of pure ASP upload from dmxzone?
    I need to have a multiple file upload feature which my
    version 2 of the
    extension doesn't seem to support.
    From what I read on the website, there is some flash feature
    which
    handles the multiple selection of files. I'm slightly
    concerned about
    users not having flash 8 player, and therefore not being able
    to
    multiple select. Is the only way to do this with flash, or is
    there a
    way around it?
    Looking for a quick response on this, hence me asking here.
    The
    response from dmxzone has always taken days in my past
    experience!
    Thanks
    Vix

    Thanks for your comments. I'm going to avoid PAU3 and just
    have several
    file fields instead and stick with using the PAU2 which I'm
    used to.
    V.
    Justin Reid wrote:
    > PAU Version 3 does have a flash interface which triggers
    a file widow to
    > select multiple files in one go (similar to that which
    Dreamweaver uses to
    > open multiple files).
    > I've only used PAU3 on one project so far and ended up
    using multiple file
    > fields (gives you more control).
    >
    > If flash is an issue, then you might have issues with
    PAU3 as the upload
    > process (progress indicator) is flash. I'm not sure you
    can switch this
    > off - but then I've not tried.
    >
    > On a side note. I found PAU3 very awkward to get used to
    as I came from
    > using w3Upload where you submit to the upload com in a
    traditional way and
    > not in an AJAX fashion. It's nice, but if you aren't
    used to it, then allow
    > time for the learning curve.
    >
    > Justin
    >
    > "Chris In Madison"
    <[email protected]> wrote in message
    > news:ekpeue$4ej$[email protected]..
    >> PureASP Upload does support multiple file uploads,
    but each one has to
    >> have its own file field on the page and within the
    form. If you put 10
    >> file fields on the page, you can upload 10 files.
    >>
    >> I'm not sure about how v3.x works since I'm not
    using it yet. Are you
    >> speaking of a shift+click type of thing to select
    multiple files at once?
    >> If so, I'm not familiar with that technique which
    may explain the Flash
    >> interface. But, I'm just speculating since I've not
    seen v3.x.
    >>
    >> Best regards,
    >> Chris
    >>
    >
    >

  • File Upload Help Needed - Very Urgent

    Dear All
    I am making a application in Webdynpro for uploading an excel file to the server. Can someone give me a demo application so that I can run it and see whether my server is configured or not. Also I have made the application right now and have coded the need full. But when I select a file and say submit it shows me a page not found error. Currently I am working round the clock on my project and am stuck up here. Its very urgent can any body help please with an example or a demo application.
    Regards Gaurav

    Hi,
      Check whether in server, MultipartBodyParameterName property is set to "com.sap.servlet.multipart.body" . You can check this by going to Visual Admin -> Cluster tab -> Services -> web container -> Properties sheet.
    Do assign points if i answered your question.
    Regards
    Vasu

  • J2me multipart file upload-  Help Needed

    package com.mpbx;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.io.*;
    import java.io.*;
    public class PostFile extends MIDlet implements Runnable, CommandListener{
        private final String FILE = "/image.jpg";
        private final String URL = "http://localhost/post.php"; // change this to a valit page.
        private final String CrLf = "\r\n";
        private Form form = null;
        private Gauge gauge = null;
        private Command exitCommand;
        private Command uploadCommand;
        public PostFile(){
            form = new Form("Upload File");
            gauge = new Gauge("Progress:", true, 100, 0);
            form.append(gauge);
            exitCommand = new Command("Exit", Command.EXIT, 0);
            uploadCommand = new Command("Upload", Command.SCREEN, 0);
            form.addCommand(exitCommand);
            form.addCommand(uploadCommand);
            form.setCommandListener(this);
        public void startApp() {
            Display.getDisplay(this).setCurrent(form);
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
        private void progress(int total, int current){
            int percent = (int) (100 * ((float)current/(float)total));
            gauge.setValue(percent);
        public void run() {
            httpConn();
        private void httpConn(){
            HttpConnection conn = null;
            OutputStream os = null;
            InputStream is = null;
            try{
                System.out.println("url:" + URL);
                conn = (HttpConnection)Connector.open(URL);
                conn.setRequestMethod(HttpConnection.POST);
                String postData = "";
                InputStream imgIs = getClass().getResourceAsStream(FILE);
            byte []imgData = new byte[imgIs.available()];
               imgIs.read(imgData);
                String message1 = "";
                message1 += "-----------------------------4664151417711" + CrLf;
                message1 += "Content-Disposition: form-data; name=\"uploadedfile\"; filename=\"" + FILE + "\"" + CrLf;
                message1 += "Content-Type: image/jpeg" + CrLf;
                message1 += CrLf;
                // the image is sent between the messages ni the multipart message.
                String message2 = "";
                message2 += CrLf + "-----------------------------4664151417711--" + CrLf;              
                conn.setRequestProperty("Content-Type", "multipart/form-data; boundary=---------------------------4664151417711");
                // might not need to specify the content-length when sending chunked data.
                // conn.setRequestProperty("Content-Length", String.valueOf((message1.length() + message2.length() + imgData.length)));
                System.out.println("open os");
                os = conn.openOutputStream();
                System.out.println(message1);
                os.write(message1.getBytes());
                // SEND THE IMAGE
                int index = 0;
                int size = 1024;
                do{
                    System.out.println("write:" + index);
                    if((index+size)>imgData.length){
                        size = imgData.length - index;
                    os.write(imgData, index, size);
                    index+=size;
                    progress(imgData.length, index); // update the progress bar.
                }while(index<imgData.length);
                System.out.println("written:" + index);           
                System.out.println(message2);
                os.write(message2.getBytes());
                os.flush();
                System.out.println("open is");
                is = conn.openInputStream();
                char buff = 512;
                int len;
                byte []data = new byte[buff];
                do{
                    System.out.println("READ");
                    len = is.read(data);
                    if(len > 0){
                        System.out.println(new String(data, 0, len));
                }while(len>0);
                System.out.println("DONE");
            }catch(Exception e){
                e.printStackTrace();
            }finally{
                System.out.println("Close connection");
                try{
                    os.close();
                }catch(Exception e){}
                try{
                    is.close();
                }catch(Exception e){}
                try{
                    conn.close();           
                }catch(Exception e){}
        public void commandAction(javax.microedition.lcdui.Command command, javax.microedition.lcdui.Displayable displayable) {
            if(command == exitCommand){
                this.notifyDestroyed();
            }else if(command == uploadCommand){
                new Thread(this).start();
    }Running this yields the error below...Can someone suggest me. whats the problem.
    url:http://localhost/post.php
    java.lang.NullPointerException
            at com.mpbx.PostFile.httpConn(PostFile.java:85)
            at com.mpbx.PostFile.run(PostFile.java:68)
    Close connection

    I also faced the same problem. To make this code work you will have to include the image.jpg in the jar. To do that, copy the image file in the src directory inside your project folder (if you are using netbeans) and then build the project.
    Remember, the web server should be running in background.

  • Software Upload Help Needed!

    I purchased Adobe Creative Suite (DVD package). I now have a new MAC that doesn't have a CD drive. How do I get my software loaded on my new computer?  I paid a significant amount of money on this software so I need help!!!!

    Please download the setup again from Internet and keep a copy of it for future use.
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    Follow the onscreen instructions to install
    When prompted for a serial number, enter your serial number and complete the installation.
    Regards,
    Ashutosh

  • Photo upload help needed

    Can't seem to upload my photos to iCloud, music and apps seem to sync, but no photos.  I have photo streaming on and connected to wifi, so not sure why it is not syncing.  I also plugged in my phone to my computer, but still nothing.  Any advice?

    You're up to date for a iPad1 but IOS 5.1.1 isn't enough for the program you want.

  • Help needed with header and upload onto business catalyst

    Can someone help with a problem over a header please?
    I have inserted a rectangle with a jpeg image in  background, in the 'header' section, underneath the menu. It comes up fine on most pages when previsualised, going right to the side of the screen, but stops just before the edge on certain pages. I have double checked that I have placed it in the right place in relation to the guides on the page.
    That's one problem.
    The second problem is that I tried to upload onto business catalyst, which got to 60% and refused to go any further, saying it couldn't find the header picture, giving the title and then u4833-3.fr.png. The picture is in the right folder I have double checked. And it isn't a png. Does it have to be ?
    And the third problem is that I got an email following my upload from business catalyst in Swedish. I am living in France.
    Can anyone help ? Thanks.

    Thanks for replying,
    How can I check the preview in other browsers before I publish a provisional site with BC?
    The rectangle width issue happens on certain pages but not others. The Welecom page is fine when the menu is active, also the contact page, but others are slightly too narrow. Changing the menu spacing doesn’t help - I was already on uniform but tried changing to regular and back.
    In design mode the rectangle is set to the edge of the browser, that’s 100%browser width right?
    Re BC I have about 200 images on 24 different pages and it seems to be having difficulty uploading some of them. But it has managed a couple I named with spaces but not others I named with just one name.
    Is there an issue on size of pictures ? If I need to replace is there a quick way to rename and relink or do I have to insert the photos all over again?
    I’m a novice with Muse with an ambitious site !
    Thanks for your help.
    Mary Featherstone
    Envoyé depuis Courrier Windows
    De : Sanjit_Das
    Envoyé : vendredi 14 février 2014 22:15
    À : MFeatherstone
    Re: Help needed with header and upload onto business catalyst
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion 
    Hi
    Answering the questions :
    - Have you checked the preview in Muse and also in other browsers ?
    - Does the rectangle width issue happens when menu is active , or in any specific state , Try to change the menu with uniform spacing and then check.
    - In design view the rectangle is set to 100% browser width ?
    With publishing :
    - Please try to rename the image file and then relink
    - If it happens with other images as well , see if all the image names includes strange characters or spaces.
    - Try again to publish
    With e-mail from BC :
    - Under preferences , please check the country selected.
    - If you have previously created partner account in BC and selected country and language then it would follow that, please check that.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6121942#6121942
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6121942#6121942
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6121942#6121942. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Looking for a ASP upload ext or code

    With all the problems I have had with PureASP3... I need
    something as backup
    to support the pages I have already created...
    I don't need all the bells and whistles like Pure ASP has...
    I just need the
    ability to upload files, and capture the path in the
    database..
    Is there anything available in the form of ext or maybe
    tutorial on how to
    accomplish this?
    DWMX - ASP - Access / SQL

    Try
    http://www.freeaspupload.net/
    Can download the code and modify for free. If this is behind
    a secure area
    and only you, then you'll be fine. Maybe think about
    JavaScript if you have
    many users...
    HTH,
    Piers

  • Help need to switch Muse site to BC on a allready hosted plan

    Hi,  i also posted on BC forum...
    I have a client that was in a hurry to have his emails accounts before the entire website.
    So i went on and bought the email marketing plan (cos he will also need to do email campains) an pointed his domain everything is working fine, at this moment he has his accounts the domain is live.
    The site would be just a small 7-10 pages not to complicated.
    Has a graphic designer (who has venture into Business catalyst cos it had all the solutions i needed, well that's what the promotional videos said anyway) I made a site in Muse.
    First i did a temporary page thats says "comming soon", and then i made the entire site, all the design and menu but with blank pages cos the client didnt have all the content yet (and still dont have). I uploaded that site to a sub directory so he could see the evolution.
    He approved the design, yay!
    At the end of the process, he told me he needed to have full control with the editor. (style, images, bulleted list, need to put downloadable document like pdf etc.) i told him that he could only modify what was allready there with the Muse in Browser editing (that he saw when i made the pitch using another site) he was impress with the way it worked.
    so i told him i would have to remake "template".
    I thought of using a BC template, and modify the looks to adapt to my client image, Of course, use a responsive theme so he could make the change at one place only. (cos in Muse you need to make the changes on the 3 layouts).
    Now, i created a new temporary site using one of the new responsive template available.
    How can i import that new site onto his live domain? In other words, how can a switch from a theme made in Muse, to a BC template?
    cant i just delete everything in the root folder, and upload the entire new site via ftp?
    please help me find the solution. i am a bit in a panic here
    hope you could understand my lousy English.
    Sincerely,
    i.d.

    This would need to be transparent for m'y client...
    Y
    Envoyé de mon iPhone
    Le 2014-04-20 à 15:29, Sanjit_Das <[email protected]> a écrit :
    Re: help need to switch Muse site to BC on a allready hosted plan
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion
    Thanks for additional details.
    Unfortunately we cannot change site template of a live site in BC , but as a workaround Create a site from BC using the template you wish to use then publish the site from Muse to the site created from BC and transfer the contents stored from live site to trial site. Ater final transition is done , you can delete the already paid site and make live the new trial site which includes new site template.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6314730#6314730
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6314730#6314730
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6314730#6314730. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Help Needed in Creating Java Class and Java Stored Procedures

    Hi,
    Can anyone tell how can i create Java Class, Java Source and Java Resource in Oracle Database.
    I have seen the Documents. But i couldn't able to understand it correctly.
    I will be helpful when i get some Examples for creating a Java Class, Java Source and Stored Procedures with Java with details.
    Is that possible to Create a Java class in the oracle Database itself ?.
    Where are the files located for the existing Java Class ?..
    Help Needed Please.
    Thanks,
    Murali.v

    Hi Murali,
    Heres a thread which discussed uploading java source file instead of runnable code on to the database, which might be helpful :
    Configure deployment to a database to upload the java file instead of class
    The files for the java class you created in JDev project is located in the myworks folder in jdev, eg, <jdev_home>\jdev\mywork\Application1\Project1\src\project1
    Hope this helps,
    Sunil..

  • Help needed using adobe exportpdf

    The first time I used adobe export pdf it worked well. However the next time and every other time I try to convert a pdf doc to word docx I get the error message at the end of the uploading session. "pdf doc failed to export to m,icrosoft word.  There was an unexpected problem.
    Anyone overcome this problem?

    Hi Stacy
                   Thanks for that info.  I was aware of the 100MB limit but 
    your response made me think again and go back to the problem and this is 
    what I found. The first  pdf document I uploaded into Adobe export pdf was  43
    MB and it went through fine. when I looked at the conversion to Word  docx I
    found it had been transformed into 83MB.
    So the conversion (which was a children's book with lots of images in it) 
    resulted in an increase of MBs by a factor of 1.7.  
    The second pdf document I uploaded was 64MB and this failed. If I apply the
    1.7 factor then the Word docx I wanted was going to be 109MB and therefore
    over  the 100MB limit.
    I didn't know that converting pdf to word would increase the MB like that. 
    Why, I don't know so thanks for your help I've learnt something new.
    Cheers
                Garth
    In a message dated 07/10/2013 04:42:36 GMT Daylight Time, 
    [email protected] writes:
    Re:  Help needed using adobe exportpdf
    created by StacySison (http://forums.adobe.com/people/StacySison)  in 
    Adobe ExportPDF - View the full  discussion
    (http://forums.adobe.com/message/5740689#5740689)

  • Data uload to ODS ending up with an error. URGENT HELP NEEDED!!!!!!

    Hi
    My Sceniro is Full load from ODS1 to 5 other ODS. Iam uploading the data to other 5 ODS by selecting 1 ODS at a time.
    Problem i am facing is upload is ending up with error mesg. Error Mesg are
    <b>Error 8 when starting the extraction program - R3019
    Error in Source System - RSM340
    Req xxx in ODS2 must have QM ststus green before it is activated - RSM1110</b>
    I have seen the the OSS notes for given error no, but they are not applicable to me. what could be the other possible solution.
    In detail tab of the monitor i see red light at Extraction step and Subseq. processing.
    Its quite urgent bcoz this error is occuring in Production system.
    Plzzzz urgent help needed.
    Thanks
    Rohini
    Message was edited by: Rohini Garg

    rohini,
    go to RSA1->Modeling->Source Systems and right-click on your BW system, and click on 'Replicate Datasources'.
    also, go to the ODS that's causing the problem (via RSA1->InfoProvider and go to your ODS), right click and click on 'Generate Export Datasource'.
    one more thing, make sure that all your record/s in the source ODS is active. if you're not sure manage its contents and click on 'Activate'. if there are any entries in the the next screen that comes up, you need to activate it first, then try everything again.
    let me know what happens. also try to look for error messages in ST22 and SM21 that may be related to this and post whatever possible error you see there here.
    ryan.

  • Help needed placing extra images in my portfolio.

    I like to add some more pictures by my portfoliomap.
    I have now 6 items each page and i like to know if its possible to add some more pictures and how i can do this?
    You can find my site at..
    http://www.dorffdesign.nl/affiches.html

    As you can see on
    http://www.dorffdesign.nl/advertenties.html
    it worked out fine..
    Only the last set off images contait to much space between the set before? Do you know where i can adjust this?
    Regards Brian
    Date: Tue, 17 Apr 2012 09:07:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Help needed placing extra images in my portfolio.
        Re: Help needed placing extra images in my portfolio.
        created by Altruistic Gramps in Dreamweaver - View the full discussion
    Upload the images to the images folder and use the markup as you have been using in the following, changing the name of the image to suit.
    !images/arcadisch_logo.jpg|alt=|src=images/arcadisch_logo.jpg!
    Gramps
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4340979#4340979
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4340979#4340979. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • PDFActions on xMII12. Help needed immediately???

    Good Day everyone. I face a problem when trying to deploy PDFActions.jar file in xMII 12. The procedure i followed is ,
    1) I created a file called catalog.xml from the PDFComponentCatalog.xml file which presents in xMII 11.5.
    2) Then i created the PDFActions.jar file along with the xml file.
    3) Used Custom Actions link in System Management and added PDFActions.jar file as the assembly file and iText.jar file as the dependency file. The upload was successful and i deployed without any error.
    4) When i open workbench i can see a PDF action block on the left side without images, and when i try to add it to a sequence nothing happens. It is not getting added in sequence and i am not getting any error messages
    Can anyone help me out on this?

    I guess you've been posting this issue for quite sometime now and inspite of getting hints I am not sure why you are coming up with your own steps to resolve the problem.
    SAP note 1109054 has been mentioned probably a number of times before and I would advice you to open it up and read through , carefully , with a  relaxed mind , no need to panic (read - Help needed immediately???).
    The above mentioned note is for 12.0 SP2 so make sure you are on that version and because there have been no postings/notes for SP3 I would think the note would be applicable for SP3 as well.
    If you face any issues after that then raise your doubts.

Maybe you are looking for

  • Mini-DVI to S-Video resolution

    I've plugged my Mini-DVI to S-Video adapter into the MacBook, but there is only limited selection of resolutions available in the NTSC/PAL preference pane. My Mac mini S-Video adapter has options for 16:9 output, but the MacBook only lists the follow

  • Opens same PDF each time, regardless of the file.

    I use a website where I can view my past purchases as a PDF. The first PDF I look at opens fine. If I close that and view another PDF, the previous PDF is displayed. It is like the first PDF I view sticks in the cache or something and it always is di

  • How to execute the Portal Activity Report

    Hello, In the System Administration -> System Configuration-> Service Configuration Editor Under Applications->com.sap.portal.activityreport.core-> Services->ActivityReport and I have configured the report. I saved I have restarted the service to eff

  • Printing to a PDF crashes Firefox

    When I try to print to save a document as a PDF, Firefox crashes without a Crash ID or anything else. The saved PDF is blank. This does not happen when I use Safari on my iMac G5

  • "Object variable or With block variable not set" error

    I have Presenter 6.2 installed into PowerPoint 2007 on a XP operating system. I have successfully used this product a couple of months ago. Evidently now I am getting an Adobe Presenter error prompt that says "Object variable or With block variable n