![]() |
2010-01-16
, 01:22
|
Posts: 23 |
Thanked: 4 times |
Joined on Dec 2009
|
#2
|
The Following User Says Thank You to roose For This Useful Post: | ||
![]() |
2010-01-28
, 02:40
|
Posts: 4 |
Thanked: 0 times |
Joined on Nov 2009
|
#3
|
For n900 You can compile php at your scratchbox without problems:
# download php
# unpack archive
[armel] cd php-5.x.x
[armel] ./configure --prefix=/home/user/php
# if you have compiled and installed mysql on scratchbox and device
# you can add --with-mysql=..., --with-mysqli=... for mysql support
# if you need support for special extensions - give it a try
[armel] make
[armel] make install
[armel] cd /home/user
[armel] tar cvf php.tar php
# copy it to /home/user on your device
[device] cd /home/user
[device] tar xvf php.tar
# symlink (if you like) - rootsh required
[device] ln -s /home/user/php/bin/pecl /usr/bin/pecl
[device] ln -s /home/user/php/bin/phar.phar /usr/bin/phar
[device] ln -s /home/user/php/bin/phar.phar /usr/bin/phar.phar
[device] ln -s /home/user/php/bin/php /usr/bin/php
[device] ln -s /home/user/php/bin/php-cgi /usr/bin/php-cgi
[device] ln -s /home/user/php/bin/php-config /usr/bin/php-config
[device] ln -s /home/user/php/bin/phpize /usr/bin/phpize
Hope it works for you on OS2008
Have Phun ...
![]() |
2010-02-12
, 10:16
|
Posts: 2 |
Thanked: 0 times |
Joined on Feb 2010
@ Auckland
|
#4
|
![]() |
2010-02-12
, 10:18
|
Posts: 46 |
Thanked: 5 times |
Joined on Sep 2009
|
#5
|
...or maybe even LAMP?
Thanks.