-
Posts
9,522 -
Joined
-
Last visited
-
Days Won
186
Everything posted by Michael
-
I tried but failed if you can find a way around this with: <?php if ($this->Html->ifSet($logged_in)) { ?> <?php } ?>
-
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));?>
-
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)
-
Amazing plugin mate
- 45 replies
-
- multi languages
- languages
-
(and 1 more)
Tagged with:
-
Correct when the next monthly invoice is due he will be billed the yearly plan for the year.
-
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.
-
Yeah its a pain sometimes you could use the fraud record fraud checker, I've found that more effective.
-
Would you two like it merged into the main market thread?
-
Sorry I'm not sure then best to wait for Timothy it could be a issue or a license key issue?
-
Sorry I mean the folder as-well.
-
Have you looked inside SpectroCoin? is there any files modules are normally all lowercase.
-
Have you uploaded the files from Cubedata to the /components/modules/ folder?
-
Also check to ensure thats not the whmcs one mate
-
Top one it's so if that link is used it re-directs.
-
That's weird :s @Paul
-
not atm it probably can be, but you'd have to export from the mass mailer and then do it manually.
-
The PHP Mailparse PECL extension is required for parsing email tickets.
Michael replied to Serverhosh's question in Support
https://serveradminz.wordpress.com/2014/03/21/install-mailparse-extension-cpanel/ -
The PHP Mailparse PECL extension is required for parsing email tickets.
Michael replied to Serverhosh's question in Support
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. -
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.
-
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); } }
-
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.
-
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.
-
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.”; ?>
-
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?