DSM-G600, DNS-3xx and NSA-220 Hack Forum

Unfortunately no one can be told what fun_plug is - you have to see it for yourself.

You are not logged in.

Announcement

#1 2008-05-26 13:23:31

mykroft
Member
Registered: 2007-05-12
Posts: 83

Package Needed

Does anyone have a PHP package for the .5 funplug setup that has the GD libraries compiled in?

I cant seem to find one...

Thanks
Myk

Offline

 

#2 2008-05-27 04:33:50

mykroft
Member
Registered: 2007-05-12
Posts: 83

Re: Package Needed

Anyone?

Offline

 

#3 2008-05-29 07:10:14

mykroft
Member
Registered: 2007-05-12
Posts: 83

Re: Package Needed

Nobody has built a PHP package with GD support - I am trying to get Jinora to do album art correctly for a jukebox but it needs GD support.....

I dont have a linux box anymore to try and build this - can someone please make me one?

Thanks
Myk

Offline

 

#4 2008-05-29 14:32:25

fonz
Member / Developer
From: Berlin
Registered: 2007-02-06
Posts: 1716
Website

Re: Package Needed

Here you are:

Code:

Thu May 29 13:27:30 CEST 2008
libpng-1.2.29-1: Added.
libjpeg-6b-1: Added.
php-5.2.6-2: Recompiled with GD support. To enable GD, add "extension=gd.so"
    to the [php] section of your /ffp/etc/php.ini file. GD needs libpng and 
    libjpeg.

PS: It was compiled natively on my DNS-323, no need for another linux box.

Offline

 

#5 2008-05-30 02:53:59

mykroft
Member
Registered: 2007-05-12
Posts: 83

Re: Package Needed

Thank you....

Myk

Offline

 

#6 2008-07-21 21:30:43

Priet
Member
Registered: 2008-07-21
Posts: 12

Re: Package Needed

As far as I've found, there are now two PHP5 packages:

1) http://81.216.140.39/dns-323/mysql_and_php/ --> PHP5 with MySQL support
2) The one mentioned in this topic, compiled by Fons (thanx!) --> PHP5 with GD support)

However, I need GD ánd MySQL support. I'm almost afraid to ask, but is there a possibility that you (or anyone else) might want to compile a PHP5 package with GD and MySQL support? That would be great!

Or is it possible to link an extension (xxx.so) to the installation?

Offline

 

#7 2008-07-22 14:26:07

jrbilodeau
Member
Registered: 2007-11-26
Posts: 47

Re: Package Needed

i would also be interested in that, if anyone is willing to compile it.

thanks

Offline

 

#8 2008-07-28 18:16:36

jrbilodeau
Member
Registered: 2007-11-26
Posts: 47

Re: Package Needed

Is anyone willing to recompile php with mysql and gd support? if i knew what i was doing id give it a shot, but its over my head

Offline

 

#9 2008-07-29 10:01:16

forre
Member
Registered: 2008-04-22
Posts: 26

Re: Package Needed

php with gd and mysql support is available in following url
http://81.216.140.39/dns-323/mysql_and_php/php-5.2.6-mysql-3.tgz
add following lines in php.ini

Code:

extension=gd.so
extension=mysql.so
extension=pdo.so
extension=pdo_mysql.so

all available extensions are:
extension=calendar.so
extension=ctype.so
extension=dba.so
extension=ftp.so
extension=gd.so
extension=mbstring.so
extension=mysql.so
extension=pdo.so
extension=pdo_mysql.so
extension=pdo_sqlite.so
extension=sqlite.so
extension=tokenizer.so
extension=zlib.so
extension=fileinfo.so

Last edited by forre (2008-07-29 15:53:58)

Offline

 

#10 2008-07-29 15:20:25

DeLaCroix
Member
Registered: 2007-08-18
Posts: 91
Website

Re: Package Needed

@forre: Can you add new/updated Packages to the CHANGELOG.txt on your space? Thank you very much!

Offline

 

#11 2008-08-10 23:51:18

jrbilodeau
Member
Registered: 2007-11-26
Posts: 47

Re: Package Needed

was the package removed? cause i just clicked the link and i only see the old one

Offline

 

#12 2008-08-11 00:27:09

DeLaCroix
Member
Registered: 2007-08-18
Posts: 91
Website

Re: Package Needed

I've made a Mirror

Offline

 

#13 2008-08-11 06:12:55

jrbilodeau
Member
Registered: 2007-11-26
Posts: 47

Re: Package Needed

does anyone know if there is something wrong with the php-5.2.6-mysql-3.tgz, i ran funpkg -r php-5.2.6-mysql-1.tgz to remove the old one i had, an then ran funpkg -i php-5.2.6-mysql-3.tgz to install the new one, i then uncommented the following extensions

extension=gd.so
extension=mbstring.so
extension=mysql.so
extension=pdo.so
extension=pdo_mysql.so
extension=pdo_sqlite.so
extension=sqlite.so

then stoped and started lighttpd. problem is that my main webpage works, and dalbum works, but my gallery webpage which requires mysql doesn't work anymore. if i uninstall php-5.2.6-mysql-3.tgz and reinstall php-5.2.6-mysql-1.tgz using the same php.ini file it works right away.

Offline

 

#14 2008-08-11 07:57:25

DeLaCroix
Member
Registered: 2007-08-18
Posts: 91
Website

Re: Package Needed

you configured the extension_dir? Then copy all extensions of the extension_dir from php-5.2.6-mysql-1.tgz and copy them back to the extension_dir after upgrading (btw. "funpkg -u php-5.2.6-mysql-3.tgz" will do the job).

Offline

 

#15 2008-08-11 15:42:41

jrbilodeau
Member
Registered: 2007-11-26
Posts: 47

Re: Package Needed

How do i configure the extentions directory, don't i just have to uncomment the extention=*****.so the extentions that i want to use?

Offline

 

#16 2008-08-11 19:22:09

DeLaCroix
Member
Registered: 2007-08-18
Posts: 91
Website

Re: Package Needed

Search:

Code:

extension_dir

Change its line to:

Code:

extension_dir = "/ffp/lib/php/extensions/no-debug-non-zts-20060613/"

Or use my php.ini

Offline

 

#17 2008-08-13 04:21:15

jrbilodeau
Member
Registered: 2007-11-26
Posts: 47

Re: Package Needed

k thanks, ill give that a try

Offline

 

Board footer

Powered by PunBB
© Copyright 2002–2010 PunBB