Problem reading macports man pages while SSH'd in

For some reason when a user SSH's in to one of our systems, they cannot read macports installed man pages. If I'm logged in on directly on the server - meaning I'm at the console - I can read the ports man pages, but if I SSH in from remote system, I can't.
For example, locally on the server both man port and man doxygen produce man pages. Whille SSH'd in, those commands return: No manual entry for [command issued]
Is this potentially a pathing issue where, for example, local (console) bash pathing gets set, but doesn't get passed when a user comes in via SSH?
Honestly, yesterday we upgraded to 10.7.4. so I can't say for sure whether this is a 'new' problem or a known problem.
Thanks much in advance - this is driving us nuts.

In what way does that other process expect its input?
My guess was
that it expected a newline (\n) after every input
field. The spawned application is not written by me but it puts the string to enter the username and waits for username, then password and does some validation check and asks again for directpath. Yes the it expects newline after every input.
// output in shell
D:\manish\martusproj>c:\Martus\bin\java.exe Xbootclasspath/p:c:\Martus\lib\ext\
bc-jce.jar -cp c:\Martus\martus.jar org.martus.client.tools.ImportXmlBulletins -
-import-directory=.\ --account-directory=c:\Martus
Martus Bulletin XML Importer
Enter User Name:mregmi
Enter Password:hello
Enter Martus folder name where you want these bulletins to be stored:mart
Importing:Bulletin #1
Importing:Bulletin #2
Finished! 2 bulletins imported into Martus.
Your process has
to write exactly what that other process expects.
Of course you can close the writer when you're done.
kind regards,
Jos
ps. what happens if you change that 'flush' to
'close' in my example?flush hangs.
close works but the spawned app says invalid input.
// output
Martus Bulletin XML Importer
java.lang.NullPointerException
     at org.martus.client.tools.ImportXmlBulletins.createSecurityObject(Unknown Source)
     at org.martus.client.tools.ImportXmlBulletins.main(Unknown Source)
Exception in thread "main"
Enter User Name:Enter Password:
xml2martus Error code 1
Convertion Complete.....
the same command works from cmd.
regards
Manish

Similar Messages

  • Problems reading an html page encoded in UTF-8

    I'm trying this code with eclipse:
    public class TestBooking {
          * @param args
         public static void main(String[] args) throws Exception {
              URL url;
              String url_string="http://www.booking.com/searchresults.html?checkin_monthday=21;checkin_year_month=2007-8;checkout_monthday=22;checkout_year_month=2007-8;class_interval=1;offset=0;si=ai%2Cco%2Cci%2Cre;ss_all=0;city=-126693";
              url = new URL(url_string);
              URLConnection connection = url.openConnection();
              HttpURLConnection httpConnection =(httpURLConnection)connection;
              InputStream input=connection.getInputStream();
              BufferedReader prova=new BufferedReader(new InputStreamReader(input));
              String str;
              while ((str=prova.readLine())!=null)
                   System.out.println(str);
    }And I get in the console a strange set of charachers:
    <link rel="alternate" hreflang="el" href="/searchresults.el.html?sid=f190f46ada5404fc896b33035b20d50d;checkin_monthday=21;checkin_year_month=2007-8;checkout_monthday=22;checkout_year_month=2007-8;city=-126693;class_interval=1;offset=0;si=ai%2Cco%2Cci%2Cre" title="������������" />
    instead of the correct:
    <link rel="alternate" hreflang="el" href="/searchresults.el.html?sid=f190f46ada5404fc896b33035b20d50d;checkin_monthday=21;checkin_year_month=2007-8;checkout_monthday=22;checkout_year_month=2007-8;city=-126693;class_interval=1;offset=0;si=ai%2Cco%2Cci%2Cre" title="&#917;&#955;&#955;&#940;&#948;&#945;" />
    How can I fix the problem to read the input correctly?
    Thanks for help.

    No conversion is needed, just specify the encoding when you create your InputStreamReader. But you can't expect text in all those different scripts to display correctly in your console. Even if the console is configured to use an encoding like UTF-8 that can handle all the characters, it won't be using a font with all the appropriate glyphs. But, like you said, it doesn't matter if you can't display all of the page's source code correctly. All you need is to be able to read it, which means using the correct encoding.

  • Problem reading a 30-page doc with Adobe Acrobat DC for Android

    I regularly upload Les Echos (French biz newspaper) on their website (http://www.lesechos.fr/pdf.php/20150413_LEC.pdf). After reading about 25-30 pages, the document closes itself, without prior notice and without saving any comments you may have made in the document.
    This problem first occurred early February, when Les Echos decided to produce "lighter" pdf newspapers and it has happened on every single issue since then. Never before.
    I contacted Les Echos to see if they could fix the problem. They answered that it was an Adobe problem.
    So, my question remains the same: can you (or anyone else) fix that?
    Thanks for your help.

    It seems that a login is required to access the PDF file you have linked us to. Would it possible for you to share a copy of the PDF by uploading it to Dropbox/Google Drive or mail the same to [email protected]? It will help us in understanding your issue better.
    Thanks.

  • [SOLVED] Weird characters in man pages

    Hi,
    I remember I had read a similar thread, but I can't find it anymore.
    My problem is that man pages show strange characters and it's quite difficult to read at times. Here is an example:
    The traditional protocol for writing to someone is that the string <80><98>-o', either at the end of a line or on a line by itself, means that it's the other person's turn to talk.   The  string
           <80><98>oo' means that the person believes the conversation to be over.
    How do I fix this?
    Thanks.
    Last edited by finferflu (2008-02-27 17:53:23)

    Hello
    Here is a post on that problem if you can read french : http://forums.archlinuxfr.org/viewtopic.php?id=1084
    The members suggested to replace
    export LESSCHARSET="utf8"
    by
    export LESSCHARSET="UTF-8"
    in /etc/profile.
    One suggest to replace the line inside /etc/man.conf (from the gentoo wiki fr)
    NROFF iconv -f utf8 -t iso8859-1 | /usr/bin/nroff -Tlatin1 -c -mandoc
    I must admit that it doesn't work for me neither, and the above does not solve the problem. The file I tested is UTF-8 encoded and the LESSCHARSET defined to use UTF-8 gives badly accentuated characters (But at least printable characters). I think you will have to tweak a little these lines, but it's a start.
    Note that these lines suit (or don't suit) french man pages, but you may have to change the given charsets (especially latin1).
    Hope it will help you search
    Cilyan
    Edit: Ah, time to write the answer, the problem is solved !
    Edit2: The tip given by dyscoria does not work for me.
    Last edited by Cilyan (2008-02-27 18:01:57)

  • Man pages in the wiki?

    Hi all,
    I think it would be handy to add man pages in the wiki so that an article could refer to it if need be. So the questions are:
    1) Has this been discussed before?
    2) What do you think of the idea?
    Cheers,
    X

    chimeric wrote:
    There's a even "nicer" resource for man pages than google, namely http://www.man.cx. Just append the program you want to read the man page for after the '/'. For example:
    http://man.cx/ls
    Maybe one of the wiki admins could add an interwikilink (eg. [[man>ls]]) if that's possible in mediawiki (not sure atm).
    Wow! That's cool, I have also noticed that you can actually add your own comments to the man pages, that's very useful.

  • My iPad will black out, then go to the home page while viewing an app, anyone else have this problem? Do I have to replace it?

    My iPad will black out, then go to the home page while viewing an app, anyone else have this problem? Do I have to replace it?

    What version ipad and which version ios are you using?
    Try this:
    Make sure IOS is updated to latest version
    Reboot device by pressing both the home button and sleep/wake (power) buttons at the same time for 10-15 seconds until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings
    (no media or data will be deleted from the device, this will only take a minute).

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         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 https://forums.adobe.com/message/6485431#6485431
         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:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • There was an error processing a page. there was a problem reading this document (110)?

    hi
    my name is kapil and i am trying to open one (which is downloded) pdf document.which giving me an error as there was an error processing a page. there was a problem reading this document (110) for some page only. i am using acrobat reader x. is it any 3d setting or any thing else please give me an idea. i am waiting for replay as soon as possible...........
    your sincerely
    KAPIL TRIVEDI

    When I encountered an error "there was a problem reading this document 110" in Acrobat Pro 11 on 28.7 MB CS6 file, it indeed was very frustrating.
    I solved my problem, but since I don't know which step benefitted me, I've to enumerate all the steps I took:
    Read below:
    1.1. I could copy the file anywhere on the drive, but couldn't 'save as' from Acrobat Pro.
    1.2. No document security was applied of any sort on the file.
    1.3. Still in the first tab of the document properties, all details under advance section were empty. No 'PDF Version' 'location' 'file size' etc were populated. Nothing.
    1.4. I couldn't change and save anything in any of property dialogue. I could comment on the text, but as soon as I tried to save, it gave an error (some sort of 'File reading' error).
    1.5. When I tried to extract a page (I tried many), it gave 'reading error'.
    1.6. I didn't try 'splitting error'. Since I was 100% sure, it'll give me same reading error.
    1.7. I opened the file in Firefox and tried saving it as pdf from there. But no error, but no save either.
    1.8. I ran 'Remove Hidden Information' from protection panel without any errors.
    1.9. I tried 'sanitize document' from the same tab, but didn't succeed.
    1.10. Then (here I think the problem was resolved), from Document Processing panel, I did some commands. 1st, 'Export all images', successfully. Then 'Remove all links', it found 0.
    1.11. Then in 'print production' panel, I clicked/tried to open acrobat distiller. The same opened, did some processing. But I don't know if it did something in solving the problem or not.
    1.12. Although I think my problem was resolved till now, but the last step I did was 'Saved As' the file (from the file menu) as a .ps file. Though I've not yet reopened/used that ps file (to convert it into a pdf file again). But around here I wanted to close the file and it asked me whether I wanted to save the file, I said yes. And it saved the file correctly. And I checked that in properties dialogue, the missing information was populated too.
    1.13. Sorry for so lengthy instructions, but I had no choice.

  • Error message: There was an error processing a page. There was a problem reading this document (110)

    I opened a pdf document in Adobe Reader X. When I attempted to scroll through the pages the following error message appeared, “There was an error processing a page. There was a problem reading the document (110). After an Internet search to try to find the reason for the error and a solution, I came across a site that suggested it was an issue regarding the fonts of the document. I then reopened the document and went into the document’s font properties (FILE – PROPERTIES – FONTS tab). There I noticed that the “Gathering font information” stopped at 2% which, of course, I took to mean that Adobe Reader X was having a difficult time in loading the font’s information. Another site suggested opening the document in the pdf reader, Foxit. So I did, and the document loaded properly with no error messages. I was still curious as to why the document did not load entirely in Adobe Reader X and if the same problem would occur using a different reader. I then downloaded the pdf reader, Nitro Reader 2. I opened the same document and initially received the following message, “The requested page number is invalid and does not exist in this document.” I closed the message and proceeded to scroll through the document. As I scrolled, the following message appeared, “This file was damaged (corrupted) and has been repaired.” I thought, “Wonderful!” I then chose <FILE – SAVE AS – PDF DOCUMENT> and saved the “repaired” document under a new name. When I opened the “repaired” document with Adobe Reader X, behold, the document opened entirely with no error message. I was curious, so I went into the document’s font properties and noticed, this time around, that the “Gathering font information” loaded to 100%. Nitro Reader 2 detected the error and fixed it. Now I’m left to wonder…why wasn’t Adobe Reader X able to do the same? I hope this post helps others who are experiencing the same issue.

    When I encountered an error "there was a problem reading this document 110" in Acrobat Pro 11 on 28.7 MB CS6 file, it indeed was very frustrating.
    I solved my problem, but since I don't know which step benefitted me, I've to enumerate all the steps I took:
    Read below:
    1.1. I could copy the file anywhere on the drive, but couldn't 'save as' from Acrobat Pro.
    1.2. No document security was applied of any sort on the file.
    1.3. Still in the first tab of the document properties, all details under advance section were empty. No 'PDF Version' 'location' 'file size' etc were populated. Nothing.
    1.4. I couldn't change and save anything in any of property dialogue. I could comment on the text, but as soon as I tried to save, it gave an error (some sort of 'File reading' error).
    1.5. When I tried to extract a page (I tried many), it gave 'reading error'.
    1.6. I didn't try 'splitting error'. Since I was 100% sure, it'll give me same reading error.
    1.7. I opened the file in Firefox and tried saving it as pdf from there. But no error, but no save either.
    1.8. I ran 'Remove Hidden Information' from protection panel without any errors.
    1.9. I tried 'sanitize document' from the same tab, but didn't succeed.
    1.10. Then (here I think the problem was resolved), from Document Processing panel, I did some commands. 1st, 'Export all images', successfully. Then 'Remove all links', it found 0.
    1.11. Then in 'print production' panel, I clicked/tried to open acrobat distiller. The same opened, did some processing. But I don't know if it did something in solving the problem or not.
    1.12. Although I think my problem was resolved till now, but the last step I did was 'Saved As' the file (from the file menu) as a .ps file. Though I've not yet reopened/used that ps file (to convert it into a pdf file again). But around here I wanted to close the file and it asked me whether I wanted to save the file, I said yes. And it saved the file correctly. And I checked that in properties dialogue, the missing information was populated too.
    1.13. Sorry for so lengthy instructions, but I had no choice.

  • When i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th

    when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ?
    if you can help me thank's
    [email address removed by host]

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • Error message "There was an error processing the page.there was a problem reading this document(109)

    Getting an error message when viewing the pdf report by using Adobe reader "There was an error processing the page.there was a problem reading this document(109)"

    Hi,
    We are using Active reports tool to generate the PDF document, And the
    server is Windows 2003, and it is online document which generates
    dynamically
    We are facing the below error message when we try to generate, and my
    local machine having Adobe Reader 7.0
    Please find the screen shot below for the error message, Thank you for you
    help in advance.
    Thanks and Regards
    Inayath Nalgar

  • Why does my computer keep reloading blank pages while reading email ?

    My computer constantly reloads a blank page while I am in my email account (Outlook.com- an old hotmail account). I have deleted cookies, deleted history and the cache files according to what one search result told me to do. I have mal-ware and anti-virus which are all up to date along with current windows versions. I reloaded Firefox also, all to no avail. Unless I take my computer to a repair shop, it is difficult to read any email.

    That's a good sign! It suggests that one of your extensions does something that isn't fully compatible with Outlook webmail. This might include blocking information that Microsoft's site expects, whether cookies, or something else. Could you review your extensions and see whether any of them might filter/block information from the site, to enhance privacy or reduce annoyances or other reasons?
    You can do that on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then on the right side, if you see something that might be relevant, you can click its Options dialog to see whether you can make an exception for the live.com site (server that hosts Outlook mail).

  • Reading man pages in macvim?

    Hi,
    I would like to read man pages in macvim. In a macvim window, I tried :!man perltoot, but I got this:
    WARNING: terminal is not fully functional
    (press Return)
    After hitting return, the man page displayed, but it was in white text (v. vivid chalk), and navigating up and down was herky, jerky.
    I found the following shell script that purportedly will display colorized man pages in macvim, but it doesn't work for me:
    function tman {
    man "${1}" | col -b | /usr/local/bin/gview - 1>/dev/null 2>&1
    I used find to search my whole hard drive for gview, but I don't have that anywhere.
    Message was edited by: 7stud
    Message was edited by: 7stud

    Thanks for the responses.
    runtime! ftplugin/man.vim
    :Man perltoot
    That causes an annoying split screen to appear. I found I could get rid of the empty portion by clicking my mouse in the empty split screen, and then hitting <esc>:quit.
    Message was edited by: 7stud

  • Ircii-pana (BitchX) man page problems.

    Well, when I do "man BitchX" i get:
    BZh91AY&SY[Í»Dl_|ÿñ÷ÿÿÿÿÿÿá`               N¥w׳Î$ó»¯{¶{mªÖò£54a6
    ©°¦¤m50ÓFG¤ÓÔõ44Ѫ=54Õ44Ð .......  4Ð
    ô¦Sjiêú£Ñh4ÑMS%SÒ6©í)²i<£ÔÐýPP=@hÉb...Ð`A dÉ£&$D
    (Alot of shit that is)
    i downloaded bitchx with pacman -S ircii-pana
    doing man -k BitchX says " nothing appropriate"[/code]

    The man page is messed up: /usr/man/man1/BitchX.1.bz2.gz
    It shouldn't be compressed with bzip2. Submit a bug report.

  • Error processing a page. Problem reading document (110)

    This occurring following error message when opening a PDF file:
    "Error processing a page. Problem reading document (110)"
    Does anyone have any suggestions?

    When I encountered an error "there was a problem reading this document 110" in Acrobat Pro 11 on 28.7 MB CS6 file, it indeed was very frustrating.
    I solved my problem, but since I don't know which step benefitted me, I've to enumerate all the steps I took:
    Read below:
    1.1. I could copy the file anywhere on the drive, but couldn't 'save as' from Acrobat Pro.
    1.2. No document security was applied of any sort on the file.
    1.3. Still in the first tab of the document properties, all details under advance section were empty. No 'PDF Version' 'location' 'file size' etc were populated. Nothing.
    1.4. I couldn't change and save anything in any of property dialogue. I could comment on the text, but as soon as I tried to save, it gave an error (some sort of 'File reading' error).
    1.5. When I tried to extract a page (I tried many), it gave 'reading error'.
    1.6. I didn't try 'splitting error'. Since I was 100% sure, it'll give me same reading error.
    1.7. I opened the file in Firefox and tried saving it as pdf from there. But no error, but no save either.
    1.8. I ran 'Remove Hidden Information' from protection panel without any errors.
    1.9. I tried 'sanitize document' from the same tab, but didn't succeed.
    1.10. Then (here I think the problem was resolved), from Document Processing panel, I did some commands. 1st, 'Export all images', successfully. Then 'Remove all links', it found 0.
    1.11. Then in 'print production' panel, I clicked/tried to open acrobat distiller. The same opened, did some processing. But I don't know if it did something in solving the problem or not.
    1.12. Although I think my problem was resolved till now, but the last step I did was 'Saved As' the file (from the file menu) as a .ps file. Though I've not yet reopened/used that ps file (to convert it into a pdf file again). But around here I wanted to close the file and it asked me whether I wanted to save the file, I said yes. And it saved the file correctly. And I checked that in properties dialogue, the missing information was populated too.
    1.13. Sorry for so lengthy instructions, but I had no choice.

Maybe you are looking for

  • Active Directory accounts no longer connect to Server

    I administrate a small office network. We have a Windows 2000 Server with active directory and a Windows 2003 Storage Server Appliance. (From Iomega) After upgrading to 10.4.8 (it seems), our Mac integrated to the Active Directory has had problems co

  • Export data from database table before database migration

    Hello, We are planning to migrate our SAP ERP 6 Ehp4/NW7.01 from Oracle 11.2 to IBM DB2 v. 9.7 database. During test migrations I have established that we spend a lot of time for one particular table (COEP). Because we donu2019t have possibility to a

  • How can I delete a message w/ lg attachment that is stuck in my outbox?

    I have a 120 gig hard drive and have 37.53 gb available. I did something really stupid. I knew it probably wouldn't work, but I thought that mail would tell me it couldn't do it and then I would cancel the proposed action. Instead, it's trying to do

  • Bridge "supports" missing ;-)

    The following file types should be a bridge natural fit, but strangely missing; Fonts... Hello, Adobe had it's root in fonts. (hint render thumbnail in sample text Selected BY USER in preferences. Photoshop Styles, Gradients, Custom Shapes, etc. Adob

  • 3D Stickies?  Other Templates?

    The default stickies are incredibly boring. How do I make them 3D? I did it before but I forgot how. Is there a site that has different templates for it?