Jump to content

Michael

Moderators
  • Posts

    9,522
  • Joined

  • Last visited

  • Days Won

    186

Everything posted by Michael

  1. I tried but failed if you can find a way around this with: <?php if ($this->Html->ifSet($logged_in)) { ?> <?php } ?>
  2. Try this mate: <?php if (strpos($_SERVER['REQUEST_URI'], "client") || strpos($_SERVER['REQUEST_URI'], "order") !== false){ $today_date = date('Y-m-d H:i:s'); if($client->date_added == $today_date){ echo "Welcome "; echo $client->first_name; echo "..."; }else{ echo "Welcome back "; echo $client->first_name; echo "!"; } }else{ echo ($this->Html->ifSet($title) ? $this->Html->_($title, true) : $this->_("AppController.client_structure.default_title", true)); } ?> remember you are replacing: <?php echo ($this->Html->ifSet($title) ? $this->Html->_($title, true) : $this->_("AppController.client_structure.default_title", true));?>
  3. It does work on v4 mate sorry about that article is for our cms customers haha Search for: $this->Html->ifSet($title) ? $this->Html->_($title, true) : $this->_("AppController.client_structure.default_title", true)
  4. Correct when the next monthly invoice is due he will be billed the yearly plan for the year.
  5. It's a third party addon from cubedata.net, we use it as you can block orders with a order of say 1 or 10 on fraudrecord and because you can block VPNs as we had some kid spamming our system.
  6. Yeah its a pain sometimes you could use the fraud record fraud checker, I've found that more effective.
  7. Would you two like it merged into the main market thread?
  8. Sorry I'm not sure then best to wait for Timothy it could be a issue or a license key issue?
  9. Sorry I mean the folder as-well.
  10. Have you looked inside SpectroCoin? is there any files modules are normally all lowercase.
  11. Have you uploaded the files from Cubedata to the /components/modules/ folder?
  12. Michael

    Importing ClientExec

    Also check to ensure thats not the whmcs one mate
  13. Michael

    Importing ClientExec

    Top one it's so if that link is used it re-directs.
  14. That's weird :s @Paul
  15. not atm it probably can be, but you'd have to export from the mass mailer and then do it manually.
  16. https://serveradminz.wordpress.com/2014/03/21/install-mailparse-extension-cpanel/
  17. You need to run EasyApache4 and install the php-mailparse functions for php 7, etc. And then you have to install the PECL extension for mailparse which used to be under the Perl section on WHM but I believe they've moved it or changed it.
  18. You have to have real email addresses so like mlsto@domain.com and domains have to be domain.com or something, as it checks the email's domain to ensure it's legit.
  19. Ah the guys haven't changed it and I assume there's a way to check the job and cut it up: /public_html/plugins/mass_mailer/Cron/Email.php /** * Sends mass emails for all jobs */ public function run() { // Retrieve all email jobs that are in progress or ready to run $jobs = $this->MassMailerJobs->getAll('email', ['pending', 'in_progress']); // Build the export foreach ($jobs as $job) { // The job must have an email to send, otherwise there is nothing // we can do but mark it complete if (!($email = $this->MassMailerEmails->getByJob($job->id))) { $this->completeJob($job->id); continue; } // Mark this job as now in progress if ($job->status === 'pending') { $this->MassMailerJobs->edit($job->id, ['status' => 'in_progress']); } // Send an email for each task in the job while (($task = $this->MassMailerTasks->getByJob($job->id))) { // Send the email $this->MassMailerEmails->send($task, $email); // Delete the task $this->MassMailerTasks->delete($task->id); } $this->completeJob($job->id); } }
  20. I could be wrong but I've never had issues when I've sent mails and it went up in 30's when I sent 287 due to my email issues.
  21. It sends about maximum of 30 every 5 minutes I believe with the cron job, so if the server goes down it knows where it was.
  22. Do you have a video mate, if you are using PHP mail it shouldn't have a configuration error. You can try: <?php $to = “your@emailaddress.here“; // <– replace with your address here $subject = “Test mail”; $message = “Hello! This is a simple test email message.”; $from = “sender@emailaddress.here“; $headers = “From:” . $from; mail($to,$subject,$message,$headers); echo “Mail Sent.”; ?>
  23. they make you promise you aren't in the USA haha are they scared about the US? or would a UK address / ip work mate?
×
×
  • Create New...