Call to undefined function imap_8bit

u4xlol

Verified User
Joined
Nov 12, 2009
Messages
57
hello everyone

i have a big problem

Fatal error: Call to undefined function imap_8bit() in /home/XxXxX/domains/XxXxXxXxX/public_html/core_functions/functions.php on line 0

please help me:confused:
 
yum install libc-client
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Parsing package install arguments
Nothing to do
 
For a x86 system use the commands below
yum install krb5-devel libc-client libc-client-devel -y
wget http://dave.t0xic.nl/tars/imapback-2004c1-x86.tar.gz
tar xzf imapback-2004c1-x86.tar.gz
cd imap-2004c1
./buildit
cd c-client
mkdir /usr/local/imap-2004c1/
mkdir /usr/local/imap-2004c1/lib
mkdir /usr/local/imap-2004c1/include
cp *.h /usr/local/imap-2004c1/include
cp *.c /usr/local/imap-2004c1/lib
cp c-client.a /usr/local/imap-2004c1/lib
ln -s /usr/local/imap-2004c1/c-client.a /usr/local/imap-2004c1/libc-client.a
For a x86_64 system use the commands below
yum install krb5-devel libc-client libc-client-devel -y
wget http://dave.t0xic.nl/tars/imapback-2004c1-x86_64.tar.gz
tar xzf imapback-2004c1-x86_64.tar.gz
cd imap-2004c1
./buildit
cd c-client
mkdir /usr/local/imap-2004c1/
mkdir /usr/local/imap-2004c1/lib
mkdir /usr/local/imap-2004c1/include
cp *.h /usr/local/imap-2004c1/include
cp *.c /usr/local/imap-2004c1/lib
cp c-client.a /usr/local/imap-2004c1/lib
ln -s /usr/local/imap-2004c1/c-client.a /usr/local/imap-2004c1/libc-client.a
After that do
cd /usr/local/directadmin/custombuild
cp -Rp configure custom
nano -w custom/ap2/configure.php5
Add now the lines below to the file
--with-pic \
--with-imap=/usr/local/imap-2004c1 \
--with-imap-ssl=/usr/local/imap-2004c1
Now it should look something like
--enable-ftp \
--enable-magic-quotes \
--enable-sockets \
--enable-mbstring \
--with-pic \
--with-imap=/usr/local/imap-2004c1 \
--with-imap-ssl=/usr/local/imap-2004c1
Now save the file and do the commands below
cd /usr/local/directadmin/custombuild/
./build clean
./build update
./build php n
After this IMAP support (inclucing IMAP for SSL) should be installed.
 
Last edited:
Back
Top