
z-hoster
- Total activity 12
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
Activity overview
Latest activity by z-hoster-
z-hoster created a post,
Using the linux screen command with php
Hey guys! I have a world of warcraft private server hosted on my server and i use the linux screen command to stop/start/restart the server. I would like to make a php module on my website that wou...
-
z-hoster commented,
Thanks for you help. I am doing this for a client that asked to have control on his backups from his administration panel. I got the directory secured with htaccess and i know i can trust the clien...
-
z-hoster created a post,
Restoring cpanel full backup using PHP
Hey guys i have this code that works greate to create a full backup [php]$xmlapi = new xmlapi($_CONFIG['server">['ip">); $xmlapi->password_auth($_CONFIG['server">['account">,$_CONFIG['server">['pa...
-
z-hoster commented,
It worked. The SSL message i had when trying to log in with root was because the root user does not have a cpanel account. And the access denied i had was because of the port number. Thanks a lot f...
-
z-hoster commented,
I just noticed that it works with my root user/password ... is it normal that normal users don't have access to the API? When i tryed with the root info i got an other error: Fatal error: Uncaugh...
-
z-hoster commented,
Your right :-) no more error ... but nothing is showing ... how can i retrive the stats i requested to the API? My code looks like this so fare $ip = '**.**.**.**'; $root_pass = '***'; $account =...
-
z-hoster commented,
Yeah thats what i thought but i tryed both ... giving the IP $ip = getenv('**.**.**.**'); and the var like this: $ip = getenv($_SERVER['HTTP_HOST">); both of them return the same error ... btw...
-
z-hoster commented,
Hmm i get an error ... $ip = getenv('**.**.**.**'); $root_pass = getenv('***'); $account = "***"; $xmlapi = new xmlapi($ip); $xmlapi->password_auth($account,$root_pass); $xmlapi->set_debug(1); $...
-
z-hoster commented,
How do you transform
-
z-hoster created a post,
Need help in retreving account stats
Hey guys i would like to retreive the hosting stats for a giving username/password on my server. The exact info that we have in the cpanel left side would be greate. Does anybody have a code that ...