Subject: Testing Joomla Written by niel on 2006-07-04 09:07:30 Testing Joomla
|
Subject: Plesk754 and FC3: Three missing packages Written by niel on 2006-07-04 09:40:29 Hello Scott, Sorry for the post above, I had tried to leave a comment some hours ago and it didn't work. Can I erase these two comments? Can you do it for me? I have already posted my message in [URL=http://www.atomicrocketturtle.com/Joomla/content/view/141/29/]the place you told us[/URL]: I've tried to upgrade php in my Plesk754 and FC3 boxes, but there are three packages missing: [CODE] # yum upgrade ... Error: Missing Dependency: php = 4.4.2-3.rhfc3.art is needed by package php-xslt Error: Missing Dependency: php = 4.4.2-3.rhfc3.art is needed by package php-domxml Error: Missing Dependency: php = 4.4.2-3.rhfc3.art is needed by package php-mcrypt [/CODE] So I've tried to remove them: [CODE] # yum remove php-xslt php-domxml php-mcrypt ... Performing the following to resolve dependencies: Remove: psa-horde.noarch 0:3.0.5-fc3.build75050824.12 Remove: psa-imp.noarch 0:4.0.3-fc3.build75050824.12 Remove: psa-ingo.noarch 0:1.0.1-fc3.build75050824.12 Remove: psa-kronolith.noarch 0:2.0.3-fc3.build75050824.12 Remove: psa-mnemo.noarch 0:2.0.1-fc3.build75050824.12 Remove: psa-passwd.noarch 0:3.0-fc3.build75050824.12 Remove: psa-turba.noarch 0:2.0.3-fc3.build75050926.17 Total download size: 0 Is this ok [y/N]: N [/CODE] So, what should I do know? Is there any other source to get those three packages? Thank a lot for your help and RPMs! niel
|
Subject: Which ones Written by scott on 2006-07-04 12:16:19 whats missing on FC3?
|
Subject: php-domxml, php-mcrypt and php-xslt Written by niel on 2006-07-04 16:13:34 Is the body showing properly here?
|
Subject: Yep Written by scott on 2006-07-04 18:59:14 Check the PHP page linked above. Your answers lie therein!
|
Subject: Some mix-ups sometimes happen... Written by Arundel69 on 2006-07-11 08:25:25 If you're updating both Apache to 2.0.X and PHP to 5.0.4: 1) Apparently /etc/httpd/conf.d/php.conf does not get updated properly (it still has the old definitions for PHP4). The proper file should be: [code] # # PHP is an HTML-embedded scripting language which attempts to make it # easy for developers to write dynamically generated webpages. # LoadModule php5_module modules/libphp5.so # # Cause the PHP interpreter to handle files with a .php extension. # AddHandler php5-script .php AddType text/html .php # # Add index.php to the list of files that will be served as directory # indexes. # DirectoryIndex index.php # # Uncomment the following line to allow PHP to pretty-print .phps # files as PHP source code: # #AddType application/x-httpd-php-source .phps [/code] 2) If you need access to the MySQL functions from mod_mysql, it seems that your best option is to (force) delete the package for php, and try to install php-mysql instead. Yum will get the remaining dependencies, and your php [I]should[/I] start properly with built-in mysql access.
|
Subject: Error starting after upgrade to php5 Written by gijsbert on 2006-09-26 09:41:42 upgrade of centos-4.3-php's to atomicrocketturtle-php5 was going smoothly. Everything seems to work. However the following lines of code now produces an error while it never did before: echo "",$header_1,""; echo ,$text_1,""; PHP Parse error: parse error, unexpected ',' When changing: echo ,$text_1,""; to echo $text_1,""; it works, but I'm really wondering what causes this. Any ideas? Gijsbert
|
Subject: '--without-gd' :( Written by linux on 2006-10-05 16:23:27 I upgraded php on my CentOS/Plesk 8 box using your RPM's and to my dismay discovered that php was compiled '--without-gd'. Any chance of getting a version with support for GD?? Thanks
|
Written by scott on 2006-10-05 16:40:02 Indeed, just install php-gd (docs are on the php page)... wait until you start using php 5.1, everything is compiled --without-. I predict mass panic.
|