-
Posts
6,719 -
Joined
-
Last visited
-
Days Won
841
Everything posted by Paul
-
Check that your temp directory is set properly under Settings > System > General. If Blesta can't temporarily write the invoice PDF to disk, it may not be able to send the email.
-
Unfortunately it didn't make it into this release.
-
I discovered the issue. A trial had already been issued in the past. When a trial has already been issued for the same domain, the original trial key is returned from our license server. This is to prevent perpetual use by trial licenses. So, I manually created a new trial key and it appears to be working. Please check your email from the login details.
-
Is the server load balanced with multiple IP addresses or behind a proxy? If so, that could be the reason. Also make sure that port 443 egress is open and curl-ssl is in your PHP.
-
Is this what you mean by WHMReseller? http://deasoft.com/whmreseller.php .. or, just a reseller account through WHM?
-
Did you take a look at the ticket system changes we made?
-
It should be in 3.3 which is invoice/payment related in theme.
-
That's the way to do it for getting BCC's on any system emails. Also check out Billing > Overview, click the cog/gear icon for the orders widget. Here you can set your email and mobile email notification preferences for new orders.
-
It's 2087 secure, and 2086 no ssl. You shouldn't use 2083, as that's for cPanel not WHM. If it's still not working, check your firewall. If it's still not working.. Can you post a screenshot of your module configuration, or PM it to me? You can mask the API key.
-
You use Interworx though, I think I heard Interworx uses LFD out of the box, is that right? I imagine you can install CSF on there if you want, but there's no integration into Interworx.
-
If all goes well, that will probably be tomorrow afternoon.
-
CORE-647, already part of 3.2. You can test it out in the beta. This applies to addon services only, not configurable options. Manage service, click Addons (Only exist if there are addons for this package group), then "Add Addon" button. It takes the client through the process of creating the addon, and to payment. The addon is "pending" until payment is made, and then the cron will activate it.
-
The domain plugin belongs to CORE-818. I've added a note to the task regarding domain privacy. The plugin would likely give the client the ability to disable and re-enable privacy protection as is often necessary (when purchasing an SSL certificate that requires verification for example). The price and ability to purchase the privacy protection would likely be set up through a configurable option, and the module / plugin would provision it automatically.
-
I'm hoping Cody can get back to OpenSRS after we get 3.2 out there. It's always all hands on deck leading up to a new release. I'll be fully spec'ing out the affiliate system plugin soon so it can move on to development.
-
Just Can't Stay Out Of This Forum! (Interworx Issue)
Paul replied to hostingboss's question in Support
Modules can add additional management features on that page, but not all do. If you want to see some specific features for Interworx, please start a thread in the Feature Requests section with details. We are planning to add some extended features to Interworx, but your feedback and specifics on what features you'd like to see will help drive development. -
I made a note regarding invoices being changed in the task when I created it, and it's something we will consider. However, I think proforma invoices once implemented (In CORE-497) will solve any concerns about invoice amounts & payments changing after they are created. If proforma is enabled, a proforma invoice will be issued. Paying the proforma invoice will generate and pay a typical invoice. Combined with CORE-923, you can be pretty sure invoices will not change at all once they are created.
-
Yes, soon. You will have time to integrate your design before final release. lol, I would be ok with that too, unfortunately the office is empty. It's looking like Wednesday-ish. We're going to take Monday & Tuesday to polish some things up and finish some small remaining tasks. If nothing big comes up then we should stay on target for a mid-week beta release.
-
bootstrap slider for jQuery is used. http://www.eyecon.ro/bootstrap-slider/
-
I've assigned this to CORE-1149 so we can take a closer look. I did notice that for Italy they were not listed alphabetically. There might be a reason for this, or they might just simply not be sorted by name.
-
Yep, you can link directly to a specific item on the order form. Mike's right, it will just make the item pre-selected on the order form though, at least for the ajax one. I have to check, but for the wizard type, you may be able to link to the 2nd page where you configure a specific item. If so, this would bypass the package selector and go straight to configuration which may be preferable. The new "default" order template in 3.2 will be Wizard Boxes, I think it's likely to be the most used order form.
-
Can you provide an example/screenshot? The states appear to be ordered alphabetically to me.
-
I have assigned this to CORE-1148
-
Not yet. A mass mailer plugin is planned as part of CORE-621. There's a good chance it will be included with version 3.3.
-
There must be an error someplace, try the following -- Turn on error reporting. To enable error reporting, edit /config/blesta.php and change Configure::errorReporting(0); to Configure::errorReporting(-1); Then open /plugins/import_managers/components/migrators/blesta/2.5/blesta2_5.php and change (lines 199-201 Note! Line #'s may be a little different): //echo $e->getMessage(); //echo $e->getTraceAsString(); //continue; to: echo $e->getMessage(); echo $e->getTraceAsString(); die; And then let us know if you get any errors. There may be something that's hanging these up from being imported that's different than anything we've encountered yet. Knowing why the import failed will help determine the fix.