Jump to content

century1stop

Members
  • Posts

    42
  • Joined

  • Last visited

Posts posted by century1stop

  1. 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?

     

    domain name whois lookup with ordering system, secured files, testing of site in all areas, auto backup ofsite, ongoing support

  2. 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

  3. thanks, worked like a charm :)

     

     

    I just noticed that naja7host's example of attaching the target to Form::fieldImage is not where you would want to place it.

     

    As you've mentioned, a POST request occurs, and any target attributes on links will not have the desired effect.

     

    You want to set the target on the form itself:

    $this->Form->create($post_to, array('target' => '_blank'));
    
  4. 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

     

    Your syntax is invalid. You have extra parentheses after $button_url and before 'target'. Try removing those.

     

    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?

  5. 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")
    );

     

     

    something like this con do the job

    $this->Form->fieldImage("submit", $this->_("PaypalPaymentsStandard.buildprocess.submit", true),
         array('src' => $button_url,'target' => "_blank")
    );
  6. 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.

  7. 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

  8. 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...