Posts by Nuxwin

    Good evening,


    For both sites please, show us the content of the Apache2 vhost (http and ssl versions) files. Don't forget to surround your copy-paste with bbcode tags.

    To all people which are asking us again and again the date for the next release of i-MSCP,


    We are in finalization stage for the next maintenance release. The finalization stage includes review of all plugins that need review due to the changes made to our plugin API. We WON'T release the new i-MSCP version till all plugins are not ready for new release because our customers/partners expect from us to provide a working plugin version for each new i-MSCP versions... We have a todo list, even though, some of the listed tasks will be postponed to next minor version (such as the Multi Servers layer) see below.... Thank you for your understanding...


    He need first go to admin level (settings interface) and change the settings to allow default accounts edition. Once done, he can change the default accounts as you said ;)

    Good morning,


    First, don't worry, it practicable... The thing is, what is the content of your InstantSSH plugin configuration file? Please show us your current configuration file (don't forget to make use of bbcode tags).


    Basically put, the various files are copied when the jails are built. So here, if you change something in the InstantSSH plugin configuration file, that is, if you add a new section, you must not forget to trigger a plugin list update to schedule a change (reconfiguration) of the plugin. On change, the jails will be rebuilt, taking into account the new section but, adding a new section is not sufficient... You need enable it and that why I ask you to post the current content of your configuration file.


    Another things to take into consideration, is the fact that sometime, you also need to copy dependencies (shared libraries)... The self-compiled PHP versions rely on several shared libraries, which you need to determine.


    TheCry If I remember well, you did such thing in the past with the InstantSSH plugin. Maybe you could help here.

    How do I activate this DDOS protection in the isp

    Not all ISP provide that feature, and when they do, that option is really expensive.


    BTW: When I say, ISP, I mean "you internet service provider (or server provider if you prefer).

    But sessions are created every 2 seconds

    If the session ID are different, this can mean that your're victime of a DDOS attack, or that your site has a very high load (which I doubt). Nothing to do with i-MSCP. You're responsible to mitigate such thing yourself, either with the help of fail2ban (with proper configuration for such purpose), either by using a DDOS protection as provided by your ISP (if any)


    Google is your best friend here, for instance: https://www.maketecheasier.com/fail2ban-protect-apache-ddos/


    BTW: What's the PHP version set for that site, one from the PhpSwitcher plugin or the system default?



    Fully delete it and re-create it with correct ownership and permissions. You need first remove the immutable bit on the parent directory if any.


    Shell-Script
    1. chattr -i /var/www/virtual/meindomain
    2. rm -r /var/www/virtual/meindomain/phptmp
    3. mkdir /var/www/virtual/meindomain/phptmp
    4. chown vuxxx:vuxxx /var/www/virtual/meindomain/phptmp
    5. chmod 0750 /var/www/virtual/meindomain/phptmp
    6. chattr +i /var/www/virtual/meindomain


    Normally, sessions are automatically removed by PHP. It is a low traffic site?