9i File Upload not working on remote machine

Hi.
The 9i File Upload demo utility is working fine when I invoke it locally on the same machine.
Remotely, however, I just get a grey blank screen in the browser with the message "Applet initialized" in the status bar. The java console says that the two JAR files were downloaded successfully, and doesn't show any other error.
When I imported the cert on the client, the expiry date had already passed (sometime in 2002). I have generated a new cert, resigned the JAR file and installed it in the correct directory. Again, the upload works fine locally, but not remotely.
Has anyone any idea what could be wrong? I'd be very grateful for any assistance. For info, we're using 9iDS 9.0.2.1.
Thanks,
Peter

Please ignore my previous message.
I rebooted the client and it now seems to work fine.
Thanks anyway,
Peter

Similar Messages

  • File Upload Not Work

    I have installed the File Upload sample in a Windows 2000 machine with 6i Form Server. When I start the web browser in the machine with the 6i Form Server, I can upload the file without problem. But when I start the web browser in another PC and accessing the 6i Form Server, the file seems uploaded but with 0 byte!!! Besides, the web browser in the PC hangs up.
    Please advise what is the most likely cause of the problem, thanks.
    SK

    I have several applications using the "multiple upload" behavior with clients on IE7 and flash player 9. Out 8 I only had same problem with one., even though they were created off the same base structure. The solution I found was as simple as it is mysterious.
    "Is the file you have this behavior located within the same directory as the "includes" folder or within another directory? "
    Let's say the directory of the includes folder is:
    root/public_html/includes
    and your page with the behavior is:
    root/public_html/folder/multiUpload.php
    For some reason and not on all sites if the file with the behavior is not in the same directory as the includes folder then the behavior you described occurs. The solution I came up with is to make a folder in the directory named "includes" and copy the "tng" into the folder on the same level as the file with the behavior.
    root/public_html/folder/includes
    root/public_html/folder/multiUpload.php
    Hope this works for you, it took me the better part of a week to figure this out, not sure why it works, I suspect a setting within ADDT was corrupted. Like I said before most of my clients don't have this problem even though they all use the same files (as in copies).
    Hope this helps
    M

  • File upload not working on Mac OSX

    I've tried several of the Flex file upload components, in all
    cases they don't work correctly when used on a Mac. I've tested
    both flash player 9 and the latest 10 release. The file uploads to
    the server, but the progress bar doesn't update and the upload
    complete event never fires. To the end user, it looks like the app
    isn't doing anything at all!
    Any advice on how to get this working? If you know of any
    file upload components that are already tested and working on the
    Mac version of flash - that would be a great help as well!
    Thanks!

    If you Google it you will find that this is a known issue, it surprised me since I spent days looking at my code.
    I found possible solutions here, but none worked for me it seems that it worked for many other people.
    http://www.abdulqabiz.com/blog/archives/2006/06/09/workaround-filereference-oncomplete-is- not-fired-on-mac-os/
    Hope Mac and Adobe will have lunch one day and figure it out.
    Ben

  • File upload not working

    Hi,
    I am trying to implement a file upload following the how-to.
    But when I am trying to use the file browse item, the process of uploading stops - only the www_flow.accept sreen shows....sometime reload helps.
    I've tried Firefox and IE....
    Working locally on the server has the same result...
    Any idea / suggestions?
    Thanks in advance!
    Alex

    Addendum:
    IE 6.0 has after reload the following error code:
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error ERR-7621 Could not determine workspace for application (:) on application accept.
    OK
    Alex

  • Multiple file upload not working in IE10 and IE11

    Hi,
    As per the UI5 documentation( https://sapui5.hana.ondemand.com/sdk/#test-resources/sap/ui/commons/demokit/FileUploader.html) , UI5 supports multiple file uploading for IE10 and IE11. I set the "multiple: true" flag in the fileuploader example page and the file browser dialog is not allowing to select multiple files. Does UI5 provide multi file upload support for IE10 and IE11 or am i missing anything ?
    regards
    Raja

    Huh?
    Your problem makes no sense. The filename is included with the upload so that the server knows what the file was originally called. Are you running the JSP locally and reading the file directly off the hard drive??
    I note also that you aren't using a multipart form, which is required to upload a file.
    <form action="uploadFile.jsp" method="post" enctype="multipart/form-data">
      <input type="file" name="upload" value="<%= fileName %>" />
    </form>You'll need to use the Jakarta Commons FileUpload class to correctly process a form encoded with "multipart/form-data" or getParameter("xxx") will return null. You can also use the older com.oreilly.servlet.MultipartForm or whatever it's called. I'm pretty certain that the Jakarta Commons obsoletes all the COS classes.
    Brian

  • File Upload not working in table popin

    Hi experts,
    im using file upload in the table popin, when i click the browse button, its not opening the file-open dialog.
    please help me.
    regards,
    James

    I am facing the same problem.
    Has anyone any solution on this.
    Thanks

  • File Upload not working in Firefox?

    I'm trying to do a file upload in firefox over ssl and it
    doesn't work. It works in IE... Anyone know a work around or a
    solution?

    I am facing the same problem.
    Has anyone any solution on this.
    Thanks

  • Multiple file upload not working

    Hi, I've created a form with file upload. I've selected 'Allow Multiple Files,' but it still only allows single file selection using the Ctrl key. Any suggestions? Thank you.
    G

    Never mind, I now realize you select one file at a time before submitting.

  • File upload not working in mozilla

    I am using a input tag to upload a file.
    <input type="file" name="certFile" size="20" value="<%=certFile%>">
    This creates a file chooser with a text field and browse button.
    The upload works for IE but not for mozilla firefox ( These are the only two browsers I've tested this with ). The mozilla browser does not return the full file path, just the single name and extention of the file, so I'm getting a file not found error. But in I.E., the full path is returned and the file can be uploaded sucessfully.
    I've seen a few posts of similar problems, but none of them seem to have been resolved.
    Does anyone have any idea why mozilla is handling these file choosers differently and/or what I can do to possibly fix this problem?

    Huh?
    Your problem makes no sense. The filename is included with the upload so that the server knows what the file was originally called. Are you running the JSP locally and reading the file directly off the hard drive??
    I note also that you aren't using a multipart form, which is required to upload a file.
    <form action="uploadFile.jsp" method="post" enctype="multipart/form-data">
      <input type="file" name="upload" value="<%= fileName %>" />
    </form>You'll need to use the Jakarta Commons FileUpload class to correctly process a form encoded with "multipart/form-data" or getParameter("xxx") will return null. You can also use the older com.oreilly.servlet.MultipartForm or whatever it's called. I'm pretty certain that the Jakarta Commons obsoletes all the COS classes.
    Brian

  • File Uploads not working

    It looks as though the upload is happening--you can see the
    icon in the bottom right doing it's thing--but after the upload is
    complete, the files never appear in the My Files area.

    I'm having the same issue, in Firefox 3. When I click the
    upload button, the animation closes the Browse (for files) section,
    and the little spinning wheel in the bottom right starts going.
    But, no files. This has been going on for weeks. I've never
    successfully uploaded a single file. No problem uploading the same
    files to Screencast.
    Also, Acrobat.com won't give me anything more than a blank
    black screen in Internet Explorer 7, using Vista. I'm not
    connecting via proxy in either browser.

  • File Upload not working in firefox with flash p-layer 9

    hi,
          I've a web application  with a component to upload file.The upload operation is working fine in IE.But when using firefox with player 9,its asking for the proxy authentication again and the firefox will get stuck.
    With player 10 ,its working without any problem.
    Can anybody help me.
    Thanks

    Could you be experiencing the following bug?
    http://bugs.adobe.com/jira/browse/FP-201

  • Struts file upload not working

    When trying to upload a file from local file system, I get the following error. The file is small and I want to keep in memory (store in array). --
    java.security.AccessControlException: access denied (java.io.FilePermission C:\Sun\AppServer7\domains\domain1\server1\generated\jsp\j2ee-modules\sve\upload_00000001.tmp delete)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:269)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:524)
         at java.lang.SecurityManager.checkDelete(SecurityManager.java:982)
         at java.io.File.deleteOnExit(File.java:879)
         at org.apache.commons.fileupload.DefaultFileItem.getTempFile(DefaultFileItem.java:620)
         at org.apache.commons.fileupload.DefaultFileItem.getOutputStream(DefaultFileItem.java:557)
         at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:391)
         at org.apache.struts.upload.CommonsMultipartRequestHandler.handleRequest(CommonsMultipartRequestHandler.java:233)
         at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1209)
         at org.apache.struts.action.RequestProcessor.processPopulate(RequestProcessor.java:821)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:254)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:720)
         at org.apache.catalina.core.StandardWrapperValve.access$000(StandardWrapperValve.java:118)
         at org.apache.catalina.core.StandardWrapperValve$1.run(StandardWrapperValve.java:278)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:274)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:203)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
         at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:158)
         at com.iplanet.ias.web.WebContainer.service(WebContainer.java:598)
    Action Class
    package com.acs.sve.actions;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.upload.FormFile;
    import org.apache.log4j.Logger;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import com.acs.sve.helper.*;
    import com.acs.sve.forms.UploadForm;
    import java.io.*;
    public class UploadAction extends Action
    Logger log = Logger.getLogger("UploadAction.class");
    public ActionForward execute(ActionMapping mapping,
    ActionForm form,
    HttpServletRequest request,
    HttpServletResponse response)
    throws Exception {
    log.info("In UploadAction");
    String fileName = null;
    int fileSize = 0;
    String rb = null;
    String contentType = null;
    InputStream stream = null;
    FormFile f;
    ClearBean cb = new ClearBean();
    cb.ClearArrays(request, response);
    DataBean db = (DataBean) request.getSession().getAttribute("db");
         UploadForm uploadForm = (UploadForm) form;
    for (int i = 0; i < 5; i++ ){
    log.info("\nint value = " + i);
    f = getNextFile(i, uploadForm);
    rb = getNextRadioButton(i, uploadForm);
    log.info("radiobutton = " + rb);
    fileName = f.getFileName();
    log.info("filename =: " + fileName );
    fileSize = f.getFileSize();
    log.info("file size =: " + fileSize );
    contentType = f.getContentType();
    log.info("content type = : " + contentType );
    if(!fileName.trim().equalsIgnoreCase("") && (f.getFileSize() > 0)){
    try{
    StringBuffer strbuf = new StringBuffer();
    log.info("trying upload");
         stream = f.getInputStream();
         int bytesRead = 0;
                   while((bytesRead = stream.read()) > 0){
    char s = (((char)bytesRead));
    if (s != '\n' && s != '\r'){
    strbuf.append((char)bytesRead);
                   stream.close();
    db.setFileName(i, fileName);
    db.addInpFiles(i,strbuf.toString());
    log.info("\nFile\n" + strbuf.toString());
    db.addButtonType(i,rb);
              }catch(FileNotFoundException fnfe){
    log.info("File Not Found Exception " + fileName);
              }catch(IOException ioe){
    log.info("IOException uploading " + fileName);
    request.getSession().setAttribute("db",db);
    log.info("db added back to session");
    FileWrapper fw = new FileWrapper();
    fw.buildWrapper(request, response);
    log.info("File Wrapper completed");
    log.info("Ready to submit files");
    FileSubmit fs = new FileSubmit();
    fs.submitFile(request, response);
    return (mapping.findForward(Constants.UPLOAD_SUCCESS));
    public FormFile getNextFile(int x, UploadForm uploadForm){
    FormFile g = null;
    switch(x){
    case 0: g = uploadForm.getTheFile1();
    break;
    case 1: g = uploadForm.getTheFile2();
    break;
    case 2: g = uploadForm.getTheFile3();
    break;
    case 3: g = uploadForm.getTheFile4();
    break;
    case 4: g = uploadForm.getTheFile5();
    break;
    default:
    break;
    return g;
    public String getNextRadioButton(int x, UploadForm uploadForm){
    String r = null;
    switch(x){
    case 0: r = uploadForm.getRadioButton1();
    break;
    case 1: r = uploadForm.getRadioButton2();
    break;
    case 2: r = uploadForm.getRadioButton3();
    break;
    case 3: r = uploadForm.getRadioButton4();
    break;
    case 4: r = uploadForm.getRadioButton5();
    break;
    default:
    break;
    return r;
    Action Form
    package com.acs.sve.forms;
    import org.apache.struts.action.*;
    import org.apache.struts.upload.FormFile;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.upload.FormFile;
    import org.apache.struts.upload.MultipartRequestHandler;
    import javax.servlet.http.HttpServletRequest;
    public final class UploadForm extends ActionForm {
    public static final String ERROR_PROPERTY_MAX_LENGTH_EXCEEDED = "com.acs.upload.MaxLengthExceeded";
    private FormFile theFile1 = null;
    private FormFile theFile2 = null;
    private FormFile theFile3 = null;
    private FormFile theFile4 = null;
    private FormFile theFile5 = null;
    private String radioButton1 = "test";
    private String radioButton2 = "test";
    private String radioButton3 = "test";
    private String radioButton4 = "test";
    private String radioButton5 = "test";
         public FormFile getTheFile1(){
              return theFile1;
    public void setTheFile1(FormFile theFile1){
              this.theFile1 = theFile1;
    public FormFile getTheFile2(){
              return theFile2;
    public void setTheFile2(FormFile theFile2){
              this.theFile2 = theFile2;
    public FormFile getTheFile3(){
              return theFile3;
    public void setTheFile3(FormFile theFile3){
              this.theFile3 = theFile3;
    public FormFile getTheFile4(){
              return theFile4;
    public void setTheFile4(FormFile theFile4){
              this.theFile4 = theFile4;
    public FormFile getTheFile5(){
              return theFile5;
    public void setTheFile5(FormFile theFile5){
              this.theFile5 = theFile5;
    public void setRadioButton1(String radioButton1){
              this.radioButton1 = radioButton1;
         public String getRadioButton1(){
              return radioButton1;
    public void setRadioButton2(String radioButton2){
              this.radioButton2 = radioButton2;
         public String getRadioButton2(){
              return radioButton2;
    public void setRadioButton3(String radioButton3){
              this.radioButton3 = radioButton3;
         public String getRadioButton3(){
              return radioButton3;
    public void setRadioButton4(String radioButton4){
              this.radioButton4 = radioButton4;
         public String getRadioButton4(){
              return radioButton4;
    public void setRadioButton5(String radioButton5){
    this.radioButton5 = radioButton5;
    public String getRadioButton5(){
    return radioButton5;
         public void reset(ActionMapping mapping, HttpServletRequest request)
              theFile1 = null;
    theFile2 = null;
    theFile3 = null;
    theFile4 = null;
    theFile5 = null;
    this.radioButton1 = "test";
    this.radioButton2 = "test";
    this.radioButton3 = "test";
    this.radioButton4 = "test";
    this.radioButton5 = "test";
         public ActionErrors validate(ActionMapping mapping,
    HttpServletRequest request)
    ActionErrors errors = null;
    //has the maximum length been exceeded?
    Boolean maxLengthExceeded = (Boolean)
    request.getAttribute(MultipartRequestHandler.ATTRIBUTE_MAX_LENGTH_EXCEEDED);
    if ((maxLengthExceeded != null) && (maxLengthExceeded.booleanValue()))
    errors = new ActionErrors();
    errors.add(ERROR_PROPERTY_MAX_LENGTH_EXCEEDED, new ActionError("maxLengthExceeded"));
    return errors;
    Can anyone help me find what I am doing wrong?

    There is an bug in Sun One App Server
    U need to add permission for delete in the server policy file
    please refer to
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4803631

  • "file does not exist on remote server" when uploading image

    As the title says, when uploading an image im getting the
    message "file does not exist on remote server"......yet dreamwever
    has uploaded the file, its there. All other pages on my website
    work fine when uploading images. Any ideas?

    What image type is it? Is it in an images folder or the root
    directory? It would be helpful to post a link.

  • .jar file is not working properly :developed in NETBEANS

    Hi Gurus,
    i am using NETBEANS IDE 7.2.
    i am developing a project that interacts with databases 10g and COM ports of machine , these all processes are performed by .bat file which i am trying to run from jFramform , code works perfectly .bat file is also called perfectly when i run the project using F6 from the NETBEANS, for testing i placed some dialogue boxes on the form to test it ,
    but when i run executable .jar  file , form run successfully and dialogue box works perfectly but .bat file is not called by executable .jar file.
    this is how i call the .bat file...
      String filePath = "D:/pms/Libraries/portlib.bat";  
            try { 
              Process p = Runtime.getRuntime().exec(filePath); 
            } catch (Exception e) { 
                e.printStackTrace(); 
    and below is the contents of portlib.bat file
    java -jar "D:\SMS\SMS\dist\SMS.jar" 
    you must probably ask why i am calling a .jar file using .bat file .
    reason is that this .jar project sends message using GSM mobile , System.exit(); is compulsory to complete a job and then do the next one ,
    if i use the same file to execute this job it makes exit to entire the application (hope you can understand my logic).
    that's why i use extra .jar file in .bat file , when single job is completed .bat exits itself and new command is given.
    Problem is that code is working perfectly in NETBEANS when i run the project but when i run .jar then .bat file is not working  ,
    thanks.

    Thanks Sir ,
    You need to first test an example that works like the one in the article.
    There are plenty of other examples on the web - find one you like:
    http://javapapers.com/core-java/os-processes-using-java-processbuilder/
    I tried this one.
      try {
                ProcessBuilder dirProcess = new ProcessBuilder("D:/SMS/SMS/Send_message.bat");
                 File commands = new File("D:/SMS/SMS/Send_message.bat");
                 File dirOut = new File("C:/process/out.txt");
                 File dirErr = new File("C:/process/err.txt");
               dirProcess.redirectInput(commands);
                 dirProcess.redirectOutput(dirOut);
               dirProcess.redirectError(dirErr);
                 dirProcess.start();
            } catch (IOException ex) {
                Logger.getLogger(mainform.class.getName()).log(Level.SEVERE, null, ex);
    as instructed in the article i compiled  both the projects at same version or sources and libraries which is 1.7
    here is my version details
    C:\>javac -version
    javac 1.7.0_07
    C:\>java -version
    java version "1.7.0_07"
    Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
    Java HotSpot(TM) Client VM (build 23.3-b01, mixed mode, sharing)
    inside the NETBEANS IDE c:\process\err.txt  remains empty and code works perfectly , but when I run executable .jar file( by double clicking on that file in dist directry) then c:\process\err.txt becomes full with this error text and there is no response from calling D:\SMS\SMS\send_message.bat
    here is the error text
    java.lang.UnsupportedClassVersionError: sms/SMSMAIN (Unsupported major.minor version 51.0)
      at java.lang.ClassLoader.defineClass0(Native Method)
      at java.lang.ClassLoader.defineClass(Unknown Source)
      at java.security.SecureClassLoader.defineClass(Unknown Source)
      at java.net.URLClassLoader.defineClass(Unknown Source)
      at java.net.URLClassLoader.access$100(Unknown Source)
      at java.net.URLClassLoader$1.run(Unknown Source)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.net.URLClassLoader.findClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Exception in thread "main"
    here is /SMS/SMS
    unknown source ?

  • Minetest translation does not work on my machine.

    Hey there.
    After trying my luck in the official Minetest forums a week ago and got nothing more than the initial “try this-and-that” thing as response in the German discussion section and no reply at all in the regular discussion section I decided to ask on Reddit on last Saturday afternoon, too. On Reddit my question only got 3 upvotes and no comments.
    Since no-one seems to know what’s going on I decided to post my question here, too.
    It sems like the translation feature in Minetest does not work on my machine for unknown reason.
    The language files are there and according to it’s oputput and the PKGBUILD Minetest was compiled with gettext support. LANG and LC_MESSAGES are properly set (I even tried LC_ALL). Localization works properly in all other applications that support localization.
    Here’s some relevant system information.
    $ uname -rms
    Linux 3.16.1-1-ARCH x86_64
    $ minetest --version
    Minetest 0.4.10
    Using Irrlicht 1.8.1
    Build info: VER=0.4.10 BUILD_TYPE=Release RUN_IN_PLACE=0 USE_GETTEXT=1 USE_SOUND=1 USE_CURL=1 USE_FREETYPE=1 USE_LUAJIT=0 STATIC_SHAREDIR=/usr/share/minetest
    $ pacman -Ql minetest | grep locale/de
    minetest /usr/share/locale/de/
    minetest /usr/share/locale/de/LC_MESSAGES/
    minetest /usr/share/locale/de/LC_MESSAGES/minetest.mo
    $ locale
    LANG=de_DE.utf8
    LC_CTYPE="de_DE.utf8"
    LC_NUMERIC="de_DE.utf8"
    LC_TIME="de_DE.utf8"
    LC_COLLATE="de_DE.utf8"
    LC_MONETARY="de_DE.utf8"
    LC_MESSAGES="de_DE.utf8"
    LC_PAPER="de_DE.utf8"
    LC_NAME="de_DE.utf8"
    LC_ADDRESS="de_DE.utf8"
    LC_TELEPHONE="de_DE.utf8"
    LC_MEASUREMENT="de_DE.utf8"
    LC_IDENTIFICATION="de_DE.utf8"
    LC_ALL=de_DE.utf8
    $ cat /etc/locale.gen
    de_DE.UTF-8 UTF-8
    en_DK.UTF-8 UTF-8
    en_US.UTF-8 UTF-8
    According to the discussion in the German discussion section in the Minetest forums I tried to set language = DE (and variants like de_DE with or without .utf8 in all possible variants) in minetest.conf but it didn’t change anything. Also: Here’s the output of running Minetest with --verbose parameter.
    16:47:01: INFO[main]: Using system-wide paths (NOT RUN_IN_PLACE)
    16:47:01: INFO[main]: path_share = /usr/share/minetest
    16:47:01: INFO[main]: path_user = /home/dirk/.minetest
    16:47:01: INFO[main]: minetest with SER_FMT_VER_HIGHEST_READ=26, VER=0.4.10 BUILD_TYPE=Release RUN_IN_PLACE=0 USE_GETTEXT=1 USE_SOUND=1 USE_CURL=1 USE_FREETYPE=1 USE_LUAJIT=0 STATIC_SHAREDIR=/usr/share/minetest
    16:47:01: INFO[main]: logfile = /home/dirk/.minetest/debug.txt
    16:47:01: VERBOSE[main]: httpfetch_init: parallel_limit=8
    16:47:01: INFO[main]: Message locale is now set to: LC_CTYPE=de_DE.utf8;LC_NUMERIC=C;LC_TIME=en_DK.utf8;LC_COLLATE=de_DE.utf8;LC_MONETARY=de_DE.utf8;LC_MESSAGES=de_DE.utf8;LC_PAPER=de_DE.utf8;LC_NAME=de_DE.utf8;LC_ADDRESS=de_DE.utf8;LC_TELEPHONE=de_DE.utf8;LC_MEASUREMENT=de_DE.utf8;LC_IDENTIFICATION=de_DE.utf8
    Irrlicht log: Irrlicht Engine version 1.8.1
    Irrlicht log: Linux 3.16.1-1-ARCH #1 SMP PREEMPT Thu Aug 14 07:40:19 CEST 2014 x86_64
    Irrlicht log: Using renderer: OpenGL 3.3.0
    Irrlicht log: GeForce 9600 GT/PCIe/SSE2: NVIDIA Corporation
    Irrlicht log: OpenGL driver version is 1.2 or better.
    Irrlicht log: GLSL version: 3.3
    16:47:01: INFO[main]: text_height=22
    16:47:01: INFO[main]: Searching worlds...
    16:47:01: INFO[main]: In /home/dirk/.minetest/worlds:
    16:47:01: INFO[main]: Spielwelt
    16:47:01: INFO[main]: 1 found.
    16:47:01: INFO[main]: Waiting for other menus
    16:47:01: INFO[main]: Waited for other menus
    16:47:01: INFO[main]: Audio: Initializing...
    16:47:01: INFO[main]: Audio: Vorbis extension NOT present
    16:47:01: INFO[main]: Audio: Initialized: OpenAL 1.1 ALSOFT 1.16.0, using OpenAL Soft
    16:47:01: INFO[main]: GUIEngine: Initializing Lua
    16:47:01: VERBOSE[AsyncWorkerThread_0]: Loading and running script from /usr/share/minetest/builtin/init.lua
    16:47:01: INFO[AsyncWorkerThread_0]: Initializing Asynchronous environment
    16:47:01: VERBOSE[AsyncWorkerThread_1]: Loading and running script from /usr/share/minetest/builtin/init.lua
    16:47:01: INFO[AsyncWorkerThread_1]: Initializing Asynchronous environment
    16:47:01: VERBOSE[AsyncWorkerThread_2]: Loading and running script from /usr/share/minetest/builtin/init.lua
    16:47:01: INFO[main]: SCRIPTAPI: Initialized main menu modules
    16:47:01: VERBOSE[main]: Loading and running script from /usr/share/minetest/builtin/init.lua
    16:47:01: INFO[AsyncWorkerThread_2]: Initializing Asynchronous environment
    16:47:01: VERBOSE[AsyncWorkerThread_3]: Loading and running script from /usr/share/minetest/builtin/init.lua
    16:47:01: INFO[AsyncWorkerThread_3]: Initializing Asynchronous environment
    16:47:01: INFO[main]: Searching worlds...
    16:47:01: INFO[main]: In /home/dirk/.minetest/worlds:
    16:47:01: INFO[main]: Spielwelt
    16:47:01: INFO[main]: 1 found.
    16:47:01: VERBOSE[main]: OpenALSoundManager::maintain(): 0 playing sounds, 0 sound names loaded
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.0.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.1.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.2.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.3.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.4.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.5.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.6.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.7.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.8.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.9.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /home/dirk/.minetest/sounds/main_menu.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.0.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.1.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.2.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.3.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.4.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.5.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.6.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.7.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.8.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.9.ogg for decoding
    16:47:01: INFO[main]: Audio: Error opening /usr/share/minetest/sounds/main_menu.ogg for decoding
    16:47:01: INFO[main]: OpenALSoundManager: "main_menu" not found.
    16:47:05: INFO[main]: Audio: Deinitializing...
    16:47:05: INFO[main]: Audio: Deinitialized.
    16:47:05: INFO[main]: GUIEngine: Deinitializing scripting
    16:47:05: INFO[main]: Searching worlds...
    16:47:05: INFO[main]: In /home/dirk/.minetest/worlds:
    16:47:05: INFO[main]: Spielwelt
    16:47:05: INFO[main]: 1 found.
    16:47:05: INFO[main]: Updating configuration file: "/home/dirk/.minetest/minetest.conf"
    16:47:05: INFO[main]: Skipping writing of /home/dirk/.minetest/minetest.conf because content wouldn't be modified
    16:47:05: INFO[main]: Updating configuration file: "/home/dirk/.minetest/minetest.conf"
    16:47:05: INFO[main]: Skipping writing of /home/dirk/.minetest/minetest.conf because content wouldn't be modified
    16:47:05: VERBOSE[main]: httpfetch_cleanup: cleaning up
    … or on nopaste.info for better readability.
    Since it seems to work for everyone else (otherwise there might be more replies to my quesions in several places, I guess *g*) I’m pretty sure that’s a local problem on my machine. But since gettext properly works on my machine in all and every application that use it I have no clue at all where to start debugging.
    Hints are highly appreciated Thanks in advance!
    Kind regards,
    Dirk

    Hi there...
    It gives me a URL that begins with http:// Safari does something strange, ie. flashes the page, and then complains about not recognizing photo://
    It seems that it has not figured out that it needs to open iPhoto 6.
    Regardless, the provided link is not viewable when cutting and pasting into safari, neither.
    I am using the latest and greatest 10.4.4, Safari is 2.0.3.

Maybe you are looking for