path of the image broken after upgrade 4.1 and 4.2

Hello

Just upgraded multiple instances of 4.1 to 4.2.1. Running apex listener 2.0.0.354.17.05 on glassfish 3.1.2.2. Our database is 11.2.0.3.0 on centos 2.6.32 - 279.9.1.el6.x86_64

One of our updates have a very unusual problem. Our applications everything will work perfectly, but the generator screens are empty, or at least appear empty. The source of the page looks normal in a browser, except we are seeing that the image paths are all poorly trained. They all lack the directory ' / ' final after the 'i' of the images. For example, the login page of the generator has the reference of the following image:

https://ourorg.org/iapex_ui/apexlogo.PNG

who should be

https://dev.insitehome.org/i/apex_ui/apexlogo.PNG

If I type the correct URL, the image is visible, so I doubt there is any problem with the version of the images or the location of the server. Apex SEEMS to generate the incorrect path for the images.

Any suggestions?

Thank you
Steve

stevepence wrote:
OK, it seems pretty obvious what happened. Instead of

@apxrtins.sql SYSAUX SYSAUX TEMP /i/

I dropped this trailing slash after the 'i '.

I hope someone can tell me where in the apex metadata to fix this without reinstalling.

Run the /apex/utilities/reset_image_prefix.sqlscript, but make sure that they have set Re: 4.2 reset an error sql prefix image. If this isn't the case, apply the workaround before you start.

Tags: Database

Similar Questions

  • Add the folder names in the path of the image as keywords separated from image metadata

    Hi all, I tried to find a solution online and customize the amazing Paul Riggott script, but I'm not able to make it work the way I need.

    I have my customer images organized in the structure of folders and subfolders. For all images (thousands of files in the subfolders a lot) I need a script for Adobe Bridge to take all the way from the image, separated from individual files paths file and store these records in the form of keywords separated in the metadata of the image.

    For example, I have the image.jpg/Work/Job01/share/Photos and image B.jpg file in the folder/Work/Job02/PartB/Photos. After I run the script from Adobe Bridge on file/work, I want to have for the two added images keywords

    Size: Work; Job01; Share; Photos

    Notice: Work; Job02; PartB; Photos

    As 'Work' and 'Pictures' folders are usually present, it would be nice to have the opportunity to put these two exact strings in script and exclude keywords added, but it is not necessary :-)

    The bellows of script adds one keyword ~photos/Work/Job01/share/Photos, for what is necessary is to divide and make key words separated substrings. This would allow me to move pictures anywhere and still be able to filter as a group structure (as number of employment, or part name).

    Please, could someone show me how to update this script? Or is there another solution that I just haven't found yet?

    Thank you, Petr

    // ADOBE BRIDGE SCRIPT // PUT FOLDER NAMES TO IPTC KEYWORDS
    // from Paul Riggott Script, May 12, 2011 12:23 PM (in response to JSG_Alex_B)
    // https://forums.adobe.com/thread/656144
    #target bridge   
      if( BridgeTalk.appName == "bridge" ) {   
    AddFolderNameToMeta = MenuElement.create("command", "Add folder names as keywords", "at the end of Tools"); 
    } 
    AddFolderNameToMeta.onSelect = function () { 
      addFolderName(); 
      } 
    function addFolderName(){ 
    var folders =[]; 
    var Pics=0; 
    folders = FindAllFolders(Folder(app.document.presentationPath), folders); 
    folders.unshift(Folder(app.document.presentationPath)); 
    for(var a in folders){ 
      var PictureFiles = folders[a].getFiles(/\.(jpg|jpe|jpeg|gif|eps|dng|bmp|tif|tiff|psd|rle|dib|cin|dpx|sct|pbm|flm|psb|exr|pcx|pdp|nef|dcr|dc2|erf|raf|orf|tga|mrw|mos|srf|pic|pct|pxr|pdd|pef|png|x3f|raw)$/i); 
    for(var p in PictureFiles){ 
        addKeyword(PictureFiles[p]) 
        Pics++; 
        } 
    } 
    alert("Number of Folders Processed = "+folders.length+ " Documents Processed = "+Pics); 
    function addKeyword(fileName){ 
    if (ExternalObject.AdobeXMPScript == undefined)  ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript"); 
    var thumb = new Thumbnail(fileName); 
    // I need somehow to make substrings from path to separate individual folder subfolder names and add these as separate keywords
    var folderName = decodeURI(fileName.path).replace(new RegExp(/\\/g),';'); 
      if(thumb.hasMetadata){ 
          var selectedFile = thumb.spec;   
          try{ 
          var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE); 
      var myXmp = myXmpFile.getXMP(); 
            var keys = getArrayItems(XMPConst.NS_DC,'subject'); 
            keys.unshift(folderName); 
            keys= ReturnUniqueSortedList(keys); 
            myXmp.deleteProperty(XMPConst.NS_DC,'subject'); 
            for(var z in keys){ 
            myXmp.appendArrayItem(XMPConst.NS_DC, "subject", keys[z], 0,XMPConst.PROP_IS_ARRAY); 
            } 
            }catch(e){} 
    if (myXmpFile.canPutXMP(myXmp)) { 
            myXmpFile.putXMP(myXmp); 
            myXmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY); 
            } 
    } 
    function getArrayItems(ns, prop){ 
    var arrItem=[]; 
    var items = myXmp.countArrayItems(ns, prop); 
      for(var i = 1;i <= items;i++){ 
        arrItem.push(myXmp.getArrayItem(ns, prop, i)); 
                    } 
    return arrItem; 
    } 
    }; 
    function FindAllFolders( srcFolderStr, destArray) { 
    var fileFolderArray = Folder( srcFolderStr ).getFiles(); 
    for ( var i = 0; i < fileFolderArray.length; i++ ) { 
      var fileFoldObj = fileFolderArray[i]; 
      if ( fileFoldObj instanceof File ) {   
      } else { 
            destArray.push( Folder(fileFoldObj) ); 
      FindAllFolders( fileFoldObj.toString(), destArray ); 
      } 
    } 
    return destArray; 
    } 
    function ReturnUniqueSortedList(ArrayName){ 
    var unduped = new Object; 
    for (var i = 0; i < ArrayName.length; i++) {   
    unduped[ArrayName[i]] = ArrayName[i]; 
    } 
    var uniques = new Array;for (var k in unduped) { 
      uniques.push(unduped[k]); 
      } 
    uniques.sort(); 
    return uniques; 
    } 
    }; 
    
    

    The only other option that I know uses ExifTool:

    Help by adding information of path as keywords

  • "Insufficient for an image" error after upgrade to 10.1.4 or 9.5.2

    Greetings,

    We continue to receive the following error message: "Insufficient for an image" error after upgrade to 10.1.4 or 9.5.2 and we want a quickfix (as it appears in: fter-updating-to-10-1-4-or-9-5-2/ https://blogs.adobe.com/dmcmahon/2012/08/21/acrobat-insufficient-data-for-an-image-error-a). Our company uses scanning software, and we must be able to immediately view the PDF files, retirement is not an option that we would need to do it on all computers. It is urgent for us to have this fixed number, a quickfix (as shown previously) would be ideal, because we cannot wait for the next update to Acrobat. This question as been around for several weeks now.

    Thank you very much for your time and help.

    Acrobat engineering wishes to inform users facing this problem that the latest version of the player (available for download on http://get.adobe.com/reader) XI solves this problem. Users are advised to download the latest version as soon as possible to avoid encountering this error in the future. As mentioned, the team is working hard to solve the problem in earlier versions (10.x and 9.x) as well and plans to deliver a solution by Q1 2013. For more details, you can check out the blog here

  • Retrieving error - could not find the path of the image... M:/RecoveryImage/install.wim

    So, I went out and bought the USB on the gateway site to restore this laptop again and when I tried to do, he says recovery failed - could not find the path of the image M:/RecoveryImage/install.wim.

    I contacted support and they issued me a replacement USB drive, I get the same failure.

    I diagnosed the HARD drive and it passes.  I used diskpart to 'clean up' the disk drive HARD all nothing doesn't.

    [Under the direction of privacy] order number

    What gives?

    Acupro1,

    I you sent a PM with respect to research purposes.

  • Get the path of the image of the contact for smartphone webworks

    Hi all
    I'm trying to get the path of the picture of the contact in the address book.
    I get the title, first name etc with success.
    But I can't find such a code I can get the path of the image of the particular contact.

    Please help me if anyone knows the code or have any solution as soon as Possible.

    Thank you best regards &,.
    Castillo

    You can retrieve the image encoded base64 string object, but will not receive the path of the file (The API Reference). To display the image, you can use a URI of the data with a tag.

    Example on how to use the data URI: http://css-tricks.com/data-uris/

  • I have more endurance, remove or insert the option pages after upgrade to Adobe DC. How to get back these functions?

    I have more endurance, remove or insert the option pages after upgrade to Adobe DC. How to get back these functions?

    Looks like you may have updated to misapplication. Probably, you have Adobe Acrobat (the full version) and installed Adobe Acrobat Reader instead. If you had "improved" Adobe Acrobat, it would have cost you money. Acrobat Reader is free.

  • How can I hide or delete the path to the images in PDF format?

    I create a document in Word, and then convert it to PDF.

    Once published and downloaded online, when I move the mouse over an image, the path to the image file is displayed.

    How do I hide or remove this, so it is not displayed?

    My partner got figured out. No need to answer.

  • Illustrator CS4 is no longer present in preview fonts in the character palette after upgrade to Yosemite... Help, please

    Illustrator CS4 is no longer previews of fonts in the character palette after upgrade to Yosemite

    Help, please... Thank you

    Got a solution guys. The new transparency is the problem. Go to System Preferences > accessibility, and select reduce transparency. It should work.

  • How to bind dynamically image with a path to the image?

    XML given by path of the image. How to link to the image field in adobe livecycle?

    Try the LiveCycle forums...

  • The path for the images of attachment in RoboHelp 8

    I'm pretty new to Robohelp, so please forgive me if this has been addressed in another discussion... I have looked and can't seem to find what I'm looking for to describe.

    I work in Robohelp 8 and creation of a new help system in important subjects to a former aid system. The problem, I'm running in and I don't see how to solve is that there are a few topics that have images where instead of the path of the image to a folder called "Images" in the main directory, it plunges the graph in the Project Manager window when I import the subject. I tried watch a subjects who do not have their images in the window of senior project manager, and compared with that, and I don't see the difference. I tried to rename the images and placing them in the correct folders and then insert the images in the topics, but he always tries to look at the main folder and rest pours out the image in the project manager.

    Please share any help you can provide.

    Right-click on the project files and add a new folder called Images. The images probably will appear.

    You do not have to have images in the same folder as the subjects, it is up to you, where they are stored. When project files shows, you see the real records and you can store things where you want. When you see the HTML files, RoboHelp shows the old view with Nick records. I suggest you stick with project files and then have the images where you want.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Questions to set the path of the image for the data merge in indesign

    Hello. I have problems to define the path to the image properly to merge images into my document. The data merges correctly, then not issued with the source file, but the images will not bind. Have tried serval variables: for example including with and without the "Machintoch HD" root directory path and "/" and with ":" and with the name of folder only. A copy path directly from indesign links Panel. At a loss. Am I missing something simply or is it too complicated?

    can any help?

    No problem! I was almost afraid to ask because it seemed too obvious! I'm so glad I did... Please mark it as "Answered."

  • Path of the image that appears as a ToolTip in the PDF documentation

    Hi all

    I posted this problem some time ago, and I gave him also the solution of filling of the ToolTip for the image in the image properties, but it works for RH7, while for RH8 it does not matter what I enter in the ToolTip, it will always display the full path of the image at the time of the creation of the PDF file giving some sensitive information away. Do not have not the ToolTip specified in the properties of the image, this is certainly a bug. Is there a cure for this. Basically I didn't need no ToolTip for my photos. Better would be to not display anything either, but it seems impossible for now.

    It doesn't matter if I generate the PDF file as a layer in RH8 or I generate it from Word, the result is the same and it's annoying.

    I hope there is a cure for it.

    I use a Windows XP Pro 32-bit and I installed all service packs of Adobe.

    Thank you

    Bogdan

    REPLACE GLOBAL has been in HR for a while, certainly it's in RH7.  It is not very user-friendly because it has not automactically go to the path for the project that you have currently open (listen to you Adobe?).  I call it REPLACE OVERALL because it was called that at some point in the history of HR (I used several years now), but is not actually called that now.

    HRE is how it works in RH9 (and I remember works the same way, but the name may be different in RH7):

    In main menu: select EDITION > SEARCH AND REPLACE the FILES in

    This opens a dialog where you fill in the SEARCH and REPLACE.

    Make sure that the NAMED field has *.htm.

    Notice in the field WHERE you need to go THROUGH the folder for the project that you have currently open and also INCLUDE the subfolders is enabled.

    Click on FIND and more options is displayed, how you can choose to REPLACE ALL >

  • Restore the options popup after selecting "Non-action" and choose to use this option, whenever a device is plugged in USB?

    Restore the options popup after selecting "Non-action" and choose to use this option, whenever a device is plugged in USB?

    Hello

    Did you follow the "AutoPlay Repair Wizard"?

    You can follow the link provided in the previous post. Later, check to see if the problem persists.

    Hope the helps of information.

  • Can I use the images I buy here to edit and design t-shirts for sale?

    Can I use the images I buy here to edit and design t-shirts for sale or would I need a special permit?

    This was taken up in Section 3.4 of the http://wwwimages.adobe.com/content/dam/Adobe/en/legal/servicetou/Adobe_Stock_Terms_en_US-2 0150313_hpc.pdf

    ~ David

  • Link to the original images broken after restore

    Hello

    I use the Photos app on my Macbook (last OS X el Capitan 10.11.4) already for a while (with the iCloud features disabled) with the photo library on my Macbook and the images on a network share. It worked perfectly so far until I had to do a new installation of the entire system.

    I made a backup Time Machine so that a copy of my home folder to an external drive before I have re-installed El Capitan 10.11.4 from scratch.

    After that I copied the photo library of my external hard drive in its original location in my home folder, mounted the network share that contains images and Photo enforcement.

    From a first glance, everything was going well and all folders and photo thumbnails are displayed in the Photos app, but this data comes from the photo library. If I want to 'Open the original file in finder' or 'export original file' in the Photos app, I get an error that the original file cannot be found.

    I have the same problem if I restore the photo library of the Time Machine backup.

    What I checked also:

    The library location is / was always the same (/ users/thomas/photos)-before and after the installation of the system.

    * The share network folder mounted is / was always the same (/ Volumes/images).

    Way even restore worked perfectly for iTunes (iTunes library on my MacBook and music files on a mounted network share) by just restore iTunes library to its original location.

    So what goes wrong with my restoration of the photo library? Any comment or suggestion is appreciated!

    Best regards

    Thomas

    If I want to 'Open the original file in finder' or 'export original file' in the Photos app, I get an error that the original file cannot be found.

    Have you tried to reconnect the original file?

    the error message must contain a button to search for the original file.

    Click on 'Find the Original', then select the photo missing on your external hard drive (or network drive), this should reconnect all the images in the same folder at the same time.

    Apple does not say if the original files on network volumes are supported.  It can break, if the drive goes offline.

Maybe you are looking for

  • Reinstall the software without recovery CD!

    Hello I have a tecra A3, with win Xp pro... could someone tell me how can I install the software I've got without using the restore cd? This is because as the following problems:(1) setting up different leave are difficult to use the recovery cd.(2)

  • Setting disappeared

    I just got an iPad pro. In SETTINGS, I searched Siri and made the changes I wanted to make. But now there is no way to go back so that I can see all the other PARAMETERS. There is no button back or in any case looking for other things. What can I do?

  • Display the color, the color picker dialog box (like colorbox click)

    Hello everyone I wish next (problem?). I want to show the colordialog that usually appears when you click a color box, control clicking on a cell of a listbox control. Here are a few screenshots to see more clearly my problem. The main thing is that

  • How to reinstall a deleted program

    By mistake I deleted a .dll file.

  • Windows Update page displaying incorrectly

    Hello I installed 64-bit windows update agent incorrectly in my win 7 32 bit starter system. This is a picture of what I see to make a few corrections: http://I52.Tinypic.com/9fntky.PNG Corrections, I've tried: Microsoft fix tool Install the agent up