Problem uploading PHP files [was: PHP files]

I am having a problem uploading PHP files from Dreamweaver to my file manager on my web host.
[Subject line edited by moderator to make meaning clearer. Thread also moved to the Dreamweaver Application Development forum]

I see this is your first post. Welcome.
Please take a few minutes to read How to get help quickly. Also post in the correct forum. The Dreamweaver General Discussion forum is for questions about DW in general, CSS, and design problems. Questions about PHP and server-side issues should go in the Dreamweaver Application Development forum.
It's very hard to give you any help, because the information you have given is so sparse. The only advice I can give is to check that you have set up the Remote Server details correctly in the Site Definition dialog box. See http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSBE25912D-A9DE-4ba1-9F85-4C692F5C14ADa .html.

Similar Messages

  • Problems uploading images with uppercase (.JPG) file extension.

    I am using coldfusion 8 and have no problems uploading an image using CFFile when the image has a lowercase file extensions such as .jpg however if the same file has a Uppercase file extension .JPG coldfusion hangs and then just times out. The files are exactly the same just different cases in the extensions.
    Any idea?
    My cffile is set as such   <cffile accept="image/*" action="upload" destination="#uploadfolder2#" filefield="profilePictureFileBrowser" nameconflict="makeunique" >
    I tried changing the accept property to image/*, image/jpg, image/JPG but that did not fix the problem either

    Thanks for the quick reply. So I removed the tag and even though I get an error after submitting the form it appears to not hang anyways. Any idea how to fix this?
    I am on a windows 2003 server so cases sensitifity should not be a problem. I am perplexed as to why this would work with lowercase extensions an not upper?

  • Problem uploading data from an .CSV file

    hello,
    I have a requirement in which i need to upload .csv file. I tried using GUI_UPLOAD and TEXT_CONVERT_CSV_TO_SAP. But the values are getting appending as a single value seperated by cama.
    for example, If there are 5 columns and 10 rows in my test.csv file. when i am using GUI_UPLOAD and TEXT_CONVERT_CSV_TO_SAP. I am getting data in 1 column and 10 rows. each row has 5 values seperated by column. the other 4 columns in the internal table are not populated.
    can anyone help me.
    Thanks and Regards,
    gautham

    hi,
    use the Function module 'ALSM_EXCEL_TO_INTERNAL_TABLE'.
    REPORT  ZSR_BDC_XL
            NO STANDARD PAGE HEADING LINE-SIZE 255.
    TABLES : LFA1,RF02K.
    DATA : BEGIN OF ITAB OCCURS 0,
           LIFNR LIKE RF02K-LIFNR,
           KTOKK LIKE RF02K-KTOKK,
           NAME1 LIKE LFA1-NAME1,
           SORTL LIKE LFA1-SORTL,
           LAND1 LIKE LFA1-LAND1,
           SPRAS LIKE LFA1-SPRAS,
           END OF ITAB.
    DATA : ITAB1 LIKE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
    DATA : B1 TYPE I VALUE 1,
           C1 TYPE I VALUE 1,
           B2 TYPE I VALUE 10,
           C2 TYPE I VALUE 99.
    INCLUDE BDCRECX1.
    START-OF-SELECTION.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME                = 'C:\xl1.csv'
          I_BEGIN_COL             = B1
          I_BEGIN_ROW             = C1
          I_END_COL               = B2
          I_END_ROW               = C2
        TABLES
          INTERN                  = ITAB1
        EXCEPTIONS
          INCONSISTENT_PARAMETERS = 1
          UPLOAD_OLE              = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM  ORGANIZE_UPLOADED_DATA.
    PERFORM OPEN_GROUP.
    LOOP AT ITAB.
    PERFORM BDC_DYNPRO      USING 'SAPMF02K' '0100'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '/00'.
    PERFORM BDC_FIELD       USING 'RF02K-LIFNR'
                                  ITAB-LIFNR.
    PERFORM BDC_FIELD       USING 'RF02K-KTOKK'
                                  ITAB-KTOKK.
    PERFORM BDC_DYNPRO      USING 'SAPMF02K' '0110'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                  'LFA1-SPRAS'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '/00'.
    PERFORM BDC_FIELD       USING 'LFA1-NAME1'
                                  ITAB-NAME1.
    PERFORM BDC_FIELD       USING 'LFA1-SORTL'
                                  ITAB-SORTL.
    PERFORM BDC_FIELD       USING 'LFA1-LAND1'
                                  ITAB-LAND1.
    PERFORM BDC_FIELD       USING 'LFA1-SPRAS'
                                  ITAB-SPRAS.
    PERFORM BDC_DYNPRO      USING 'SAPMF02K' '0120'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                  'LFA1-KUNNR'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '/00'.
    PERFORM BDC_DYNPRO      USING 'SAPMF02K' '0130'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                  'LFBK-BANKS(01)'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '=ENTR'.
    PERFORM BDC_DYNPRO      USING 'SAPLSPO1' '0300'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '=YES'.
    PERFORM BDC_TRANSACTION USING 'XK01'.
    PERFORM CLOSE_GROUP.
    ENDLOOP.
    FORM ORGANIZE_UPLOADED_DATA .
      SORT  ITAB1  BY  ROW
                       COL.
      LOOP  AT  ITAB1.
        CASE  ITAB1-COL.
          WHEN  1.
            ITAB-LIFNR = ITAB1-VALUE.
          WHEN  2.
            ITAB-KTOKK = ITAB1-VALUE.
          WHEN  3.
            ITAB-NAME1 = ITAB1-VALUE.
          WHEN  4.
            ITAB-SORTL = ITAB1-VALUE.
          WHEN  5.
            ITAB-LAND1 = ITAB1-VALUE.
          WHEN  6.
            ITAB-SPRAS = ITAB1-VALUE.
        ENDCASE.
      AT  END  OF  ROW.
    APPEND ITAB.
    CLEAR ITAB.
    ENDAT.
      ENDLOOP.
    ENDFORM.                    " ORGANIZE_UPLOADED_DATA
    if helpful reward points

  • Can't find the file ?php echo $editFormAction; ? in XAMPP

    I used the insert record function in CS4 on a page I'm working on.  I'm running XAMPP in win XP.
    Whenever I load the page into firefox, fill out the forms with random data, and click the submit button, I get the following error:
    can't find the file at /C:/xampp/htdocs/MySite.com/<?php echo $editFormAction; ?>
    I have been trying to research this a bit myself, and I think the problem may simply be that the editFormAction script is not in the root folder of my site.  But I am not sure where it is, and so, what to change the reference to.
    Or perhaps I'm completely wrong about this???
    Please Help Me!!

    Well, I have to chuckle a bit because the article on how to set up a php testing server that you wrote is the exact one I read to set up my testing server!  It is very well written and probably the most helpful and straight foreward article on setting up dreamweaver with XAMPP on the web.  I followed all of the instructions exactly, so I imagine the problem must be elsewhere?  It's pointing to the C drive because that's where XAMPP is installed.  This is how is it supposed to be setup, correct?  Apache and MySQL are running, or at least it says so on the XAMPP control panel.
    Also, I apologize for not posting this in the right forum.  That was my first post on the adobe boards and I didn't really consider inserting records to a database to be an "application."  So thanks for pointing me in the right direction.
    for those who want to see my code, here it is.  Except for the exact names of the fields, it's exactly what dreamweaver creates when youc click on the "insert record" button in the insert menu.  I don't see any option for pasting the code as "code" like in most code devolpoer forums.  I know some poeple get upset if you paste code without doing it right, so I hope I'm not making anybody mad.
    the following is inserted in the head:
    <?php require_once('Connections/GiftListConnection.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
      $updateSQL = sprintf("UPDATE ff SET EmailAddress=%s, Relationship=%s WHERE FirstName=%s",
                           GetSQLValueString($_POST['EmailAddress'], "text"),
                           GetSQLValueString($_POST['Relationship'], "text"),
                           GetSQLValueString($_POST['FirstName'], "text"));
      mysql_select_db($database_GiftListConnection, $GiftListConnection);
      $Result1 = mysql_query($updateSQL, $GiftListConnection) or die(mysql_error());
      $updateGoTo = "ManageFF.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form2")) {
      $insertSQL = sprintf("INSERT INTO ff (FirstName, EmailAddress, Relationship) VALUES (%s, %s, %s)",
                           GetSQLValueString($_POST['FirstName'], "text"),
                           GetSQLValueString($_POST['EmailAddress'], "text"),
                           GetSQLValueString($_POST['Relationship'], "text"));
      mysql_select_db($database_GiftListConnection, $GiftListConnection);
      $Result1 = mysql_query($insertSQL, $GiftListConnection) or die(mysql_error());
      $insertGoTo = "ManageFF.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    mysql_select_db($database_GiftListConnection, $GiftListConnection);
    $query_Recordset1 = "SELECT * FROM ff";
    $Recordset1 = mysql_query($query_Recordset1, $GiftListConnection) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    and then this is the actual form code in the body:
    <p class="Bold">&nbsp Add new family member or friend...</p>
    <form action="<?php echo $editFormAction; ?>" method="post" name="form2" id="form2">
      <table align="left">
        <tr valign="baseline">
          <td nowrap="nowrap" align="right">FirstName:</td>
          <td><input type="text" name="FirstName" value="" size="32" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right">EmailAddress:</td>
          <td><input type="text" name="EmailAddress" value="" size="32" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right">Relationship:</td>
          <td><input type="text" name="Relationship" value="" size="32" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right"> </td>
          <td><input type="submit" value="add" /></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form2" />
    </form>
    Thanks for trying to help out this noob, everybody!
    BTW, this is Inkexit posting.  For some reason when I logged in this morning, I was made to pick a new screenname, as inkexit was already in use.  But I knew that though, as I was the one using it, lol.  Kinda bizzarre.  Perhaps the Mods should know about this?

  • Downloads a php page as a file instead of loading and displaying

    I reset a client's .htaccess file to process .html files through php.
    As a consequence, FF downloaded instead of loading one of the html files. When I removed the .htaccess directive, this page still refused to load until I cleared my recent cache.
    I found an old, locked, 2008 thread on this bug [https://support.mozilla.com/tiki-view_forum_thread.php?forumId=1&comments_threshold=0&comments_parentId=1452&comments_offset=0&comments_per_page=20&thread_style=commentStyle_plain]
    One user of this thread suggested that the problem was due to the use of UTF-8 charset. However, my page uses charset=iso-8859-1.
    This is a very simple XHTML 1.0 Strict page. The doctype is not the problem as it is character for character identical to other pages that do not exhibit this problem. The page validates through my web editor and at [http://validator.w3.org/]
    The locked thread suggested editing the profile folder and removing the ''mimetypes.rdf'' file. This is NOT a solution for a public web site. There are huge numbers of casual web users who user FireFox but would not begin to have a clue about solving this problem.
    Until this bug is fixed, I need some sort of work around that I can implement in my file on the server. Here's hoping that someone in the two years since the first posting has discovered one!!
    I didn't include a link to the affected page because I don't yet have a test web page that exhibits the problem. It appears to be random -- I copied the page to a test web site (same server, same web hosting company), set .htaccess to process through php and the page loaded fine!!!

    You have to make sure that the server sends the processed php file as text/html
    &lt;?php header('Content-Type: text/html'); ?&gt;

  • Format file problem uploading electronic bank statement files FF_5 RFEBKA00

    hello
    I am facing a problem when uploading electronic bank statement files with the file format. The situation is as follows:
    1- Electronic bank statement files are sent by FTP from the bank to a certain directory in AL11
    2- we have developed a "z" program that just picks electronic bank statement files from AL11 directory and process them using standard FF_5 (RFEBKA00) program.
    3- When processing some files had an error, when debugging we have verified that errors are caused by some "special" characters non Unicode as "®" (=Hex'AE') with UTF-8, a '#' is displayed.
    SAP answers a question as follows:
    AL11 is designed to display os-files (log-files, trace-files etc.)
    from within the SAP-system for supporting purposes in order not to
    logon to the os itself.
    It was not designed to display any file-content in the system created
    with any code-page.
    AL11 opens the file in textmode with encoding option default, which
    means UTF-8 in a unicode system and NON-UNICODE in the other case.
    You cannot change this setting.
    If you have the need to specify these options, depending on your files,
    you can make a copy of report RSWATCH0 and customize the OPEN-statement
    to yor needs.
    On a Unicode system, the files need to be in Unicode format (UTF-8).
    Eg:When you interpret a non-Unicode "®" (=Hex'AE') with UTF-8, a '#' is
    displayed.
    Case 1:
    Who is creating those files? Are these files
    1) created by you
    2) are they written by a SAP application?
    ==>There are the notes 752835 and 747615 for cases like these.
    In case 2) it may be that the application responsible for the file
    download (not AL11!) should be the problem, considering note 752835.
    There is also the possibility for you to convert the file to the correct format using our tool RSCP_CONVERT_FILE (note 747615).
    System administrator has told me to copy standard RFEBKA00 program and modify the OPEN-statement but I am not agree because I think that the problem is when generating the files in bank's system and/or sending the files to SAP by FTP.
    Does any body face a problem like this before? Any ideas?
    Thanks a lot

    Hello,
    The files that are available in AL11 are in Unicode.
    Can you convert them to text by using the following method and then try:
    You must have mapped this directory and having access.
    Right click on file
    Open with: Microsoft Office Word
    Then the pop-up comes: File conversion - bacs
    Select Other encoding radio button
    Then select "Unicode" from list
    and say OK
    Now the file is being opened in readable format:
    File SAVE as PLAIN TEXT
    Save the file in the same folder that you are referring to in AL11
    Now if you try with this .txt file, it should work in FF_5
    Thanks,
    Ravi

  • Php - get name from 'file field' and pass to database?

    Is it possible to extract the 'image' name from the 'file' field and insert it into a database using php?
    <input type="file" name="ImageName" id="ImageName">
    I can't have:
    $ImageName = trim($_FILE['ImageName']);
    So hows this handled?
    Cheers
    Os

    Murray *ACP* wrote:
    Should be pretty strightforward, Os.  You know where to ask the questions!
    Yeah.. but I keep coming up against brick walls
    I'm trying to manipulate David Powers PHP Solutions chapter 6 - Uploading Files.
    He's got some sort of complicated function going on which makes sure no two images which are uploaded to a folder have the same name. i.e., london.jpg becomes london_1.jpg. (the php even inserts underscores if there are gaps in the image name)
    If I just use $ImageName = $_FILES["ImageName"]["name"]; potentially I could end up with dozens of images with the same name in the database, which is NOT desirable.
    Of course I could simplyfy everything and use two forms - 1 for uploading the images to the upload folder and then one for inserting the images details into the database BUT that has the drawback of the client needing to type in the name of the image identically to match the name which has been generated in the upload folder and that aint gonna happen in a million years

  • Problem uploading an IDOC from File

    hello everybody,
    I'm using function IDOC_XML_TRANSFORM to upload an IDOC from a file, I have a problem with the function cause is searching the segments of the idoc in table EDSAPPL, now the problem is that the segment is not in that table, it should exist cause the IDOC was generated by the same system, now is there a process that should be done to update this table?, thanks in advance.
    Regards,
    Julio Cesar Ruiz

    hi
    chk this
    Re: iDOC creation from a flat file
    hope this helps
    regards
    Aakash Banga

  • WebDAV, php and executing the file

    I am having trouble with WebDAV executing PHP code when opening files remotely on the server using a text editor and not showing the php code.
    If we access the server through a text editing tool via WebDAV, it executes the php code and displays the resulting code in html, but not the original php code. But if we log-in to the server using FTP, same user, just different protocol, then the code is displayed as php code, but then that user then owns the file and we generate other permission problems.
    So the question is: How can you set up a machine to have users access the server only through WebDAV, but have the text editor they are using NOT execute the PHP files when they open, but show the php code?
    Many thanks for your help.
    Pilar

    Huh?
    And exe only runs on the machine that it is accessible from via the OS. So an exe on a server can 'run' on a client.
    There are word viewers that can be installed in a browser that allows a word file to be viewed in the browser. The viewer has to be installed in the browser however.

  • When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    first, you just asked me to use MS file Explorer to see what the properties were.,..and to ask what happened. Yes - that's on my hard drive. The problem I have is opening word files in a DB that is web enabled.....I've used Firefox browser for that, and everything else , for years...... When I look at the Tools, and options on FireFox., as your support page noted.....NOTHING is listed in the Applications tab....hence my note asking for help. The file I need to open is a Word file out on a web enabled DB. It's not on my hard drive - I have to problems opening docs there - but for that, I don't use Firefox

  • Problem Uploading and Sharing Video Files

    I just uploaded a 3.3GB h.264 Quicktime movie to Creative Cloud. It took many hours. Now that it's finished uploading, I can't figure out how to play the video while logged into Creative Cloud, despite that fact that under information it's recognized as a mov and 3.3GB. And when I try to share using the link-in-email option, my friend can't play the movie or download it. When he tries to download it, nothing connects. Creative Cloud seems to be treating this movie as a single still image or something. Suggestions as to how to solve these upload and share video problems? I have a 2011 MacBook Pro with all possible upgrades, Mac OS X Version 10.6.8. Any help here much appreciated. One of the reasons I signed on for a year with Creative Cloud was to utilize this 20GB to share video in the way I've done through Dropbox.

    Thanks for the reply, Dave, but I don't think this is the problem. I've uploaded this h.264 Quicktime (which plays fine before uploading) a few times now and cannot download or share due to a very long period of "Connecting...", then the message "Problem loading page. The connection was reset. The conection to the server was reset while the page was loading. - The site could be temporarily unavailable or too busy. Try again in a few moments. - If you are unable to load any pages, check your computer's network connection. - If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the web." Then I'm given the option to "try again". This or a similar message is what others get when trying to download when I try to share the file with them using the link-in-email method, and neither I nor any of those I try to share this with are having problems with internet connectiions or downloading other large video files from the internet. The reason I suspect that Creative Cloud can't deal with downloading larger files such as this 3.3GB Quicktime is that I have no problem uploading, downloading or sharing small Quicktime movies through CC, and they are identified the same way and look the same when uploaded to CC. I also have no problem downloading much larger video files from other sites on the internet, such as feature length films that are a lot larger than 3.3GB. It seems like only things that download quickly don't time-out, regardless of what browser I'm using. Does Creative Cloud's download system rely on files being able to be downloaded quickly in full before a browser's time-out? As I've mentioned before, I have no problem uploading, downloading, sharing, etc. using Dropbox. Long explanation here, I know, but I thought all this info might help in figuring things out. Any ideas as to what's going on?

  • Hi, I have recently updated my iMac from OS x mountain lion to OS X Mavericks. After that I can't upload any video and some files to my personal email account. Can anyone please help me to sort this problem.

    Hi,
    I have recently updated my iMac from OS x mountain lion to OS X Mavericks.
    After that I can't upload any video and some files to my personal email account.
    I have tried to send a small video clip to the sender as attachment. i have done this before
    with the same video same and same email account. This problem found just after installed the
    OS X Movericks. Can anyone please help me to sort this problem.
    Thanks.
    Roman

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in earlier versions there is only one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Problems Uploading to file storage

    I recently started with Adobe ConnectNow and see a lot of
    potential. I am having no luck uploading to storage in the files
    section of the system. I have tried simple text, RTF, MS Word 2003
    and 2007 - None will upload. I get the following message: "The file
    xxxxxxx cannot be added to Acrobat.com; please try again later"
    I realize there is a virus check on the uploaded files but
    this does not appear to be the problem. The files have never
    appeared on the file list.
    The process for uploading seems straight forward. What can be
    the issue that prevents the files from loading?

    I have been using FireFox 3.0.1as my browser. When I switched
    to Internet Explorer v 7.06, the loads worked fine. I was under the
    impression that FireFox was an acceptable browser for using the
    ConnectNow system. Is there a required add-in?

  • How to extract text from a PDF file using php?

    How to extract text from a PDF file using php?
    thanks
    fabio

    > Do you know of any other way this can be done?
    There are many ways. But this out of scope of this forum. You can try this forum: http://forum.planetpdf.com/

  • I am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    i am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    hi TimoHahn,
    i am getting following exception in JDeveloper(11g release 2) Studio Edition Version 11.1.2.4.0 but it works perfectly fine in JDeveloper 10.1.2.1.0
    Root cause of ServletException.
    java.lang.NullPointerException
    at java.util.PropertyResourceBundle.handleGetObject(PropertyResourceBundle.java:136)
    at java.util.ResourceBundle.getObject(ResourceBundle.java:368)
    at java.util.ResourceBundle.getString(ResourceBundle.java:334)
    at org.rbi.cefa.master.actionclass.UserAction.execute(UserAction.java:163)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

Maybe you are looking for

  • Multiple Domains with oc4j-ra.xml

    Hi, I am using the oc4j-ra.xml file in the /oracle/app/10Gias/j2ee/OC4J_BPEL/application-deployments/default/DbAdapter/ directory to my database connection. I have now created a second domain for a TEST environment and want to use a seperate oc4j-ra.

  • I need to change my region from Canada to Argentine, but I have 19Cents on my account

    So here is the thing: I went to Canada last year for about a month and a friend of mine gave me a giftcard for about 25$, but I needed to change my region because of obvious facts. But now I am back in Argentine and I can not longer purchase things b

  • LITTLE PICTURES IN THE COMMERCIALS

    HI, I WANTED TO KNOW IF ANYONE KNOWS IF THE IPHONE REALLY DOES SHOW THE LITTLE PICTURES FOR THE CONTACT WHEN SOMEONE IS CALLING LIKE THE ONES IN THE COMMERCIAL....

  • Namespace Doubt

    Hi Experts i am having some confusion with respect to namespace creation in my scenario. My scenario is a "bypass" scenario and i am not creating any data types or msg types or even mapping in the IR Side. I am doing my developemnt only in the ID par

  • Cc will not download

    I HAVE JUST PAID FOR A SUBSCRIPTION TO CC AND IT WILL NOT DOWNLOAD. i HAVE BEEN WAITING FOR PHONE SUPPORT FOR 28 MINS AND STILL COUNTING..!