نمایش نتایج: از شماره 1 تا 10 , از مجموع 17

موضوع: مشکل در pipe/pop.php سیستم whmcs

Hybrid View

پست قبلی پست قبلی   پست بعدی پست بعدی
  1. #1
    عضو دائم Metalik آواتار ها
    تاریخ عضویت
    May 2009
    نوشته ها
    1,183
    تشکر تشکر کرده 
    420
    تشکر تشکر شده 
    1,526
    تشکر شده در
    905 پست

    پیش فرض پاسخ : مشکل در pipe/pop.php سیستم whmcs


  2. #2
    کاربر اخراج شده
    تاریخ عضویت
    Jul 2013
    نوشته ها
    60
    تشکر تشکر کرده 
    12
    تشکر تشکر شده 
    126
    تشکر شده در
    108 پست

    پیش فرض پاسخ : مشکل در pipe/pop.php سیستم whmcs

    نقل قول نوشته اصلی توسط Metalik نمایش پست ها
    درست نشد.
    میتونید برام انجام بدین؟

  3. #3
    عضو جدید
    تاریخ عضویت
    Dec 2010
    محل سکونت
    استان گیلان
    نوشته ها
    16
    تشکر تشکر کرده 
    12
    تشکر تشکر شده 
    19
    تشکر شده در
    15 پست

    25 پاسخ : مشکل در pipe/pop.php سیستم whmcs

    سلام
    شما باید 2 کار انجام بدید اولا اشتباه تایپی داشتید pipe صحیح است نه pop
    این را در cron job قرار بدید
    /usr/local/bin/php -q /home/hostk/domains/hostkade.com/public_html/pipe/pipe.php
    و همچنین می توانید از curl یا wget استفاده کنید
    فعلا امتحان کنید خبر بدید
    برای نصب imap
    مراحل زیر را دقیق بروید

    Reported for custombuild:

    1) install c-client.
    Debian:
    apt-get install libc-client-dev

    rpm systems (CentOS, fedora):
    yum install libc-client libc-client-devel

    Reported for CentOS 64-bit, also run:
    yum install krb5-appl-clients.x86_64
    yum install krb5-appl-servers.x86_64

    2) Use this guide:
    http://help.directadmin.com/item.php?id=252

    to add these 2 lines to the bottom (don't forget the \ on the previous line before them)

    --with-imap=/usr/lib/dovecot/imap \
    --with-imap-ssl

    3) Then build php:
    ./build php n

    and that's it.


    Note: as per usual, making customizations to the default install will be beyond our support.
    If there are any issues with this, we'll not be able to provide assistance to make the customization.


    ------

    Reported fix for a keberos compile issue on 64-bit systems:
    ln -s /usr/lib64 /usr/kerberos/lib

    ------
    On CentOS 64-bit, if you see the error:
    configure: error: Cannot find imap library (libc-client.a). Please check your c-client installation.

    and cannot find libc-client.a anywhere on your box:
    updatedb
    locate libc-client.a

    Download a uw-imap src.rpm from the internet. They can be found on rpmfind.net, eg:
    http://rpmfind.net/linux/rpm2html/se...stem=&arch=src

    Then type (using the relevant src.rpm package url for your system, when possible):
    wget http://files.directadmin.com/service...10.el6.src.rpm
    rpmbuild --rebuild uw-imap-2007e-10.el6.src.rpm
    cd /usr/src/redhat/RPMS/x86_64/
    rpm -ivh uw-imap-static-2007e-10.el6.x86_64.rpm uw-imap-devel-2007e-10.el6.x86_64.rpm libc-client-2007e-10.el6.x86_64.rpm

    Note, you may need to remove the newer version of libc-client and libc-client-devel, if the above conflict.
    Also, link the .a file:
    ln -s /usr/lib64/libc-client.a /usr/lib/libc-client.a
    ----------
    Reported issue with the spec file in uw-imap-2007e-10.el6.src.rpm, which may prevent the build of the rpm:
    You must change in SPEC file

    %if 0%{?fedora}
    %define _with_devel 1
    # ship static lib, matches default upstream config
    # as convenience to users, since our hacked shlib can potentially break
    # abi semi-often
    %define _with_static 1
    %endif

    To

    %define _with_devel 1
    # ship static lib, matches default upstream config
    # as convenience to users, since our hacked shlib can potentially break
    # abi semi-often
    %define _with_static 1


    ----------
    Reported for libc-client.a issue:
    "The installation off libc-client.i686 and libc-client.x86_64 is enough to resolve the libc-client.a issue.
    Sometimes yum install libc-client-devel.i686 and libc-client-devel.x86_64 is needed to."


    ===============================================
    ===============================================
    older oudated option for customapache:

    cd /home

    mkdir build

    cd build

    wget http://files.directadmin.com/services/imapback.tar.gz

    tar -zxvf imapback.tar.gz

    cd imap-2002e

    ./buildit

    cd c-client

    make slx EXTRACFLAGS=-I/usr/kerberos/include EXTRALDFLAGS=-I/usr/kerberos/lib

    mkdir /usr/local/imap-2000e/

    mkdir /usr/local/imap-2000e/lib

    mkdir /usr/local/imap-2000e/include

    cp *.h /usr/local/imap-2000e/include

    cp *.c /usr/local/imap-2000e/lib

    cp c-client.a /usr/local/imap-2000e/lib

    mv /usr/local/imap-2000e/lib/c-client.a /usr/local/imap-2000e/lib/libc-client.a

    cd /usr/local/directadmin/customapache

    nano -w configure.php (Add --with-imap=/usr/local/imap-2000e \ to php config)

    ./build php n



    Details for freebsd version:
    http://forum.directadmin.com/showthr...threadid=11043

    FreeBSD: edit c-client/LDFAGS and set:
    -lcrypt
    -L/usr/lib -lssl -lcrypto

    CentOS 64-bit systems:
    http://forum.directadmin.com/showthr...9453#post99453

    Report that --with-kerberos needs to be removed from the configure.php|php5
    ویرایش توسط alipour66m : December 15th, 2013 در ساعت 15:07

  4. تعداد تشکر ها از alipour66m به دلیل پست مفید


اطلاعات موضوع

کاربرانی که در حال مشاهده این موضوع هستند

در حال حاضر 1 کاربر در حال مشاهده این موضوع است. (0 کاربران و 1 مهمان ها)

موضوعات مشابه

  1. مشکل تنظیم pipe در whmcs
    توسط firstline در انجمن سوالات و مشکلات
    پاسخ ها: 0
    آخرين نوشته: October 19th, 2014, 23:38
  2. مشکل pipe در Whmcs
    توسط mr.rival در انجمن سوالات و مشکلات
    پاسخ ها: 2
    آخرين نوشته: January 17th, 2014, 16:36
  3. آدرس pipe در whmcs (مهم و ضروری)
    توسط atilnic در انجمن سوالات و مشکلات
    پاسخ ها: 5
    آخرين نوشته: January 6th, 2014, 14:54
  4. مشکل در اجرا pipe/pop.php
    توسط a.mousavi.a در انجمن کلوکسو يا ال ايکس ادمين Kloxo or LXAdmin
    پاسخ ها: 4
    آخرين نوشته: December 20th, 2013, 10:15
  5. مشکل pipe
    توسط 3245 در انجمن سوالات و مشکلات
    پاسخ ها: 1
    آخرين نوشته: September 9th, 2013, 17:07

مجوز های ارسال و ویرایش

  • شما نمیتوانید موضوع جدیدی ارسال کنید
  • شما امکان ارسال پاسخ را ندارید
  • شما نمیتوانید فایل پیوست کنید.
  • شما نمیتوانید پست های خود را ویرایش کنید
  •