ffmpeg Video support for ubuntu 7.10 [suphp-ispconfig]

Discussion in 'Installation/Configuration' started by amaurib, May 24, 2008.

  1. amaurib

    amaurib New Member

    Hello

    Last night I was trying to install ffmpeg on my server following some guide that I found on the net but with no sucess, at the end when I try to make the install I get this error at the end

    Code:
    ffmpeg-php-0.5.2.1# make install
    /bin/sh /usr/local/src/ffmpeg-php-0.5.2.1/libtool --mode=compile gcc  -I. -I/usr/local/src/ffmpeg-php-0.5.2.1 -DPHP_ATOM_INC -I/usr/local/src/ffmpeg-php-0.5.2.1/include -I/usr/local/src/ffmpeg-php-0.5.2.1/main -I/usr/local/src/ffmpeg-php-0.5.2.1 -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/ffmpeg  -DHAVE_CONFIG_H  -g -O2 -Wall -fno-strict-aliasing   -c /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c -o ffmpeg-php.lo
     gcc -I. -I/usr/local/src/ffmpeg-php-0.5.2.1 -DPHP_ATOM_INC -I/usr/local/src/ffmpeg-php-0.5.2.1/include -I/usr/local/src/ffmpeg-php-0.5.2.1/main -I/usr/local/src/ffmpeg-php-0.5.2.1 -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/ffmpeg -DHAVE_CONFIG_H -g -O2 -Wall -fno-strict-aliasing -c /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c  -fPIC -DPIC -o .libs/ffmpeg-php.o
    In file included from /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c:42:
    /usr/include/ffmpeg/avcodec.h:2447: warning: 'ImgReSampleContext' is deprecated
    /usr/include/ffmpeg/avcodec.h:2450: warning: 'ImgReSampleContext' is deprecated
    /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c:43:22: error: avformat.h: No such file or directory
    /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c: In function 'zm_startup_ffmpeg':
    /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c:93: warning: implicit declaration of function 'av_register_all'
    /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c: In function 'zm_info_ffmpeg':
    /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c:136: error: 'LIBAVFORMAT_IDENT' undeclared (first use in this function)
    /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c:136: error: (Each undeclared identifier is reported only once
    /usr/local/src/ffmpeg-php-0.5.2.1/ffmpeg-php.c:136: error: for each function it appears in.)
    make: *** [ffmpeg-php.lo] Error 1
    root@mserver:/usr/local/src/ffmpeg-php-0.5.2.1#
    
    My server: pefect server ubuntu 7.10 - suphp - ispconfig

    any help or tutorial on how to install ffmpeg and mp3 codecs on ubuntu 7.10 ???

    thanks...
     
  2. falko

    falko Super Moderator Howtoforge Staff

  3. amaurib

    amaurib New Member

    Thank you falko that help me understand what to do next time when i get those kind of errors...

    unfortunately, ffmpeg didnt pass the test, but is installed.

    am I missing something? im trying to use it for my gallery2 app.

    what i did at this point was fallowing this guide that i found....

    Code:
    I’ll outline the basic steps here. First, you need the mp3 libraries:
    
    apt-get install liblame-dev
    
    Next, you need to get ready to build FFMpeg from source:
    
    sudo apt-get install liblame-dev libfaad2-dev libfaac-dev libxvidcore4-dev liba52-0.7.4 \
    liba52-0.7.4-dev libx264-dev libdts-dev libgsm1-dev libvorbis-dev libdc1394-13-dev \
    checkinstall build-essential gcc
    
    Get the FFMpeg source:
    
    cd /usr/local/src
    sudo apt-get source ffmpeg
    
    cd ffmpeg-*
    sudo ./configure --enable-gpl --enable-pp --enable-libvorbis --enable-libogg \
    --enable-liba52 --enable-libdts --enable-dc1394 --enable-libgsm --disable-debug \
    --enable-libmp3lame --enable-libfaad --enable-libfaac --enable-xvid --enable-pthreads \
    --enable-x264 --enable-shared --prefix=/usr
    
    The second-last option,—enable-shared, should allow the php5 script to find the FFMpeg shared libraries so that ffmpeg-php can compile properly.
    
    
    sudo make
    sudo checkinstall
    
    When you do the checkinstall, it’ll ask you a bunch of questions so that it can build you a .deb package and install it. For most of them you can just accept the defaults. I set the package description to FFMpeg video conversion utility, and I set the version to 3:0.cvs20070308-5ubuntu4. This makes the package you’re making slightly newer than the one in the regular Ubuntu repositories, so Ubuntu won’t hassle you all the time, taunting you with a newer version of the package when you log in.
    
    Ok, that was a big hassle, I know. But it should get you video encoding capability.
    
    The next thing I did was download the latest release of ffmpeg-php from http://ffmpeg-php.sourceforge.net/ and extracted it on my machine. The first thing you need to do at that point is to run a utility called “phpize” in order to set up some configuration files for your machine. However, Ubuntu doesn’t include phpize in the main php package, so you’ll need to do this first:
    
    apt-get install php5-dev
    
    Then cd into the ffmpeg-php-0.X.X directory (maybe you extracted it on your desktop?), and run the following command to generate a config script:
    
    phpize5
    
    You can then do this to build the library:
    
    ./configure && make
    
    And finally this to install it:
    
    sudo make install
    
    Now you’ve got ffmpeg support for PHP, and an FFMpeg binary installed that will do its stuff with sound encoding capabilities.
     
  4. amaurib

    amaurib New Member

    here is the error that i get when make test

    file attached.
     

    Attached Files:

  5. falko

    falko Super Moderator Howtoforge Staff

    You must install a few additional PHP modules, such as php-imap, php-mcrypt, etc.
     
  6. amaurib

    amaurib New Member

    falko, just to let you know.. im a newbie who follow "your how to's" instructions step by steps.

    i don't know where to start :(
    could you please guide me trough the process of install ffmpeg... ?
     
  7. falko

    falko Super Moderator Howtoforge Staff

    Can you post the output of
    Code:
    apt-cache search php
    ?
     
  8. amaurib

    amaurib New Member


    Code:
    doxygen - Documentation system for C, C++, Java, Python and other languages
    doxygen-doc - Documentation for doxygen
    exuberant-ctags - build tag file indexes of source code definitions
    gtk2-engines-murrine - cairo-based gtk+-2.0 theme engine
    kde-style-polyester - Polyester widget style and kwin decoration for KDE3
    kvkbd - Virtual keyboard for KDE
    libct3 - libraries for connecting to MS SQL and Sybase SQL servers
    libgtksourceview-common - common files for the GTK+ syntax highlighting widget
    mdbtools - JET / MS Access database (MDB) tools
    notification-daemon - a daemon that displays passive pop-up notifications
    python-kde3 - KDE3 bindings for Python
    python-kde3-dev - KDE3 bindings for Python - Development files and scripts
    python-kde3-doc - Documentation and examples for PyKDE
    screem - A GNOME website development environment
    swig - Generate scripting interfaces to C/C++ code
    totem - A simple media player for the Gnome desktop (dummy package)
    totem-gstreamer - A simple media player for the Gnome desktop based on gstreamer
    totem-xine - A simple media player for the Gnome desktop based on xine
    achims-guestbook - php driven guestbook
    acidlab - Analysis Console for Intrusion Databases
    acidlab-doc - Analysis Console for Intrusion Databases (documentation)
    acidlab-mysql - Analysis Console for Intrusion Databases for MySQL
    acidlab-pgsql - Analysis Console for Intrusion Databases for Postgres
    adduser-plugin-bkdinit - Manage configuration of BKD-Init
    amavis-stats - Virus statistics RRDtool frontend for Amavis
    aolserver4-doc - AOL Web Server 4 (Documentation)
    apertium - Shallow-transfer machine translation engine
    avelsieve - Sieve mail filters plugin for SquirrelMail
    axyl - The Axyl web development platform
    axyl-doc - The Axyl documentation
    axyl-lucene - The Axyl Luceneserver
    bandwidthd - Tracks usage of TCP/IP and builds html files with graphs
    bandwidthd-pgsql - Tracks usage of TCP/IP and builds html files with graphs
    barrage - Rather violent action game
    bbclone - A PHP based Web Counter on Steroids
    bbppp - PPP tool for the blackbox window manager
    bloboats - a boat racing game
    blobwars - A platform shooting game
    cacti-cactid - Multi-Threading poller for cacti
    cakephp - MVC rapid application development framework for PHP
    cakephp-scripts - MVC rapid application development framework for PHP (scripts)
    caudium - An extensible WWW server written in Pike
    ceferino - action game similar to Super Pang
    ceferino-data - action game similar to Super Pang
    chameleon-cursor-theme - a modern but not gaudy X11 mouse theme
    checkservice - Checks the status of services on (remote) hosts
    chora2 - code repository viewing component for horde framework
    claws-mail-themes - Pixmap icon themes for the Claws Mail mailer
    comixcursors - X11 mouse theme with a comic feeling
    decibel - framework for real time communication services
    depview - a PHP dependency tracker
    dh-make-php - Creates Debian source packages for PHP PEAR and PECL extensions
    dia2code - a dia-UML code generator
    diogenes - web content management system
    dissy - graphical frontend for objdump
    doxygen-gui - GUI configuration tool for doxygen
    dtc - web control panel for admin and accounting hosting services
    egroupware - web-based groupware suite
    egroupware-addressbook - eGroupWare addressbook management application
    egroupware-bookmarks - eGroupWare bookmark management application
    egroupware-calendar - eGroupWare calendar management application
    egroupware-core - eGroupWare core modules
    egroupware-developer-tools - eGroupWare developer tools
    egroupware-emailadmin - eGroupWare E-mail user administration application
    egroupware-etemplate - widget-based template system for eGroupWare
    egroupware-felamimail - eGroupWare FeLaMiMail application
    egroupware-filemanager - eGroupWare file manager application
    egroupware-infolog - eGroupWare infolog application
    egroupware-ldap - eGroupware LDAP support files
    egroupware-manual - eGroupWare manual
    egroupware-mydms - eGroupWare document management system
    egroupware-news-admin - eGroupWare news administration interface
    egroupware-phpbrain - eGroupWare phpbrain application
    egroupware-phpsysinfo - eGroupWare phpSysInfo application
    egroupware-polls - eGroupWare polling application
    egroupware-projectmanager - eGroupWare projects management application
    egroupware-registration - eGroupWare registration application
    egroupware-resources - eGroupWare resource manager application
    egroupware-sambaadmin - eGroupWare Samba administration application
    egroupware-sitemgr - eGroupWare site manager application
    egroupware-timesheet - eGroupWare timesheet application
    egroupware-wiki - eGroupWare wiki application
    egroupware-workflow - eGroupWare workflow application
    emifreq-applet - CPU Frequency Scaling applet
    encadre-image - A simple program to customize and to manage pictures
    esperanza - XMMS2 client which aims to be as feature-full and easy-to-use as possible
    evolution-rss - Evolution RSS Reader Plugin
    ewiki - ErfurtWiki: an implementation of the WikiWikiWeb hypertext system
    fibusql - Web based double-entry accounting
    flyspray - lightweight Bug Tracking System (BTS) in PHP
    freeradius-dialupadmin - set of PHP scripts for administering a FreeRADIUS server
    ftpmonitor - Kicker applet to monitor incoming connections to ftp daemon
    fuseiso - FUSE module to mount ISO filesystem images
    g3data - extract data from scanned graphs
    gallery - a web-based photo album written in php
    gallery2 - web-based photo album written in PHP
    gallimimus - RSS feed storage and generation system
    gdancer - visualization plug-in for xmms
    geany - A fast and lightweight IDE
    gimmix - Graphical music player
    gimp-texturize - generates large textures from a small sample
    gmpc - Gnome Music Player Client (graphical interface to MPD)
    gmpc-dev - Gnome Music Player Client (plugin development files)
    gperiodic - periodic table application
    gphpedit - development environment for PHP/HTML/CSS
    gpib-modules-source - kernel modules for various GPIB boards
    gstreamer0.10-fluendo-mp3 - Fluendo mp3 decoder GStreamer plugin
    gtk-clearlooks-gperfection2-theme - gtk theme for the clearlooks engine
    gtk2-engines-spherecrystal - A blue vector theme for GTK+ 2.x
    happycoders-emacs - Happycoders Emacs configuration
    harminv - extraction of complex frequencies and amplitudes from time series
    hddtemp - Utility to monitor the temperature of your hard drive
    hsetroot - tool for compose root-pixmaps for X11
    htcheck-php - Simple php interface to database generated by ht://Check
    html-helper-mode - A popular HTML editing mode for emacs
    ices2 - Ogg Vorbis streaming source for Icecast 2
    imms - Unobtrusive, automatic, and learning XMMS playlist manager
    imp4 - webmail component for horde framework
    italc-client - Intelligent Teaching and Learning with Computers
    italc-master - Intelligent Teaching and Learning with Computers
    itools - Islamic hijri date and prayer time utilities
    jed - editor for programmers (textmode version)
    jffnms - web-based Network Management System (NMS) for IP networks
    kcheckers - Checkers boardgame
    kcmnvview - KControl Center Module for NVIDIA graphic cards
    kcontrol-autostart - autostart module for KDE control center
    kde-icons-nuvola - Nuvola icon theme for KDE
    kde-style-comix - Comix flat style for KDE
    kde-style-klearlook - Clone of GNOME's Clearlooks theme for KDE
    kde-tweak - a config tool for KDE's hidden configuration options
    kde4-style-qtcurve - Unified widget style for KDE and GTK+
    kgamma - gamma correction module for the KDE Control Center
    khalkhi-data - The Khalkhi framework is a plugin-based system for KDE Addressbook
    khalkhi-kcm - The Khalkhi framework is a plugin-based system for KDE Addressbook
    kicker-contactsmenu - Kicker menu for accessing KAddressbook
    kicker-khalkhi - Khalkhi powered applet for KDE Kicker
    kio-beagle - beagle kio-slave
    klone - web application development framework
    klone-doc - web application development framework
    klone-source - KLone development framework source code
    kmflcomp - KMFL Compiler
    knmap - nmap graphical interface for KDE
    konq-toutf8 - UTF-8 encoding utility servicemenu for Konqueror
    kopete-plugin-desklist - Kopete plugin which displays online contacts on desktop
    koverartist - program for the fast creation of covers for CD/DVD cases and boxes
    kpowersave - HAL based power management applet for KDE
    kronolith2 - calendar component for Horde Framework
    kwartz - language independent HTML templating system
    kwin-style-alphacube - Alphacube window decoration for KDE
    kwin-style-blended - a window decoration theme for KDE
    kwin-style-dekorator - windows decoration for kde using user-supplied PNG files
    kwin-style-knifty - knifty window decoration for KDE
    lastfm - a music player for Last.fm personalized radio
    libapache-mod-filter - Filter documents through a script
    libapache2-mod-bt - BitTorrent tracker for the Apache2 web server
    libapache2-mod-bt-dev - Header files for mod_bt
    libapache2-mod-suphp - Apache2 module to run php scripts with the owner permissions
    libapache2-modxslt - XSLT processing module for Apache 2.0.x based on libxml2
    libauthen-sasl-cyrus-perl - Perl extension for Cyrus SASL library
    libdecibel-dev - framework for real time communication services
    libdecibel1 - framework for real time communication services
    libfann1-dev - Fast Artificial Neural Network Library, Development files
    libflaim-dev - Embeddable cross-platform database engine
    libflaim4.1 - Embeddable cross-platform database engine
    libftdi-dev - Development files for libftdi
    libftdi0 - Library to control and program the FTDI USB controller
    libghc6-happs-dev - Haskell library for building Internet applications
    libgpib-bin - libgpib support applications and configuration
    libgpib-perl - libgpib perl bindings
    libgpib0 - C bindings for GPIB (IEEE 488) kernel driver -- headers
    libgpib0-dev - C bindings for GPIB (IEEE 488) kernel driver -- headers
    libgringotts-dev - Development files for the Gringotts data encapsulation library
    libgringotts2 - encapsulate data in an encrypted and compressed file
    libgv-php5 - Php5 bindings for graphviz
    libharminv-dev - Library for using harminv, development version
    libharminv2 - Library for using harminv
    libhtml-wikiconverter-perl - An HTML to wiki markup converter
    libhugs-filepath - Hugs library for manipulating FilePath's
    libitl-dev - Islamic tools & libraries project - development files
    libitl0 - Islamic tools & libraries project - shared library
    libkhalkhi-dev - The Khalkhi framework is a plugin-based system for KDE Addressbook
    libkhalkhi0 - The Khalkhi framework is a plugin-based system for KDE Addressbook
    libkmfl-dev - A Library for providing Keyman(C) services to Linux - development
    libkmfl0 - A Library for providing Keyman(C) services to Linux - runtime
    libkmflcomp-dev - Development files for libkmflcomp
    libkmflcomp0 - KMFL compiler library
    liblangscan-ruby - Ruby module of scanners for programming languages
    libmeep-dev - Library for using meep, development version
    libmeep-mpi-dev - Library for using meep, parallel development (mpich) version
    libmeep-mpi1 - Library for using meep, parallel (mpich) version
    libmeep1 - Library for using meep
    libming-dev - Library to generate SWF (Flash) Files (development files)
    libming-util - Library to generate SWF (Flash) Files - Utilities
    libming0 - Library to generate SWF (Flash) Files
    libmpd-dev - High-level client library for accessing Music Player Daemon
    libmpd0 - High-level client library for accessing Music Player Daemon
    libnet-libidn-perl - Perl bindings for GNU Libidn
    libphp-adodb - The 'adodb' database abstraction layer for php
    libphp-diogenes - library for web site creation
    libphp-jabber - Object-oriented PHP interface for the Jabber/XMPP protocol
    libphp-jpgraph - Object oriented graph library for php5
    libphp-jpgraph-examples - Object oriented graph library for php5 (examples)
    libphp-pclzip - zip archive manager class for PHP
    libphp-phplayersmenu - hierarchical menu system class for PHP
    libphp-phplot - The graphic library for PHP
    libphp-phpmailer - full featured email transfer class for PHP
    libphp-phpsniff - a HTTP_USER_AGENT Client Sniffer for PHP
    libsparkline-php - A sparkline graphing library for php
    libssh-2 - A tiny C SSH library
    libssh-2-dbg - A tiny C SSH library. Debug symbols
    libssh-2-dev - A tiny C SSH library. Development files
    libssh-2-doc - A tiny C SSH library. Documentation files
    libstring-koremutake-perl - Convert to/from Koremutake Memorable Random Strings
    libswf-perl - Ming (SWF) module for Perl
    libtntnet-dev - Tntnet library development headers
    libtntnet6 - Tntnet libraries
    libtrace-tools - helper utilities for use with the libtrace process library
    libtrace3 - network trace processing library supporting many input formats
    libtrace3-dev - development headers for the libtrace network processing library
    libvldocking-java - Java components for building applications with Docking capabilities
    libwulf-dev - development environment for wulfware
    libwulf2 - shared libraries for running wulfware programs
    libxflaim-dev - An extensible, flexible, adaptable, embeddable XML database engine
    libxflaim3.2 - An extensible, flexible, adaptable, embeddable XML database engine
    linsmith - a tool to generate Smith Charts
    llgal - Command-line online gallery generator
    magpierss - provides an XML-based RSS parser in PHP
    mantis - web-based bug tracking system
    meep - MIT Electromagnetic Equation Propagation
    meep-mpi - MIT Electromagnetic Equation Propagation, parallel (mpich) version
    ming-fonts-dejavu - Ming format DejaVue Fonts
    ming-fonts-opensymbol - Ming format Opensymbol Fonts
    mlmmj-php-web - web interface for mlmmj, written in php
    mlmmj-php-web-admin - administrative web interface for mlmmj, written in php
    mozilla-bookmarksftp - Iceweasel/Firefox extension to synchronize bookmarks
    mped - Minimum Profit, a programmer's text editor
    mydms - open-source document management system based on PHP and MySQL
    nagat - Nagios Administration Tool
    nanourl - Lightweight analog of TinyURL
    nanoweb - HTTP server written in PHP
    nanoweb-contrib - user contributed utilities for Nanoweb
    nautilus-image-converter - nautilus extension to mass resize images
    obconf - Preferences manager for Openbox window manager
    oooqs2-kde - OpenOffice.org2 QuickStarter applet for KDE
    open-invaders - Space Invaders clone
    opencubicplayer - UNIX port of Open Cubic Player
    opencubicplayer-doc - Documentation for UNIX port of Open Cubic Player
    opendb - Web-based lending database written in PHP
    owl-dms - intranet Knowledgebase or DMS
    papercut - simple and extensible NNTP server
    php-auth - PHP PEAR modules for creating an authentication system
    php-auth-http - HTTP authentication
    php-banana - NNTP library for php
    php-benchmark - Framework to benchmark PHP scripts or function calls
    php-cache - framework for caching of arbitrary data
    php-cache-lite - Fast and lite data cache system
    php-cgiwrap - allows ordinary users to run their own CGI scripts and adds support for PHP
    php-compat - Provides missing functionality for older versions of PHP
    php-config - Your configuration's swiss-army knife
    php-crypt-cbc - A class to emulate Perl's Crypt::CBC module
    php-date - PHP PEAR module for date and time manipulation
    php-db - PHP PEAR Database Abstraction Layer
    php-elisp - Emacs support for php files
    php-event-dispatcher - Dispatch notifications using PHP callbacks
    php-file - PHP Pear modules for common file and directory routines
    php-fpdf - PHP class to generate PDF files
    php-geshi - Generic Syntax Highlighter
    php-getid3 - PHP script to extract informations from multimedia files
    php-gettext - read gettext MO files directly, without requiring anything other than PHP
    php-html-common - A base class for other HTML classes
    php-html-template-it - PEAR HTML Template IT
    php-http - PHP PEAR module for HTTP related stuff
    php-http-request - provides an easy way to perform HTTP requests
    php-image-barcode - Barcode generation
    php-image-canvas - Image_Canvas module for PEAR
    php-image-graph - Image_Graph module for PEAR
    php-imlib - PHP Imlib2 Extension
    php-log - Log module for PEAR
    php-mail - PHP PEAR module for sending email
    php-mail-mime - PHP PEAR module for creating and decoding MIME messages
    php-mode - An emacs-mode for php programs.
    php-net-checkip - check the syntax of IPv4 addresses
    php-net-dime - class that implements DIME encoding
    php-net-ftp - provides an OO interface to the PHP FTP functions
    php-net-imap - PHP PEAR module implementing IMAP protocol
    php-net-ldap - a OO interface for searching and manipulating LDAP-entries
    php-net-ping - Execute ping
    php-net-portscan - Portscanner utilities
    php-net-sieve - net_sieve module for PEAR
    php-net-smartirc - provides an OO interface to the PHP IRC functions
    php-net-smtp - PHP PEAR module implementing SMTP protocol
    php-net-socket - PHP PEAR Network Socket Interface module
    php-net-url - easy parsing of Urls
    php-pager - Pages an array of data, creating links to previous and next pages
    php-radius - Radius protocol implementation in PHP
    php-services-weather - acts as an interface to various online weather-services
    php-simpletest - Unit testing and web testing framework for PHP
    php-soap - a SOAP Client/Server class for PHP
    php-sqlite3 - PHP SQLite3 PEAR module
    php-xajax - A library to develop Ajax applications
    php-xml-parser - PHP PEAR module for parsing XML
    php-xml-rss - RSS parser
    php-xml-serializer - swiss-army knife for reading and writing XML files
    php-xml-util - a XML utility for php-pear
    php-zeroc-ice - Ice for PHP extension
    php4-interbase - interbase/firebird module for php4
    php5-apache2-mod-bt - PHP bindings for mod_bt
    php5-auth-pam - A PHP5 extension for PAM authentication
    php5-clamavlib - PHP ClamAV Lib - ClamAV Interface for PHP5 Scripts
    php5-idn - PHP api for the IDNA library
    php5-imagick - ImageMagick module for php5
    php5-imap - IMAP module for php5
    php5-interbase - interbase/firebird module for php5
    php5-librdf - PHP5 language bindings for the Redland RDF library
    php5-mapscript - php5-cgi module for MapServer
    php5-maxdb - PHP extension to access MaxDB databases for PHP 5
    php5-mcrypt - MCrypt module for php5
    php5-memcache - memcache extension module for PHP5
    php5-ming - Ming module for php5
    php5-ps - ps module for PHP 5
    php5-sqlite3 - SQLite3 module for php5
    php5-sqlrelay - SQL Relay PHP API
    php5-suhosin - advanced protection module for php5
    php5-syck - YAML parser kit -- PHP5 bindings
    php5-uuid - OSSP uuid module for php5
    php5-xapian - Xapian search engine interface for PHP5
    php5-xcache - Fast, stable PHP opcode cacher
    phpbb2 - A fully featured and skinnable flat (non-threaded) webforum
    phpbb2-conf-mysql - Automatic configurator for phpbb2 on MySQL database
    phpbb2-languages - phpBB2 additional languages
    phpgacl - PHP Generic Access Control Lists
    phpgedview - Web-based genealogy viewer and editor
    phpgedview-languages - Language modules for PhpGedView
    phpgedview-places - Place names and maps for PhpGedView
    phpgedview-themes - PhpGedView themes
    phpgroupware - web based groupware system written in PHP
    phpgroupware-addressbook - phpGroupWare addressbook management module
    phpgroupware-admin - phpGroupWare administration module
    phpgroupware-bookmarks - phpGroupWare bookmark management module
    phpgroupware-calendar - phpGroupWare calendar management module
    phpgroupware-chat - phpGroupWare chat module
    phpgroupware-comic - phpGroupWare comic strip parser module
    phpgroupware-developer-tools - phpGroupWare developer tools
    phpgroupware-dj - phpGroupWare mp3 database interface module
    phpgroupware-eldaptir - phpGroupWare LDAP tree editor module
    phpgroupware-email - phpGroupWare E-Mail client module
    phpgroupware-etemplate - phpGroupWare etemplate module
    phpgroupware-felamimail - phpGroupWare felamimail (Squirrelmail) module
    phpgroupware-filemanager - phpGroupWare filemanager module
    phpgroupware-folders - phpGroupWare folders module
    phpgroupware-ftp - phpGroupWare ftp module
    phpgroupware-fudforum - phpGroupWare fudforum module
    phpgroupware-headlines - phpGroupWare headlines catcher module
    phpgroupware-hr - phpGroupWare human resource management module
    phpgroupware-img - phpGroupWare image editor module
    phpgroupware-infolog - phpGroupWare infolog applcation
    phpgroupware-manual - phpGroupWare on-line manual module
    phpgroupware-messenger - phpGroupWare messenger module
    phpgroupware-news-admin - phpGroupWare news administration interface
    phpgroupware-nntp - phpGroupWare newsgroup reader module
    phpgroupware-notes - phpGroupWare notes management module
    phpgroupware-phonelog - phpGroupWare phone logging module
    phpgroupware-phpbrain - phpGroupWare phpbrain module
    phpgroupware-phpgwapi - library of common phpGroupWare functions
    phpgroupware-phpsysinfo - phpGroupWare phpSysInfo module
    phpgroupware-polls - phpGroupWare polling module
    phpgroupware-preferences - phpGroupWare preferences management module
    phpgroupware-projects - phpGroupWare projects management module
    phpgroupware-qmailldap - phpGroupWare qmailldap module
    phpgroupware-registration - phpGroupWare registration module
    phpgroupware-setup - phpGroupWare setup III module
    phpgroupware-sitemgr - phpGroupWare web content manager
    phpgroupware-skel - phpGroupWare skeleton module
    phpgroupware-soap - phpGroupWare SOAP module
    phpgroupware-stocks - phpGroupWare stock management module
    phpgroupware-todo - phpGroupWare todo list management module
    phpgroupware-tts - phpGroupWare tts module
    phpgroupware-wiki - phpGroupWare wiki module
    phpgroupware-xmlrpc - phpGroupWare XMLRPC module
    phpix - A PHP-based web photo album
    phpldapadmin - web based interface for administering LDAP servers
    phppgadmin - Set of PHP scripts to administrate PostgreSQL over the WWW
    phpqladmin - LDAP user administration interface
    phpreports - XML-based report generator for PHP
    phpsysinfo - PHP based host information
    phpunit - Unit testing suite for PHP5
    phpunit2 - Transitional package to install "phpunit"
    phpwiki - informal collaborative website manager
    planetpenguin-racer-extras - Additional courses for PlanetPenguin Racer
    planetpenguin-racer-gimp-dev - plugins for GIMP for easy development of ppracer courses
    poppassd - password change server for Eudora and NUPOP
    python-adodb - A database abstraction library for python
    python-cheetah - text-based template engine and Python code generator
    python-gastables - compressible flow gas table modules for python
    python-gpib - libgpib python bindings (default package)
    python-htmltmpl - Templating engine for separation of code and HTML
    python-jinja - small but fast and easy to use stand-alone template engine
    python-kid - simple Pythonic template language for XML based vocabularies
    python-ming - Ming (SWF) module for Python
    python-templayer - layered template library for Python
    qtodo - ToDo List manager
    rats - Rough Auditing Tool for Security
    remind - a sophisticated reminder service
    rhinote - virtual sticky-notes for your desktop
    rofs - Read-Only Filesystem for FUSE
    roundcube-webmail - A browser-based multilingual AJAX-powered IMAP client
    saydate - speaks the current date through your sound card
    scummvm - free implementation of LucasArts' S.C.U.M.M interpreter
    serendipity - Weblog manager with extensive theming and plugin support
    sextractor - source extractor for astronomical images
    sitebar - A web based bookmark manager written in PHP
    slbackup-php - A web-based administration tool for slbackup written in php
    sloccount - Programs for counting physical source lines of code (SLOC)
    smarty-gettext - provides gettext support for smarty
    soundkonverter - KDE frontend to various audio converters
    source-highlight - convert source code to syntax highlighted document
    spl-core - SPL Programming Language
    sqlrelay - Database connection pooling, proxying and load balancing
    sqlrelay-dev - SQL Relay C and C++ APIs
    sqlrelay-doc - SQL Relay Documentation
    squirrelmail - Webmail for nuts
    srg - Fast, Flexible and Detailed log analysis for the Squid Proxy
    starfighter - 2D scrolling shooter game
    starfighter-data - data files for Starfighter game
    suphp-common - Common files for mod suphp
    swig1.3 - Generate scripting interfaces to C/C++ code
    synergy - Share mouse, keyboard and clipboard over the network
    tiger-mode - An emacs-mode for tiger programs.
    tntnet - modular, multithreaded web application server for C++
    tntnet-demos - demo web applications for Tntnet
    tntnet-doc - documentation for Tntnet
    torrentflux - web based, feature-rich BitTorrent download manager
    txt2regex - A Regular Expression "wizard", all written with bash2 builtins
    vim-syntax-gtk - Syntax files to highlight gtk+ keywords in vim
    webcalendar - PHP-Based multi-user calendar
    webcpp - configurable utility to convert source code to HTML
    webhttrack - Copy websites to your computer, httrack with a Web interface
    websvn - interface for subversion repositories written in PHP
    weechat-scripts - script collection for the WeeChat IRC client
    wmblob - blobs in a dockapp
    wmcalclock - A dock.app which simply tells time and date
    wmcpu - Window Maker docking app similar to xosview
    wmmatrix - View The Matrix in a Window Maker dock application
    wmmisc - Dock app that monitors your system
    wordtrans-web - Multi Language Word Translator for Linux
    wulf2html - filter for generating HTML logs from wulflogger data
    wulflogger - extract cluster node data from remote xmlsysd daemons
    wulfstat - curses based wulfware for monitoring cluster nodes
    wwwconfig-common - Debian web auto configuration
    xine-ui - the xine video player, user interface
    xjed - editor for programmers (x11 version)
    xmlsysd - wulfware daemon to extract data from cluster nodes
    xmms-goom - visualization plug-in for XMMS with a variety of effects
    youtranslate - Web translator
    zoph - Web based digital image presentation and management system
    kxmame - A KDE frontend for xmame emulator
    mplayerthumbs - thumbnail generator for video files on Konqueror
    php-doc - Documentation for PHP4 and PHP5
    velocity - Java-based template engine for web application
    apache2-prefork-dev - development headers for apache2
    libapache2-mod-php5 - server-side, HTML-embedded scripting language (apache 2 module)
    libgtksourceview2.0-common - common files for the GTK+ syntax highlighting widget
    php-pear - PEAR - PHP Extension and Application Repository
    php5 - server-side, HTML-embedded scripting language (meta-package)
    php5-cgi - server-side, HTML-embedded scripting language (CGI binary)
    php5-cli - command-line interpreter for the php5 scripting language
    php5-common - Common files for packages built from the php5 source
    php5-curl - CURL module for php5
    php5-dev - Files for PHP5 module development
    php5-gd - GD module for php5
    php5-ldap - LDAP module for php5
    php5-mhash - MHASH module for php5
    php5-mysql - MySQL module for php5
    php5-odbc - ODBC module for php5
    php5-pgsql - PostgreSQL module for php5
    php5-pspell - pspell module for php5
    php5-recode - recode module for php5
    php5-snmp - SNMP module for php5
    php5-sqlite - SQLite module for php5
    php5-sybase - Sybase / MS SQL Server module for php5
    php5-tidy - tidy module for php5
    php5-xmlrpc - XML-RPC module for php5
    php5-xsl - XSL module for php5
    python-qt4 - Python bindings for Qt4
    python-qt4-dbus - DBus Support for PyQt4
    python-qt4-dev - Development files for PyQt4
    python-qt4-doc - Documentation and examples for PyQt4
    python-qt4-sql - Python bindings for Qt4's SQL module
    cacti - Frontend to rrdtool for monitoring systems and services
    horde3 - horde web application framework
    phpmyadmin - Administrate MySQL over the WWW
    pyqt4-dev-tools - Development tools for PyQt4
    python-qt4-gl - Python bindings for Qt4's OpenGL module
    smarty - Template engine for PHP
    zabbix-frontend-php - software for monitoring of your servers -- php frontend
    
     
  9. amaurib

    amaurib New Member

    I think the result its too big , i printed the results on a file..
    attached.
     

    Attached Files:

  10. falko

    falko Super Moderator Howtoforge Staff

    Please try this:
    Code:
    apt-get install php5-imap php5-mcrypt php5-curl php5-gd php5-imagick php5-ming php5-mhash php5-mysql php5-recode php5-pspell php5-ps php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
     
  11. amaurib

    amaurib New Member

    The result

    Code:
    root@mserver:~# apt-get install php5-imap php5-mcrypt php5-curl php5-gd php5-ima                                        gick php5-ming php5-mhash php5-mysql php5-recode php5-pspell php5-ps php5-snmp p                                        hp5-sqlite php5-tidy php5-xmlrpc php5-xsl
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    php5-imap is already the newest version.
    php5-mcrypt is already the newest version.
    php5-curl is already the newest version.
    php5-gd is already the newest version.
    php5-imagick is already the newest version.
    php5-ming is already the newest version.
    php5-mhash is already the newest version.
    php5-mysql is already the newest version.
    php5-recode is already the newest version.
    php5-pspell is already the newest version.
    php5-ps is already the newest version.
    php5-snmp is already the newest version.
    php5-sqlite is already the newest version.
    php5-tidy is already the newest version.
    php5-xmlrpc is already the newest version.
    php5-xsl is already the newest version.
    The following packages were automatically installed and are no longer required:
      libdb4.3
    Use 'apt-get autoremove' to remove them.
    0 upgraded, 0 newly installed, 0 to remove and 14 not upgraded.
    
     
  12. falko

    falko Super Moderator Howtoforge Staff

    Restart Apache. Do you still get the same errors?
     
  13. amaurib

    amaurib New Member

    Restarted,.....

    Perfect!!

    my server is now broadcasting videos using Gallery2 .

    thanks a lot falko

    you are one of a kind.

    Unico. Unique.
     
  14. ega364

    ega364 New Member

    adjust hue, saturation and lightness

    hi,
    i have been editing the hue saturation and lightness by using Photoshop and it is not difficult but now i have asked to adjust the hue, saturation and lightness by using program return in c++, anybody knows where can i get the free source code for it? i'm really good in program honestly it is difficult for me to write the program by myself..
     

Share This Page