TYPO3Jack.net - Das TYPO3 Mailinglist Forum Archiv

TYPO3 Mailingliste: nicht fragen - lesen!

TYPO3 Mailingliste: nicht fragen - lesen!_RR_1-->
Zurück   TYPO3Jack.net - Das TYPO3 Mailinglist Forum Archiv > TYPO3-Mailinglists: ENGLISH > typo3-linux@lists.netfielders.de

Registrieren Hilfe Benutzerliste Kalender Suchen Heutige Beiträge Alle Foren als gelesen markieren
  #1  
Alt 01.02.2007, 18:15
Kari Salovaara
Gast
 
Beiträge: n/a
Standard [TYPO3-linux] Install problems relating GD

Hi linux friends,

I've a peculiar problem. I'll describe the environment first.

I'm using Centos 4 distros in all of personal and company machines.
My personal Centos 4 (now 4.4) has been installed when it was 4.2 and
upgraded as newer versions were published and machine is now totally
up-to-date. I needed a new server in office. No problems in
installation, updated all pending patches/new versions. I noticed that
if you make only as a server installation, a lot of application/programs
which Typo3 depends has to be installed later ! This has to be
documented later but this is not a problem or right time now.

The problem:
My home server (also desktop) has in Typo3 Install tool it notes that
GDLib is installed OK. This despite to default configuration for
compilation of PHP (5.1.6) tells --without-gd. But phpinfo shows gd
(2.0.28) information. And mostly this Typo3 works in this machine.
The new server has exactly same situation in progs/applications but,
phpinfo does not show any information of gd and Typo3 Install tool
complains missing GDLib.

This is the configuration of PHP 5.1.6 which is similar (of-course) in
both machines.

'./configure' '--build=i686-redhat-linux-gnu'
'--host=i686-redhat-linux-gnu' '--target=i386-redhat-linux-gnu'
'--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr'
'--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc'
'--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib'
'--libexecdir=/usr/libexec' '--localstatedir=/var'
'--sharedstatedir=/usr/com' '--mandir=/usr/share/man'
'--infodir=/usr/share/info' '--cache-file=../config.cache'
'--with-libdir=lib' '--with-config-file-path=/etc'
'--with-config-file-scan-dir=/etc/php.d' '--disable-debug' '--with-pic'
'--disable-rpath' '--without-pear' '--with-bz2' '--with-curl'
'--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr'
'--with-png-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm'
'--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr'
'--with-openssl' '--with-png' '--with-pspell' '--with-expat-dir=/usr'
'--with-pcre-regex=/usr' '--with-zlib' '--with-layout=GNU'
'--enable-exif' '--enable-ftp' '--enable-magic-quotes'
'--enable-sockets' '--enable-sysvsem' '--enable-sysvshm'
'--enable-sysvmsg' '--enable-track-vars' '--enable-trans-sid'
'--enable-yp' '--enable-wddx' '--with-kerberos' '--enable-ucd-snmp-hack'
'--with-unixODBC=shared,/usr' '--enable-memory-limit' '--enable-shmop'
'--enable-calendar' '--enable-dbx' '--enable-dio'
'--with-mime-magic=/etc/httpd/conf/magic' '--without-sqlite'
'--with-libxml-dir=/usr' '--with-xml' '--with-apxs2=/usr/sbin/apxs'
'--without-mysql' '--without-gd' '--without-odbc' '--disable-dom'
'--disable-dba' '--without-unixODBC' '--disable-pdo'
'--disable-xmlreader' '--disable-xmlwriter'

Questions:
- how Typo3 searches if GDLib is installed ? If I correctly understand
it looks from PHP not from the directory structure.
- how can I get the same situation that PHP in server understands that
there is GD in the machine just like in my home machine ?
- do You know if there is any, quite new, documentation of the
prerequisites of various programs Typo3 needs. Something like: typo3
version, program1 name, program1 version, program2 name, program2
version , etc.
This is essential as there is a lot of programs Typo3 needs and they
aren't documented anywhere. Not all distros (pro versions) have
libraries for desktop environment if they are used as server. And
secondly, servers get more and more compromised if You have to update
and upgrade the manually, also the monitoring of new versions and
security patches is impossible.

Cheers,
Kari

--
Kari Salovaara
Hanko, Finland
_______________________________________________
TYPO3-linux mailing list
TYPO3-linux (AT) lists (DOT) netfielders.de
http://lists.netfielders.de/cgi-bin/...fo/typo3-linux
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #2  
Alt 01.02.2007, 19:27
Michael Weber
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-linux] Install problems relating GD

Heya,

depending on what you use to maintain your System, yum or plain rpm,
either of both should show you if it is installed.

For PHP with GD you need:

php-common
gd

and for sure

php-gd

from repository (rpm package names are quite similar)

So "rpm -qi php-common" and "rpm -qi gd" should give a
positive match. Then you can install "php-gd" from repository
or via RPM (whatever you prefer just dont mix)

> The problem:
> My home server (also desktop) has in Typo3 Install tool it notes that
> GDLib is installed OK. This despite to default configuration for
> compilation of PHP (5.1.6) tells --without-gd. But phpinfo shows gd
> (2.0.28) information.


Yes it is compiled without gd, pear and some other stuff. Thats okay,
you use Modules from the Repo instead.

> The new server has exactly same situation in progs/applications but,
> phpinfo does not show any information of gd and Typo3 Install tool
> complains missing GDLib.


Standard installations dont necessary include all Modules for PHP.
Check this.

> Questions:
> - how Typo3 searches if GDLib is installed ? If I correctly understand
> it looks from PHP not from the directory structure.


yes. A installed GD Lib is pointless if PHP dont support it.

> - how can I get the same situation that PHP in server understands that
> there is GD in the machine just like in my home machine ?


Check if the php-gd Module is installed. I am quite sure its not.

> - do You know if there is any, quite new, documentation of the
> prerequisites of various programs Typo3 needs. Something like: typo3
> version, program1 name, program1 version, program2 name, program2
> version , etc.


Not really

regards,
Michael

--
Michael Weber - Berlin
Netzwerker - Beratung, Monitoring, Sicherheit
netz http://www.nmsw.de/ - fon 030 948 86 859
_______________________________________________
TYPO3-linux mailing list
TYPO3-linux (AT) lists (DOT) netfielders.de
http://lists.netfielders.de/cgi-bin/...fo/typo3-linux
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
  #3  
Alt 03.02.2007, 10:46
Kari Salovaara
Gast
 
Beiträge: n/a
Standard Re: [TYPO3-linux] Install problems relating GD

Hi,

after "long walking" in source code of Typo3 and PHP, I was able to find
the problem and thus the issue is now solved.
Thank You of your attention. I hope "this issue" will be solved in future.

Cheers,
Kari

--
Kari Salovaara
Hanko, Finland
_______________________________________________
TYPO3-linux mailing list
TYPO3-linux (AT) lists (DOT) netfielders.de
http://lists.netfielders.de/cgi-bin/...fo/typo3-linux
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
 

Lesezeichen

Themen-Optionen
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an


Ähnliche Themen

Thema Autor Forum Antworten Letzter Beitrag
[TYPO3-install] Unable to login to BE after install - TYPO3 v4.0.4- Help Christo Romberg typo3-install@lists.netfielders.de 2 14.01.2007 10:03
Re: [TYPO3-install] Forbidden - no permission toaccess/typo3/install/index.php Marcel Ehrhard typo3-install@lists.netfielders.de 0 31.12.2006 18:18
[TYPO3-install] configuring php.ini on shared virtual privateserver Linux oneilch typo3-install@lists.netfielders.de 0 23.12.2006 19:40
[TYPO3-install] Forbidden - no permission to access/typo3/install/index.php Marcel Ehrhard typo3-install@lists.netfielders.de 0 13.12.2006 21:17
[TYPO3-linux] Tarballs and symlinks Toke Herkild typo3-linux@lists.netfielders.de 2 13.12.2006 10:23


Alle Zeitangaben in WEZ +1. Es ist jetzt 03:46 Uhr.


Powered by vBulletin® Version 3.7.4 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
Template-Modifikationen durch TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75