How to install FFMPEG-PHP

Hello together,
here is another question ! How can i install ffmpeg-php as an extension to the installed PHP version of OSX Server 10.5.5 ?
Does anyone has a solution or a hint for me.
Greets from Germany
Jan

I´ve done everything like you said. But i got the error below. What is re2c ? What i´ve done wrong ?
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc and cc understand -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... powerpc-apple-darwin9.5.0
checking host system type... powerpc-apple-darwin9.5.0
checking target system type... powerpc-apple-darwin9.5.0
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib
checking for PHP extension directory... /usr/lib/php/extensions/no-debug-non-zts-20060613
checking for PHP installed headers prefix... /usr/include/php
checking for re2c... no
configure: WARNING: You will need re2c 0.12.0 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... no
checking for awk... awk
checking if awk is broken... no
checking for ffmpeg support... yes, shared
checking for ffmpeg headers... configure: error: ffmpeg headers not found. Make sure you've built ffmpeg as shared libs using the --enable-shared option
Greets from Germany
Jan

Similar Messages

  • How to install ffmpeg and x264 on my MacBook Pro 2011

    I want to install ffmpeg and x264 is there a special way to install this softwares or is it the same way like installing on Lunux (Ubuntu)
    I have installed ffmpeg and x264 on Ubuntu... is it the same way to install on Mac??

    The free Perian will do it for you automatically.
    Additional free new machine setup stuff:
    Install and update your Flash here
    http://get.adobe.com/flashplayer/
    Install Perian (addiitonal Quicktime codecs)
    http://perian.org/
    Install the Unarchiver (uncompress software)
    http://wakaba.c3.cx/s/apps/unarchiver.html
    Flip for Mac (for Windows media in Quicktime)
    http://www.telestream.net/flip4mac-wmv/overview.htm
    VLC (plays anything just about)
    http://www.videolan.org/
    Easy Find (finds everything on a Mac)
    http://www.devon-technologies.com/download/index.html
    OnyX (maintenance, cleanup, repair utility)
    http://www.titanium.free.fr/

  • How to install php, perl, python, C text editor

    I want to know how to install perl, php, C , Java Text Editors in Mac OSX.
    which editor is better .

    C you installed by installing the XCode package from your installation DVD
    Perl is already installed
    PHP is already installed
    Text Editors are a Religion, as once you have trained your fingers to use a given text editor, you frequently do not want to change, so after that your editor is the only "True" editor :-)
    If you are serious about C programming in a Unix environment, then Vim or emacs.  If you are going to be doing mostly Mac OS X Objective-C, then use the XCode editor.  If this is just a hobby, then a GUI text editor such as one of the previously mentioned editors

  • How to install gst ffmpeg in arch

    how do in install gst ffmpeg?i have already downloaded the package.i want to be able to play all formats with totem.

    Shaika-Dzari wrote:
    Xiong Chiamiov wrote:
    xjpvictor wrote:my moc is unable to play wma file even with ffmpeg installed. anyone has any idea about this?
    Do you have the -good, -bad and -ugly gstreamer plugins installed?
    Moc did not use gstreamer.
    @xjpvictor: install ffmpeg package (not gstreamer-ffmpeg) and rebuild moc with the current pkgbuild.
    You can use -svn version too :  http://aur.archlinux.org/packages.php?ID=12793
    @+
    I've installed ffmpeg and all gstreamer plugins. But still it doesn't work.

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • How to Install PHP in PL/SQL??

    Hello!!
    How to install php in pl/sql ??

    See Metalink Note 207303.1 for a compatibility matrix that details support for database links between database versions.

  • How do Install and make FFmpeg work with Video DownloadHelper?

    I use FireFox v.29 in Windows XP; I installed Video DownloadHelper. I want to convert the videos as soon as I download them. In the preferences of the extension there's a box that says "enable conversion". As I check that box I'm asked to install an external application to do that. I press the button that says "install/update converter". This opens a page of the official site of Video Download helper. It says I need to install FFmpeg to convert the videos. I go to ffmpeg.org to download it, the download page tells me I must dowload it from http://ffmpeg.zeranoe.com/builds/. So I donwload the 32-bit static build and I extract its files from the compressed folder.
    That's as far as I go. There's no installation file inside; there are three executable files inside: ffmpeg,exe, ffplay.exe, and ffprobe.exe. I've opened all three of them and entered the Video DownloadHelper preferences after that. The problem is that when I try once again to check the box for "enable conversion" I'm once again told that I have to install the external application. What am I doing wrong?
    In the official site of Video DownloadHelper there are a step by step explanation but for another converter: ConvertHelper, so they aren't really helpful.
    Can you please help me?

    Hi,
    The add on support site is located on their add on homepage [http://www.downloadhelper.net/documentation.php Download Helper add on support site]. It did not require me to download an external .exe file?

  • [SOLVED] How to install Image magick extension for php?

    As in topic, how to install imagick extension for php (xampp)? I tried with pecl, i installed pear first and imagick with "pecl install imagick". I added extension to php.ini file (/opt/lampp/etc/php.ini) but when i try to start xampp, i get error:
    Warning: PHP Startup: Unable to load dynamic library '/opt/lampp/lib/php/extensions/no-debug-non-zts-20090626/imagic.so' - /opt/lampp/lib/php/extensions/no-debug-non-zts-20090626/imagic.so: cannot open shared object file: No such file or directory in Unknown on line 0
    What should i do?
    Last edited by smiechowy (2011-03-06 12:23:55)

    it was installed in /usr/lib/php/modules/ I copied imagic.so to /opt/lampp/lib/php/extensions/no-debug-non-zts-20090626/ but it still don't work ;/
    Edit: problem solved, i made a mistake adding "imagic.so" in php.ini instead of "imagick.so".
    Last edited by smiechowy (2011-03-06 12:23:39)

  • I can't figure out how to install Bootcamp 5.

    I recently bought a Windows 8 disc, with the hopes of installing it onto my MacBook Pro early 2011 version 10.8.5. I've read up on all of the instructions, and know how to install windows itself, but I cannot for the life of me figure out how to install Bootcamp 5. The instructions on Apple's support website say I need to open up the Bootcamp 5 folder that I put onto a flashdrive (which I did) and open the setup.exe file while in windows.... "while in windows"... don't I have to have Bootcamp 5 installed before I can have windows installed and open? I tried installing Bootcamp 4 and installing my windows 8 64-bit onto there, but as I suspected, it won't actually install the windows 8 information, because bootcamp 4 doesn't support windows 8 64-bit. This is the first time I've tried doing anything like this before. I don't have windows 7, or bootcamp 4, or parallels, or anything like that. After giving it a lot of thought, I'm beginning to worry that Bootcamp 5 can only be installed if you already have windows 7 on bootcamp 4, and you're just trying to upgrade. I really hope that's not the case, because I've already spent over $200 on the windows 8 disk, and I can't return it. If somebody could please tell me how to install Bootcamp 5, if it's even possible without windows 7 already on bootcamp 4, I would really appreciate it...
    Thanks!

    So I never installed grub or syslinux. You may want to reread the beginner's guide and specifically the section on efistub: https://wiki.archlinux.org/index.php/Beginners'_Guide#EFISTUB
    Roughly summarized, condensed, and paraphrased it goes like this (and leaving out stuff you don't need):
    Look at the output of "lsblk." It will probably show a 200MB partition as /dev/sda1. This is probably your UEFISYS partition.
    Mount the UEFISYS partition at /mnt/boot/efi, chroot and copy the kernel and initramfs files as described below.
    Create /boot/efi/EFI/arch/ directory.
    Copy /boot/vmlinuz-linux to /boot/efi/EFI/arch/vmlinuz-arch.efi. The .efi file extension is very important as some UEFI firmwares refuse to launch a file without this extension. Important: Remember that the file is called vmlinuz, but not vmlinux.
    Copy /boot/initramfs-linux.img to /boot/efi/EFI/arch/initramfs-arch.img.
    Copy /boot/initramfs-linux-fallback.img to /boot/efi/EFI/arch/initramfs-arch-fallback.img.
    Every time the kernel and initramfs files are updated in /boot, they need to be updated in /boot/efi/EFI/arch. This can be automated either using systemd or using incron (for non-systemd setups).
    You will find more nuggets here: https://wiki.archlinux.org/index.php/UEFI for your future improvements.
    Create a refind_linux.conf file with the kernel parameters to be used by rEFInd:
    # nano /boot/efi/EFI/arch/refind_linux.conf
    "Boot to X" "root=/dev/sdaX ro rootfstype=ext4 systemd.unit=graphical.target"
    "Boot to console" "root=/dev/sdaX ro rootfstype=ext4 systemd.unit=multi-user.target"
    Note that instead you may want to use a line similar to
    "Boot to X" "root=PARTUUID=78b89af1-8445-4f8d-bfed-9f57b96ee0a7 ro rootfstype=ext4 systemd.unit=graphical.target"
    Those two things pretty much did it for me: copy the kernel files into /boot/efi/EFI/arch (after you mount the UEFISYS partition there!!!) and make the refind.conf file.

  • How to install archlinux2008.6 from the hard drive?

    How to install archlinux2008_6 by archlinux2008_6_i686.iso in  hard drive?
    i get the booting files(archlive.img,vmlinuz26) in the archlinux2008_6_i686.iso and put them in c:\
    in the grub command mode the use of these code:
    root   (hd0,0)
    kernel (hd0,0)/vmlinuz26
    initrd (hd0,0)/archlive.img
    boot
    i get those from : http://blog.chinaunix.net/u/31909/showart_1121360.html
    but  it stopped  , some  code  printing on the screen...................it can not continue..
    from the  google  i  find :"this method must use  the "vmlinz "and the "initrd.img",this files is from  archlinux2008.03.iso
    i don't understand .......
    i must download the archlinux2008.03.iso?...........it's too much  trouble.
    How to install archlinux2008.6 from the hard drive? or  who could give me the two files (the "vmlinz "and the "initrd.img")  from  archlinux2008.03.iso?
    e mail: [email protected]
    THS.
    --------this is my  topic for the first time in english, I hope that you can  know what i said ~~~
    Last edited by 自学linux (2008-08-29 03:14:54)

    自学linux wrote:
    http://blog.chinaunix.net/u/31909/showart_1121360.html
    A waste of CD-ROM...........,in china, many people install linux  just  by iso,don't burn the iso,
    could you give me the two files (the "vmlinz "and the "initrd.img") in  archlinux2008.03.iso, those  can't  find  in  archlinux2008.06.iso
    my email :[email protected]
    Do you have a USB stick you could copy the image to? Where I live, a CD costs $0.50 at most. To put that into perspective. A coffee costs a $1.00. Either a CD costs a lot more than a coffee where you live or are you telling me you'd rather get a lot of grey hair than buy half a coffee?
    Sorry I can't be of much help. I don't know how to do this method of installation. If you're desperate, you could try making an extra partition, and trying something with that. Take a look at these:
    http://wiki.archlinux.org/index.php/Fas … nux_System
    http://wiki.archlinux.org/index.php/Ins … her_distro
    Last edited by solarwind (2008-08-27 04:37:59)

  • How to install windows 7 on macbook properly?

    Hello there;
    I've macbook 2007. I bought it used and it had windows 7 installed on it.
    something went wrong with the W7 and had to reinstall a fresh one one.
    I booted from W7 DVD and reinstalled the windows, everything is ok. network - wireless - graphic but only one thing went wrong.
    there was no sound, and there's a red led in audio jack. I googled for 6 hours trying to figure it out. and I've tried litteraly EVERYTHING people said about it.
    but that Led didn't turn off, and yet the sound didn't work.
    and then I heard something about BootCamp that helps with messed up drivers and I downloaded it but it didn't work on windows, it says it must be installed on MAC but I don't have MAC now.
    1- Is there a way to fix that sound issue without reinstalling windows? :-s I've really tried almost everything
    2- if no, How can I install mac, which version should I install? where to get it? how long will it take? then how to install W7 again from it?
    thanks in advance
    hope anyone can help with this.
    Bye

    That is odd if the codec's didn't work, but if there's a red light in the audio jack then it's most likely the sensor is fudged. Check this post from macrumors: I found a fix for the red light problem. I'm not sure if I like it, but it works. After reading forum thread after forum thread of users that had this problem, I found a dude who fixed his jack with a rubber ended bobby pin. It seems a sensor gets bent (?) and the system thinks your digital external line is still plugged in. I took the butt end of a matchstick and tickled inside the jack. My red light went out. My internal speakers work again.
    http://forums.macrumors.com/archive/index.php/t-237405.html
    Searching online seems to all point to a sensor most likely being the issue for the audio if there's a redlight showing. Your drivers could actually be fine, but won't matter if that sensor is damaged/loose. Are you getting sound from normal uses (youtube etc)?
    Pry won't matter but did you try in a VM as well? I have Win7 on VirtualBox (free).

  • How to install oracle 11g on oracle linux 6.1.

    Hello everyone here at oracle forum.!
    I'm new on using the linux and i badly need to learn it including the Oracle Database for making PHP website.
    Because of this i downloaded all the packages of Oracle Linux Release 6 Update 1 Media Pack for x86 (32 bit) at E-Delivery.
    Now i was having a hard time figuring out how to install all the 4 ISO images. the only one that worked was was the boot.iso that installed the Oracle Linux 6 without the DB.
    So what would i do to use the 3 updates?
    I burnt them all one by one on different DVD but it wont look for the other packages.
    So please guys bare with me and help me figure out how to use the other 3 packages for i know it has the Oracle Database.
    Oracle Linux Release 6 Update 1 source DVD 1 V26570-01
    Oracle Linux Release 6 Update 1 source DVD 2 V26571-01
    Oracle Linux Release 6 Update 1 Boot iso image for x86 (32 bit) V26573-01

    Oracle Linux does not install any Oracle Database. You don't need the source and boot.iso DVD. You can boot and install the system from the Oracle Linux 6.1 installation DVD. The boot.iso is useful for a network install and the source DVD if you want to compile everything yourself.
    As far as I know, Oracle Database has not been certified for Oracle Linux 6 yet. That does not necessarily mean you cannot install Oracle Database on Oracle Linux 6 yet, but you will run into problems with software requirements, package dependencies and perhaps incompatibilities, i.e. ext4 file system.
    I think your best option is to install Oracle Linux 5 and certainly use Oracle VirtualBox. If you are new to Linux you probably cannot use Linux as your primary OS yet, and VirtualBox will allow you to install and re-install without jeopardizing your primary host OS. You can also download pre-build virtual machines for Virtualbox from http://www.oracle.com/technetwork/community/developer-vm/index.html which might have everything you need installed and ready to use.

  • How to install PEAR on Linux server

    Hi
    I have PHP installed on one linux server and developers are using it already. I have been given the task to get the oci8 (oracle connectivity) done on this same server. I can not do the reinstall of whole PHP again. During the install of OCI extention I got many errors for missing PEAR files.
    So I went through the PEAR document and found "php go-pear.php" command to install the PEAR package. This command fails with below error.
    download of http://pear.php.net/get/PEAR?uncompress=yes failed: Failed to parse address "" (0)
    The problem is this Linux box does not have direct internet connectivity so I had to download all the required packages as per go-pear.php on my local machine and I am FTPing them to this linux box. I have kept the "PEAR-1.8.1.tar" file in the same directory where go-pear.php file exists but still the above command tries to download it from internet.
    Could you please tell me how can I overcome this problem. Please let me know if there are any RPM's that I can use to install PEAR rather that "php go-pear.php" command.
    Thanks
    Shelly

    Hi CJ.
    It has been more than 4 weeks that I am strugling to get PHP-Oracle work on my system. You are the only hope right now. I have gone through so many articles and white pages that I am totally confused and starting to hate PHP or actually Suse Linux. :-)
    Below are the details of my system.
    more SuSE-release
    SUSE LINUX Enterprise Server 9 (i586)
    VERSION = 9
    PATCHLEVEL = 4
    rpm -qa php* No results
    rpm -qa ph* --No results
    rpm -qa oracle*
    oracle-instantclient-devel-10.2.0.4-1
    oracle-instantclient-basic-10.2.0.4-1
    * which php*
    */usr/bin/php*
    * php -version*
    PHP 4.3.4 (cli) (built: Jan 17 2008 09:55:23)
    Copyright (c) 1997-2003 The PHP Group
    Zend Engine v1.3.0, Copyright (c) 1998-2003 Zend Technologies
    This is what I see on my system
    */usr/bin> ls -l |grep php*
    -rwxr-xr-x 1 root root 100308 2008-01-17 05:03 asp2php
    -rwxr-xr-x 1 root root 1392441 2008-01-17 04:55 php
    -rwxr-xr-x 1 root root 684 2008-01-17 04:55 php-config
    -rwxr-xr-x 1 root root 593 2008-01-17 04:55 phpextdist
    -rwxr-xr-x 1 root root 2082 2008-01-17 04:55 phpize
    /usr/bin> whereis php
    php: /usr/bin/php /etc/php.ini /usr/lib/php /usr/include/php /usr/share/php /usr/share/man/man1/php.1.gzI see that PHP is already installed on my system which is version PHP 4.3.4.
    Question.
    1) Do i have to upgrade the PHP version to the latest to get OCI8 configured?
    2) If the answer to the above question is Yes than could you point me to any reference doc?
    3) If the upgrade is not needed, how can I configure PHP to use OCI8 to connect to database?
    Thanks in advance
    Shelly

  • Where can I find info on how to install and run Snow Leopard Server as virtual machine inside Mountain Lion

    Where can I find info on how to install and run Snow Leopard Server as virtual machine inside Mountain Lion

    Here is the short answer:
    Installing Snow Leopard Server into Parallels 10 for DUMMIES:
    http://forums.macrumors.com/showpost.php?p=17285039&postcount=564

  • How to install and consume GroupWise Web Service (SOAP)

    Hello! I'm Razvan, programmer from Romnia, and I am new to GroupWise development.
    I am asking if anyone could help me with a C# Visual Studio 2010 example of how to install and consume GroupWise Web Service (SOAP).
    The documentation from novell site didn't help me, i didn't understant much of it.
    All I need is either a link to a documented GroupWise C# developer step-by-step tutorial, or some code examples.
    Can you please show me some code examples in C# with:
    1)loging in using a username and a password,
    2)retrieving contact list,
    3)retrieving appointment list,
    4)sending a mail,
    5)setting an appointment
    I don't know how to use "groupwise.wsdl" and customise it so that it points to our GroupWise server.
    Please, I really need this because I am working at a project right now which involves GroupWise integration.
    I hope I haven't disturbed anyone with my simple question.
    I know this might be a very simple question given the complexity of the other posts here, but that's why I really hope I will get an answer soon.
    Thank you very much!
    Signature:
    How old is the Orthodox faith?
    How old is the orthodox faith?

    Just a comment.
    The value for the version element should be "1.02"
    not "1.2".
    Preston
    >>> On Tuesday, March 01, 2011 at 8:06 AM,
    TheRomanian<[email protected]> wrote:
    > I have great news! After strong documentation yesterday and today, I've
    > just made a successfull example that actually connects to our GroupWise
    > server.
    >
    > I made it in PHP.
    >
    > I need an ASP.NET + C# application, but now is very simple to convert
    > it. I post the PHP code here for other people who in future might be
    > interested in finding out.
    >
    > So a simple PHP GroupWise Login code using "groupwise.wsdl" web
    > service:
    >
    >
    > require_once('./GWService/GroupwiseService.php');
    > require_once('FB.class.php');
    >
    > $classmap = array(
    > 'Authenication' => 'Authenication',
    > 'PlainText' => 'PlainText',
    > 'loginRequest' => 'loginRequest',
    > 'loginResponse' => 'loginResponse',
    > 'logoutRequest' => 'logoutRequest',
    > 'logoutResponse' => 'logoutResponse',
    > 'UserInfo' => 'UserInfo',
    > );
    >
    > $gwservice = new GroupwiseService(
    > "./WSDL/groupwise.wsdl",
    > array(
    > "location" => "http://11.150.40.78:8756/soap",
    > *Your GroupWise server IP:
    > and PORT*
    > "classmap" => $classmap,
    > "trace" => true)
    > );
    >
    > // do login
    > $pt = new PlainText();
    > $pt‑>username = *"YOUR GROUPWISE USERNAME"*;
    > $pt‑>password = *"YOUR GROUPWISE PASSWORD"*;
    >
    > $lr = new loginRequest();
    > $lr‑>auth = $pt;
    > $lr‑>language = "en";
    > $lr‑>version = "1.2";
    > $lr‑>application = "phpClient";
    >
    > $lres = $gwservice‑>loginRequest($lr);
    > //print_r($lres);
    >
    >
    > I Hope this will help others.
    >
    > ‑‑
    > Signature:
    >
    > How old is the Orthodox Faith?
    > 'How old is the orthodox faith?'
    > (http://www.orthodoxphotos.com/history.shtml)

Maybe you are looking for

  • Do I have Rosetta on my new Mac Mini?

    I just purchased a new 1.83GHz Intel mini. The salesman in the Apple store said the mini no longer has Rosetta. There are several things which confuse me. There are a number of posts about Intel minis, running OS 10.4.X, which suggest that they have

  • Default Values in Purchase Requisition

    Hi MM Experts, I want to set default values for Purchasing Organisation and delivery address for a particular user in transaction ME51N(Purchase requisition creation). Can someone please advise me on how to do it? I tried using the "Default Values" b

  • Television and Windows

    I have had good success hooking up my MacBook to the television with the adapter and S-Video. Now I would like it to appear using Windows XP. I have gone to the Intel Graphics panel and played with the settings, but cannot get it to show on the TV. I

  • Duplicate message handling using Co-relation set

    I have orchestion published as service(request-response port). The service consumer will send duplicate request if no response is received with in time out(configured at application end not biztalk and for example say 2 minutes). I designed my orches

  • Do Apple stores sell the 7200rpm HD or do I have to order one online?

    It would be nice if I could pick one up tomorrow. I was about to buy one with a 2.6Ghz processor earlier today and they didn't have them. Now I've decided that I'll just stick with the 2.5Ghz, but I still want a fast HD. I noticed on the online store