Re: gettext php config ?, was: [SLUG] photo gallery recommendations sought

2006-05-07 Thread Voytek Eymont

On Sun, May 7, 2006 1:14 am, Scott Sinclair wrote:
 On Sat 06 May, 2006 at 22:55:56 +1000, Voytek Eymont wrote:


 PHP has it's own gettext module which it needs to load (like it has a
 mysql module and so on...)

 I'd imagine your system is in one of the two states:
 * It has PHP and the gettext module installed, but it is commented out
 in php.ini. To fix, uncomment a line in php.ini that looks like:
 extension=php_gettext.dll

 * You don't have the gettext module installed, which in this case, you

thanks, Scott
yes, it looks I'm missing the required php library:

I've added the library in php.ini
'extension=php_gettext.so'
but I got:

# cat /etc/httpd/logs/php_err.log
[08-May-2006 08:29:00] PHP Warning:  Unknown(): Unable to load dynamic
library '/usr/lib/php4/php_gettext.so' - /usr/lib/php4/php_gettext.so:
cannot open shared object file: No such file or directory in Unknown on
line 0

after a brief search, I've found the required module on the server of the
php porter/packager, and, it's all OK now, thanks


-- 
Voytek

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] photo gallery recommendations sought

2006-05-06 Thread Alexander Samad
On Sat, May 06, 2006 at 10:09:22AM +0800, [EMAIL PROTECTED] wrote:
 On Saturday 06 May 2006 10:00, [EMAIL PROTECTED] wrote:
   I'm looking for a photo gallery, if anyone has any recomendations,
   so far I've looked at Coppermine, which actually seems quite good, ??
   but, if
   anyone has other suggestions, I'm interested in hearing
 
  Gallery2 - http://www.gallery2.org/
 
 Years of use, USERS like it, multi-site ie Tigger runs 7,8 galleries under 
 different urls. Many positives, only negative is I doubt you can install it 
 with the nightmare apt-get paradigsm
 James

simple apt-get 
and then point your broswer to it to configure..

been using it for over a view, nice features

 
 grin all my bias betrayed by one word!
 --
 SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
 Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
 


signature.asc
Description: Digital signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Re: [SLUG] photo gallery recommendations sought

2006-05-06 Thread jam
On Saturday 06 May 2006 16:30, Alexander Samad wrote:
 On Sat, May 06, 2006 at 10:09:22AM +0800, [EMAIL PROTECTED] wrote:
  On Saturday 06 May 2006 10:00, [EMAIL PROTECTED] wrote:
I'm looking for a photo gallery, if anyone has any recomendations,
so far I've looked at Coppermine, which actually seems quite good, ??
but, if
anyone has other suggestions, I'm interested in hearing
  
   Gallery2 - http://www.gallery2.org/
 
  Years of use, USERS like it, multi-site ie Tigger runs 7,8 galleries
  under different urls. Many positives, only negative is I doubt you can
  install it with the nightmare apt-get paradigsm
  James

 simple apt-get
 and then point your broswer to it to configure..

 been using it for over a view, nice features

  grin all my bias betrayed by one word!

In 20 years time I want my embedded system users to make a small change:
Oooops we can't recreate the exact development environment - sorry guys head 
for the bell tower

I want the folk in New Zealand to build 'exactly' the same app as me in perth
- well I thought it'd work, ummm apt-get SHOULD give the same results ummm 
sorry (use the bell tower again)

Take DammSmallLinux and try to make a development system and (real) soon 
apt-get gives fatal errors and again 'the bell tower'

All egs are real, #1 was 10 not 20 years.
apt-get is real cute for your toy machine that does not really matter, rather 
harder for 'it used to work before the upgrade'. Put it back to some version 
that existed some while ago  utterly horrid. A fixed distro on CD is much 
better in this case!

Horses for courses. It does not suit me.
James
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


gettext php config ?, was: [SLUG] photo gallery recommendations sought

2006-05-06 Thread Voytek Eymont

On Fri, May 5, 2006 9:07 pm, Tony Green wrote:
 On 05/05/2006, at 8:56 PM, Voytek Eymont wrote:
 if anyone has other suggestions, I'm interested in hearing

 Gallery2 - http://www.gallery2.org/

Tony, it looks pretty awesome, thanks

during setup, it told me:

'Your webserver does not support localization. Please instruct your system
administrator to reconfigure PHP with the gettext option enabled.'

phpinfo says:
'./configure' '--prefix=/usr' '--with-layout=GNU'
...
'--with-gettext=shared'
...

# whereis gettext
gettext: /bin/gettext /usr/bin/gettext /usr/share/gettext
/usr/share/man/man1/gettext.1.gz /usr/share/man/man3/gettext.3.gz

is it that I have gettext in /usr/bin/gettext and it's expected in
'/usr/shared' ?

can I symlink it or something ?



-- 
Voytek

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: gettext php config ?, was: [SLUG] photo gallery recommendations sought

2006-05-06 Thread Scott Sinclair
On Sat 06 May, 2006 at 22:55:56 +1000, Voytek Eymont wrote:
 'Your webserver does not support localization. Please instruct your system
 administrator to reconfigure PHP with the gettext option enabled.'
 
 phpinfo says:
 './configure' '--prefix=/usr' '--with-layout=GNU'
 ...
 '--with-gettext=shared'
 ...
 
 # whereis gettext
 gettext: /bin/gettext /usr/bin/gettext /usr/share/gettext
 /usr/share/man/man1/gettext.1.gz /usr/share/man/man3/gettext.3.gz
 
 is it that I have gettext in /usr/bin/gettext and it's expected in
 '/usr/shared' ?
 
 can I symlink it or something ?

PHP has it's own gettext module which it needs to load (like it has a mysql
module and so on...)

I'd imagine your system is in one of the two states:
* It has PHP and the gettext module installed, but it is commented out
  in php.ini. To fix, uncomment a line in php.ini that looks like:
extension=php_gettext.dll

* You don't have the gettext module installed, which in this case, you
  should use your package manager and install a module named similar to
  php-gettext.

After each step, it should then be fixed by restarting the apache process.

- Scott

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] photo gallery recommendations sought

2006-05-05 Thread Voytek Eymont
I'm looking for a photo gallery, if anyone has any recomendations,
so far I've looked at Coppermine, which actually seems quite good, but, if
anyone has other suggestions, I'm interested in hearing


-- 
Voytek

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] photo gallery recommendations sought

2006-05-05 Thread Tony Green

On 05/05/2006, at 8:56 PM, Voytek Eymont wrote:

I'm looking for a photo gallery, if anyone has any recomendations,
so far I've looked at Coppermine, which actually seems quite good,  
but, if

anyone has other suggestions, I'm interested in hearing


Gallery2 - http://www.gallery2.org/
--
Tony Green [EMAIL PROTECTED]

--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] photo gallery recommendations sought

2006-05-05 Thread jam
On Saturday 06 May 2006 10:00, [EMAIL PROTECTED] wrote:
  I'm looking for a photo gallery, if anyone has any recomendations,
  so far I've looked at Coppermine, which actually seems quite good,  
  but, if
  anyone has other suggestions, I'm interested in hearing

 Gallery2 - http://www.gallery2.org/

Years of use, USERS like it, multi-site ie Tigger runs 7,8 galleries under 
different urls. Many positives, only negative is I doubt you can install it 
with the nightmare apt-get paradigsm
James

grin all my bias betrayed by one word!
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] photo gallery recommendations sought

2006-05-05 Thread Craige McWhirter
On Fri, 2006-05-05 at 20:56 +1000, Voytek Eymont wrote:
 I'm looking for a photo gallery, if anyone has any recomendations,
 so far I've looked at Coppermine, which actually seems quite good, but, if
 anyone has other suggestions, I'm interested in hearing

Desktop or web based? I'd recommend F-Spot for the desktop and I concur
with Greeno re: Gallery2 for the web

--
Cheers,
  Craige.


signature.asc
Description: This is a digitally signed message part
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html