Getting Started Guide for Subscribers

Thank you for signing up for a DemoWolf subscription! We’ve gone to great lengths to make the setup process as painless as possible. A quick read through the guide that follows should answer most of the questions you may have.

Whenever you need to make a change to your subscription, you’ll do that in the My Subscriptions section of our Client Area. If we haven’t activated your subscription, you won’t be able to generate your tutorials yet, but you will be able to do everything else.

1) What does “generate” mean?
We will frequently refer to the word generate. This refers to the process of branding the beginning and ending frames of the tutorial files with your logo. As a subscriber, you can generate your tutorials an unlimited number of times, but only the latest copy of the files will be available for display in your subscription.

2) Upload a Logo
Before you can generate your demos, you must upload a logo. Under Subscriptions you’ll notice a red link next to Choose a Logo that states No Logos Uploaded. Click that link. You will be taken to the Add a Logo page. Browse for a logo image on your hard drive. Submit the page, then return to My Subscriptions. You can now use the Choose a Logo feature to assign the logo you just uploaded to your subscription.

3) Choose Your Tutorials
Now it’s time to choose which tutorials you’d like to display. Click the View/Edit Series Selection link. You should see a list of ALL of DemoWolf’s tutorial series, and each one has a checkbox next to it. You’ll need to tick the checkboxes next to each of the series you want, then scroll down and hit Submit. Once you’ve submitted the form, you will see a screen confirming which tutorials you’ve selected; if you see any that you mistakenly chose, tick the Exclude checkbox next to a series and it will be removed from your selection. NOTE – Your selection will not be saved until you hit Submit one more time on this confirmation page.

Some things to remember when editing your Series Selection:

  1. Be sure to take note of how many series you’re allowed, and whether you can have voice versions or not.
  2. If you’d like the Voice versions of all the demos, deselect Non-Voice at the top of the page and then select the Voice checkbox next to it.
  3. If you want to mix and match Voice and Non-Voice and Non-English tutorials, click the + next to a series’ title.
  4. When you return to edit your Selection later, you’ll be sent to the confirmation screen first. Click the Modify Selection button to get back to the full series list.

4) Time to Generate!
As soon as you submit the confirmation page, you’ll receive a notice that your “selection has been saved to the database”. Beneath that are buttons that will let you generate your tutorials: Generate Entire Subscription will generate everything you’ve picked, and Generate New Demos Only can save a lot of time if you’ve just added a single new series to your list. (Both of these links are also available on the My Subscriptions page.)

Since you’re just starting out, choose the first one and generate the entire subscription. On the next screen, click Proceed. Your generation request will now be placed in a queue. As soon as any existing generation jobs complete, yours will begin. You will receive status updates, eventually ending with the words Rebrand Complete (that’s how you know the generation process has finished). While you’re waiting, you can go ahead and move on to the next step: setting up your Tutorial Viewer.

5) What is the Tutorial Viewer?
Our subscription system is based around a PHP script called the Tutorial Viewer. The main requirement to run the Tutorial Viewer script is that you have PHP 5.2 or higher installed on your server. Don’t want to mess with setting up the Tutorial Viewer or integrating the script yourself? Our Integration Service has you covered!

You can download the script from the My Subscriptions page by clicking the Download Tutorial Viewer link. Extract this ZIP file, and upload all the files it contains to a NEW folder on your server (you could call it viewer/, or whatever you like).

Now, access the Tutorial Viewer directory in your browser (for example, http://www.yourdomain.com/viewer/). Assuming your tutorials have finished generating, you should see a list of all the tutorials you just selected.

The script will attempt to auto-rename the includes/conf.new.php file to conf.php, but if this fails you will need to manually rename the file.

NOTE: If you notice any errors, you may need to CHMOD one file and one directory (likely because your server doesn’t use suPHP or PHPSuExec):

  • CHMOD the includes/conf.php file to 0666
  • CHMOD the cache/ directory to 0777

6) Customize your Display Options
Not happy with the default look of the Tutorial Viewer? There are a number of Display Options that change the layout of the tutorials, available to you via a subsection the My Subscriptions page. You’ll find a preview of all the different Display Options here. The Display Options form also lists Run Mode as an option; which one you should use depends upon how you plan to integrate our Viewer with your website (see the following section for details).

Any changes made to your subscription’s Display Options should take effect instantly on your live Tutorial Viewer. If they do not, please go to the Access Settings subsection and verify that the “Complete URL to request.php” corresponds to the location of request.php on your server (for example, http://www.yourdomain.com/viewer/request.php). Alternatively, you can manually delete the contents of the cache/ directory to the same effect.

7) Integrate with your website
You will probably also want to Integrate your Tutorial Viewer with your website. If you use WHMCS, Kayako, or WordPress, you’ll find guides detailing how to integrate with these scripts here, as well as a guide on how to integrate using basic PHP.

You can also approach the integration from a different direction and instead customize the templates/tutorials.tpl file, adding your site’s header and footer HTML, in which case you’d leave the viewer set to the Standalone run mode.

Any remaining questions? Please don’t hesitate to open a support ticket!

Posted in Instructions/Guides | Leave a comment

WordPress Integration GUIDE

WordPress Integration lets you embed our Tutorial Viewer script within WordPress, making it look just like any other part of your site. The Tutorial Viewer script is free for all DemoWolf customers, whether they subscribe to their tutorials or purchase them outright, and WordPress Integration is a part of that script.

This article assumes you have already downloaded and extracted the latest Tutorial Viewer ZIP file, available in the My Subscriptions and My Purchases section of our Client Area. If you have not yet configured or downloaded your Tutorial Viewer and need help getting started, please see this article.

You can have your tutorials up and running inside WordPress within minutes by following these simple steps:

  1. Upload all the Tutorial Viewer files to a new folder on your server. For the purpose of these instructions, we have WordPress installed in /blog/ and the Tutorial Viewer in /blog/viewer/
  2. On your local computer, find the Tutorial Viewer files and navigate to the resources/integration/wordpress/ folder.
    1. This folder contains only one file: dw-tutorials.php. There are two variables at the top of this file that you may need to edit: $uri_to_dw and $path_to_dw. If you have your Tutorial Viewer script uploaded anywhere other than a subdirectory of the WordPress directory called viewer/, you WILL need to customize both of these variables.
  3. After making any modifications to dw-tutorials.php, upload the file to the root directory of WordPress.
  4. Install and Activate the Shortcode Exec PHP plugin for WordPress (Plugins > Add New). This allows you to enter PHP code in your posts and pages.
  5. Go to Tools > Shortcode Exec PHP and scroll down to the Shortcodes section. Create a new Shortcode named demowolf and enter the following PHP code:

    extract(shortcode_atts(array('series' => '', 'demo' => ''), $atts));
    empty($_GET['series']) and $_GET['series'] = $series;
    empty($_GET['id']) and $_GET['id'] = $demo;

    if (!empty($_GET['id'])) {
    define('DEMO_MODE', true);
    }

    require "dw-tutorials.php";

  6. Create a new WordPress page to use for embedding the Tutorial Viewer (Pages > Add New). With the shortcode we created, you can easily display ALL your tutorials simply by typing [demowolf] in a WordPress page. To force a specific series to show up, you will first need to find the ID of the series (view your Series Selection on My Subscriptions or My Purchases in our Client Area if you need a list of IDs). For example, to show ONLY the cPanel series, use the following shortcode in a page: [demowolf series="289"]
  • To show ONLY a specific tutorial in the series, you can further specify the tutorial’s ID. For example: [demowolf series="289" demo="6356"].

That’s it! You now know how to integrate the Tutorial Viewer with WordPress!

Posted in Instructions/Guides | Leave a comment

Kayako 4 Integration GUIDE

Integration is for those of you that want the Tutorial Viewer to be integrated seamlessly with your helpdesk. You will essentially be wrapping your existing Kayako theme around the Tutorial Viewer. The Tutorial Viewer script is free for all DemoWolf customers, whether they subscribe to their tutorials or purchase them outright, and Kayako Integration is a part of that script.

This article assumes you have already downloaded and extracted the latest Tutorial Viewer ZIP file, available in the My Subscriptions and My Purchases section of our Client Area. If you have not yet configured or downloaded your Tutorial Viewer and need help getting started, please see this article.

You can have your tutorials up and running inside Kayako within minutes by following these simple steps:

  1. Upload all the Tutorial Viewer files to a new folder on your server. For the purpose of these instructions, we have Kayako installed in /kayako and the Tutorial Viewer in a subfolder of Kayako, /kayako/viewer/
  2. On your local computer, find the Tutorial Viewer files and navigate to the resources/integration/kayako4/ folder.
    • You’ll need to upload everything inside this folder to the root directory of your Kayako installation. If your Tutorial Viewer is anywhere except in a subfolder named “viewer/”, you WILL need to update two PHP variables in dw-tutorials.php: $path_to_dw and $uri_to_dw
  3. Go to your Kayako Admin Dashboard. In the Options menu at left, click Modules. You will see a new Module called Video Tutorials. Click its name, then click Install. This will create and enable a Video Tutorials widget, which you can control on the Widgets page. By default, the Widget will show up on your Kayako homepage and in the main menu.
    • Each widget has two icons, so you’ll need to upload some for your new Video Tutorials widget. We’ve provided you two possible icons in several different sizes and formats, on either a transparent or white background. You might want to use one of those, or feel free to use your own. See the resources/integration/icons/ folder. The Kayako 4 integration script requires that the icons be named icon_widget_tutorials.png and icon_widget_tutorials_small.png and be placed in your theme’s images/ path. For the default theme, you’ll want to use the 35×35 and 16×16 transparent PNG files.
  4. (Optional) You should add the following code to your Kayako theme’s header template to improve the loading time of the CSS and Javascript used by the Tutorial Viewer script. Again in the Options menu at left, click Templates, then Groups.
    • View the Templates for whichever template group you’re using.
    • Under General, you’ll see a template named header. Edit it.
    • Directly before this line:
      </head>

      Add:

      <{if $dw_head}><{$dw_head}><{/if}>
  5. That’s it! Your Tutorial Viewer should now look just like any other area of Kayako.
Posted in Instructions/Guides | Leave a comment

Kayako 3 Integration GUIDE

These instructions apply to Kayako version 3. Click here for Kayako 4 instructions.

Integration is for those of you that want the Tutorial Viewer to be integrated seamlessly with your helpdesk. You will essentially be wrapping your existing Kayako theme around the Tutorial Viewer. The Tutorial Viewer script is free for all DemoWolf customers, whether they subscribe to their tutorials or purchase them outright, and Kayako Integration is a part of that script.

This article assumes you have already downloaded and extracted the latest Tutorial Viewer ZIP file, available in the My Subscriptions and My Purchases section of our Client Area. If you have not yet configured or downloaded your Tutorial Viewer and need help getting started, please see this article.

You can have your tutorials up and running inside Kayako within minutes by following these simple steps:

  1. Upload all the Tutorial Viewer files to a new folder on your server. For the purpose of these instructions, we have Kayako installed in /kayako and the Tutorial Viewer in a subfolder of Kayako, /kayako/viewer/
  2. On your local computer, find the Tutorial Viewer files and navigate to the resources/integration/kayako3/ folder.
    • The only file in here is named dw-tutorials.php. This is what you will upload to the Kayako directory for your clients to access. Feel free to rename the file to whatever you want.
      • There are two variables at the top of this file that you may need to edit: $uri_to_dw and $path_to_dw. If you have your Tutorial Viewer script uploaded anywhere other than a subdirectory of the Kayako directory called viewer/, you WILL need to customize both of these variables.
  3. After making any modifications to dw-tutorials.php, upload the file to the root directory of Kayako.
  4. (Optional) You should add the following code to your Kayako theme’s header template to improve the loading time of the CSS and Javascript used by the Tutorial Viewer script. Go to your Admin Dashboard, then in the Options menu at left, click Templates, then Manage Groups.
    • View the Templates for whichever template group you’re using.
    • Under General, you’ll see a template named header. Edit it.
    • Before this line:
      <{if $ismodernbill == false && $ismodernbillv5 == false && $iswhmcs == false}></head>

      Add:

      <{if $dw_head}><{$dw_head}><{/if}>

       

  5. (Optional) You may want to add an entry to Kayako’s index page linking to dw-tutorials.php (or whatever you’ve called it). You’d do this by editing one of Kayako’s files: includes/Widgets/widgets.php. Open this file. Roughly halfway down the page, you will see code similar to the following. You will need to add everything after: // DemoWolf Integration
    // ======= KNOWLEDGEBASE =======
    if ($module->isRegistered(MODULE_KNOWLEDGEBASE) && $_SWIFT["settings"]["kb_enableclient"] == 1 && $_SWIFT["user"]["permissions"]["perm_canviewknowledgebase"] != "0")
    {
    $_widgets[$index]["icon"] = $_SWIFT["themepath"]."knowledgebase.gif";
    $_widgets[$index]["title"] = $_SWIFT["language"]["knowledgebase"];
    $_widgets[$index]["description"] = $_SWIFT["language"]["desc_knowledgebase"];
    $_widgets[$index]["link"] = iif(defined("ISMODERNBILL"), "user.php?op=menu&tile=faq&_m=knowledgebase&_a=view", "index.php?_m=knowledgebase&_a=view");
     

    $template->assign("cansearch", true);
    $template->assign("kbcansearch", true);

    $index++;

    // DemoWolf Integration
    $_widgets[$index]["icon"] = $_SWIFT["themepath"] . "tutorials.gif";
    $_widgets[$index]["title"] = $_SWIFT["language"]["tutorials"];
    $_widgets[$index]["description"] = $_SWIFT["language"]["desc_tutorials"];
    $_widgets[$index]["link"] = "dw-tutorials.php";

    $index++;
    }

    • Customize $_widgets[$index]["icon"] to whatever image you'd like to use. It should go in your theme's image folder, i.e. themes/your_theme/.
    • We've provided you two possible icons in several different sizes and formats, on either a transparent or white background. You might want to use one of those, or feel free to use your own. See the resources/integration/icons/ folder.
    • Customize $_widgets[$index]["link"] to whatever you named dw-tutorials.php.
  6. (Optional) Finally, you must enter the text to show for the Widget you just added to your Kayako homepage. Return to the Admin panel, then go to Options > Languages > Manage Phrases.
    • Click Insert Phrase.
    • Create a new phrase with Identifier set to tutorials. Section should be default. Text is whatever title you want, such as "Video Tutorials".
    • Then create another new phrase. Identifier: desc_tutorials, Section: default. Text could be something like "Watch video tutorials on a variety of topics."
  7. That's it! Your Tutorial Viewer should now look just like any other area of Kayako.
Posted in Instructions/Guides | Leave a comment

WHMCS Integration GUIDE

Our WHMCS Integration method is perfect for embedding the Tutorial Viewer script within your WHMCS theme, making it look just like any other part of your site. The Tutorial Viewer script is free for all DemoWolf customers, whether they subscribe to their tutorials or purchase them outright, and WHMCS Integration is a part of that script.

This article assumes you have already downloaded and extracted the latest Tutorial Viewer ZIP file, available in the My Subscriptions and My Purchases section of our Client Area. If you have not yet configured or downloaded your Tutorial Viewer and need help getting started, please see this article.

You can have your tutorials up and running inside WHMCS within minutes by following these simple steps:

  1. Upload all the Tutorial Viewer files to a new folder on your server. For the purpose of these instructions, we have WHMCS installed in /clients/ and the Tutorial Viewer in a subfolder of WHMCS, /clients/viewer/
  2. On your local computer, find the Tutorial Viewer files and navigate to the resources/integration/whmcs/ folder.
    1. Upload dw-tutorials.tpl to your WHMCS theme’s templates folder, for example: /clients/templates/default/
      • If you aren’t sure what your template is called, go to the WHMCS Admin Panel and see the Settings > General Settings page.
    2. The file dw-tutorials.php is what you will upload to the WHMCS directory for your clients to access. Feel free to rename this file to whatever you want. Please note that special care must be taken if you want to call this file tutorials.php, since WHMCS has its own file with this name and our file is NOT the same and will likely be overwritten when you update WHMCS.
      • There are two variables at the top of this file that you may need to edit: $uri_to_dw and $path_to_dw. If you have your Tutorial Viewer script uploaded anywhere other than a subdirectory of the WHMCS directory called viewer/, you WILL need to customize both of these variables.
  3. After making any modifications to dw-tutorials.php, upload the file to the root directory of WHMCS.
  4. (Optional) If you’re running a version of WHMCS prior to version 5.0, you should add the following code to your header.tpl file to improve the loading time of the CSS and Javascript used by the Tutorial Viewer script. Right before the </head> tag, add the following:
    {if $dw_head}
    {$dw_head}
    {/if}
  5. (Optional) Depending on your theme, you might want to add an entry to the homepage.tpl file linking to dw-tutorials.php (or whatever you’ve called it). Simply copy and paste one of the other blocks on this page (such as Knowledgebase) and modify it. If you need any assistance with this, let us know.
      a. We’ve provided you two possible icons in several different sizes and formats, on either a transparent or white background. You might want to use one of those, or feel free to use your own. See the resources/integration/icons/ folder.

That’s it! Your Tutorial Viewer has now been integrated with WHMCS!

Posted in Instructions/Guides | Leave a comment

DemoWolf Importer v2.0 GUIDE

In this article, you will find an overview of the latest version of the DemoWolf Importer (version 2.0, released 2012-07-10). The importer is a tool that creates articles for your tutorials in WHMCS, Kayako or WordPress, making it easier for your support staff to link to the tutorials when answering support tickets and providing the tutorials more exposure to your clients.

This tool is available to all DemoWolf customers free of charge in the ZIP file you download when setting up your Tutorial Viewer or DemoWolf subscription.

If you still have unanswered questions after reading this article, please check the Importer category of our FAQ section. Don’t hesitate to open a support ticket if you still need assistance!

As a precaution, please make sure you have recently backed up your SQL database before running the importer. DemoWolf cannot be held responsible for any data loss incurred as a result of using the Importer tool.

1. When you downloaded the Tutorial Viewer ZIP archive, the Importer was located in the resources/importer/ directory within that archive. If you have not uploaded this directory, please do so now. The importer can only function when uploaded to this location, since it uses many of the Tutorial Viewer files, so be sure to maintain this directory structure.

2. Each time you run the importer, you must remove the importer.lock file (in the resources/importer/ folder). This is a security precaution to prevent unauthorized use of the Importer tool.

3. Navigate to the resources/importer/ folder in your web browser when you are ready to run the importer.

4. The importer is a four-step process. Read over the on-screen instructions carefully and fill out the fields appropriately.

  1. Step One asks you where you’ll be importing and (if you’ve purchased any tutorials) where your tutorial files are located and which formats you would like to import.
    • When submitting Step One, you will be shown an intermediate screen that allows you to confirm your settings are correct. The importer will automatically detect the web address of your WHMCS/Kayako/WordPress installation and force all HTTP requests to be made from that location. If the sample tutorials do not load or you are unable to submit the page via the Continue button, please go back to Step One and check that the value entered for #2 is correct.
  2. Step Two lets you customize where and how the tutorials will show up in your Knowledgebase.
    • NOTE – If you choose the Play Button option for #3, the image that will be used is the templates/play.png image within your Tutorial Viewer directory. There are a few more versions of this button in the resources/importer/images/ directory, or feel free to use your own.
  3. Step Three is where you choose which series to import. We recommend you start by importing only one series, in case of any problems and to ensure you like your chosen settings.
  4. Step Four is the importing phase. If there are no errors, your demos should now be imported into the script of your choice!

The importer will attempt to lock itself down, but if you receive an error that this failed to happen you should probably delete the resources/importer/ folder. But be sure to leave the rest of your Tutorial Viewer files on the server, as the articles created by the Importer rely heavily on files in that directory!

If you still have unanswered questions after reading this article, please check the Importer category of our FAQ section. Don’t hesitate to open a support ticket if you still need assistance!

Posted in Instructions/Guides | Leave a comment

DemoWolf – We’re hiring!

Join the DemoWolf team!

DemoWolf is the producer of video support tutorials for web hosting companies… by far the largest such company in the industry. In business since 2005, DemoWolf has grown their library to over 5,500 hosting related tutorials, including voice tutorials and tutorials in other languages.

www.demowolf.com

DemoWolf is looking for energetic, self-motivated individuals to help expand and update their video library. About half of DemoWolf’s business comes from selling ready-made tutorials that are re-branded for hosting companies, while the other half comes from producing custom tutorials for clients who want tutorials for their own custom applications, or when the standard tutorials just won’t do the job for them and they want something more custom.

We’re looking for two or three individuals who will work on their own time to help produce tutorials using DemoBuilder 8.2, a screen-capture software tool. You can download a free trial of DemoBuilder from www.demo-builder.com to play around with it and have a look. We will provide training in using DemoBuilder, and guidelines to follow when producing tutorials. We will also provide the necessary access to software and/or websites needed to produce the tutorials.

Qualifications:
- You’re self-motivated; able to work on your own.
- You’re willing/able to work at least 4 hours per day, 5 days per week.
- You have an excellent command of the English language.
- You have experience in the web hosting industry in some capacity.
- You have experience and knowledge with common web hosting applications. This may include applications like control panels (cPanel, Plesk, Direct Admin, Helm, H-Sphere, Ensim, etc), Content Management Systems (i.e. Joomla, WordPress, etc), shopping cart systems (PinnacleCart, ZenCart, etc), website builders, etc, etc.
- Experience with DemoBuilder 8.2 is an asset, but not necessary (easy to learn, if you’re good with computers)

Job Description:
Our immediate needs are for individuals to produce tutorial “series” for products and applications. A series may include anywhere from 10 to 30 separate 2-3 minute tutorials. You will use DemoBuilder 8.2 to do this, and you will produce tutorials per our instructions. We will provide you with a copy of DemoBuilder if you are hired for the job.

Future Growth:
There will be other opportunities in Sales and Order Fulfillment if interested.

Compensation:
You can earn anywhere from $200 to $1,000 (US Dollars) or more per week, depending on your work output. The more tutorials you produce for us, the more we’ll pay you. Plus you’ll find that as you get more proficient with DemoBuilder, you’ll be able to work faster and thus earn faster. Exact details on compensation will be provided to those interested, if you meet the above criteria.

What we need from you:
If interested, please send your electronic resume to info[at]demowolf.com, and include details of your qualifications. Tell us why you’re the right person for this job!

For more information about DemoWolf, go to www.demowolf.com

Let me know if you have any questions.

Regards,

Rob Moore
Founder/President
DemoWolf.com

 

Posted in Company News | Leave a comment

DemoWolf is getting Social!

Good day from Halifax, Nova Scotia, Canada…

Well it doesn’t look like Facebook or Twitter are going anywhere anytime soon… so I thought it was high time DemoWolf embraced these and other social technologies, no matter how hard it might be for a 40-something guy like myself to learn.

I’ve been using Facebook personally for a few years now, and I get how that works. Family pics, “what are you doing now” updates, etc… it’s all very happy and nice. From a business perspective though, I haven’t done much with DemoWolf on Facebook… save for the “Facebook page” I created (and in the 2 or so years it’s been there, attracted a whopping 46 “Likes”).

As for Twitter, I do not use it personally but have been “trying” to use it for DemoWolf… and have managed (a respectable?) 230 followers. You may have seen some of my @demowolf tweets… and probably asked yourself, “What the hell are these guys doing”. I know, it’s fairly obvious I don’t quite get it yet… misplaced hashtags and @ signs, links to nowhere and probably too much self promotion… but I’m trying.

Gone are the days when computer and internet stuff just came naturally to me… and I think it happened somewhere between age 35 and 40… but learning these new technologies is somewhat of a chore to me, much like changing diapers and driving kids to soccer and baseball is likely foreign to many of you under-25ers… but I digress.

Why am I telling you all this? Call it an apology of sorts for my early tweets and Facebook page updates. But I think I’m getting it now. In the coming weeks you’ll notice an increased reliance on social media (especially Twitter and Facebook) by DemoWolf, as I aim to open the lines of communication between you our clients, prospective clients, and ourselves. For starters, check out our new slightly re-designed home page at
http://www.demowolf.com (yeah, shameless self-promotion)

We now have Like, Follow, Google+1 and LinkedIn buttons in our header, plus the live Twitter and Facebook widgets down the right side of our page. We want you to “join the conversation” and tell us what you like about DemoWolf, what you don’t like, and what we could be doing better! Some ideas we have for making good use of social media are:

- Getting our clients to share their tutorial integrations;
- Offering special offers to those who “Like” and/or “Follow” us;
- Contests for those who Tweet about us and participate in Facebook conversations.

and probably most importantly…

- Using social media to find out what tutorials you like best, and what other tutorials you think we should be producing.

Lots of you already know the value in having video support tutorials available to your customers… but there are so many more that don’t know about us. Hopefully this renewed committment to social media will help get the word out there about what DemoWolf does, and also help guide us in producing more of the tutorials you want from us. If not, well then I’ll have learned more about Facebook and Twitter… and learning is always good… no matter how fast or slow ;)

Thanks for listening!

and… start the conversation!
(Like or Follow us using the links at the top of our home page www.demowolf.com)

Suggested Twitter hashtags:
#dwnew – use to suggest new tutorial series we should produce
#dwupdate – use to suggest existing tutorial series we should update
#dwmine – use to show off your demowolf tutorials

P.S. Feel free to tell us if there’s a better way we should be using Twitter and Facebook, and if there’s anything we’re doing wrong… and/all suggestions are welcome!

As always, Happy Hosting :)

Regards,

Rob Moore
Founder/President
DemoWolf.com

Posted in Company News | Tagged , , , | Leave a comment

How to change your subscription Access Settings (Domain & IP address)

For those who subscribe to our subscription tutorials model, you’ll know that your tutorials will only work on your website, and that you won’t be able to make them available on other sites. In other words, each subscription is a single-domain/IP license.

When you first setup your subscription, there is no need to set your domain or IP, because it will be done automatically for you by the system… but only the first time.

If in the future your domain name or IP address changes, you’ll find your tutorials will no longer work… you’ll get an “Access Denied” message when trying to play a tutorial. The fix for this is really easy, and you can do it yourself from within your DemoWolf account Client Area.

First, login to your Client Area, then click on Domains/Logos. Under the Domains section you’ll see your domain name and IP addresses listed… and an “Edit” link at the far right. Click “Edit”. Enter your new domain name (if it’s changed) and IP address (if it’s changed), then click “Submit”. (Remember: The IP address we need to know is usually the main IP address for your server, NOT the one your domain is pointing to.)

You can also click the “Delete” link to force the system to autodetect the correct settings the next time a tutorial is accessed.

That’s it! The change is immediate, and your tutorials will be live once again.

Your friend in hosting,

Rob Moore
Founder/President
DemoWolf.com

Posted in Instructions/Guides | Tagged , , | Leave a comment

cPanel Bootcamp Conference – Austin, TX – Oct 11-12, 2011

This week DemoWolf is exhibiting at the cPanel bootcamp conference in Austin, Texas. This is our first cPanel bootcamp, but since cPanel happens to be one of our most popular tutorial series, we thought it would be a great opportunity to showecase our tutorials and our abilities at their conference.

Over the last several months there have been several big announcements here at DemoWolf…

Acquisition of competitor DemoDemo
Last month DemoWolf acquired their long-time rival and competitor DemoDemo. Before the acquisition DemoWolf and DemoDemo were #1 and #2 in the hosting tutorial industry… both being very well known among web hosts. Since the acquisition, DemoWolf has become essentially the only provider of rebrandable hosting tutorials, helping thousands of hosting companies worldwide in drastically reducing their support costs.

Addition of Video and Text-based tutorials
Two months ago at the HostingCon conference in San Diego, California, DemoWolf announced that all their 5,000+ tutorials are now available in two additional formats… Video (MP4) and Text (with Images). Prior to the announcement DemoWolf had been focusing solely on Flash-based (SWF) tutorials, but with the increasing desire to provide tutorials in a YouTube channel, a version supported by the iPad (or other devices that do not support Flash) or in a text version for inclusion in a knowledgebase, we felt it necessary to expand our product offering to meet this demand. Now all 5,000+ tutorials are available in all three formats, all of which will be provided with the web host’s logo branded in the tutorials. The logo will be shown in the opening and closing frames of both the Flash and Video formats, and as a watermark in all images within the Text/Image format.

Increased Automation
What people still may not know is that when hosting companies order tutorials from DemoWolf, the system we’ve developed that brands the tutorials with the hosts logo is fully automated. Once an order is placed, the host is required to upload their logo to their DemoWolf account. After a few clicks, the host will then be presented with a link to download their newly ordered tutorials, fully branded with their logo. This process takes only minutes for Flash and Text-based formats, and a little longer for Video formats (sometimes several hours depending on the number of tutorials ordered).

Partnerships
Now that our system is fully automated and we’re able to provide tutorials in multiple formats, we are turning our focus back to developing partnerships with companies who provide hosting services. It’s never been easier to become a DemoWolf Partner, thus allowing you to provide our services directly to your clients, for a fraction of the cost. If you sell to hosting companies, you need to check out our Partner Program. Once setup, you just tell us who to set up with their own tutorials, and we’ll take care of the rest. Don’t wait any longer… become a DemoWolf Partner today!
http://www.demowolf.com/partner-program.php

SHOW SPECIAL
It wouldn’t be right to exhibit at a conference and not have a special or sale! Therefore, all this week we are reducing the deposit requirement for becoming a DemoWolf Partner by 50%. For example, our Bronze Partner Plan typically requires a deposit of $1,000 into your Partner Account. This week only, that requirement is being reduced to $500, and the same 50% reduction is available for the Silver and Gold Partner Plans. It is this balance that is used to pay for any tutorials you ask us to provide to your clients, albeit at the Partnership-reduced rate of up to 80% off. All Partners will be listed on our Partners page with a logo, company description and link back to your website, and Gold Partners will also have a link from our home page. Anyone in the hosting industry can apply… so become a DemoWolf Parter Today, and start offering branded tutorials to your clients!
http://www.demowolf.com/partner-program.php

So if you happen to be in Austin this week, come check out the cPanel Conference at the Sheraton Austin Hotel. We’ll be exhibiting our latest cPanel, Enkompass and Social Media tutorials in booth 31 on Tuesday and Wednesday, and would love to meet you!

Your friend in hosting,

Rob Moore
Founder/President
DemoWolf.com

 

Posted in Company News | Leave a comment