Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/30/2017 in all areas

  1. Turn your Blesta Knowledgebase into a **VIDEO Knowledgebase** with hundreds of our ready-made videos articles! You can now import all our video support tutorials into your Blesta Knowledgebase in just a few clicksThe new Video Knowledgebase has been developed as a turn-key solution to getting our video tutorials into your searchable knowledgebase. No longer do we just provide a video tutorial rebranding service for web hosts... we now provide web hosts with a complete solution to populate their knowledgebase with hosting-related, video-based articles. All video tutorials in the knowledgebase will be branded with your company logo, or animated logo/intro if you choose that option. Video-based articles on the topics hosting customers need help withDemoWolf produces video support tutorials for web hosting customers. Web hosting companies put DemoWolf video tutorials on their websites... often times in their customer support or knowledgebase section. Their customers will then see the video tutorials when they are searching for the help they need. DemoWolf has produced video tutorials that help hosting companies provide better support to their customers. Topics covered include: * cPanel Paper Lantern End User series (28 videos) * cPanel Paper Lantern Email series (17 videos) * cPanel Paper Lantern MySQL series (11 videos) * cPanel x3 skin End User series (28 videos) * cPanel x3 skin Email series (17 videos) * cPanel x3 skin MySQL series (11 videos) * Plesk Onyx End User series (27 videos) * Plesk Email series (13 videos) * Plesk File Manager series (13 videos) * WordPress series (12 videos) * SmarterMail series (16 videos) * Horde Email series (11 videos) * RoundCube Email series (9 videos) * SquirrelMail series (10 videos) * Thuderbird series (8 videos) * IncrediMail series (8 videos) * Opera Mail series (8 videos) * DreamMail series (8 videos) * Pegasus Mail series (8 videos) * iPhone email series (8 videos) * iPad email series (8 videos) * Apple (Mac) Mail series (8 videos) * Updating DNS at popular registrars series (17 videos) * Creating Private Nameservers at popular registrars series (15 videos) * FileZilla series (10 videos) * WHMCS Setup series (13 videos) * Blesta Admin series (20 videos) * PuTTY series (12 videos) * FTP series (24 videos) * Direct Admin end user series (26 videos) * Facebook series (11 videos) * Drupal series (14 videos) You must be a DemoWolf member for the videos to work - and we offer a FREE membership Plan. Visit demowolf.com to get your FREE Membership Plan Every knowledgebase article has video and text instructions Every Video Knowledgebase article will have a video at the top, followed by the text instructions of the tutorial written below the video... creating a fully functioning and searchable knowledgebase with hundreds of video-text articles. The videos themselves are 100% responsive, so will size themselves according to the container of your knowledgebase. It will work no matter what template or theme you use. Instructions - Only takes a few minutes * Step 1 – Go to www.demowolf.com, login to your Member Area. * Step 2 – Download the Video Knowledgebase files for the video series(s) you want. Note: There is 1 .SQL file for each series. * Step 3 – Login to phpMyAdmin and select your Blesta database (i.e. yourdomain_blesta) * Step 4 – In phpMyAdmin, click "Import" in the top menu, then "Choose File". * Step 5 – Select the .SQL file for the series you want to import, then click "Go". * Step 6 – Repeat step 5 for each video series you want in your knowledgebase. Done! Now when your clients go to your knowledgebase, they’ll see categories for video tutorial series you imported, and within those categories will be articles containing all your new video tutorials as well as the text instructions... all completely searchable from your knowledgebase system! We will also help with installation of the Video Knowledgebase files upon request. If you have any questions, just let me know Rob Moore DemoWolf.com - founder
    1 point
  2. I finally found a solution, I re-installed the VPS with CentOS 6 (originally I deployed Debian 9) and I used the following rules: Now, I can access my server from the internet.
    1 point
  3. I have made a look at the priicng tables, and i found your idea is totally can be the fix for the multi pricing system gird , from database `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `package_id` int(10) unsigned NOT NULL, `term` smallint(5) unsigned NOT NULL DEFAULT '1', `period` enum('day','week','month','year','onetime') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'month', `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `setup_fee` decimal(12,4) NOT NULL DEFAULT '0.0000', `cancel_fee` decimal(12,4) NOT NULL DEFAULT '0.0000', `currency` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'USD', it can be altered to become something like `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `package_id` int(10) unsigned NOT NULL, `term` smallint(5) unsigned NOT NULL DEFAULT '1', `period` enum('day','week','month','year','onetime') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'month', `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `setup_fee` decimal(12,4) NOT NULL DEFAULT '0.0000', `cancel_fee` decimal(12,4) NOT NULL DEFAULT '0.0000', `renew_price` decimal(12,4) DEFAULT NULL, `transfer_price` decimal(12,4) DEFAULT NULL, `currency` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'USD', this way we can conserve the same package system and module system, it will need only some small adjustement in the service invoicing, we should include the added prices in the fucntion get getPricingInfo() and PackageOptions->getValuePricingById() not sure if others exist , the function getLinesForServices() is is already has services_renew as parameter and we can use it to determinate which pricing we should use, i think the below code line should be converted to a conditional statement to check if is services_renew = true or not : $line_item_amount = (isset($pricing_info->price) ? $pricing_info->price : $service->price); to be something like $line_item_amount = ($services_renew && isset($pricing_info->renew_price) ? $pricing_info->renew_price : isset($pricing_info->price) ? $pricing_info->price : $service->price ); this is a simple approach to accomplish the pricing schema module . i think we need to divide the work in steps. 1 - Complete Multi Pricing System (Activation, Renew, Transfer, Setup, Cancel) 2 - Update order plugin to set Transfer price instead of price in domain transfer 3 - Create a Complete Hosting Order Form 4 - Update Registrar Modules to have more tabs management (DNS, Domain forwarding, Email Forwarding)
    1 point
  4. 1 point
×
×
  • Create New...