Unable to add client domain

  • I'm running the most recent version (as of this writing) from the Git repo mater, and have ran into an issue.


    I'm able to create a reseller, but after that things go down hill.


    I've tried to create a client two different ways now via the reseller:
    - Create user, make custom hosting plan details
    - Create hosting plan template, create new user and assign template to user


    Both end up the same way: "Addition in progress" as its status. I can't delete either as it'll stay in "Deletion in progress".


    This is greatly similar to what's in this thread (page specific): http://forum.i-mscp.net/Thread…r-no-such-option-y?page=2


    However, no solution was posted in the thread and now I am without any other route to go but to post here.

    Edited once, last by c0urier ().


  • Hello ;


    Distro ?
    Distro codename?
    i-MSCP Httpd server implementation you are using?


    Thank you for using i-MSCP

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206


  • Sorry for not providing it earlier heh.


    Distro: Ubuntu 12.04.2 LTS
    Web server: Apache 2.2.22


    i-MSCP Git Master
    Build: 20130107
    Codename: Eagle


  • Re ;


    What is the i-MSCP Httpd server implementation you are using please?


    Fcgid/FastCGI?
    ITK?
    PHP-FPM?


    Also please, what was your choice for Awstats question during installation?


    Thanks

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

    Edited once, last by Nuxwin ().


  • Sorry for the misunderstanding.


    I'm using Fcgid I believe, I have this in one of the vhosts': FCGIWrapper /var/www/fcgi/test.com/php5-fcgid-starter .php


    Awstats was set to dynamic, but I have this issue too when using static.

  • Sorry for the misunderstanding.


    I'm using Fcgid I believe, I have this in one of the vhosts': FCGIWrapper /var/www/fcgi/test.com/php5-fcgid-starter .php


    Awstats was set to dynamic, but I have this issue too when using static.


    Re ;


    Do you have teamviewer ? If yes, can you send me your ID ?


    Thank you for using i-MSCP

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

    Edited once, last by Nuxwin ().


  • Re ;


    Do you have teamviewer ? If yes, can you send me your ID ?


    Thank you for using i-MSCP


    My ID is 838 492 849

  • My ID is 838 492 849


    Re ;


    Well, start your teamviewer and send me the password via PM.


    Thanks

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

    Edited once, last by Nuxwin ().

  • Edit:


    Ok, after some checks on the @ehansen server via teamviewer, it seem that It's a problem with architecture detection in the PerlLib/iMSCP/Ext2Attributes.pm module (on some system), causing engine to fail. I'll fix that now.


    Thank you for your report.

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

    Edited once, last by Nuxwin ().


  • Edit:


    Ok, after some checks on the @ehansen server via teamviewer, it seem that It's a problem with architecture detection in the PerlLib/iMSCP/Ext2Attributes.pm module (on some system), causing engine to fail. I'll fix that now.


    Thank you for your report.


    Sent you code on how to fix it, but basically for those who might be running into this as well somewhere down the line:


    /var/www/imscp/engine/PerlLib/iMSCP/Ext2Attributes.pm loads attributes module based on byteorder (which is kind of an assumption), but basically it was checking if byteorder == 1234, whereas on my system it was 12345678. The condition would fail and load the 64-bit module, which was wrong because I'm running this on 32-bit.


    The code I gave Nuxwin is this:


    Edited once, last by ehansen ().