HT200161 Problem activating FTP and a few thoughts on FM 7 server

My current problem...
The document Ricoh points to
http://support.apple.com/kb/HT4704?viewlocale=en_US
When trying to run the line in paragraph 1 of this document I get an error:
"dseditgroup -o create -n /Local/Default -u ladmin com.apple.access_ftp"
It asks for a password and then tells me:
"Failed to set credentials."
I suspect I'm missing a parameter or something but the document is of no help there.
I have tried searching the discussion list, but if I try the advices offered there I get messages like:
"nothing found to load"
Can anyone help?
TIA Hans
<Edited By Host>

To the Host
Thank you for verifying what I had suspected for some time.
I do now understand why so many professionals chuckle quietly when Apple server products are mentioned.
I just spent around USD 5000 on server products from Apple only to realize that they have been cripled to a degree of being almost useless. Not to mention the tens of thousands of USD I have spent in the past
Problem is the mini is a bit to light to serve as a door stopper.
Kind regards
Hans J. Gunnarsson

Similar Messages

  • [SOLVED] wget problem with ftp ( and symlink )

    Hi,
    I tried to download some file recursively from ftp, but It seems that wget can't figure a file under symlinks folder by itself.
    At first I use
    wget -r -N ftp://ftp.ncbi.nih.gov/snp/database/organism_schema
    (All folders in organism_schema are symlink one, and I want file underneath them)
    but this download only symlink folder but not a file underneath it. I tried --retrv-symlink but it gave me an error
    preecha@preecha-laptop:~/dbsnp$ wget -r -N --retr-symlink ftp://ftp.ncbi.nih.gov/snp/database/organism_data | tee error.txt
    --2009-01-26 11:07:52-- ftp://ftp.ncbi.nih.gov/snp/database/organism_data
    => `ftp.ncbi.nih.gov/snp/database/.listing'
    Resolving ftp.ncbi.nih.gov... 130.14.29.30
    Connecting to ftp.ncbi.nih.gov|130.14.29.30|:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /snp/database ... done.
    ==> PASV ... done. ==> LIST ... done.
    [ <=> ] 843 5.24K/s in 0.2s
    2009-01-26 11:08:02 (5.24 KB/s) - `ftp.ncbi.nih.gov/snp/database/.listing' saved [843]
    Removed `ftp.ncbi.nih.gov/snp/database/.listing'.
    --2009-01-26 11:08:02-- ftp://ftp.ncbi.nih.gov/snp/database/organism_data/organism_data
    => `ftp.ncbi.nih.gov/snp/database/organism_data/.listing'
    ==> CWD /snp/database/organism_data ... done.
    ==> PASV ... done. ==> LIST ... done.
    [ <=> ] 4,955 2.14K/s in 2.3s
    2009-01-26 11:08:06 (2.14 KB/s) - `ftp.ncbi.nih.gov/snp/database/organism_data/.listing' saved [4955]
    Removed `ftp.ncbi.nih.gov/snp/database/organism_data/.listing'.
    --2009-01-26 11:08:06-- ftp://ftp.ncbi.nih.gov/snp/database/organism_data/arabidopsis_3702
    => `ftp.ncbi.nih.gov/snp/database/organism_data/arabidopsis_3702'
    ==> CWD not required.
    ==> PASV ... done. ==> RETR arabidopsis_3702 ...
    No such file `arabidopsis_3702'.
    --2009-01-26 11:08:07-- ftp://ftp.ncbi.nih.gov/snp/database/organism_data/bee_7460
    => `ftp.ncbi.nih.gov/snp/database/organism_data/bee_7460'
    ==> CWD not required.
    ==> PASV ... done. ==> RETR bee_7460 ...
    No such file `bee_7460'.
    --2009-01-26 11:08:08-- ftp://ftp.ncbi.nih.gov/snp/database/organism_data/bison_9901
    => `ftp.ncbi.nih.gov/snp/database/organism_data/bison_9901'
    ==> CWD not required.
    ==> PASV ... done. ==> RETR bison_9901 ...
    No such file `bison_9901'.
    --2009-01-26 11:08:10-- ftp://ftp.ncbi.nih.gov/snp/database/organism_data/blackbird_39638
    => `ftp.ncbi.nih.gov/snp/database/organism_data/blackbird_39638'
    ==> CWD not required.
    ==> PASV ... done. ==> RETR blackbird_39638 ...
    No such file `blackbird_39638'.
    --2009-01-26 11:08:11-- ftp://ftp.ncbi.nih.gov/snp/database/organism_data/bonobo_9597
    => `ftp.ncbi.nih.gov/snp/database/organism_data/bonobo_9597'
    ==> CWD not required.
    ==> PASV ... done. ==> RETR bonobo_9597 ...
    No such file `bonobo_9597'.
    Did I do something wrong here ? Any suggestion would help a lot. Thanks !
    Last edited by Tg (2009-01-27 04:00:46)

    Xyne wrote:
    wget man page wrote:When --retr-symlinks is specified, however, symbolic links are
           traversed and the pointed-to files are retrieved.  At this time,
           this option does not cause Wget to traverse symlinks to directories
           and recurse through them, but in the future it should be enhanced
           to do this.
    I think I've found a good workaround:
    #!/bin/bash
    URL=$1
    DIRPATH=$(echo "$URL" | sed s-ftp://--)
    BASEURL=$(echo "$DIRPATH" | cut -d '/' -f1)
    wget -r -N $URL
    SYMLINKS=$(find $DIRPATH -type l)
    for SYMLINK in $SYMLINKS
    do
    TARGET=$(readlink $SYMLINK)
    if [ "${TARGET:0:1}" == "/" ]
    then
    URI="ftp://$BASEURL/$(readlink $SYMLINK)"
    else
    URI="ftp://$DIRPATH/$(readlink $SYMLINK)"
    fi
    echo "retrieving $URI"
    wget -r -N $URI
    # ./wget_symlinks $URI
    done
    You can save that as "wget_symlinks", then
    chmod 744 wget_symlinks
    ./wget_symlinks ftp://ftp.ncbi.nih.gov/snp/database/organism_schema
    I didn't download everything so I don't know if there are further symlinks. If there are, comment out the line "wget -r -N $URI" and uncomment "# ./wget_symlinks $URI". It should download everything recursively and then exit.
    I never though of using bash script  (never wrote bash more than 5 line). I guess I'll try that, thanks alot.
    Last edited by Tg (2009-01-26 07:27:56)

  • TS4268 i have a problem activating iMessages and facetime, how can i active them?

    hi, i canot activate my imessage and facetime.
    how can i activate them?

    Settings>iCloud> and then switch on the featues you want

  • Problems with UAC and NTFS File Permissions on a File Server.

    LarryG. wrote:
    It looks to me like your account doesn't have the proper permissions on all of the sub folders.  Can you verify that?  Once you have the proper permissions this issue should go away.
    This is a feature, not a bug.  You do not have permissions.

    Hello Everyone,I'm curious about your experience with UAC and NTFS permissions--in particular on a file server. In my case, I'm running Server 2012 R2.I have a very large company shared folder. I right click on it and go to properties to check the size. The size is only 5GB or so and should be over 300GB. How is this possible? I'm finding that some of its subfolders are tied into UAC and some folders are not. UAC-related subfolder:Non-UAC related subfolder:In the pictures above, both folders are department-related folders. They are not system folders. The folders have the same owner. The folders are located on the same folder level. When I try to view the permissions of the UAC-related folder, I get this:I'm a domain admin, so when I go through the prompts, I can see the permissions.But this is a total pain because I now require third...
    This topic first appeared in the Spiceworks Community

  • Help w/FTP and manage site

    I am trying to get to my Comcast personal web site and I am
    trying to use Dreamweaver to create the site. When I login to the
    site on IE/FireFox useing the FTP address ftp://upload.comcast.net/
    I get in OK but in DW 8.0 I go to manage site and enter in all of
    the same info I use in IE/Fire Fox or even Front Page and I get
    that DW can not connect and the following Error:
    AN FTP Error occured. Cannot make a connection to host. The
    remote host cannot be found. If I try it on another commercial site
    I maintain and I get the same results. Is there a way to check my
    DW 8 to confirm it is working correctly?

    Please go to SITES | Manage Sites..., select the site name,
    and click on
    Edit. Click on the Advanced tab at the top. Tell me the
    following -
    Under LOCAL INFO
    The contents of "Local root folder:"
    Under REMOTE INFO
    What happens when you press Test?
    The contents of "Host directory:"
    Thanks!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "tripleo" <[email protected]> wrote in
    message
    news:ej4vth$h0a$[email protected]..
    > Hi I am having a problem with FTP and Dreamweaver MX.
    >
    > I can log in correctly, the ftp connects to my webhost
    and everything is
    > fine
    > however when i want to upload a page or something for my
    site. it gives me
    > these errors:
    >
    > ERROR1
    >
    > dreamweaver cannot determine the remote server time.
    > the select newer and synchronize commands will not be
    available.
    >
    > ERROR2
    >
    > an FTP error occurred - cannot put FILENAME.
    > 500 Unable to service PORT commands.
    >
    > Can anybody help?
    >

  • Filter Exceptions on BM36 - Active FTP

    At time we use "ftp-port-pasv-st" which works for our
    internal hosts with primarily updating antivirus-signatures
    (McAfee).
    Now we installed another antivirus-software (Kaspersky) on
    one internal server and this software needs active FTP. I am
    at a little loss now, because the "Beginners Guide ..."
    stays quite short on active FTP.
    How should the filter-exceptions look like to get update
    working?
    Thanks in advance.
    Sincerely
    Karl

    I am now concentrating on update via http and for this I set
    the bm-setup to bypass cache for "kaspersky-labs.com".
    Because it still did not work I digged a little more and
    finally found in the proxy-log-files following entries:
    192.168.6.1 - - [28/Nov/2007:19:24:55 +0100] "GET
    http://downloads4.kaspersky-labs.com/index/master.xml
    HTTP/1.1" 403 2267
    192.168.6.1 - - [28/Nov/2007:19:25:00 +0100] "GET
    http://downloads4.kaspersky-labs.com/kavset.xml HTTP/1.1"
    403 2267
    192.168.6.1 - - [28/Nov/2007:19:25:06 +0100] "GET
    http://downloads2.kaspersky-labs.com/index/master.xml
    HTTP/1.1" 403 2267
    192.168.6.1 - - [28/Nov/2007:19:25:12 +0100] "GET
    http://downloads2.kaspersky-labs.com/kavset.xml HTTP/1.1"
    403 2267
    192.168.6.1 - - [28/Nov/2007:19:25:18 +0100] "GET
    http://downloads1.kaspersky-labs.com/index/master.xml
    HTTP/1.1" 403 2267
    192.168.6.1 - - [28/Nov/2007:19:25:24 +0100] "GET
    http://downloads1.kaspersky-labs.com/kavset.xml HTTP/1.1"
    403 2267
    192.168.6.1 - - [28/Nov/2007:19:25:30 +0100] "GET
    http://downloads3.kaspersky-labs.com/index/master.xml
    HTTP/1.1" 403 2267
    192.168.6.1 - - [28/Nov/2007:19:25:36 +0100] "GET
    http://downloads3.kaspersky-labs.com/kavset.xml HTTP/1.1"
    403 2267
    192.168.6.1 is the server, where Kaspersky is running. In
    the proxy-authentification of Kaspersky I entered admin and
    password (I tested all variants with admin.xy, cn=admin.o=xy
    etc., but it stays in the above way all the time).
    From my point of understanding the authentificated user
    (admin) should show up in the above log. Because he does not
    show up, there is something wrong with authentification and
    bm-proxy denies access to the listed urls. That is what the
    403 is telling me. Is this guess correct?
    Sincerely
    Karl
    >>> Massimo Rosen<[email protected]> 27.11.2007 20:03
    >>>
    >Craig,
    >
    >Craig Johnson wrote:
    >>
    >> In article <[email protected]>,
    >wrote:
    >> > Active FTP is what I was told by the Kaspersky-Support
    >> > today. I will tell them to get it working without
    >active FTP
    >> > and then see what happens.
    >> >
    >> As a quick test, you set up a pair of filter exceptions
    >allowing all IP
    >> to and from the internal host and (just) the Kaspersky
    >update
    >> server(s).
    >
    >If the server doing the update *really* needs active FTP,
    >and is behind
    >*dynamic* NAT, it still wouldn't work. Only if it's
    >statically natted
    >this would make it work, but of course is a security hole
    >the size of a
    >truck.
    >
    >CU,
    >--
    >Massimo Rosen
    >Novell Product Support Forum Sysop
    >No emails please!
    >http://www.cfc-it.de

  • Ftp- and webserver setup, grouping problem

    Hello.
    I've got a server and installed cherokee and vsftpd as I thought it is a good choice to run a webserver with.
    I want to host a few domains and because of that I have to add certain ftp accounts so that they can upload stuff by themselves. Nothing new I am talking about.
    But my problem is how do I realize this best?
    cherokee runs as user `www` and group `www` as I read it is good to drop root previleges, which is basically even obvious.
    I created the needed users with a home directory in /home/www/$username because I thought this is a good place to keep the data files for the ftp account as well as the domain.
    But then a first problem occures. What if I grant more features to a certain user for example shell access. It would be nice if theres only one user name for each user and not user_ftp for ftp access, user_shell for shell access, etc. In order to archieve this I should put the files for ftp data into /home/username/ftp but vsftpd doesn't allow to change the ftp root directory to something other than the user's home directory or at least I don't know how to configure it.
    Is this solution not possible to realize in general or is it a problem of vsftpd (and I should run another ftp service) or is it just a lack of knowledge?
    Then further I noticed that every user can view other user's files because all files are owned by the group `users` and the chmod was something linke -rwxr-xr-x for the directories which isn't very secure. I thought: "Pah, easy to solve". Just change the chmod of each direcotory to -rwx------ as they're owned by the user. But then I realized that the webserver (www:www) cannot access the files anymore. "Bad luck", I thought, and changed the chmod of each file to -rw-r--- and made them being owned by the group `www`. "Very well", ran through my mind as all files and directories were owned by $user:www and have the "proper" chmod.
    But again vsftpd doesn't seem to like this. When I upload a file via ftp it creates a chmod like this:
    -rwx-------
    And the file is owned by $user:users. Pitty that this doesn't fit into my conecept. Well again there's the question if vsftpd causes the problem or I do.
    I mean, I'd like to set up a proper and secure web server but I don't know how to archieve it. Are my thoughts wrong or is vsftpd reaching its limits?
    I read through the vsftpd documentation but there was no solution to my problem.
    Is there a proper way to handle this or is it just a matter of opinion?
    What do you think is best?
    Thanks a lot.
    harlekin
    edit: I've already asked for help realting to a particluar problem of this post in this thread. I have to overread it or something. Sorry for that. : Is this the way to handle it or is it just a work-around. It seems to me as if it will run out of luck if my server becomes larger.

    I have also done port scans on my Airport Extreme N to ensure that the ports are open. They are.

  • Computer slower and a few other strange problems since upgrading to SL

    Hi all,
    About a month ago, I upgraded my mid-2009 MBP to SL. I'm now on 10.6.1. Ever since the upgrade, my computer's been somewhat slower than it was when I ran Leopard (although many people I know say their machines are faster). I did restart several times at one point, and that seemed to speed it up, although it still experiences delays I didn't have before. I've also had a bunch of strange issues:
    1) Safari is most noticeably slow, especially when using something like Top Sites on Safari 4. I alleviated this problem somewhat by setting new tabs to open a blank window rather than Top Sites, but even so, Safari is generally slower, gives me 'pinwheels' often, and also is less stable.
    2) The other day, I restarted to find that all fonts except system fonts had been mysteriously deactivated. As a designer, I rely heavily on my many fonts, which I manage using Linotype FontExplorer.
    3) Today, I opened my computer up after having it sleeping in a backpack, and it had turned off. It was not out of battery; it had just turned off for no apparent reason.
    4) Judging by Activity Monitor, RAM is being used somewhat more heavily by the system, contrary to the advertisements of a 'lighter' footprint for SL as compared to Leopard. However, according to Activity Monitor (which I check frequently), the processor does not appear to be getting taxed any more heavily than under Leopard, which makes the sluggishness more inexplicable.
    5) Yesterday, I could not get my computer to recognize my Time Machine backup disc. After restarting, it worked, but this is a pain.
    I appreciate any advice I can get. Does anyone else have similar problems or solutions? Or is the general consensus that these are SL bugs that Apple will work out by about 10.6.4 or so?
    Thanks,
    Nathan
    Message was edited by: nateeanes

    I began this thread awhile ago, but the essence of it is that I had a number of strange problems, although mostly my computer was just slower, when upgrading from Leo to SL.
    I've now wiped my HD and re-installed SL. It seems faster, although there are still a few issues:
    1) iWork (Pages, Numbers) has very weird coloring. All the text looks light blue and/or cyan, and I can't fix it.
    2) Although initially Safari worked great, lately it's been going back to its habits of being slow and showing strange things like chopping up the 'Top Sites' view, i.e. rendering it in an off way.
    3) Adobe CS3 will not install properly. I get them loaded up, but when I try to launch a program, I get an error that says "licensing for this product has stopped working". I cannot get to the 'activate' page, even though I uninstalled and deactivated CS3.
    In the interest of full disclosure, I did restore my home account after clean installing SL-- maybe I should have brought the files over folder by folder rather than bringing back my whole home folder with its settings? I wonder if I accidentally brought over Adobe's FLEXnet folder too.
    Also, does anyone know if Adobe CS3 can cause these problems with Safari and other programs? It just seems that the whole machine was slower after installing CS3, even though I wasn't running the programs.
    Any help is appreciated.
    Nate

  • HT1414 C apple i need to know few things,first of all i shall tell my scenario. I got an iphone 3gs from my uncle in US. I m at india k. well , in that iphone it showing activation screen and trying to activate. not more than that..plz help!

    C Apple, i need to know few things,first of all i shall tell my scenario. I got an iphone 3gs from my uncle in US..after long waiting. I m from south india, living at God's country called Kerala k. well , in that iphone it showing activation screen and trying to activate. not more than that..plz help!
    means.. in simple words, it is trying to activate and all( searching wifi,, taking few minutes..again searching...if it couldnt find any wifi - telling .. try connect using itunes an all)...well any way. finally I try connect to a wifi network, with full speed...3mbps..from Ravi's internet cafe in downtown.
    All after Im getting the below message from that white candy box!( thats all I can use now, because, in my dreams iPhone is something great,  that mankind ever seen....but this really disappointed me......im simpling blinking!!(same with itunes too)
    ""Your iphone could not be activated because the activation server is temporarily unavailable. try connecting your iphone to itunes to activate it, or try again in a couple of minutes.
    If this problem persists, contact apple support at apple.com/support""
    EVERYDAY .EVERTIME.. I C this message and sleep....no use.....and i use to charge that 'white candy box' to c this message!
    I try searching internet and all for solutn...but no one knw about it..but there are...some one me abt method called jailbreaking ..rednw..white snw ..ultrasnw and all...I dnt knw why it is so complicated to troublesht...apple is suppose to be simple and friendly.
    C why u manufacturing these stuffz like this, if does'nt serve the any of its purpose ....or useable to any of its features atleast....C i wont be that disapppointed, if u put an option to playbck music or video during activation and all...
    If you are responsible for manfacturing such unuseable thing, then its ur responsible to destroy it too.....
    anyway now everyone knws that ..I have an apple iphone with me, but that doest make me proud at all...
    Finally I have only few questions to ask...
    1 will it work with my vodafone sim in kerala?
    2 is any way , i can hear any music out frm it?
    3 will i become a proud iPhone user?
    I am already fedup with asking questions..begging for an solution.....
    I hope so you can help to figure it out, without any complications....thank u!

    It was not legitimately unlocked by the carrier it was originally locked to. ONLY the carrier it is locked to can authorize unlocking it.
    In order to allow it to be used on a different carrier, the phone was hacked or jailbroken. An unauthorized modification was made to the phone. That modification has damaged the phone. You can not get support for it here or from Apple.

  • The sound quality of my speaker suddenly got really poor when playing music or videos.  Sounds like an old AM radio or Sputnik.  Pretty sure it's hardware related but maybe not.  Thoughts on what the problem might be and if it can be repaired?

    The sound quality of my speaker suddenly got really poor when playing music or videos.  Sounds like an old AM radio or Sputnik.  Pretty sure it's hardware related but maybe not.  Thoughts on what the problem might be and if it can be repaired?

    The batterys the ipods come with are very sensetive somtimes they dont react right to the first couple of charges. Try fully charging it and then leaving it on until its completely drained a few times. If that doesnt work it might be a lemon.

  • TS1814 I am trying to update my Iphone 3 and when i get to the activation step after a few minutes it shows a message that says " Your iPhone could not be activated because the activation server is temporarily unavailable. Try conenecting your iPhone to i

    I am trying to update my Iphone 3 and when i get to the activation step after a few minutes it shows a message that says " Your iPhone could not be activated because the activation server is temporarily unavailable. Try conenecting your iPhone to iTunes to activate it, or try again in a couple of minutes.
    If the problem persist, contact apple support at apple.com/support
    I been trying for a few times now and I keep getting the same message. How can i fix it? now my phone doesnt work.

    These are the steps mentioned in the article iPhone: Troubleshooting activation issues
    Perform the following steps if you receive one of the messages above:
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to a known-good Wi-Fi network if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Apple for assistance.

  • I have a 2009 MB Pro. I have been trying to do some cleaning of files and discovered that in Finder, All Images, I am experiencing a frustrating problem. I spent a few hours trashing over 4K images and within a few hours, I had as many more. Help!

    I have a 2009 MB Pro. I have been trying to do some cleaning of files and discovered that in Finder, All Images, I am experiencing a frustrating problem. I spent a few hours trashing over 4K images and within a few hours, I had as many more.  I did a couple of thousand trashed images and half hour later, more arrived. There are a lot of images that seem off the internet, including gif.s, png.s. Help!

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Makepkg.conf and active ftp

    I'm trying to build some arch-packages but having problems with makepkg while downloading the tarballs. I think it has something to do with the use of active ftp, but passive doesn't work in the network I use.
    My makepkg.conf:
    DLAGENTS=('ftp::/usr/bin/wget -c --no-passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    CARCH="i686"
    CHOST="i686-pc-linux-gnu"
    CFLAGS="-march=i686 -mtune=generic -O2 -pipe"
    CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe"
    BUILDENV=(fakeroot !distcc color !ccache !xdelta)
    OPTIONS=(strip docs libtool emptydirs zipman)
    INTEGRITY_CHECK=(md5)
    DOC_DIRS=(usr/{,share/}{info,doc,gtk-doc} opt/*/{info,doc,gtk-doc})
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    BUILDSCRIPT='PKGBUILD'
    PKGEXT='.pkg.tar.gz'
    SRCEXT='.src.tar.gz'
    DB_COMPRESSION='gz'
    DB_CHECKSUMS=(md5)
    with makepkg I get the following output:
    --2008-10-07 23:05:26-- ftp://...
      (try: 3) => 'package'
    Connecting to ftp.... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done.    ==> PWD ... done.
    ==> TYPE I ... done.   ==> CWD /packagedir ... done.
    ==> SIZE package ... size
    ==> PORT ... done.    ==> RETR package ...
    Error in server response, closing control connection.
    can someone help me?

    It's the only one package. And it fails to build every time on different files with the same error. And if I just enter ./src/arora-build and run qmake && make it does compile ok.
    The error example:
    .obj/moc_settings.o: file not recognized: File truncated                                         
    collect2: ld returned 1 exit status
    P.S. PKGBUILD is community/arora-git
    Last edited by vit (2009-05-06 18:02:36)

  • HT1414 my iphone has problem in open and if it open iphone shut  down after few minuate

    I have bought this iphone5 from Hannova German in April2013 and I am using this iphone5 in Nepal. In Nepal there is no authorized dealer. This problem came just from 15th July 2013. It has problem in opening and if it open it shut down after few minuate. So how to solve this problem and I think it has a guarantee period. I woud like your support to solve this problem. Thank you.
    <Edited by Host>

    Hi Prashun,
    Thanks for visiting Apple Support Communities.
    You can use these steps to troubleshoot your iPhone if it's powering off unexpectedly:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIs and corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 15 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Regards,
    Jeremy

  • How do i fix this: error message- index.html - error occurred - An FTP error occurred - cannot put index.html. Access denied. The file may not exist, or there could be a permission problem. Make sure you have proper authorization on the server and the ser

    that is...
    index.html - error occurred - An FTP error occurred - cannot put index.html. Access denied. The file may not exist, or there could be a permission problem. Make sure you have proper authorization on the server and the server is properly configured.
    File activity incomplete. 1 file(s) or folder(s) were not completed.
    Files with errors: 1
    index.html
    thanks!

    It's under More Options triangle in the Manage Sites panel.  See screenshot:
    Nancy O.

Maybe you are looking for

  • Transfer PO Conditions to R/3 in Extended Scenario (SRM 5.0)

    Hi all, We are using SRM 5.0 Extended Scenario. For controlling reasons we would like to transfer the whole conditions scheme (PO) from SRM to R/3 as well, so you could see the price calculation with rebates etc. in the R/3 position as well. I have d

  • Save as 'Dynamic' Not an option

    I am trying to create a dynamic pdf. I am starting with a word file and converting it to a pdf. Then I open it in livecycle and it does what ever converting it needs to do. Then when I hit "save as..." and go to "save as type" it only give me Static

  • How do I run two full screen applications on separate screens?

    I have two screens for my MacBook Pro with Lion; the laptop screen and a stock screen hooked up by a VGA cable. Currently, when I use a full screen application, my second screen just changes to the grey fabric pattern. How do I run a full-screen appl

  • I can not simply load images from my computer & iphoto. I used to now i can not

    I used to be able to simply attach & upload images. I used to hit the attach button, then I would see the options incuding pictures as an aoption, I would click on pictures & it would take me to my desktop pics & or iphoto as an option, if i chose ip

  • Dynamically need to change the report value reference names

    Hi Forum, Greetings to all !!! I have to create one report(document summary report) and the parameters are Document type(Special Information name through lov) and start date and end date. Based on these parameters it will fetch only that document det