Sponsored Content
Operating Systems Solaris problem in php installation.. Post 302503362 by senkerth on Friday 11th of March 2011 01:04:57 AM
Old 03-11-2011
thanks for the reply .. but i installed libiconv ..

i have added libiconv using

pkgadd -d libiconv-1.13.1-sol10-x86-local

and when i find libiconv

it shows ..
find / -name "libiconv"

/usr/local/doc/libiconv
/usr/local/share/doc/libiconv

---------- Post updated 2011-03-11 at 09:55 AM ---------- Previous update was 2011-03-10 at 08:31 PM ----------

can u guide me where am i going wrong ..

---------- Post updated at 11:34 AM ---------- Previous update was at 09:55 AM ----------

this problem is killing me for days...

i googled and got some hints ..saying..
they asked me to add manually EXTRA_LIBS - libconv in Makefile ..

i found that line when i less Makefile ..
but when i tried to edit using vi command .. i couldn find the line..

plz tel me the reason...
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Installation problem

Hi , I have installed a s/w for work tracking (work tracking fecilitator) in linix OS. all my other perl programs are working fine. i have completed the backend part of it but unable to use this application . Please guide me regarding this . I have downloaded the source from... (4 Replies)
Discussion started by: alma
4 Replies

2. Ubuntu

kubuntu installation problem

Hi, i had a problem during kubuntu installation from ubuntu and now i can't start ubuntu correctly. it loads only desktop and doesn't work. Is there a way to solve this problem? I have ubuntu 8.10 2.6.27-7 generic (0 Replies)
Discussion started by: littleboyblu
0 Replies

3. Red Hat

RHEL 5 installation problem

Hi everyone, I m new here and I have few questions regarding RHEL installation. The story goes like this... I have a PC with the following specifications: 1. ASUS P5N-MX motherboard with on-board GForce 7050/nforce 610i chipset 2. Intel Pentium Dual Core Processor 3. Two SATA HDD(250GB + 160GB)... (4 Replies)
Discussion started by: willa
4 Replies

4. Solaris

dmidecode installation problem

Today I had to check RAM info on solaris 10 system. I know that there is 4 GB, 2 modules , but I really needed more details like exact model, frequency and so on I downloaded several versions of dmidecode, but non of them worked. At first I found that there is no gcc in the system, well I... (5 Replies)
Discussion started by: Zorbeg
5 Replies

5. UNIX for Advanced & Expert Users

PHP installation problem

Hey Linux experts, I am very new to Linux and PHP. I am trying to install php-5.3.2 on Linux(Centos), but I am getting an error as given below: cc1: out of memory allocating 2036 bytes after a total of 63528960 bytes make: *** Error 1 What is exactly meant by this error?Can someone guide... (5 Replies)
Discussion started by: mahesh_raghu
5 Replies

6. Solaris

php installation ..

hi.. i need to install or enable php on solaris 10 x86.. can u guide me .. tell me as soon as possible.. thanks... ---------- Post updated at 12:17 PM ---------- Previous update was at 10:38 AM ---------- tell me as soon as possible... (1 Reply)
Discussion started by: senkerth
1 Replies

7. Solaris

php installation problem..

hi am senthil, i want to install php 5 in my solaris 10 x86server.. i already enabled apache and my mysql 5 is woking fine.. i want to know the procedure to install php.. i googled it and got some info .. i have doubt in the following thing /configure -with-apache2=/opt/httpd-2.0.49... (1 Reply)
Discussion started by: senkerth
1 Replies

8. Solaris

php package installation problem

can u tell me the procedure to install php 5 using package .. i downloaded php-5.2.1-sol10-x86-local.gz from sunfreeware i have added package using pkgadd -d php-5.2.1-sol10-x86-local then i have added these two lines in httpd.conf LoadModule php5_module modules/libphp5.so... (7 Replies)
Discussion started by: senkerth
7 Replies

9. Shell Programming and Scripting

mdbtools installation problem

i have been tryin to install mdbtools in my rhel 5... ./configure is working but at the time of make it gives an error pls help error log odbc.c:778: warning: conflicting types for 'bind_columns' odbc.c:778: error: static declaration of 'bind_columns' follows non-static declaration... (0 Replies)
Discussion started by: born
0 Replies

10. Red Hat

Problem with rpm installation

When i try to install rpm with rpm -ivh ntp* it shows package is already install and when i query for same package it shows package is not installed ?How to resolve DSA signature error for rpm? How to choose rpm package except redhat version(el5) and architecture(i386) and site link for that? (5 Replies)
Discussion started by: amitbharad
5 Replies
Iconv(3)						User Contributed Perl Documentation						  Iconv(3)

NAME
Text::Iconv - Perl interface to iconv() codeset conversion function SYNOPSIS
use Text::Iconv; $converter = Text::Iconv->new("fromcode", "tocode"); $converted = $converter->convert("Text to convert"); DESCRIPTION
The Text::Iconv module provides a Perl interface to the iconv() function as defined by the Single UNIX Specification. The convert() method converts the encoding of characters in the input string from the fromcode codeset to the tocode codeset, and returns the result. Settings of fromcode and tocode and their permitted combinations are implementation-dependent. Valid values are specified in the system documentation; the iconv(1) utility should also provide a -l option that lists all supported codesets. Utility methods Text::Iconv objects also provide the following methods: retval() returns the return value of the underlying iconv() function for the last conversion; according to the Single UNIX Specification, this value indicates "the number of non-identical conversions performed." Note, however, that iconv implementations vary widely in the interpretation of this specification. This method can be called after calling convert(), e.g.: $result = $converter->convert("lorem ipsum dolor sit amet"); $retval = $converter->retval; When called before the first call to convert(), or if an error occured during the conversion, retval() returns undef. get_attr(): This method is only available with GNU libiconv, otherwise it throws an exception. The get_attr() method allows you to query various attributes which influence the behavior of convert(). The currently supported attributes are trivialp, transliterate, and discard_ilseq, e.g.: $state = $converter->get_attr("transliterate"); See iconvctl(3) for details. To ensure portability to other iconv implementations you should first check for the availability of this method using eval {}, e.g.: eval { $conv->get_attr("trivialp") }; if ($@) { # get_attr() is not available } else { # get_attr() is available } This method should be considered experimental. set_attr(): This method is only available with GNU libiconv, otherwise it throws an exception. The set_attr() method allows you to set various attributes which influence the behavior of convert(). The currently supported attributes are transliterate and discard_ilseq, e.g.: $state = $converter->set_attr("transliterate"); See iconvctl(3) for details. To ensure portability to other iconv implementations you should first check for the availability of this method using eval {}, cf. the description of set_attr() above. This method should be considered experimental. ERRORS
If the conversion can't be initialized an exception is raised (using croak()). Handling of conversion errors Text::Iconv provides a class attribute raise_error and a corresponding class method for setting and getting its value. The handling of errors during conversion depends on the setting of this attribute. If raise_error is set to a true value, an exception is raised; otherwise, the convert() method only returns undef. By default raise_error is false. Example usage: Text::Iconv->raise_error(1); # Conversion errors raise exceptions Text::Iconv->raise_error(0); # Conversion errors return undef $a = Text::Iconv->raise_error(); # Get current setting Per-object handling of conversion errors As an experimental feature, Text::Iconv also provides an instance attribute raise_error and a corresponding method for setting and getting its value. If raise_error is undef, the class-wide settings apply. If raise_error is 1 or 0 (true or false), the object settings override the class-wide settings. Consult iconv(3) for details on errors that might occur. Conversion of undef Converting undef, e.g., $converted = $converter->convert(undef); always returns undef. This is not considered an error. NOTES
The supported codesets, their names, the supported conversions, and the quality of the conversions are all system-dependent. AUTHOR
Michael Piotrowski <mxp@dynalabs.de> SEE ALSO
iconv(1), iconv(3) perl v5.16.3 2007-10-17 Iconv(3)
All times are GMT -4. The time now is 01:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy