My first from-scratch pkgbuild - [solved]

Hi Archers!
Yesterday, I set off on writing my own PKGBUILD from scratch for a package I have adopted - monkey. (http daemon)  I had used it previously on Damn Small Linux, and it was one of the programs that spurred my initial interest in Linux.  Enough history...
So, I copied over the PKGBUILD.proto into my working directory, and set to work.   I filled in the fields per the wiki's packaging guidelines,  and stared down the build() function.  As much as I know, what happens in here was (and kind of is) still a mystery to me.  From my reading, it appears that the build() calls fakeroot and runs the ./configure && make && make install while inside a fakeroot, of course allowing me to record changes made to a fake root filesystem, tar them up, and make a package out of it.  Now that I've toyed with it for a while, I see thats not the case.  (or maybe it is?)  I'm noticing that if I place the ./configure --(opts here) && make && make install inside the build() function, I run into permission errors as the make install tries to install the files on the real root filesystem.  hmm.
So I go back and check a few other similar PKGBUILDS.  I notice that they use either the prefix= env var or INSTALLDIR= env var to control where to drop the files.  So, I tried both (make prefix=$pkgdir install, or make DESTDIR=$pkgdir install ) but nether of those changed anything, and after closer inspection of the Makefile, it appears that neither of those vars are referenced.  Poo.
So, I changed the ./configure line to read: ./configure --prefix=$pkgdir/usr --confdir=$pkgdir/etc/$pkgname etc etc... for all the configure opts.  That seems to at least drop the files in the right place (the pkg/ dir under the folder that the PKGBUILD is in)
But... there are some changes I would need to make to the Makefile, first of which is that the Makefile actually starts the daemon as part of make install.  I tried to write a little sed one liner, but it doesn't seem to work, and I'm getting a little confused at this point.  (check the attached PKGBUILD)  Also, I tried using diff -u and making a patch which also cut out the last few lines of the make install (@echo  *** instructions here) which would be better placed in an .install file, but I can work on that later.
Anyway, I would appreciate any help getting this to work the right way (i.e. not having a bunch of install commands in the build() func), but I may end up going that way anyway.  Tell me where I'm going wrong.
Thanks,
Gary.
You can check out the very broken sourceball here
My PKGBUILD:
#Maintainer : Gary Wright <wriggary at g mail.com>
pkgname=monkey
pkgver=0.10.0
pkgrel=1
pkgdesc="Monkey HTTP Daemon, is a very small and fast open source web server for Linux"
arch=('i686' 'x86_64')
url="http://www.monkey-project.com/"
license=('GPL2')
groups=()
depends=('gcc-libs')
makedepends=()
optdepends=('php: currently not working, but planned for 0.11.0')
provides=("monkey=$pkgver")
conflicts=()
replaces=()
backup=()
options=()
install=
source=("http://www.monkey-project.com/releases/0.10/$pkgname-$pkgver.tar.gz"
"monkey")
noextract=()
md5sums=('d96d79d0768812a179c9fcf95317bda8'
'c6dce4218ef222e60489a4289d8da347')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=$pkgdir/usr --bindir=$pkgdir/usr/bin --sysconfdir=$pkgdir/etc/$pkgname --datadir=$pkgdir/srv/http/htdocs --logdir=$pkgdir/var/log/$pkgname --plugdir=$pkgdir/usr/share/$pkgname --cgibin=$pkgdir/srv/http/htdocs/cgi-bin
make || return 1
sed -n 's/\$(BINDIR)\/monkey/#\${BINDIR}\/monkey/' Makefile
make install || return 1
# vim:set ts=2 sw=2 et:
The (stupid) Makefile that gets generated with this ./configure line:
# Monkey HTTP Daemon: Makefile
# ============================
PREFIX=/home/gary/aur/monkey-010/pkg/usr
BINDIR=/home/gary/aur/monkey-010/pkg/usr/bin
CGIBIN=/home/gary/aur/monkey-010/pkg/srv/http/htdocs/cgi-bin
SYSCONFDIR=/home/gary/aur/monkey-010/pkg/etc/monkey
DATADIR=/home/gary/aur/monkey-010/pkg/srv/http/htdocs
LOGDIR=/home/gary/aur/monkey-010/pkg/var/log/monkey
PLUGINDIR=/home/gary/aur/monkey-010/pkg/usr/share/monkey
default:
@(cd src; make all)
clean:
@(cd src; make clean)
distclean:
@(cd src; make distclean)
install:
make -C src all
install -d $(BINDIR)
install -d $(CGIBIN)
install -d $(SYSCONFDIR)
install -d ${SYSCONFDIR}/sites
install -d ${SYSCONFDIR}/plugins
install -d $(DATADIR)
install -d ${DATADIR}/imgs
install -d ${DATADIR}/php
install -d ${DATADIR}/docs
install -d ${LOGDIR}
install -d ${PLUGINDIR}
install -m 755 bin/monkey $(BINDIR)
$(BINDIR)/monkey
install -m 755 bin/banana $(BINDIR)
install -m 644 ./conf/*.* $(SYSCONFDIR)
cp -r conf/plugins/security ${SYSCONFDIR}/plugins/
install -m 644 ./conf/sites/* ${SYSCONFDIR}/sites
install -s -m 644 plugins/cheetah/*.so ${PLUGINDIR}
install -s -m 644 plugins/security/*.so ${PLUGINDIR}
install -m 644 ./htdocs/*.* $(DATADIR)
install -m 644 ./htdocs/imgs/*.* ${DATADIR}/imgs
Last edited by wriggary (2010-04-09 15:13:08)

Andrwe - he already posted the Makefile - it doesn't use DESTDIR, prefix, of any other variable that could specify an alternative package root.
wrigarry - here's my version. It installs everything under $pkgdir, doesn't try to run the daemon, and doesn't echo any message - that's as far as I'm going. You can do the rest.
pkgname=monkey
pkgver=0.10.0
pkgrel=1
pkgdesc="Monkey HTTP Daemon, is a very small and fast open source web server
for Linux"
arch=('i686' 'x86_64')
url="http://www.monkey-project.com/"
license=('GPL2')
depends=('gcc-libs')
#optdepends=('php: currently not working, but planned for 0.11.0')
provides=("monkey=$pkgver")
source=("http://www.monkey-project.com/releases/0.10/$pkgname-$pkgver.tar.gz"
Makefile.patch)
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --bindir=/usr/bin --sysconfdir=/etc/$pkgname \
--datadir=/srv/http/htdocs --logdir=/var/log/$pkgname \
--plugdir=/usr/share/$pkgname --cgibin=/srv/http/htdocs/cgi-bin || return 1
patch -Np0 -i ../Makefile.patch || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
md5sums=('d96d79d0768812a179c9fcf95317bda8'
'cf61afddb4c53bea688bc225678e3001')
Makefile.patch
--- Makefile 2010-04-09 10:30:26.781831483 +0100
+++ Makefile.new 2010-04-09 10:28:08.591830541 +0100
@@ -1,12 +1,12 @@
# Monkey HTTP Daemon: Makefile
# ============================
-PREFIX=/usr
-BINDIR=/usr/bin
-CGIBIN=/srv/http/htdocs/cgi-bin
-SYSCONFDIR=/etc/monkey
-DATADIR=/srv/http/htdocs
-LOGDIR=/var/log/monkey
-PLUGINDIR=/usr/share/monkey
+PREFIX=$(DESTDIR)/usr
+BINDIR=$(DESTDIR)/usr/bin
+CGIBIN=$(DESTDIR)/srv/http/htdocs/cgi-bin
+SYSCONFDIR=$(DESTDIR)/etc/monkey
+DATADIR=$(DESTDIR)/srv/http/htdocs
+LOGDIR=$(DESTDIR)/var/log/monkey
+PLUGINDIR=$(DESTDIR)/usr/share/monkey
default:
@(cd src; make all)
@@ -29,7 +29,6 @@
install -d ${LOGDIR}
install -d ${PLUGINDIR}
install -m 755 bin/monkey $(BINDIR)
- $(BINDIR)/monkey
install -m 755 bin/banana $(BINDIR)
install -m 644 ./conf/*.* $(SYSCONFDIR)
cp -r conf/plugins/security ${SYSCONFDIR}/plugins/
@@ -38,12 +37,4 @@
install -s -m 644 plugins/security/*.so ${PLUGINDIR}
install -m 644 ./htdocs/*.* $(DATADIR)
install -m 644 ./htdocs/imgs/*.* ${DATADIR}/imgs
- @echo
- @echo " Running Monkey :"
- @echo " ----------------"
- @echo
- @echo " # /usr/bin/monkey"
- @echo
- @echo " For more help use '-h' option"
- @echo
Also, you didn't post the code for the "monkey" in your SOURCE array - I presume it's the rc script - so I left it out.

Similar Messages

  • Hi,  iTunes is no longer syncing my iPhoto library to my iPhone 4. Everything was syncing fine when I first got the phone, but, over the past week or so, it's stopped syncing photos.   Now, after attempting to start from scratch by deleting all the photos

    Hi,
    iTunes is no longer syncing my iPhoto library to my iPhone 4. Everything was syncing fine when I first got the phone, but, over the past week or so, it's stopped syncing photos.
    Now, after attempting to start from scratch by deleting all the photos on my iPhone, iTunes won't sync ANY photos from iPhoto back to my iPhone. I've restarted my phone, computer, etc., force quit all photo-related apps on my iPhone, and tried various combinations of turning iTunes' photo syncing on/off, switching photo sync folders, etc., all to no avail -- I can't get my iPhoto library back on to my iPhone no matter what I do.
    Anyone encounter a similar situation? (I've already sent feedback to Apple.) Thanks in advance.

    Try deleting what is called the iPod Photo Cache. 
    http://support.apple.com/kb/TS1314

  • Install from scratch 3 times Mavericks but cannot used my restore it will just start for ever. After first install and restore mail and link between folder and files didn't work anymore. Now cant see my disk in finder. Help?

    First install through regular update : never finishing the start after automatic restart
    First install from scratch: erase through disk utility, install OS X Mavericks (using Recover mode), restart ok - Used Migration Assistant to restore applications and data only - Mail crashed each 5 inutes and asked constantly for password of my 2 accounts, links between folders and files not OK and attaching a doc was complicated. I downloaded the update same problems
    Second install from scratch: erase through disk utility, install OS X Mavericks (using Recover mode), restart ok - Used Migration Assistant to restore applications and data only and settings : never finishing the start after automatic restart
    Third install from scratch: erase through disk utility, install OS X Mavericks (using Recover mode), restart ok - But no disk available in Finder
    So far no Mac since 3 days ...
    Any help is welcome

    Still struggling to understand why copying the entire root dir to a disk image and then restoring from that image did not, as expected, yield an identical system, and why I even had to reinstall after doing this.
    Because there is a lot more going on under the hood than merely copying files.
    The only way to do what you want is to use cloning software like Carbon Copy Cloner.
    My  advice is to rescue your personal files to a regular non-TimeMachine  external drive, Zero erase the ENTIRE drive and install OS X fresh and  update, then your programs from original sources and files from backup.
    Then, make a bootable clone and you can copy that as many times as you want and each one is bootable.
    Most commonly used backup methods
    How to erase and install Snow Leopard 10.6

  • Advice needed on building first system from scratch...

    Ok, here goes, I am so excited, like a kid on Xmas...My goodies from Newegg will be here later today or tomorrow....I recently purchased: A new tower, Antec PSU, 2x512 Corsair pc3200, MSI K7N2 Delta - ILSR and some other assorted crap....
    Anyway, I have never built a system from the ground up before...I am looking forward to the challenge....But before I begin I was wondering if I could get some tips?
    I already backed up all the files(photos, demos, benchmarks etc...)that I'll be saving...I also made copies of all the drivers I need to set it up when it's done(Nvidia graphics drivers, DX9.0b), I assume the mobo drivers will come with the mobo....I also want to do a fresh install of Windows as well.....Now my main concern is in regards to the order in which everything is done....I have replaced a motherboard before so I have a little knowledge of the inner workings....But never having built one from scratch, I'm a little leary as to the order and how everything should be installed....
    I will also be adding my current Vid. card,  sound card?(I'm pretty sure the onboard is better?) and HDD.....Windows came installed on my machine when I purchased it so I don't have the Windows CD, but I have made the set of recovery discs that is needed to set it back to factory specs and settings...Have I forgotten anything?...Any help would be greatly appreciated...Thanks!
                               Silly

    Quote
    Originally posted by GlennVidia
    Quote
    Originally posted by SillySider03
    Thank you guys for all the helpful replies.....
    Axel, thanks for the link...It was an informative read..
    Glenn, I don't have an XP CD...The OS came installed on the computer when I purchased it.....I only have the 6 recovery CD's that I made under "PC RECOVERY TOOLS"...It's an older Compaq...Oh, and it's an AMD xp2400(can be unlocked using the Speed-Strip, currently it's locked because my mobo doesn't support the OC features I so desperately want to play with..Muhahaha ).....Also, I am currently downloading the Nvidia "Unified" driver and SP1....All of a sudden, something I was looking forward to seems like the scariest thing in the world....Will this thing even boot when I get it plugged in? How am I going to install all this crap? Geez, I'm worried now...
    Bogs, I will try both on-board and SB Live 5.1....I play a lot of BFV and 1942, I'll see if I can tell if there is a performance and/or increase in sound quality....What tag do you play under? See you on the battlefield!!!
    Thanks again for all the replies, Silly
    Well first things first, follow my suggestions on the FSB settings until you are sure it's stable and the OS has been loaded and is stable as well before you introduce overclocking to the mix...
    I am a bit concerned about your Recovery CD, Most likely it'll puke on you since the motherboard and EVERYTHING except the CPU has changed?  Most likely it will halt and tell you it's not a (enter name) PC and cannot continue. Try it and see.
    Maybe someone has a way around it and you can discuss that in either Private Messaging or via E-mail. Please keep that little tidbit out of the forums.
    bogs dollocks,
    Ahhh... think you're right there, however it could have been something completely different...but that's another topic entirely...
    It will cause moe headaches than it's worth. Get an OEM copy of Windows. Better yet, borrow someone else's and use your key.

  • I want to upgrade my old airport express to the new express. Can I just switch out the old for the new or must I delete the old network first and start from scratch with the new express?

    I want to upgrade my old airport express to the new express. Can I just switch out the old for the new or must I delete the old network first and start from scratch with the new express?

    It is not necessary to delete your old wireless networks first, but doing so may eliminate confusion. If you wish to do that, open System Preferences > Network, and select Wi-Fi from the left column. Click the Advanced... button, then select your old wireless networks and delete them with the "–" (minus) button. Make sure the "Remember networks this computer has joined" remains checked.
    OK then Apply.
    This prevents your Mac from searching for your previous network which will no longer exist.
    A new Express creates an open wireless network that you must select before you can configure it. It appears in your Wi-Fi menu like this:
    Select it. AirPort Utility will load and walk you through its configuration.
    Edit: If you are really using OS X 10.5.1 as shown in your profile, the above screenshot is not applicable. Instead, select the network called "Apple network nnnnnn" and then launch AirPort Utility.

  • I have an Ipad first generation with IOS 5.1.1. and I have just got a new ipad mini. Should I use the back up of the old Ipad from Itunes copy to configure the new one, or it is better to configure the new one from scratch?

    I have an Ipad first generation with IOS 5.1.1. and I have just got a new ipad mini. Should I use the back up copy of the old Ipad from Itunes to configure the new one, or it is better to configure the new one from scratch?

    Contrary to the opinion above, I see no reason whatsoever why you can't set up the new iPad from the backup of the old one. Obviously you will have app updates to make and complete and that sort of thing, but if you want to retain all of your app data and device settings (some of which will change because of the updated iOS), I would certainly restore from the backup first.
    If you find that to be problematic, you can always start all over again.

  • [Solved] Linux From Scratch - gnu-versions.h missing

    I am using Arch to build a Linux From Scratch on another partition, but I am having problems compiling as not having the file "gnu-versions.h" is causing problems.
    I searched the net and the forums and didn't come up with anything useful.
    I installed the automake and autoconf along with other listed prerequisites but still no gnu-versions.h.
    I am pretty sure it is part of one of the gnu dev files, but i can't find it.
    Something led me to think that I may need glibc-dev, but I can't find it in the repos.
    Any help would be appreciated.
    richs-lxh
    Last edited by richs-lxh (2008-10-06 18:59:07)

    ghostHack wrote:
    errr....
    [rich@karhide ~]$ pacman -Qo /usr/include/gnu-versions.h
    /usr/include/gnu-versions.h is owned by glibc 2.8-3
    This is strange.
    I did an updatedb and slocate earlier, even physically checked the /usr/include dir as well as issuing a find. Nada.
    So, I reinstall glibc, and boom! there it is.
    Thanks ghostHack
    Last edited by richs-lxh (2008-10-06 18:58:37)

  • I would like to start the "Creating your first website by David Powers," tutorial again from scratch. How do I delete what I have now?

    Or I am unable to see the website when I activated Dream Weaver that I have worked on so far. I am confused. Can someone help?

    Not sure what you mean about being unable to see the website when you activated Dreamweaver, but the simple way to start the tutorial from scratch is to delete the files. Then replace them with a fresh set from the download zip file.
    You can delete the files in the Dreamweaver Files panel. Alternatively, use the Windows File Explorer or the Mac Finder.
    If you want to delete the site definition in Dreamweaver, select Site > Manage Sites. Select the site in the list that appears, and click the minus button at the bottom left to delete the site from Dreamweaver. Note, however, that deleting the site definition does NOT delete the files or folder that you created. It simply removes the site definition from Dreamweaver.

  • W540 Windows 8.1 install from scratch (ssd)

    Hi, Lenovo user's
    I need your help. My new W540 need to be rebuild (win 8.1) from scratch and manual driver,s install. Ok it's rediculus, but my manager at work need that test. I buy the original 2 dvd's ( #1 recovery disk media and #2 operating system recovery disk).  The Uefi bios option are new for me.  I want to remove un-needed partition to ! Have you some procedure to do that ??
    I can't find on my laptop the windows 8.1 serial plate, it's normal ??? No it's not under the battery.;-)))
    Sorry for very bad english.... French from Canada :-)
    Special thk and Merry XMas.
    First T22,Next T43,T60P, W700 and S10-3, now W540 (SSD, 16RAM, i7 4800, Etc :-)
    Solved!
    Go to Solution.

    The product key is now embedded in your BIOS, and Windows will automatically activate by reading that when you install.
    If you are using Lenovo recovery disks, they will overwrite all partitions and create the correct ones. You just need to put disk #1 into the drive and boot from it.
    W540: i7-4700mq, K2100m, 8 GB DDR3L, 512 GB SSD
    T510: i7-620m, NVS 3100m, 8 GB DDR3, 512 GB SSD

  • No choice, need to reinstall OS from scratch, but... Help!

    I've been dealing with a disk error that has tripped up every application I've used to correct it. Disk First Aid could nothing. I tried Disk Warrior, but that's taking centuries to run and still won't solve the end problem (according to a DW techie). But before running DW I tried to use Retrospect, but that application won't function either, presumably because of the original disk error. All of this because I can't upgrade to Tiger and because I've been told that though there are no issues now the disk error will eventuallly get me. I don't know what the disk error is but it clearly is causing problems up and down the chain.
    Anyway, so I am forced to reinstall Tiger from scratch thus entirely erasing and reformatting my hard drive (which I've been told will solve the problem). But without a Retrospect back up all I can do is drag'n'drop from an external hard drive back onto the Powerbook. But though I've backed up most everything manually I'm sure I'm missing things, plus there's all those settings and preferences (and where is my Safari bookmarks file?).
    So, should I do this and go through the pain? Should I take it into a professional and have them do a more thorough backup and reinstall and reset? Should I buy a new Powerbook and just have it copy over everything onto a freshly formatted Tiger machine and sell my old one with a fresh install and reformat on Ebay (no)? Or just stay with Panther until I buy a new one later and live with the risk of an eventual hard drive meltdown?
    What to do, what to do??? Thanks.
    Also, with Restrospect, what happens with a restore if I've reinstalled a new OS since the backup? Does it do anything with the OS or not?

    Your Safari Bookmarks.html file is in the folder ~/Library/Safari.
    Good luck.
    Tuttle

  • There is a solution; set your network settings from scratch,

    If you are moving to the MBA from another mac computer, set your network settings up totally from scratch. If you have been having network wifi problems, did you migrate from another mac?
    If you look at the previous macs, all of them had networking primary interface as en0 = ethernet.
    On the MBA, alone of all macs, the primary network interface which is en0 is the wireless and therefore different from any mac you have used via wifi before.
    There is nothing wrong with the Network interface on either but they are not the same and should not be treated as if migration can transfer the settings and be expected to work perfectly.
    If you have had wifi problems, reset your network preferences, not just your wifi settings themselves.
    As someone else posted in internet topic, migration could be your network problem. Reset all network and re "apply" settings if you are having wifi difficulties.
    Message was edited by: Rhyd

    I know this is late, but here's the only way I got around this issue without having to start all over with a blank iPhone.
    I restored my backup to a DIFFERENT iPhone 4. The restore still "failed" at the very end of the restore, but when the phone rebooted, everything I had restored was there! I then backed up the newly restored iPhone 4, and then restored that backup to my iPhone 5. Problem solved.
    One thing to note; if you restore your original backup to an iPhone 4 that still has data on it, the restore will combine all the photo albums & Music.
    I tried a lot of other things first before comming to this solution. I also jailbroke my iPhone and tried deleting the camera roll, deleting the iTunes sync information, deleting different preference files, resetting settings, etc. Nothing worked!
    I also contacted Apple Care and spoke to an Advanced Support Rep. She told me that other than starting over, the only thing I could try would be to use some unsupported 3rd party software. There are a lot of great jailbroken apps that do great things with restoring data like your call log, sms, etc, but you can't use them if you can't jailbreak the device you want to restore your data to.
    Apple needs to add the way to backup your iPhone data with iCloud, not just the all or nothing setting they currently have. Starting with a blank phone isn't so bad if I can backup/restore my sms log, call log, etc independantly.
    Everyone who reads this should recommend this by filling out this form: http://www.apple.com/feedback/

  • Can't simulate GTH wrapper generated from scratch

    Hi,
    I need to use some GTH transceivers of the Virtex-6 FPGA (ML630 eval board) to communicate with a high speed digital-to-analog converter (DAC). I am firstly trying to simulate the wrapper of the GTH transceiver I created, in order to understand the signals assertion flow. However, in simulation the serial pins for transmission are always '1' (both p and n pins).
    The wrapper is created using core generator with option "from scratch" to operate in 9.92 Gbps with no line coding. The simulation uses the example design and testbench generated with the wrapper.
    However, If I generate the wrapper with a pre-defined template (e.g. 10GBASE-R), the simulation works fine.
    Does anybody know how can I solve this problem or some tip the could help me?
    Additional information:
    - ISE version 14.7
    - GTH transceiver wizard version: 1.11
    - FPGA: xc6vhx565t-2ff1924 (ML630)
    Thanks in advance.

    I solved the problem. It seems to be a problem with GTH transceiver wizard, because, even setting in wizard the option "full rate", it generates an example design for "full rate", but init.vhd file is parameterized with "full rate" disabled, and the core never starts.

  • E72 E-Mail from Scratch

    Hi all
    I've been browing through many posts to see to find a solution regarding to the many problems that are being encountered by many users around the world pertaining to the setting up of e-mail accounts and other related issues.  Since I'm tired in trying to find solutions in many threads, lets condense up everything up here.
    So, my issues are:
    1. I would appreciate if someone explains from scratch how to set up an e-mail (an e-mail from a unique domain name, a business for instance (not gmail, hotmail, etc).
    2. i did succeed in setting up the first part, meaning the incoming & otugoing mail server, username and password, but the e-mails are not being sent or neither being received.
    3. beneath the Inbox, I'm just having More Folders as option without Sent Items, etc etc.
    4.  I read somewhere that we need to go to www.email.nokia.com to set up the e-mail over there first of all, then go back to step 1.  But the problem is that on the stated link, there is only the Log in option, without the Registration given.  I log in for the forum page does not work over there.
    5. What is the difference between Mails for Exchange and the Other.
    6.  I would appreciate a free solution instead of buying a software on Ovi to solve this issue as I have had to buy Best Message Storer to solve an Outbox icon issue.  The mobile is quite expensive, so I expect efficient solutions from Nokia instead of injecting more money to solve their bugs.
    7.  If there are other issues that I have not raised up, that you think it's important, I would appreciate you contributing to it; but please keep everything simple and straightforward so as the whole community using this particular mobile can have a rest on all the bugs.
    Thanks. 

    Hi All,
    I am using Nokia E72. The e-mail used to work properly but lately it was not getting new e-mails at my mobile, I decided to remove the e-mail account and reconfigure it, but I realized that it can't be reconfigured even after I have formatted the phone.....
    I still can not configure the e-mail as after I enter e-mail address and password It does not verify and proceed however I have a high speed internet connection....
    Any advice would be highly appreciated!

  • When pausing download or download fails re-download starts from scratch

    I would have thought a major upgrade like itunes had lately would have solved this problem already.
    podcast that was stopped due to error or was paused voluntarily -
    when trying to re-start the download, all that was downloaded already is lost!!!!!
    even if it reached 80% or more, the download starts from scratch!!!!
    please correct this, this is incredibly annoying!!!!!!

    thanks, I sent them "feedback" about it as you suggested.
    But I would have thought this is not the first time someone encounters this basic problem!
    Maybe someone here can tell me it is known, and it is being worked on or something?
    Thanks again

  • Query based taxonomy from scratch gives NoSuchMethodError...

    I'm trying to create a query based taxonomy following the instuctions specified in the help docs: KM Platform -> Admin Guide -> Content Mgmt -> Taxonomies and Classification -> Creating a QBT -> from scratch. I created an index on a newly created (hence empty) folder in the 'documents' repository. So, essentially, the data source points to that folder. Also, I selected 'TREX Classification' on the 'Service' drop-down while creating the index. I left the crwler profile as blank. Then I went on to create a new 'Query Based Taxonomy'. I was able to create it alright, but as soon as I click on it to add folder and the such, I get this error:
    java.lang.NoSuchMethodError
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.getDocumentTaxRMRids(TaxonomyNamespaceManager.java:1876)
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.getTaxonomyClassResources(TaxonomyNamespaceManager.java:1831)
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.addChildDocuments(TaxonomyNamespaceManager.java:1942)
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.getChildren(TaxonomyNamespaceManager.java:368)
         at com.sapportals.wcm.repository.CollectionImpl.internalGetChildren(CollectionImpl.java:966)
         at com.sapportals.wcm.repository.CollectionImpl.getChildren(CollectionImpl.java:179)
    Any help in solving this is highly apprecaited.
    We run EP6 SP2.
    I did NOT create a 'crawler profile' for this set up.
    thanks,
    Biju.

    Hi Biju,
    re. your NW'04 SP stack 4 migration intention:
    NW'04 is still in ramp-up (SP stack 4 is the current shipment bundle of it) so at the current point in time, only participating ramp-up customers can use it.
    A migration from EP6.0 SP2 to NW'04 will be possible (but not during the ramp-up phase).
    From a Knowledge Management & Collaboration perspective, we will port most of the NW'04 SP stack 4 functions to EP6.0 SP2 as well. These functions will be shipped as EP6.0 SP2 Patch 5 (planned shipment date beginning of Q4 / 2004) so for mid-term, you can also plan to stay on EP6.0 SP2 if you have no other pressing reasons for going to NW'04 (e.g. enhanced Web AS functions).
    This feature porting from NW -> EP6.0 SP2 is an 'only-once' action, however, and NetWeaver will be the release for new features in the future.
    Regards,
    Joerg

Maybe you are looking for

  • Mail Server Hosted on outlook freely but services for same getting shut from 31 july 2014

    Dear Sir/ Madam, My Mail Server Hosted on outlook freely but services for same getting shutting from 31 july 2014, i want to continue the same product please advice me to get the same, i got the mail from outlook is follow Dear Outlook.com Customer,

  • Where Is Airbrush Tool in PS 9.0?

    I'm new to PS and I have CS2, PS 9.0. I can't find the airbrush tool, can someone tell me how to access it? Thanks!

  • How to change the resolution af adobe captivate

    Hi, I have a surface 3 with high resolution (2160 x 1440). In Adobe captive - the menu bar is very small due to the high resolution So i tried to modify the resolution of adobe captivate in the compatibily mode but it won't work :-( In the meantime,

  • Vmfex - veth "unknown e 1"

    I have an issue in which a VM vnic does not show up within the VMs tab within UCSM, the veth on the FI also lists the interface status as ‘unknown e 1’. Note this is not high performance vm-fex. What I have found is the issue only arises when the VM

  • Looking to add second SuperDrive

    Just purchased a new Mac Pro on 8/20 and am currently in the process of making a few upgrades via OWC. I know I'm going to purchase 8 gigs of RAM: http://eshop.macsales.com/item/Other%20World%20Computing/64FB4MPK08GB/ Now I'm researching a second opt