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 /
EventBundle /
Command /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
MailChimpCombinedCommand.php
1.4
KB
-rwxrwxr-x
2026-04-02 12:06
MailChimpCommand.php
1.34
KB
-rwxrwxr-x
2026-04-02 12:06
MailChimpSCECommand.php
1.33
KB
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
997
B
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\EventBundle\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use App\CoreBundle\Services\ServiceGetterManager; /** * Mail Chimp Command * * @author Otto Saayman <otto@igotafrica.com> * @package EventBundle * @subpackage Controller * @version 0.0.1 */ class MailChimpCombinedCommand extends Command { private $serviceGetterManager; public function __construct(ServiceGetterManager $serviceGetterManager) { $this->serviceGetterManager = $serviceGetterManager; parent::__construct(); } protected function configure() { $this ->setName('combined_attendee:mc_synch') ->setDescription('Synch school and marketing attendee data to MailChimp') ; } protected function execute(InputInterface $input, OutputInterface $output) { $output->writeln('Combined MailChimp Synch Starting...'); $_SERVER["HTTP_HOST"] = 'v3.cesa.co.za'; // $_SERVER['DOCUMENT_ROOT'] = '/usr/www/users/saacea/v3.cesa.co.za'; $marketingAttendeeManager = $this->serviceGetterManager->get('marketing_attendee.manager'); $marketingAttendeeManager->mailChimpSynchCombined(); $output->writeln('Combined MailChimp Synch Complete'); return Command::SUCCESS; } }