"exists in filesystem" issue while making PKGBUILD for a python module

This is the package. http://packages.python.org/vcs/usage/vc … n-commands
Its already not in the AUR, so I decided of making the PKGBUILD http://sprunge.us/XVTA
Now, when I try to install it, I get this error
shadyabhi@archlinux /tmp $ sudo pacman -U python2-vcs-0.2.0-1-x86_64.pkg.tar.xz
Password:
resolving dependencies...
looking for inter-conflicts...
Targets (1): python2-vcs-0.2.0-1 [0.11 MB]
Total Download Size: 0.00 MB
Total Installed Size: 1.27 MB
Proceed with installation? [Y/n]
(1/1) checking package integrity [################################################################] 100%
(1/1) checking for file conflicts [################################################################] 100%
error: failed to commit transaction (conflicting files)
python2-vcs: /usr/lib/python2.7/site-packages/tests/__init__.py exists in filesystem
python2-vcs: /usr/lib/python2.7/site-packages/tests/__init__.pyc exists in filesystem
python2-vcs: /usr/lib/python2.7/site-packages/tests/__init__.pyo exists in filesystem
shadyabhi@archlinux /tmp $
Also, these files are owned by:
shadyabhi@archlinux ~ $ pacman -Qo /usr/lib/python2.7/site-packages/tests/__init__.py
/usr/lib/python2.7/site-packages/tests/__init__.py is owned by python-paste-deploy 1.3.4-1
shadyabhi@archlinux ~ $
So, what should be done?

Added a note to the python packaging guidelines about not putting a directory named "tests" directly in "site-packages". Hope it helps avoiding this issue in the future.
https://wiki.archlinux.org/index.php/Py … Guidelines

Similar Messages

  • Issues while creating implementation for BADI  "ME_PROCESS_PO_CUST"

    Hi Group,
    I have issues while creating implementation for  BADI "ME_PROCESS_PO_CUST".
    I tried to create implementation for the above mentioned BADI but, I was getting an error like this:
    "Interface implementation IF_EX_ME_PROCESS_PO_CUST does not exist".
    I want to implement this BADI and so, ideas/views at the earliest will be appreciated.
    Please let me know how to overcome this error.
    Thanks,
    Vishnu.

    Hi,
    Have you activated the class which is implementing the interface? (in transaction SE19 you should see class name)
    Best regards,
    Wojciech

  • Making pkgbuild for keytouch

    I'm trying to make a pkgbuild for keytouch
    But as it's my first pkgbuild, I have some problems:
    1) the docs say you need the following packages to be installed:
    - GTK 2
    - gksu
    - X11 and Xlib
    gtk2 and gksu are in pacman, but what do I have to add for X11 and Xlib?
    2) running makepkg runs into an error:
    mkdir /home/tom/download/PKGbuilds/keytouch/test1/pkg/usr/bin
    /bin/install -c keytouchd /home/tom/download/PKGbuilds/keytouch/test1/pkg/usr/bin/keytouchd
    XSESSION_KEYTOUCHD_LINE="keytouchd &";
    XSESSION_DIR="/etc/X11/Xsession.d";
    if [ -d $XSESSION_DIR ]; then
    echo "$XSESSION_KEYTOUCHD_LINE" > $XSESSION_DIR/40keytouchd;
    chmod +x $XSESSION_DIR/40keytouchd;
    else
    XSESSION_FILE="/etc/X11/Xsession";
    if [ "`grep "$XSESSION_KEYTOUCHD_LINE" "$XSESSION_FILE" -m 1 -h`" != "$XSESSION_KEYTOUCHD_LINE" ]; then
    XSESSION_TMP=`cat "$XSESSION_FILE"`;
    echo "$XSESSION_KEYTOUCHD_LINE" > $XSESSION_FILE;
    echo "$XSESSION_TMP" >> $XSESSION_FILE;
    fi
    fi
    /bin/sh: /etc/X11/Xsession.d/40keytouchd: Permission denied
    chmod: cannot access `/etc/X11/Xsession.d/40keytouchd': No such file or directory
    make[2]: *** [install-data-local] Error 1
    make[2]: Leaving directory `/home/tom/download/PKGbuilds/keytouch/test1/src/keytouch-2.0/keytouchd'
    make[1]: *** [install-am] Error 2
    make[1]: Leaving directory `/home/tom/download/PKGbuilds/keytouch/test1/src/keytouch-2.0/keytouchd'
    make: *** [install-recursive] Error 1
    ==> ERROR: Build Failed. Aborting...
    It produces this error on the make install, and I thinks it's because the src/keytouch-2.0/keytouchd/Makefile.am contains the following:
    install-data-local:
    @$(NORMAL_INSTALL)
    XSESSION_KEYTOUCHD_LINE="keytouchd &";
    XSESSION_DIR="$(DESTDIR)/etc/X11/Xsession.d";
    if [ -d $$XSESSION_DIR ]; then
    echo "$$XSESSION_KEYTOUCHD_LINE" > $$XSESSION_DIR/40keytouchd;
    chmod +x $$XSESSION_DIR/40keytouchd;
    else
    XSESSION_FILE="/etc/X11/Xsession";
    if [ "`grep "$$XSESSION_KEYTOUCHD_LINE" "$$XSESSION_FILE" -m 1 -h`" != "$$XSESSION_KEYTOUCHD_LINE" ]; then
    XSESSION_TMP=`cat "$$XSESSION_FILE"`;
    echo "$$XSESSION_KEYTOUCHD_LINE" > $$XSESSION_FILE;
    echo "$$XSESSION_TMP" >> $$XSESSION_FILE;
    fi
    fi
    The make install tries to write directly to /etc/X11/Xsession, which is not allowed while make the pkg.
    How do I solve this problem?
    The pkgbuild so far:
    # $Id: PKGBUILD,v 1.0 2005/21/11 $
    # Maintainer: mouse256
    pkgname=keytouch
    pkgver=2.0.0
    pkgrel=1
    pkgdesc="A program which allows you to easily configure the extra function keys of your keyboard"
    depends=('gtk2' 'gksu')
    source=(http://dl.sourceforge.net/sourceforge/keytouch/$pkgname-$pkgver.tar.gz)
    url="http://keytouch.sourceforge.net/"
    md5sums=('a7a22320707b887b1c5dedb77d2cf3e6')
    build() {
    cd $startdir/src/$pkgname-2.0
    ./configure --prefix=/usr
    make || return 1
    make prefix=$startdir/pkg/usr install

    thanks, it dit help somewhat, but I still had some errors.  Now they're all solved, but I don't know whether my pkgbuild is according the arch rules:
    pkgbuild;
    # $Id: PKGBUILD,v 1.0 2005/21/11 $
    # Maintainer: mouse256
    pkgname=keytouch
    pkgver=2.0.0
    pkgrel=1
    pkgdesc="A program which allows you to easily configure the extra function keys of your keyboard"
    depends=('gtk2' 'gksu')
    source=(http://dl.sourceforge.net/sourceforge/keytouch/$pkgname-$pkgver.tar.gz)
    url="http://keytouch.sourceforge.net/"
    md5sums=('a7a22320707b887b1c5dedb77d2cf3e6')
    build() {
    cd $startdir/src/$pkgname-2.0
    ./configure --prefix=/usr
    make || return 1
    #script checkt if Xsession directory exists, so create it
    mkdir $startdir/pkg/etc
    mkdir $startdir/pkg/etc/X11
    mkdir $startdir/pkg/etc/X11/Xsession.d
    mkdir $startdir/pkg/etc/rc.d
    make DESTDIR=$startdir/pkg install
    cd $startdir/src/$pkgname-2.0/keytouch-config
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    cd $startdir/src/$pkgname-2.0/keytouch-keyboard
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    mkdir -p $startdir/pkg/usr/share/applications
    echo "Categories=Application;Accessoires;" >> $startdir/pkg/usr/share/keytouch/desktop/keytouch.desktop
    mv $startdir/pkg/usr/share/keytouch/desktop/keytouch.desktop $startdir/pkg/usr/share/applications
    The biggest problem I think is it creates a file in /etc/rc.d
    FILELIST:
    .FILELIST
    .PKGINFO
    etc/
    etc/X11/
    etc/X11/Xsession.d/
    etc/X11/Xsession.d/40keytouchd
    etc/rc.d/
    etc/rc.d/keytouch-init.sh
    usr/
    usr/bin/
    usr/bin/keytouch
    usr/bin/keytouch-init
    usr/bin/keytouch-keyboard
    usr/bin/keytouch-keyboard-bin
    usr/bin/keytouchd
    usr/etc/
    usr/etc/keytouch/
    usr/share/
    usr/share/keytouch-keyboard-bin/
    usr/share/keytouch-keyboard-bin/pixmaps/
    usr/share/keytouch-keyboard-bin/pixmaps/icon.png
    usr/share/keytouch/
    usr/share/keytouch/doc/
    usr/share/keytouch/doc/html/
    usr/share/keytouch/doc/html/WARNINGS
    usr/share/keytouch/doc/html/images.aux
    usr/share/keytouch/doc/html/images.log
    usr/share/keytouch/doc/html/images.out
    usr/share/keytouch/doc/html/images.pl
    usr/share/keytouch/doc/html/images.tex
    usr/share/keytouch/doc/html/img1.png
    usr/share/keytouch/doc/html/img2.png
    usr/share/keytouch/doc/html/img3.png
    usr/share/keytouch/doc/html/img4.png
    usr/share/keytouch/doc/html/index.html
    usr/share/keytouch/doc/html/internals.pl
    usr/share/keytouch/doc/html/labels.pl
    usr/share/keytouch/doc/html/node1.html
    usr/share/keytouch/doc/html/node10.html
    usr/share/keytouch/doc/html/node11.html
    usr/share/keytouch/doc/html/node12.html
    usr/share/keytouch/doc/html/node13.html
    usr/share/keytouch/doc/html/node14.html
    usr/share/keytouch/doc/html/node15.html
    usr/share/keytouch/doc/html/node16.html
    usr/share/keytouch/doc/html/node17.html
    usr/share/keytouch/doc/html/node18.html
    usr/share/keytouch/doc/html/node2.html
    usr/share/keytouch/doc/html/node3.html
    usr/share/keytouch/doc/html/node4.html
    usr/share/keytouch/doc/html/node5.html
    usr/share/keytouch/doc/html/node6.html
    usr/share/keytouch/doc/html/node7.html
    usr/share/keytouch/doc/html/node8.html
    usr/share/keytouch/doc/html/node9.html
    usr/share/keytouch/doc/html/user_manual.css
    usr/share/keytouch/doc/html/user_manual.html
    usr/share/keytouch/keyboards/
    usr/share/keytouch/keyboards/Aspire 1300.Acer
    usr/share/keytouch/keyboards/Aspire 1350.Acer
    usr/share/keytouch/keyboards/Cordless Desktop Pro.Logitech
    usr/share/keytouch/keyboards/D47K.Promedion
    usr/share/keytouch/keyboards/Easy Access Keyboard (8 keys).Compaq
    usr/share/keytouch/keyboards/Internet Navigator.Logitech
    usr/share/keytouch/keyboards/Latitude D505.Dell
    usr/share/keytouch/keyboards/MultiMedia Keyboard 1.0.Microsoft
    usr/share/keytouch/keyboards/TravelMate 4100.Acer
    usr/share/keytouch/keyboards/Versa P550.Nec
    usr/share/keytouch/keyboards/Y-RK49.Logitech
    usr/share/keytouch/pixmaps/
    usr/share/keytouch/pixmaps/icon.png
    usr/share/keytouch/pixmaps/internet.png
    usr/share/keytouch/pixmaps/key.png
    usr/share/keytouch/pixmaps/key2.png
    usr/share/keytouch/pixmaps/keyboard.png
    usr/share/keytouch/pixmaps/keytouch.png
    usr/share/keytouch/plugins/
    usr/share/keytouch/plugins/amarok.so
    usr/share/keytouch/plugins/aumix.so
    usr/share/keytouch/plugins/browser.so
    usr/share/keytouch/plugins/chat.so
    usr/share/keytouch/plugins/common_actions.so
    usr/share/keytouch/plugins/email.so
    usr/share/keytouch/plugins/filemanager.so
    usr/share/keytouch/plugins/lock_screen.so
    usr/share/keytouch/plugins/xmms.so
    the file etc/rc.d/keytouch-init.sh contains:
    /usr/bin/keytouch-init
    So this won't work on arch.  Should the file be removed from the pkg?  And should it be replaced by another deamon file that does work?

  • Issue while making a call through Nokia lumia 510

    Hi, i have purchased nokia lumia 510 around five months back. since then this phone is troubling me in a way or other. earlier there were issues with internet connectivity when i rectified it now there comes a new problem which occurs while making a call. whenever i make a call or receive a call after a few minutes i am unable to get the voice of the person on another side nor the other persons gets my voice. sometimes this happens just after 30-40 seconds and sometimes it happens after 15-16 minutes. then i have to cut the call in between and again have to call that person. this issue comes everytime i make or receive a call. i am so much irritated of this now. i even went to nokia care and they have replaced the speaker of the phone but this issue has not been resolved. can someone please help me to resolve this. please i need a permanent solution of this now.

    Have you tried replacing your sim card?
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Making PKGBUILD for iPhoneEthernetDriver

    Someone could make the PKGBUILD for these drivers? --> http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver
    Thanks

    WOW, nice!!
    well, i really really hope this week i will have time, if someone else won't make before i will.
    OR! it might happen tonight (israel time, +2:00 GMT), depends on my "motivation mode" which is not quiet well at the moment (sleepy)
    well. i had some time and i created, works just fine , finally!
    First you need this PKGBUILD of usbmuxd-git (the aur is outdated)
    # Contributor: Erez Zarum <[email protected]>
    pkgname=usbmuxd-git
    pkgver=20100223
    pkgrel=1
    pkgdesc="USB multiplexing daemon for iPhone or iPod touch"
    arch=('i686' 'x86_64')
    url="http://www.libimobiledevice.org/"
    license=('GPL' 'GPL2' 'GPL3')
    depends=('libusb1')
    makedepends=('git' 'cmake' 'gcc' 'make' 'pkgconfig' 'libtool')
    provides=("usbmuxd=$pkgver")
    conflicts=('usbmud')
    install=usbmuxd-git.install
    _gitroot="git://git.marcansoft.com/usbmuxd.git"
    _gitname="usbmuxd"
    build() {
    cd "$srcdir"
    msg "Connecting to GIT server...."
    if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
    else
    git clone $_gitroot $_gitname
    fi
    msg "GIT checkout done or server timeout"
    msg "Starting make..."
    rm -rf "$srcdir/$_gitname-build"
    git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
    cd "$srcdir/$_gitname-build"
    mkdir build
    cd build
    cmake .. -DLIB_SUFFIX= -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE || return 1
    make || return 1
    make DESTDIR="$pkgdir/" install || return 1
    This is the usbmuxd-git.install (save it in the same dir of the PKGBUILD of usbmuxd-git)
    post_install() {
    echo ">>> You should also create a 'usbmux' user that has access to USB devices on your"
    echo ">>> system. Alternatively, you can pass a different username after the -U argument. (/lib/udev/rules.d/85-usbmuxd.rules)"
    then install libiphone-git from the AUR (it looks dated, though i created my own PKGBUILD without noticing there's one in the AUR)
    then use this PKGBUILD from the AUR of the ipheth i created: http://aur.archlinux.org/packages.php?ID=34953
    any question you can leave in the AUR comment or via my mail.
    have fun
    Last edited by Infin1ty (2010-02-22 22:57:04)

  • Guide me in making AUR for a python package

    This is the package http://pypi.python.org/pypi/BitTorrent-bencode/5.0.8
    - This python package is wrongly packaged. http://stackoverflow.com/questions/2693 … ode-module
    - Also, it contains a test directory. Is it a concern?
    This is the AUR (thats wrong)
    pkgname=python2-bencode
    _realname=BitTorrent-bencode
    pkgver=5.0.8
    pkgrel=1
    pkgdesc="The BitTorrent bencode python module as leight-weight, standalone package."
    url="http://pypi.python.org/pypi/BitTorrent-bencode"
    arch=('i686' 'x86_64')
    license=('GPL')
    depends=('python2')
    makedepends=('python2-distribute')
    source=(http://pypi.python.org/packages/source/B/BitTorrent-bencode/$_realname-$pkgver.tar.gz)
    md5sums=('5ad77003d18fc2e698d8d0d83be78d11')
    build(){
    cd "$srcdir/$_realname-$pkgver"
    # python2 fix
    for file in $(find . -name '*.py' -print); do
    sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' $file
    sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
    done
    python2 setup.py install --root="$pkgdir" --optimize=1
    Guide me in making a perfect PKGBUILD.

    What I do is get the sources and MD5s in the PKGBUILD, then makepkg -o.  I'll manually compile the sources but not install them, and when I have a few one-liners that make the magic happen, I put it into the build() section.  Then I'll rm -rf the $srcdir and actually try it with package { true; } as the package() function.  If that works, I'll try some install lines (instead of true) and run find against the $pkgdir.  If it all looks good, I'll make sure my dependencies are in check and pack it up.

  • Updated PKGBUILD for vmware-server-modules 2.0.2

    Hi.
    I have updated the PKGBUILD for the vmware-server-modules and added patches for kernel 2.6.35 and 2.6.36.
    The package is currently marked as an orphan, so I'll have to adopt it do upload the changes, right?
    Could someone please take a look at this, and say if it is good enough.
    I haven't really made any changes other than adding patches for kernel 2.6.35 and 2.6.36, but since there are some 'not so positive comments' following this package in AUR maybe there is more that should be done?
    It works on my x86_64 2.6.36-arch install.
    pkgname=vmware-server-modules
    pkgver=2.0.2
    pkgrel=4
    pkgdesc="Kernel modules for VMware Server"
    arch=('i686' 'x86_64')
    url="http://www.vmware.com/products/server/"
    license=('custom')
    depends=('kernel26>=2.6.32')
    makedepends=('kernel26-headers')
    conflicts=('vmware-workstation-modules' 'vmware-player-modules')
    install=vmware-server-modules.install
    _kernver=`uname -r`
    source=(VMware-server-2.0.2-203138-update-2.patch vmware-server-modules-autoconf.patch vmware-server-modules-vsock-kernel2.6.35.patch vmware-server-modules-vmmon-kernel2.6.36.patch)
    md5sums=('774a6361a443834205bc0172498bb2c0'
    '91ea48c3d4779f531cb942be09248dba'
    '3325f1b34eb21ee7d4cceb5f0da852f1'
    'bfd62533e023b696cf7ff45379732b71')
    case ${CARCH} in
    i686)
    source=(${source[@]} 'VMware-server-2.0.2-203138.i386.tar.gz')
    md5sums=(${md5sums[@]} '6eb844d1ab4aed6128438e5f587d10bb');;
    x86_64)
    source=(${source[@]} 'VMware-server-2.0.2-203138.x86_64.tar.gz')
    md5sums=(${md5sums[@]} 'cc7aef813008eeb7150c21547d431b39');;
    esac
    build() {
    cd "$srcdir/vmware-server-distrib/lib/modules/source"
    for module in *.tar; do
    tar xf $module
    done
    cd "$srcdir/vmware-server-distrib"
    # patch
    patch -p1 < ../VMware-server-2.0.2-203138-update-2.patch
    patch -p2 < ../vmware-server-modules-autoconf.patch
    if [[ ${_kernver:0:6} == "2.6.35" ]]; then
    patch -p1 < ../vmware-server-modules-vsock-kernel2.6.35.patch
    fi
    if [[ ${_kernver:0:6} == "2.6.36" ]]; then
    patch -p1 < ../vmware-server-modules-vsock-kernel2.6.35.patch
    patch -p1 < ../vmware-server-modules-vmmon-kernel2.6.36.patch
    fi
    cd "$srcdir/vmware-server-distrib/lib/modules/source"
    for module in vmci vsock vmmon vmnet; do
    make -C $module-only HEADER_DIR=/lib/modules/$_kernver/build/include || \
    return 1
    install -D -m644 $module-only/$module.ko \
    "$pkgdir/lib/modules/$_kernver/misc/$module.ko"
    done
    # License
    install -D -m644 "$srcdir/vmware-server-distrib/doc/EULA" \
    "$pkgdir/usr/share/licenses/vmware-server-modules/EULA"
    install -D -m644 "$srcdir/vmware-server-distrib/doc/open_source_licenses.txt" \
    "$pkgdir/usr/share/licenses/vmware-server-modules/open_source_licenses.txt"
    sed -i -e "s|KERNEL_VERSION='.*'|KERNEL_VERSION='$_kernver'|" \
    "$startdir/vmware-server-modules.install"

    i don'T think that there will ever be a PKGBUILD for VMWare, because it's commercial software... but i posted alot of hints in the "Package Configuration Problems" Forum...
    http://bbs.archlinux.org/viewtopic.php? … highlight=
    nearly each posible problem is described there... if u still have problems, post ur errors and anything u got about it there, and i try to help u.....

  • SharePoint 2013 - Issue while making URL public. Access denied error for SP.Debug.js and get_effectiveBasePermissions error .

    Hi,
    Our feature code working fine in SP2013 dev environment, but when we  have deployed in test environment where URL is public,
    it is giving below error.
    • “get_effectiveBasePermissions : object is null or undefined”- in sp.ui.exportasscoiatedrelateddocs.js from Infrastructure feature
    • “Access Denied” – in SP.Debug.js file
    • “Unable to get value of the property 'toString': object is null or undefined”- in SP.Debug.js file
    Your help will be appreciated.
    Regards,
    Divyesh Lappawala

    Difficult to guess what's the real problem just seeing the screenshot. But can you check if you are requesting the script files from correct location? Sometimes maybe you are looking script from different site collection/url. Also is there's any possibility
    that users are browsing as anonymous or maybe the requires sharepoint scripts are not loaded beforehand.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Issue while making calls

    Hi Team,
    I am new to the community.I am using iPhone 5S for past 6 months and from India.
    Issue is depending upon the signal the network will be changing from 3G to LTE in my phone.
    While this is happening I am unable to make calls or receive calls.
    Only When i try for 6 to 10 times I am able to call.
    I tried all possible troubleshooting steps as suggested by Apple support,still no luck.
    I am still using IOS 7.Will an upgrade help me ??
    Please advise..

    Hi ananthj,
    Welcome to the forum!
    To isolate the case, you can try a different SIM card on your device. This is to check if you will encounter the same behavior. If it's still the same you can reset the phone to the factory setting. Just don't forget to back up your files first. Check the link below for the step-by-step procedure:
    http://www.windowsphone.com/en-us/how-to/wp7/basics/restore-a-backup-to-my-phone
    http://www.windowsphone.com/en-ph/how-to/wp8/basics/reset-my-phone
    Hope this resolves your issue. 

  • Error while making GR for Subcontract PO

    Dear All Guru,
    While doing GR i am getting following error message
    "Account 41281100 requires an assignment to a CO object"
    i think in FI we need to maintain something so if anybody have the solution pl reply
    Regards,
    Vimlesh

    hi
    this is a commen problem plz search ur full error message on net u will get many threads
    now for ur problem u have to create  ur acct 42281100 as a cost element
    go to FS00 here select the acct and click on cost element (at right top)
    then select option 1 and save
    u can also use KO04
    now try
    http://www.sap-img.com/financial/requires-an-assignment-to-a-co-object.htm
    http://www.google.co.in/search?hl=en&q=%22requiresanassignmenttoaCO+object%22&meta=
    regards
    kunal
    Edited by: SAP Learner on Jan 15, 2009 8:27 AM

  • Funny issue while making calls in my lumia 900

    So a strange issue popped up after the 7.8 upgrade to my Lumia 900 (I waited till all issues seemed to be resolved before applying it). Anytime I try calling a number that is not in my contacts- I just get a call ended message. The call just doesnot go through. I can make calls to my saved contacts without any hassle though. Any ideas...would SIM be a culprit though not sure why the 7.8 firmware update would affect the calling aspect.

    Hi ananthj,
    Welcome to the forum!
    To isolate the case, you can try a different SIM card on your device. This is to check if you will encounter the same behavior. If it's still the same you can reset the phone to the factory setting. Just don't forget to back up your files first. Check the link below for the step-by-step procedure:
    http://www.windowsphone.com/en-us/how-to/wp7/basics/restore-a-backup-to-my-phone
    http://www.windowsphone.com/en-ph/how-to/wp8/basics/reset-my-phone
    Hope this resolves your issue. 

  • Issue while making confirmations in SRM.

    Hi Gurus,
    Can any one suggest me a solution for this problem.
    This is SRM version 4.0 . The user has raised a Shopping cart in SRM with 4 line items and it  got appoved and created a PO sucessfully in the SAP R/3 system.
    Now the user has changed the PO quantities in the SAP R/3 system and now trying to do the confirmations  against that PO for the quantities he has received, i.e he has now tried to do confirmations for the 2nd Line item and it gave an error saying that Error in process. which is diplayed in the shopping cart history.
    Now when he is trying to do the confirmations for anyone of the Line item in that PO. System gives a POP -UP message saying that
    " ** Document is in transfer for Puchase order, creation not possible **".
    Can any one suggest how to get rid of this error message and perform  the confirmations in SRM against this PO , if this is not possible then we need to do it from SAP R/3.
    Regards
    Srujan.K

    Hi Muthu,
    Thanks for your reply.
    Just wanted to clarify you on background of it.  we are using the classic  SRM 4.0 version and the PO in the SAP R/3 is the leading PO so I cannot  change the PO in the SRM.
    However the PO hwich has been changed in the SAP R/3 system I can see the updated quantities and while user trying to do the confirmations I can see the updated quantities in SRM at line item level.
    But I am not able to find the Idoc number for this confirmation and I have gone to the BU2023 object in BBP_PD and could check there the object key is not updated but core key is updated  and I can see the error in transmission.
    This error is when the user is trying to make confirmation first for the line item 2 in the PO. But now the system is not allowing to do the confirmations to any of the line items and now displays the error as
    "  Document is in transfer for PO , creation not possible"
    I even have checked in SM58 in the SAP R/3 system no entries I could find.
    Regards
    Srujank

  • OIM 11g: Issue while evaluating rule for Role Membership

    Hello All,
    I have configured few General Rules using 2 of our User Defined Fields, these general rules are used to determine role membership.
    What we observed that once "Identity Status" attribute is set to "Disabled" for OIM User Profile then OIM stops evaluating these configured General Rules for Role Membership.
    Env Details:
    Product Version: Oracle Identity Manager 11.1.1.5.0
    App Server: WebLogic Server Version: 10.3.5.0
    OS: Red Hat Enterprise Linux Server release 5.5
    Database: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64 bit
    Please let me know if any of you have encounter this issue and if there is any workaround available for it.
    Thanks,
    Shyam

    Re: OIM11g: Resource not revoked if the Identity Status is DISABLED
    XL.EvaluateMembershipForInactiveUser
    Workaround:
    You can make you of Event Handler and assign that group with APIs.

  • Filesystem issues while updating

    I can't upgrade community repository because some file on my harddisk does not like to be removed.
    [root@senna frank]# pacman -Sy
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community 366.9K 1084.6K/s 00:00:00 [###########################################################################] 100%
    error: could not remove database entry communitygnomebaker
    error: failed to update community (could not remove database entry)
    testing is up to date
    When I manually try to remove this file:
    [root@senna gnomebaker-0.6.2-1]# pwd
    /var/lib/pacman/sync/community/gnomebaker-0.6.2-1
    [root@senna gnomebaker-0.6.2-1]# ls
    depends
    [root@senna gnomebaker-0.6.2-1]# rm -vRf depends
    rm: cannot remove `depends': Operation not permitted
    Strace:
    [root@senna gnomebaker-0.6.2-1]# strace rm -vRf depends
    execve("/bin/rm", ["rm", "-vRf", "depends"], [/* 35 vars */]) = 0
    brk(0) = 0x8c11000
    access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
    open("/etc/ld.so.cache", O_RDONLY) = 3
    fstat64(3, {st_mode=S_IFREG|0644, st_size=53084, ...}) = 0
    mmap2(NULL, 53084, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7eea000
    close(3) = 0
    open("/lib/libc.so.6", O_RDONLY) = 3
    read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 h\1\0004\0\0\0\200"..., 512) = 512
    fstat64(3, {st_mode=S_IFREG|0755, st_size=1554407, ...}) = 0
    mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ee9000
    mmap2(NULL, 1336912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7da2000
    mprotect(0xb7ee2000, 4096, PROT_NONE) = 0
    mmap2(0xb7ee3000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x140) = 0xb7ee3000
    mmap2(0xb7ee6000, 9808, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7ee6000
    close(3) = 0
    mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7da1000
    set_thread_area({entry_number:-1 -> 6, base_addr:0xb7da16c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
    mprotect(0xb7ee3000, 8192, PROT_READ) = 0
    mprotect(0xb7f14000, 4096, PROT_READ) = 0
    munmap(0xb7eea000, 53084) = 0
    brk(0) = 0x8c11000
    brk(0x8c32000) = 0x8c32000
    ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
    lstat64("/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    lstat64("depends", {st_mode=S_IFREG|0644, st_size=115, ...}) = 0
    unlink("depends") = -1 EPERM (Operation not permitted)
    write(2, "rm: "..., 4rm: ) = 4
    write(2, "cannot remove `depends'"..., 23cannot remove `depends') = 23
    write(2, ": Operation not permitted"..., 25: Operation not permitted) = 25
    write(2, "\n"..., 1
    ) = 1
    close(0) = 0
    close(1) = 0
    close(2) = 0
    exit_group(1) = ?
    Does anyone have a clue what I can do about this?
    It's been a while since I updated community now

    lucasdemarchi wrote:
    I believe it's related to this file's attributes. Issue "lsattr" in  this file and see if there's an "i" attribute. If so, change it:
    chattr -i filename
    From chattr's man page:
    A file with the `i' attribute cannot be modified: it cannot be deleted or renamed, no link can be created to this file
    and no data can be written to the file. Only the superuser or a process possessing the CAP_LINUX_IMMUTABLE capability
    can set or clear this attribute.
    regards
    You are my hero
    Worked like a charm.
    Now I can update community again

  • Issue while making a AJAX call to a servlet in ALUI.

    Hi,
    The problem scenario is :
    I log into the portal using "http://147.149.132.93:7001/portal/server.pt"
    i have two instances of applications which have same files but provide different functionality one on 147.149.132.93 and other on 147.149.132.102 .
    I have configured my portlet that points to the application on 147.149.132.102 , when i make a ajax call to a servlet using the relative path for the aaplication , in normal scenario the ajax should make call to the servlert on the 147.149.132.102 but this does not happen and ajax makes call to the servlet on the machine 147.149.132.93 .
    Is there any issue regarding usage of Ajax in ALUI portal?
    Why the Ajax takes the server path from the portal login URL and not from the remote server configured for the portlet ? ?:|
    HELP !!!!!!!!!!!!!!!
    Regards,
    Prashant

    I m also facing same problem. I resolve the problem by simply giving >complete servlet address in ajax call.There are 2 issue with this:
    1) AJAX call will bypass portal, so it makes calls unsafe + you can not use portal functionality anymore. Plus some other issue like session expiration and so on.
    2) URL is hardcoded, so it's difficult to manage.
    All calls (include ajax) have to go through portal in portal environment. It means that AJAX url has to be gatewayed like any other url. There is no issue with ajax in portal. In G6 make sure that <inline> refresh checkbox (for WS) is unchecked.
    Here is example how to create AJAX URL on the fly by using Javascript. Let's say we have 2 files in root folder of <RemoteProjectName> web application:portlet.jsp file and ajaxExample.jsp.
    Code in portlet.jsp may looks like
    <script>
    var Url = "<pt:url xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/' pt:href='ajaxExample.jsp'/>";
    </script>
    Here is what you can get as result of this transformation (based on data provided in first post):
    http://147.149.132.93:7001/portal/server.pt/gateway/PTARGS_0_0_XXX_XXX_X_XX/http%3B/147.149.132.102%3B/RemoteProjectName/ajaxExample.jsp
    where XXX - are numbers specific to particular portal environment.
    Edited by Bryazgin at 12/21/2007 7:43 AM

Maybe you are looking for

  • WLC CT-5508-HA-K9 HA SSO or HA N+1 with Pi 1.2

    I will install tomorrow 2 new WLC5508, I noticed that references were different: AIR-CT5508-25-K9 with 50 more AP licence AIR-CT5508-HA-K9 without license (I guess) This mean I will have one primary controller with all licenses "AIR-CT5508-25-K9 +50"

  • Htc ONE m8  With it's front Speakers Makes it a Great Scanning Radio

    Are you wanting to tune in and Listen to your local Sheriff,  Police Fire or Just weather to either monitor or to Keep you & your family Safe well look no farther than the htc ONE m8  I'm listening on mine and it does a Excellent Job with it's Boom s

  • Gradebook software for Mac?

    Does anybody out there know of any good gradebook software out there available on Mac? I know of a couple on Windows but I don't want to run bootcamp or parallels. I switched to Mac to avoid Windows and having to install it would seem like victory fo

  • Fascinate Reporting Incorrect Cell Strength

    I have been watching the Signal Strength from Settings > About > Status and noticed the reported numbers do not correlate with the Cell Bar Level display at the top or the numbers I am logging with the Cell Connectivity Tracker application. Here are

  • Image Map Rollovers

    I need to create an image map (in Dreamweaver CS3). But I need the multiple hotspot polygons to activate an image rollover for the base image. It is basically a world map. When I roll over one of the continents (a hotspot) I need a swap image to come