Jump to content

mrj

Members
  • Posts

    303
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by mrj

  1. 28 minutes ago, wolstech said:

    Your home folder is /home/mrj.heliohost.us on Plesk (Plesk uses your main domain as your home folder's name, silly design but it is what it is).

    As for changing open_basedir, I recall someone else asked this and I think the response was that we can't do this because it posed a security risk. I'll escalate it to Krydos to confirm though.

    Okay, thank you. It was not a problem in cpanel. But it became a problem in plesk.

  2. Hello,

    I donated a small amount of BTC worth ($2.5) at the time of donation. I know It's nothing compared to the services you provide us for free. But I wanted to help as little as possible. Please move me up in list of plesk ETA if possible. 

    Transaction ID:

    391a94d6a9b783976df5abfd56539faf15990f2012f424d61f1f20241d1c5514

    Thanks. Have a good day.

  3. Hello there,

    I wanted to make a small donation. But I don't have paypal, also our country isn’t supported by paypal. So I wanted to make the donation via cryptocurrency if that is possible. So if crypto donating is supported, please provide me the address. Thank you. 

  4. Hi,

    I am using following function to get online users count. But it appears that there is no permission for reading content of that dir. Can you help me please?

    Server: tommy

    function onlineUsers() {
            $i = 0;
            $path = session_save_path();
            if (trim($path)=="") {
                return FALSE;
            }
            $d = dir($path);
            while (false !== ($entry = $d->read())) {
                if ($entry!="." and $entry!="..") {
                    if (time()- filemtime($path."/$entry") < 1 * 60) {
                        $i++;
                    }
                }
            }
            $d->close();
            return $i;
    }
    
    
×
×
  • Create New...