-
Posts
6,714 -
Joined
-
Last visited
-
Days Won
841
Everything posted by Paul
-
Did we also update the importer for the next release?
-
Fresh Installation on another server at same domain
Paul replied to WinsomeHost's question in Support
domaingood is right, but it's worth noting that you can only have 1 installation active at a time unless you are going to buy another license. If you re-issue and install elsewhere, then the previous install will no longer work. -
From the docs, after you upload a new version of Blesta you must run /admin/upgrade in order to run any database migrations. The error you received indicates that either this was not done, or it did not complete successfully. So, if you did not run /admin/upgrade, then the white screen you got is expected. Please run /admin/upgrade to upgrade your database to the new release.
-
Did you already run /admin/upgrade after uploading 4.9.0? The plugin_events.enabled column is added in Blesta 4.9, but it looks like you don't have it.
-
I would recommend looking at Transactions add() http://source-docs.blesta.com/class-Transactions.html to record a payment via the API. This will not process using a gateway, only create a transaction. Use apply() if you want to apply that transaction to a specific invoice/invoices.
-
Beta should be soon, probably next couple weeks.
-
Download the zip file from https://www.blesta.com and unzip it. Module are under /components/modules/.
-
If you have an SMTP server for your domain, you can use that. If not, services like Mailgun will work. You may want to update all your email templates under Settings > Company > Emails so that they are addresses @yourdomain.com whatever that is, rather than a subdomain. Blesta auto detects on install based on your domain, if it's a sub-domain then usually it must be updated. For importing emails into tickets, most use IMAP as the option for email handling. Piping will only work if your MX record goes to the same server you are running Blesta on and can create a forwarder to pipe email to an application (Blesta). IMAP and POP can check external mail servers and import mail from there.
-
I'm not sure I understand what you're asking. CORE-3573 has been completed for 4.10, which allows for searching the reference_id column for transactions, which contains the PayPal payer's email address. But it sounds like you want the ability to ban users based on PayPal account or IP address? That sounds like a different feature entirely. You can make an official request at https://requests.blesta.com
-
You may not have unpacked it correctly. Check that you don't have a /components/modules/namesilo/namesilo/ directory. The contents of the namesilo directory from the zip file should be in /components/module/namesilo/
-
500 errors are generally server-side and can happen for any number of reasons, the most common being incorrectly installed ioncube loaders. If the .htaccess file is missing, you should re-upload it. You might consider re-uploading Blesta entirely (after making a backup) to make sure no other files are missing. Check the logs ../logs_blesta/ defined under Settings > System > General to see if there are any errors being logged. Also ensure that your log files are all owned by the same user and have write permissions. Your cron should run as the same user as Apache. If you are executing your cron using wget, GET, lynx, etc as a web request then it should be, but this is not the preferred way to execute the cron.
-
I don't see a problem necessarily with your code, it's just checking if it's Saturday or Sunday (6 or 7), and not executing the code to generate invoices. Personally I would have made Sunday 1 and not Monday as Sunday is actually the first day of the week, but I digress. Maybe @Jono has something to add.
-
What version of Blesta did you do that with? Are you trying to prevent the generation of invoice, or only email delivery? You edited the /app/controllers/cron.php file? Can you provide a snipped from the file showing your change and a few lines above/below? Out of curiosity, why no weekends?
-
The error seems to indicate a CSV import, were you trying only to import your clients and no other data like services, invoices, etc? Here's the docs for the CSV importer https://docs.blesta.com/display/user/CSV Check your CSV file to make sure none of the required fields are missing for any of your clients.
-
[Module] Internet.bs Domain Registrar Module - R/c 1.0.4
Paul replied to PauloV's topic in The Marketplace
I would guess that it works, but the best way to find out is to give it a try. If you need a trial key and already had one let me know via PM and I can get you one. -
Looks like you figured it out before anyone had a chance to look into it. Glad to hear it's working now!
-
Do you see any reason we shouldn't search those fields in a transaction search? I know we added the reference_id after the search was originally written, but it's a field we should probably be searching.
-
Did you import into a fresh install of Blesta? It looks like some of the data being imported may be missing. Did any clients get imported?
-
We recommend using this version, it will be shipping with Blesta 4.10 https://github.com/blesta/module-namesilo
-
Welcome back! I'm not aware of any issues with the module, the official Logicboxes module works fine and we didn't make any changes to the core that should have broken 3rd party modules.
-
We do store the PayPal Payer email for the transaction now I believe, would a transaction search pull that up @Jono
-
Make sure you're editing /app/views/client/bootstrap/structure.pdt for the client area and front facing pages. If you've installed a custom template, then you may need to replace the part of the path including "bootstrap" with the name of your template. Also check that you are not entering the code in the middle of a conditional, which would only be displayed during certain conditions.
-
Version 4.9.0 is now available, please see the release announcement. Patching Blesta See Patching Blesta in the User Manual for instructions. Installing Blesta See Installing Blesta in the User Manual for instructions. Upgrading Blesta See Upgrading Blesta in the User Manual for instructions. Migrating to Blesta See Migrating to Blesta in the User Manual for instructions. Release Notes See Blesta Core - Version 4.9.0. For older releases see all Change Logs.
-
Each order form is unique and packages cannot be ordered from multiple order forms at the same time. Most people only need a single order form, and add all of the Package Groups they want to sell through it. Most of your questions are vague. Yes you can access the database through the record component, see https://docs.blesta.com/display/dev/Database+Access There are routes for pages, see https://docs.blesta.com/display/user/Configuration+Files#ConfigurationFiles-routes.php
-
Blesta version 4.9.0-b2 (BETA 2) is now available. You can download it from right here (Client Area Login Required). Read the blog post announcement at https://www.blesta.com/2020/03/31/blesta-4.9-beta-released/ This is a BETA release. Beta releases are not considered stable enough for production use, and are UNSUPPORTED. DO NOT INSTALL IN A PRODUCTION ENVIRONMENT. Please report any bugs you find in the v4.9 beta bug forum. Installing Blesta See Installing Blesta in the User Manual for instructions. Upgrading Blesta See Upgrading Blesta in the User Manual for instructions. Release Notes See Blesta Core - Version 4.9.0. For older releases see all Change Logs.