Jump to content

century1stop

Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by century1stop

  1. thanks for the tip, I'll look into that but speaking for myself, I'll want to customize everything if things work out, I'll get the license manager's package
  2. problem is, even index.php need customization (premium full site templates, ecommerce / site cms, etc.), else they'll be useless for clients
  3. Thanks, thought so too. Well, it's free software for clients and I just do not want 'em used elsewhere, plus they can't be encoded since customization needed. Now I've 1 big bundle of software not sure how to distribute
  4. Hello, If I do not encode the software, what's stopping clients from removing code snippets? Is there a way to overcome this? Thanks
  5. 5 minutes is quite standard for most billing apps
  6. you'll probably need to highlight which plugin and what task, give more details
  7. from your response I gather you are looking at the following, 1. cPanel server setup, complete including Easyapache, php, security, dns and email. 2. Blesta setup and system configuration. 3. For auto off site backup you will first need to provide a backup server, unless you want it included with the management service. 4. Job deemed complete after you find above in good work order. Is above what you are looking for?
  8. May I know what else you need fixed?
  9. Login to your cPanel UI, Go to "Advanced" --> "Cron jobs" --> "Add New Cron Job" Add below as a new cron job */5 * * * * /usr/bin/php /absolute/path/to/blesta/index.php cron <--------Steps to adding cron job if needed ---------> Choose every 5 minutes in the drop down menu Under "command" add /usr/bin/php /absolute/path/to/blesta/index.php cron then save
  10. thanks but I've done this too $this->Form->fieldImage("submit", $this->_("PaypalPaymentsStandard.buildprocess.submit", true), array('src' => $button_url, 'target' => "_blank") ); and it stays on the page EDIT: Correct me if I'm wrong but this seems to be the image ref <img src="paypal_image" alt="pay with paypal"> so if say the code <img src="paypal_image" alt="pay with paypal" onclick="new.window('$post_to')">, is run, new window will open with a wrong reference. At the same time, original window will go to correct paypal_url as defined in $post_to In other words, the line ==> array('src' => $button_url, with 'target' => "_blank") will not do anything So if I want a new window during the POST operation, it'll have to be at the point where "FORM" is submitted. May I know which section the target attribute can be included?
  11. thanks but it stays on the page below breaks the code $this->Form->fieldImage("submit", $this->_("PaypalPaymentsStandard.buildprocess.submit", true), array('src' => $button_url), ('target' => "_blank") );
  12. Thank you, found it. Sorry but how do I go bout it? Looks to me like it's part of another process only
  13. I see, but there are quite a no. of sites that do it Thanks
  14. oh no, definitely not good enough to develop, just trying to modify the standard PayPal gateway
  15. Good day, Is it possible to open a new window when payment button is activated? something like adding target="_blank" with ahref. If possible, may I know where this can be done? Thank you.
  16. Blesta ver 3.5, Solus ver 3.2.0 and "Queue Service Changes Until Paid" is enabled. Where can I find errors? Module provision is okay.
  17. Hello, There seem to be a problem with service upgrade for kvm packages, SolusVM module. This is the scenario, 1. Package renewed a couple of days back. Next renew is 09/20. 2. Client just requested upgrade, invoice paid and approved/applied. 3. This is what I get under "manage" service This service has pending changes. Updating this service to upgrade or downgrade any of its values will cause the current pending changes to be canceled. 4. Cron job ran automatically and manually w/o successfully upgrading. 5. Only i user group May I know what can be done? Thank you.
  18. would array_merge not mix OpenVZ/KVM/Xen templates? if not, may I know how the code should go? sorry not good at coding, thanks. EDIT May I know which file from Blesta 3.4 can be used to fix this issue?
  19. Nope, don't work $templates = $this->csvToArray($response->templates); this line blocked out $templates = $this->csvToArray($response->templateskvm);. I figure the issue lies in either order form or packages section but no idea what to look for
  20. Hello, Sorry for opening a new topic on this issue, but the one in "bugs" section seems to be locked. I've actually change templates to templateskvm in solusvm.php (below) // Return the templates if ($response && $response->status == "success") { // Fetch the templates $templates = $this->csvToArray($response->templateskvm); $formatted_templates = array(); foreach ($templates as $template) { // Skip the none template if ($template == "--none--") { continue; } so templates work for KVM but OpenVZ now have that problem, templates not showing. Is there any way to rectify this issue for both KVM and OpenVZ? (plus Xen too of course) Thanks
×
×
  • Create New...