<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ActiveCampaign Email Marketing Blog &#187; SupportTrio</title>
	<atom:link href="http://www.activecampaign.com/blog/tag/supporttrio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.activecampaign.com/blog</link>
	<description>Email marketing blog discussing email marketing features, deliverability, new marketing ideas, and more.</description>
	<lastBuildDate>Mon, 16 Jan 2012 19:12:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How To: Create your own external login source</title>
		<link>http://www.activecampaign.com/blog/how-to-create-your-own-external-login-source/</link>
		<comments>http://www.activecampaign.com/blog/how-to-create-your-own-external-login-source/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:26:05 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Product Updates]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2009/03/03/how-to-create-your-own-external-login-source/</guid>
		<description><![CDATA[A while back we released a feature that allows certain ActiveCampaign products to authenticate users with an external login source. This feature is currently supported in KnowledgeBuilder 3.x and SupportTrio 2.x, and will soon be included in every ActiveCampaign product. I wanted to share how dead simple it is to get started creating a new [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.activecampaign.com/blog/2008/10/07/supporttrio-external-login-sources/">A while back</a> we released a feature that allows certain ActiveCampaign products to authenticate users with an external login source. This feature is currently supported in <strong>KnowledgeBuilder 3.x</strong> and <strong>SupportTrio 2.x</strong>, and will soon be included in <em>every</em> ActiveCampaign product.</p>
<p>I wanted to share how dead simple it is to get started creating a new login source using your own authentication system. We&#8217;ve included some of the more popular applications like Joomla, PHPBB3, and vBulletin, as default external login sources, which can be enabled at any time.<span id="more-286"></span></p>
<p>But you may have your own custom authentication system that you&#8217;d like to use. In order to do this, you&#8217;ll need familiarity with editing PHP files, as well as a programmatic understanding of how to use PHP to speak to your authentication system.</p>
<p>To get started, open up the <code>ac_global/loginsource/</code> directory contained within your KnowledgeBuilder 3.x or SupportTrio 2.x installation:</p>
<p><img src="http://support.activecampaign.com/bin/image_3783608.jpeg" /></p>
<p>You&#8217;ll see a number of individual .php files, each corresponding to a separate login source configuration. For this example, I&#8217;ve added the last file, <strong>zencart.php</strong>, as we will be creating an external login source for <a href="http://zencart.com/">Zen Cart</a>.</p>
<h2>Set up .php file</h2>
<p>Once you create the new .php file in this directory, edit the contents of the file with this:</p>
<pre>
&lt;?php

$loginident = "zencart";
$loginvars = "host,dbname,user,pass";

?&gt;</pre>
<p>Here we specify the name of our new external login source (the <code>$loginident</code> variable), as well as the settings you&#8217;d like to specify when setting up this login source (the <code>$loginvars</code> variable).</p>
<p>The <code>$loginident</code> variable will correspond with the name you see listed under the available login sources within the application:</p>
<p><img src="http://support.activecampaign.com/bin/image_6893453.jpeg" /></p>
<p>The <code>$loginvars</code> variable will correspond with the available <strong>fields</strong> that allow you to input specific information pertaining to this login source:</p>
<p><img src="http://support.activecampaign.com/bin/image_3117855.jpeg" /></p>
<p>Once you have included those two variables in the new .php file, you should be able to access the login source directly within the application:</p>
<p><img src="http://support.activecampaign.com/bin/image_8490429.jpeg" /></p>
<h2>Enable and further configure .php file</h2>
<p>Once you&#8217;ve saved your new login source settings, using the above application pages, you are ready to configure the .php file to speak to your authentication system.</p>
<p>The easiest way to set up the rest of the .php file is to copy an existing source. For example, if you open <strong>vbulletin.php</strong>, you&#8217;ll see the necessary functions that need to reside within the class:</p>
<pre>
class vBulletinLoginSource extends AC_LoginSource {
....
}</pre>
<p>Modify names to match your new login source. For example, <code>vBulletinLoginSource</code> would become <code>zencartLoginSource</code>.</p>
<p>Keep the five core functions in place:</p>
<p><img src="http://support.activecampaign.com/bin/image_7259881.jpeg" /></p>
<p>Modify these functions to extract and authenticate a given username/password combination. For more information on what each of these functions should return, please view our <a href="https://www.activecampaign.com/support/tt/index.php?article=490&amp;action=kb">detailed help documentation article</a>.</p>
<p>We can also set this up for you, if you provide us the database structure that houses your external user credentials, as well as any specific PHP authentication/validation functions.</p>
<h2>Testing out your new login source</h2>
<p>If you feel confident that you&#8217;ve modified the .php file correctly, the only thing left is to test it out!</p>
<p>Make sure you&#8217;ve <strong>enabled</strong> your new login source, set User Type to Public or Admin, and promote it to be the first login source the system tries to use for authentication:</p>
<p><img src="http://support.activecampaign.com/bin/image_6196894.jpeg" /></p>
<p>Then, log out of the application, and try logging in as a user from your external system. If everything is working, you should be able to log straight in to the application as normal!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/how-to-create-your-own-external-login-source/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rethinking Cron Management&#8230;</title>
		<link>http://www.activecampaign.com/blog/rethinking-cron-management/</link>
		<comments>http://www.activecampaign.com/blog/rethinking-cron-management/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 22:57:53 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[Product Updates]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[help desk]]></category>
		<category><![CDATA[SupportTrio]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2008/12/12/rethinking-cron-management/</guid>
		<description><![CDATA[As we are developing the new versions of both Email Marketing and Help Desk we have put a great amount of detail into usability.  The term usability is often used to simply describe the user interface.  But, the term encompasses a much larger area of software development. A specific case in our recent development is [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://support.activecampaign.com/bin/image_5084595.jpeg" alt="" width="320" height="219" align="left" />As we are developing the new versions of both Email Marketing and Help Desk we have put a great amount of detail into usability.  The term usability is often used to simply describe the user interface.  But, the term encompasses a much larger area of software development.<span id="more-259"></span></p>
<p>A specific case in our recent development is cron management.  A number of our applications require you to setup a cron job.  In some cases you may need to setup 3 or 4 cronjobs depending on the features you are using.This is something that can be a pain for our users.  Once you setup the application you should not have to do more work when you start using a feature or purchase an add-on.  Thus we are designing our new cron management feature.  Our new cron management feature serves 2 primary purposes:</p>
<ol>
<li>Ability to have a single cron &#8211; yet have different timed events.  This means that while you will only have one cron that you have to setup, our software can choose to execute different actions at different time intervals.</li>
<li>Improve the process of expanding your application and upgrading.  With this new feature in place you will not need to manually add any crons or events if you wish to use extra features, new add-ons, etc..</li>
</ol>
<p>Those 2 purposes are the primary objectives of this feature and a great example of improving usability.   This feature will debut in Email Marketing 5 and Help Desk 3.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/rethinking-cron-management/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Help Desk &amp; External Login Sources</title>
		<link>http://www.activecampaign.com/blog/supporttrio-external-login-sources/</link>
		<comments>http://www.activecampaign.com/blog/supporttrio-external-login-sources/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 19:03:26 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[Product Updates]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2008/10/07/supporttrio-external-login-sources/</guid>
		<description><![CDATA[Help Desk now supports external login sources for both public and admin sections. We included LDAP and vbulletin integration by default. Login sources allow you to connect to external systems, such as vBulletin, LDAP, or virtually any other external source to authenticate your users. You can configure your login sources by clicking its menu option [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><a href="http://www.activecampaign.com/help-desk-software/">Help Desk</a> now supports external login sources for both public and admin sections. </strong>We included LDAP and vbulletin integration by default. Login sources allow you to connect to external systems, such as vBulletin, LDAP, or virtually any other external source to authenticate your users.</p>
<p>You can configure your login sources by clicking its menu option under the Users menu. First, you choose which login sources are enabled by editing each one you want to use and checking its enabled status. Any login source considered to be enabled will be used to authenticate users. Once you do so, if you have more than one enabled, you can move it up or down the list by clicking the &#8220;up&#8221; or &#8220;down&#8221; links respectively on the list screen. The login source at the top represents the first source we&#8217;ll try to authenticate a user; the bottom one the last. We try each source until all of them report that they don&#8217;t know a user before we state that this user doesn&#8217;t exist.</p>
<p>Before you use a login source, you&#8217;ll need to edit each one to input the connection information, such as its database location.</p>
<p>For people adding new connections: The best way to get into creating connections is to look at an already-existing one that closely matches what you want to do. If your authentication system is another MySQL database, for example, then you might want to check out the vBulletin connection file. For more details on creating your own connection file <strong><a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=490">click here for our documentation</a></strong> or <a href="http://www.activecampaign.com/contact/">contact support</a>.</p>
<p>We will be adding a long list of external login source connection files for a number of products. If you have a specific product you are looking to integrate with &#8211; contact support and we can assist with creating an external login source connection file.</p>
<p><strong>UPDATE:</strong> We have just added <a href="http://www.activecampaign.com/blog/email-marketing-with-joomla/">Joomla</a> and PHPBB3 as <a href="http://www.activecampaign.com/blog/how-to-create-your-own-external-login-source/">external login sources</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/supporttrio-external-login-sources/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Help Desk 3.0 Development</title>
		<link>http://www.activecampaign.com/blog/supporttrio-30-development/</link>
		<comments>http://www.activecampaign.com/blog/supporttrio-30-development/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 21:24:04 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[Product Updates]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[encode]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>
		<category><![CDATA[unencoded]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2008/08/28/supporttrio-30-development/</guid>
		<description><![CDATA[Help Desk 3.0 development has begun&#8230;. We recently started work on Help Desk 3.0.  Version 3.0 will be a major update to the ActiveCampaign Help Desk Software package. We will be incorporating hundreds of changes and additions including such things as: Rewriting the majority of the backend code Improving the speed and responsiveness of the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Help Desk 3.0 development has begun&#8230;.</strong></p>
<p>We recently started work on Help Desk 3.0.  Version 3.0 will be a major update to the ActiveCampaign <a href="http://www.activecampaign.com/supporttrio/">Help Desk </a>Software package.</p>
<p>We will be incorporating hundreds of changes and additions including such things as:</p>
<ul>
<li>Rewriting the majority of the backend code</li>
<li>Improving the speed and responsiveness of the entire application</li>
<li>Leaving 99% of the source code unencoded</li>
<li>CSS Based admin/public interfaces</li>
<li>Escalation system</li>
<li>SLA Management</li>
<li>External Login Sources</li>
<li>Much more&#8230;.</li>
</ul>
<p>While we have our development plans &#8211; we still want to know what you want to see in Help Desk 3.0.</p>
<p>Let us know what you want changed, what you wish was added, general feedback &amp; comments, etc&#8230; Your feedback is greatly appreciated and will be taken into consideration for Help Desk 3.0.</p>
<p><!--   /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman","serif"; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-size:10.0pt; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --></p>
<p><!--[if gte mso 10]></p>
<p><mce:style><!    /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;}  --></p>
<p><!--[endif]--><strong><a href="http://isalient.com/app/index.php?survey_code=d7273012&amp;login=1">Tell us what you want in the next version of SupportTrio!</a> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/supporttrio-30-development/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Mambo &amp; ActiveCampaign Help Desk Software (Case Study)</title>
		<link>http://www.activecampaign.com/blog/mambo-supporttrio-case-study/</link>
		<comments>http://www.activecampaign.com/blog/mambo-supporttrio-case-study/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 20:58:32 +0000</pubDate>
		<dc:creator>Tariq</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[helpdesk]]></category>
		<category><![CDATA[Loaded]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2008/07/16/mambo-supporttrio-case-study/</guid>
		<description><![CDATA[The Mambo foundation is a volunteer, non-profit organization charged with the governance of the Mambo open source content management system.  Mambo is free software released under the GNU/General Public license and like all such projects, dealing with emails and organizational issues takes valuable time away from software development.   They use Help Desk to manage both [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The <a href="http://mambo-foundation.org/">Mambo foundation</a> is a volunteer, non-profit organization charged with the governance of the Mambo open source content management system.  Mambo is free software released under the GNU/General Public license and like all such projects, dealing with emails and organizational issues takes valuable time away from software development.   They use Help Desk to manage both time and resources more effectively.</p>
<p>Mambo developers must work in collaboration from many different locations which makes email key to their communication.   “Email is the key communication tool. The Mambo development team and the members of the Board of the Mambo Foundation are geographically distributed and work in a virtual, online environment.  All email that is not addressed to individuals is managed through the help desk.”  Directing email traffic through a central ticketing system allows multiple members to work together on the same issue if it is not specifically addressed to a particular individual.</p>
<p>Mambo foundation uses the knowledgebase in ActiveCampaign&#8217;s Help Desk Software to provide a central location for corporate documents that require routine turn over.  “For the management of Board affairs Help Desk has proven to be an ideal solution.  Previously, corporate documents were kept by officers of the Foundation and handed over to new officers following our annual elections of the Board. This meant that record keeping relied on the diligence of the individuals who handled those documents. Help Desk is used as a central repository and archive. By keeping all documents in the knowledgebase and keeping emails we now have accurate corporate records that are available to future Board members. This gives us confidence that we can not only meet our statutory obligations but also that institutional knowledge is retained for the future &#8211; two things that are extremely important and sometimes difficult to achieve in a volunteer environment.”     This improves efficiency and allows accountability that would otherwise be difficult to maintain.</p>
<blockquote><p>“Volunteer, free software projects tend to have a reasonably high turnover in personnel. People work when they can, in their spare time, and often find it hard to commit their time in advance. By having a central document repository and by handling all email through the ticketing system it does not matter who is around and when. People can come into new roles and read what has happened previously and people can take leave for a few months while knowing that others can step in and take over handling of the enquiries.</p></blockquote>
<blockquote><p>“In the past, individuals took responsibility for one or more email accounts. There was no way the rest of the team could be certain that emails were being responded to in a timely manner and no way the team or Board could be certain it was receiving all information. By collecting all emails within the help desk the groups collectively have access to each email and the responses. This has made us more accountable and has improved our responsiveness to enquiries.</p></blockquote>
<blockquote><p>“Prior to installing Help Desk we also had issues due to the distributed, virtual team environment we work in. Team and Board members are located all over the world and not everyone has reliable internet connections. Some countries have high fees for bandwidth. This resulted in some Board members being reluctant to take on responsibility for handling email enquiries due to costs &#8211; especially as a lot of the email is spam. By using the helpdesk nobody needs to worry about the costs because email goes into the ticket system and is not downloaded to individual’s computers. If someone&#8217;s internet connection is down for awhile this is not a problem &#8211; responding is a collective responsibility and no longer a burden put on individuals.</p></blockquote>
<blockquote><p>“The Mambo Foundation has used SupportTrio for nine months now. The improvements in our responsiveness and productivity have been significant. Best of all, we now have more time to devote to developing the software.”</p></blockquote>
<p>SupportTrio provides a central framework to allow Mambo Foundation address the challenge of working in an environment that requires the collaboration of volunteers working in different locations.  It also provides a means for maintaining efficiency and accountability in an environment that necessitates a high turnover rate.</p>
<p><strong>Click here for more information about ActiveCampaign <a href="http://www.activecampaign.com/help-desk-software/">Help Desk Software.<br />
</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/mambo-supporttrio-case-study/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>If you could change one thing about Help Desk&#8230;</title>
		<link>http://www.activecampaign.com/blog/if-you-could-change-one-thing-about-supporttrio/</link>
		<comments>http://www.activecampaign.com/blog/if-you-could-change-one-thing-about-supporttrio/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 19:39:45 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[help desk]]></category>
		<category><![CDATA[help desk software]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2008/01/28/if-you-could-change-one-thing-about-supporttrio/</guid>
		<description><![CDATA[If you could change one thing about ActiveCampaign Help Desk Software what would it be?  Think about the public side, admin side, features, work-flow, license options, or anything else. Let us know what you would change&#8230;]]></description>
			<content:encoded><![CDATA[<p></p><p>If you could change one thing about ActiveCampaign Help Desk Software what would it be?  Think about the public side, admin side, features, work-flow, license options, or anything else.</p>
<p>Let us know what you would change&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/if-you-could-change-one-thing-about-supporttrio/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Public Source Code Released &#8211; Unencoded Files You Can Modify</title>
		<link>http://www.activecampaign.com/blog/public-source-code-released-unencoded-files-you-can-modify/</link>
		<comments>http://www.activecampaign.com/blog/public-source-code-released-unencoded-files-you-can-modify/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 19:50:17 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[encode]]></category>
		<category><![CDATA[live chat]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Questions]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>
		<category><![CDATA[TrioLive]]></category>
		<category><![CDATA[unencoded]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2007/11/27/public-source-code-released-unencoded-files-you-can-modify/</guid>
		<description><![CDATA[As many of you may be aware &#8211; we have talked a lot about opening up some areas to allow for easier customizations along with the ability to retain certain customizations with upgrades. We have some exciting features and options coming in the future. The ability to easily upgrade without losing style and code changes [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>As many of you may be aware &#8211; we have talked a lot about opening up some areas to allow for easier customizations along with the ability to retain certain customizations with upgrades.  We have some exciting features and options coming in the future.  The ability to easily upgrade without losing style and code changes is yet to come &#8211; but now you can access the majority of the source code for the public sections of Email Marketing, Help Desk, and Live Chat.</p>
<p>What does this mean?  You now have access to the source code of the public pages / functions.  You can now directly modify the subscriber add/edit functions, or work on the archive page for Email Marketing.  Or you can adjust the ticket submit code in Help Desk.  Or change how the Live Chat chat code works to authenticate and authorize a chat.  The possibilities for customizations are endless.</p>
<p>To view a specific list of files/folders that have been unencoded click on one of the following links:</p>
<ul>
<li><a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=392">Unencoded files in Email Marketing</a></li>
<li><a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=393">Unencoded files in Help Desk</a></li>
<li><a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=394">Unencoded files in Live Chat</a></li>
</ul>
<p>As mentioned above &#8211; this is only the start of a number of new changes coming to our entire product line.  Just let us know if you have any questions, comments, or feedback along the way!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/public-source-code-released-unencoded-files-you-can-modify/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Week in review 10/22 &#8211; 10/26</title>
		<link>http://www.activecampaign.com/blog/week-in-review-1022-1026/</link>
		<comments>http://www.activecampaign.com/blog/week-in-review-1022-1026/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 18:31:14 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>
		<category><![CDATA[TrioLive]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2007/10/26/week-in-review-1022-1026/</guid>
		<description><![CDATA[visualEdit Work We have continued finishing up work on visualEdit and have a couple of small items left. We adjusted how we were going to manage users and what not which caused a small delay in preparing for the beta. You can still signup at http://www.activecampaign.com/visualedit/ to be notified when the public beta is ready. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>visualEdit Work</strong></p>
<p>We have continued finishing up work on visualEdit and have a couple of small items left.   We adjusted how we were going to manage users and what not which caused a small delay in preparing for the beta.  You can still signup at http://www.activecampaign.com/visualedit/ to be notified when the public beta is ready.</p>
<p><strong>New Software Updates</strong></p>
<ul>
<li>Email Marketing 4.61.2 was released with a number of bug fixes</li>
<li>Live Chat Software 1.56.1 and Live Chat Desktop 1.16 was released with some new features and lots of speed enhancements.</li>
</ul>
<p><strong>Recently Added/Updated KB Articles</strong></p>
<blockquote><p><a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=381">Syncing from custom fields</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=382">Customizing the way your name looks</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=380">What are Tasks?  What are Time Entries?</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=292">POP Account Settings</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=319"> POP3.php PEAR problems</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=364">Quick Start Guide</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=366">Viewing project time estimates versus actual time spent</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=367">Setting Up a New Project</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=368">Creating User Groups and Using Project Permissions</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=369">Integrating SwiftTraction With Help Desk Software</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=370">Custom Fields for Actions</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=355">Email Marketing A/B Split Module</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=356">Flash forms</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=357">Auto Remind Add On</a><br />
<a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=358">EmailCheck Add On</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/week-in-review-1022-1026/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SwiftTraction Beta Now Available!</title>
		<link>http://www.activecampaign.com/blog/swifttraction-beta-now-available/</link>
		<comments>http://www.activecampaign.com/blog/swifttraction-beta-now-available/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 20:10:25 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Questions]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>
		<category><![CDATA[TrioLive]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2007/07/31/swifttraction-beta-now-available/</guid>
		<description><![CDATA[What is it? SwiftTraction is a new time management and tracking application. Developed using a detailed API &#8211; SwiftTraction makes time tracking in any environment easy to setup. SupportTrio &#38; TrioLive installs (from any server, any domain) will be able to easily connect to any SwiftTraction install for tracking. SwiftTraction can be used as a [...]]]></description>
			<content:encoded><![CDATA[<p></p><table align="center" border="0" cellpadding="5" cellspacing="0">
<tr>
<td><img src="http://www.activecampaign.com/swifttraction/4.gif" border="1" height="200" width="300" /></td>
<td><img src="http://www.activecampaign.com/swifttraction/3.gif" border="1" height="200" width="300" /></td>
</tr>
<tr>
<td><img src="http://www.activecampaign.com/swifttraction/1.gif" border="1" height="200" width="300" /></td>
<td><img src="http://www.activecampaign.com/swifttraction/2.gif" border="1" height="200" width="300" /></td>
</tr>
</table>
<p><strong>What is it?</strong></p>
<p>SwiftTraction is a new time management and tracking application. Developed using a detailed API &#8211; SwiftTraction makes time tracking in any environment easy to setup. SupportTrio &amp; TrioLive installs (from any server, any domain) will be able to easily connect to any SwiftTraction install for tracking.</p>
<p>SwiftTraction can be used as a general timesheet managment program and/or integrated with SupportTrio to gain time based reporting capabilites for your SupportTrio install(s)</p>
<p><strong>How To Download </strong></p>
<p>You can download the latest version of the SwiftTraction beta at:<br />
<a href="http://www.activecampaign.com/swifttraction/beta.php"> http://www.activecampaign.com/swifttraction/beta.php</a></p>
<p>This page will also include the serial required for install.</p>
<p><strong>Feedback &amp; Support</strong></p>
<ul>
<li><a href="http://www.activecampaign.com/support/tt/index.php?action=kb&amp;article=364">Quick Start Guide</a></li>
<li><a href="http://www.activecampaign.com/support/forum/forumdisplay.php?f=60"><strong>Forum</strong> &#8211; For Support, Questions, Comments, Feedback</a><em style="padding: 0px 15px 15px" align="left"><br />
</em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/swifttraction-beta-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &amp; MySQL Version Requirements</title>
		<link>http://www.activecampaign.com/blog/php-mysql-version-requirements/</link>
		<comments>http://www.activecampaign.com/blog/php-mysql-version-requirements/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 22:18:53 +0000</pubDate>
		<dc:creator>Jason VandeBoom</dc:creator>
				<category><![CDATA[Product Updates]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[SupportTrio]]></category>
		<category><![CDATA[TrioLive]]></category>

		<guid isPermaLink="false">http://www.activecampaign.com/blog/2007/07/16/php-mysql-version-requirements/</guid>
		<description><![CDATA[Currently all of our products have a base requirement of PHP 4.3+ and MySQL 3.23+ You may have noticed recently that PHP.net declared that they will no longer be supporting PHP 4 as of December 31st 2007. Also there has been a widely publicized project called GoPHP5. The idea behind GoPHP5 is to get as [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Currently all of our products have a base requirement of PHP 4.3+ and MySQL 3.23+</p>
<p>You may have noticed recently that <a href="http://www.php.net">PHP.net</a> declared that they will no longer be supporting PHP 4 as of  December 31st 2007.  Also there has been a widely publicized project called <a href="http://gophp5.org/">GoPHP5</a>.  The idea behind GoPHP5 is to get as many applications to back the PHP5 only development status.</p>
<p>While we do agree that it is time for hosts to make a final switch to PHP5 we will not stop supporting PHP 4.3+ anytime soon.  We strive to ensure our product line works from PHP 4.3 to the latest version of PHP5.  And we will ensure compatibility with PHP6 when it is closer to release.</p>
<p>Keeping that in mind we are currently testing increasing the MySQL version requirement to MySQL 4.1+ for TrioLive, SupportTrio, and SwiftTraction.   We have found the vast majority of our client base to be utilizing MySQL 4.1 or above for some time now.</p>
<p>We won&#8217;t be rushing any of these changes out.  If you should have any feedback during this time just let us know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.activecampaign.com/blog/php-mysql-version-requirements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

