[plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
-php-to-use-the-libiconv-version-of-iconv-instead-of-the-centos-installed-glibc-version Thanks! -- Randell http://randell.ph/ _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.linux.org.ph/mailman/listinfo/plug Searchable Archives: http://archives.free.net.ph

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Wed, Jan 19, 2011 at 4:50 PM, seekuel wrote: > Hi Randell, > > May I ask if the web server is also restarted after the changes? Yup. I did /etc/httpd/init.d/httpd restart. _ Philippine Linux Users' Group (PLUG) Mai

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Wed, Jan 19, 2011 at 5:33 PM, Brian Baquiran wrote: > Did you edit /etc/httpd/conf.d/php.conf to use the newly compiled PHP > module (LoadModule directive)? I have the following line in my /etc/httpd/conf/httpd.conf LoadModule /usr/lib/httpd/modules/libphp5.so ___

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Wed, Jan 19, 2011 at 5:38 PM, John Homer H Alvero wrote: > Also check that your compiled module is in the right folder > I don't get what you mean by this ^ > > $ php -i | grep extension_dir > This one gave me extension_dir => /usr/local/lib/php/extensions/no-debug-non-zts-20090626 => > /us

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Wed, Jan 19, 2011 at 5:59 PM, John Homer H Alvero wrote: > It means if you dont have the full path in LoadModule directive, the > supposed to be new module needs to be in > > /usr/local/lib/php/extensions/no-debug-non-zts-20090626 > Does this mean I need to copy/symlink the /usr/lib/httpd/mod

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Wed, Jan 19, 2011 at 6:10 PM, JP Loh wrote: > Nope. You had it confused with PHP extensions and Apache modules. > > Check if the running PHP module for Apache that you compiled is in the > modules directory This one I checked that libphp5.so is actually in /usr/lib/httpd/modules. Is this cor

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Wed, Jan 19, 2011 at 6:31 PM, JP Loh wrote: > Try running phpinfo() through Apache to check if the version is the > same as the one you compiled. Yes, it's the same (PHP 5.3.3). I also yum removed the pre-installed PHP 5.1.* just to make sure. But the iconv is still using the glibc version.

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Thu, Jan 20, 2011 at 9:49 AM, Jimmy Lim wrote: > Hi Randell, > > From the libiconv site, there are two ways to install it, the library mode > (the one that you did) and the other one is the libc plug/override mode. > > By executing iconv -V gives you the glibc version instal

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Thu, Jan 20, 2011 at 9:57 AM, Randell wrote: > > > On Thu, Jan 20, 2011 at 9:49 AM, Jimmy Lim wrote: > >> Hi Randell, >> >> From the libiconv site, there are two ways to install it, the library mode >> (the one that you did) and the other one is the libc pl

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
Will it be a good idea to overwrite /usr/bin/iconv with the one from /usr/local/bin/iconv? _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.linux.org.ph/mailman/listinfo/plug Searchable Archives: http://archives.free.net.ph

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
Update: `ldd /usr/lib/httpd/modules/libphp5.so` gives linux-gate.so.1 => (0x003b1000) /usr/local/lib/preloadable_libiconv.so (0x0011) libcrypt.so.1 => /lib/libcrypt.so.1 (0x001ed000) librt.so.1 => /lib/librt.so.1 (0x0021f000) libmysqlclient.so.15 => /usr/lib/mysql/libmysq

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Thu, Jan 20, 2011 at 11:38 AM, Jimmy Lim wrote: > Hi Randell, > > It is clearly stated from GNU libiconv site, that you need the following > order to install it: > > On systems other than GNU/Linux, the iconv program will be > internationalized only if GNU gettext has bee

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-19 Thread Randell
On Thu, Jan 20, 2011 at 11:38 AM, Jimmy Lim wrote: > Hi Randell, > > It is clearly stated from GNU libiconv site, that you need the following > order to install it: > > On systems other than GNU/Linux, the iconv program will be > internationalized only if GNU gettext has bee

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-20 Thread Randell
Update: out of desparation, I tried installing libiconv over the iconv with glibc implementation. So iconv --version now shows the libiconv version. But phpinfo still shows it's using glibc. _ Philippine Linux Users' Group (PLUG) Mailing List http://l

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-20 Thread Randell
On Thu, Jan 20, 2011 at 11:56 AM, Jimmy Lim wrote: > Hi Randell, > > The stock yum repo is too old, and you might want to use the latest and > greatest version of packages. > > > http://wiki.centos.org/AdditionalResources/Repositories/RPMForge#head-5aabf02717d5b6b12d4

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-20 Thread Randell
ver if I cannot find a Linux solution by the end of the day. -- Randell _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.linux.org.ph/mailman/listinfo/plug Searchable Archives: http://archives.free.net.ph

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-20 Thread Randell
On Thu, Jan 20, 2011 at 5:21 PM, seekuel wrote: > Hi Randell, > > Can you please try this if if can work. > > http://www.apachefriends.org/en/xampp-linux.html Good thing you mentioned this. It was one of my options but forgot about it during my trial and errors. I'll let y

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-20 Thread Randell
On Thu, Jan 20, 2011 at 5:27 PM, seekuel wrote: > Also, reading from the site's quick start: In php.ini there were > configurations that were needed to be adjusted (I assume you are using WAMP) > have you done the same thing in Linux? [ include_path = > ".;c:\php\includes;c:\zend\library"] Yup.

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-20 Thread Randell
> > > Can you please try this if if can work. > > http://www.apachefriends.org/en/xampp-linux.html Tried this. Same thing happened. look at the php.ini, make sure you uncomment the following: > extension=iconv.so I don't have that line in my php.ini. *sigh*

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-20 Thread Randell
On Thu, Jan 20, 2011 at 7:28 PM, Michael Janapin wrote: > Could you just add it then? > and let's see what happens. > Same thing. No effect. So weird. iconv --version already says it is libiconv but phpinfo() still says implementation is in glibc. _

Re: [plug] How can I force PHP to use the libiconv version of iconv instead of the CentOS-installed glibc version?

2011-01-31 Thread Randell
ation of iconv. Makes me wonder why the default implementation that it was looking for was glibc, while the default version being used in Mac and Windows is libiconv. Cheers, -- Randell http://nullpointer.ph/ _ Philippine Linux Users' Group (PLU

Re: [plug] Year of Linux (Unix) | The Manila Bulletin Newspaper Online

2011-03-04 Thread Randell
Sir rom's twitter account is @rom. -- Randell http://nullpointer.ph/ _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.linux.org.ph/mailman/listinfo/plug Searchable Archives: http://archives.free.net.ph

Re: [plug] Android is not as free as we need it to be

2011-03-06 Thread Randell
Someone from the Google Technology Users Group might be able to answer this question. http://groups.google.com/group/filipino-developer-help-group -- Randell http://nullpointer.ph/ _ Philippine Linux Users' Group (PLUG) Mailing List

Re: [plug] Android is not as free as we need it to be

2011-03-06 Thread Randell
open source and free and you can modify it at your own will but buying apps and the market place has nothing to do with Android being "open" imho. *". -- Randell http://nullpointer.ph/ _ Philippine Linux Users' Group (PLUG) Mailin

Re: [plug] MISSING: 1.6GB in root

2011-11-24 Thread Randell
lable, even if 1 byte is used in 1MB free block, the free block is no more a free block and its used. Source: http://www.unix.com/unix-dummies-questions-answers/29223-sco-unix-disk-space.html -- Randell http://nullpointer.ph/ On Thu, Nov 24, 2011 at 6:00 PM, Michael Tinsay wrote: > Hi. > &g

Re: [plug] OT: Mailing list for FOSS Business Owners

2010-07-01 Thread Randell
Count me in! -- Randell Benavidez http://randell.ph/ http://nullpointer.ph/ _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.linux.org.ph/mailman/listinfo/plug Searchable Archives: http://archives.free.net.ph

Re: [plug] opensource video editing

2010-07-04 Thread Randell
_ > Philippine Linux Users' Group (PLUG) Mailing List > http://lists.linux.org.ph/mailman/listinfo/plug > Searchable Archives: http://archives.free.net.ph > > > > _____ > Philippine Linux Users' Group (PLUG) Mailing List > http://lists.linux.org.ph/mailman/listinfo/plu

Re: [plug] OT: Mailing list for FOSS Business Owners

2010-07-06 Thread Randell
an just use a private Google Group. -- Randell http://randell.ph/ http://nullpointer.ph/ _ Philippine Linux Users' Group (PLUG) Mailing List http://lists.linux.org.ph/mailman/listinfo/plug Searchable Archives: http://archives.free.net.ph

Re: [plug] Immediate Hiring!!! Linux System Administrators

2010-10-19 Thread Randell
Hi guys, Feel free to post this at http://jobs.nullpointer.ph/. Jobs posted there will also be shown at http://nullpointer.ph/. Regards, -- Randell Benavidez http://randell.ph/ http://twitter.com/_randell _ Philippine Linux Users' Group

Re: [plug] Turorial Fee

2010-11-24 Thread Randell
, have him install a Linux distro and let him poke around it for a while. Consider teaching it for free as a way of giving back to the community, unless it's really for training a bunch of people for a company. Cheers, -- Randell Benavidez http:/