<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Karmatrane</id>
	<title>XMission Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Karmatrane"/>
	<link rel="alternate" type="text/html" href="https://wiki.xmission.com/Special:Contributions/Karmatrane"/>
	<updated>2026-05-19T12:28:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3879</id>
		<title>MySQL FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3879"/>
		<updated>2011-08-23T18:25:54Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: /* What version of MySQL does XMission use? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is SQL?==&lt;br /&gt;
SQL stands for &amp;quot;Structured Query Language&amp;quot;. SQL is the most common  standardized language used to access databases.&lt;br /&gt;
&lt;br /&gt;
XMission uses MySQL, which is a very popular open-source database  management system. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What version of MySQL does XMission use?==&lt;br /&gt;
XMission currently has three versions of MySQL running: 5.1.57, 5.0.32 and 4.1.11. The current version is also displayed when you log in to the MySQL server.&lt;br /&gt;
&lt;br /&gt;
Note: MySQL 5.0 and 4.1 are at the End of Product Lifecycle. All new databases will be created on the 5.1 MySQL server.&lt;br /&gt;
&lt;br /&gt;
==How much does a database at XMission cost?==&lt;br /&gt;
If you have a Deluxe Hosting or Pro Hosting account, an SQL database  is included in your account package. For any other account type, the charge is $5 per month.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I get a database set up for my account?==&lt;br /&gt;
To add a database to your account, either [mailto:support@xmission.com email support@xmission.com] or contact sales. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I log in to my database?==&lt;br /&gt;
Depending on your MySQL version, you will need to connect to a different host. For MySQL version 4.x, the server name is &#039;&#039;mysql-41.xmission.com&#039;&#039;&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: &#039;&#039;mysql.xmission.com&#039;&#039; is the same machine, and will work for legacy purposes.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For MySQL version 5.1 the server name is &#039;&#039;mysql-51.xmission.com&#039;&#039;, for 5.0 &amp;quot;mysql-50.xmission.com&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To use a web interface to access your database, visit https://phpmyadmin.xmission.com/&lt;br /&gt;
&lt;br /&gt;
To connect directly to the database from our shell server:&lt;br /&gt;
#telnet or ssh to &#039;&#039;shell.xmission.com&#039;&#039;&lt;br /&gt;
#&amp;lt;tt&amp;gt;mysql -u acctname -h servername -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
#This will prompt you for a password, which is not necessarily the same as your login password.&lt;br /&gt;
&lt;br /&gt;
For example: to connect to a MySQL version 5.1 database, you would use:&lt;br /&gt;
&amp;lt;tt&amp;gt;mysql -u acctname -h mysql-51.xmission.com -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==What can I use to access my database?==&lt;br /&gt;
There isn&#039;t a &amp;quot;recommended&amp;quot; method to access your database, but here  is a list of the more popular programing languages connection methods  which we support. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;perl&#039;&#039;&#039; : DBI module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;python&#039;&#039;&#039; : mysql module or MySQLdb module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;php&#039;&#039;&#039; : php has been compiled with the mysql functions built in &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C&#039;&#039;&#039; : The header and libraries for mysql are installed so #include  &amp;lt;mysql/mysql.h&amp;gt; will need to be present in your source files. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C++&#039;&#039;&#039; : same as C, but we also have mysql++ headers and libraries on  XMission servers. To use this, #include &amp;lt;sqlplus&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Java&#039;&#039;&#039; : JDBC classes are available &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What do I do if I forgot my password?==&lt;br /&gt;
[mailto:support@xmission.com Email support@xmission.com] to have  your password reset. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Do I have a size limit (quota) for my database?==&lt;br /&gt;
&lt;br /&gt;
Yes. The size of your database counts against your /home quota, which is  100MB default for most account types. Pro Hosting accounts get 200MB /home  storage, and additional storage can be purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I use stored routines?==&lt;br /&gt;
&lt;br /&gt;
Our MySQL 5.x servers support stored functions, procedures, triggers, and other such routines.  Since it is a shared server, we do not allow users to create or edit their own routines.  If you would like to have a routine installed, please contact support, providing a full copy of the routine you&#039;d like installed.  We will install the routine if we decide the code does not cause any problems or cause an unreasonable support burden.  If you would like more complete control over database routines, please consider our [[VPS]] or [[Colocate]] products.&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about using MySQL?==&lt;br /&gt;
&lt;br /&gt;
Thorough documentation can be found at [http://www.mysql.com MySQL.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Hosting Archives|MySQL FAQ]]&lt;br /&gt;
[[Category:FAQ|MySQL]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3878</id>
		<title>MySQL FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3878"/>
		<updated>2011-08-23T18:23:38Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: /* Can I use stored routines? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is SQL?==&lt;br /&gt;
SQL stands for &amp;quot;Structured Query Language&amp;quot;. SQL is the most common  standardized language used to access databases.&lt;br /&gt;
&lt;br /&gt;
XMission uses MySQL, which is a very popular open-source database  management system. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What version of MySQL does XMission use?==&lt;br /&gt;
XMission currently has three versions of MySQL running: 5.1.57, 5.0.24a and 4.1.11. The current version is also displayed when you log in to the MySQL server.&lt;br /&gt;
&lt;br /&gt;
==How much does a database at XMission cost?==&lt;br /&gt;
If you have a Deluxe Hosting or Pro Hosting account, an SQL database  is included in your account package. For any other account type, the charge is $5 per month.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I get a database set up for my account?==&lt;br /&gt;
To add a database to your account, either [mailto:support@xmission.com email support@xmission.com] or contact sales. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I log in to my database?==&lt;br /&gt;
Depending on your MySQL version, you will need to connect to a different host. For MySQL version 4.x, the server name is &#039;&#039;mysql-41.xmission.com&#039;&#039;&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: &#039;&#039;mysql.xmission.com&#039;&#039; is the same machine, and will work for legacy purposes.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For MySQL version 5.1 the server name is &#039;&#039;mysql-51.xmission.com&#039;&#039;, for 5.0 &amp;quot;mysql-50.xmission.com&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To use a web interface to access your database, visit https://phpmyadmin.xmission.com/&lt;br /&gt;
&lt;br /&gt;
To connect directly to the database from our shell server:&lt;br /&gt;
#telnet or ssh to &#039;&#039;shell.xmission.com&#039;&#039;&lt;br /&gt;
#&amp;lt;tt&amp;gt;mysql -u acctname -h servername -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
#This will prompt you for a password, which is not necessarily the same as your login password.&lt;br /&gt;
&lt;br /&gt;
For example: to connect to a MySQL version 5.1 database, you would use:&lt;br /&gt;
&amp;lt;tt&amp;gt;mysql -u acctname -h mysql-51.xmission.com -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==What can I use to access my database?==&lt;br /&gt;
There isn&#039;t a &amp;quot;recommended&amp;quot; method to access your database, but here  is a list of the more popular programing languages connection methods  which we support. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;perl&#039;&#039;&#039; : DBI module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;python&#039;&#039;&#039; : mysql module or MySQLdb module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;php&#039;&#039;&#039; : php has been compiled with the mysql functions built in &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C&#039;&#039;&#039; : The header and libraries for mysql are installed so #include  &amp;lt;mysql/mysql.h&amp;gt; will need to be present in your source files. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C++&#039;&#039;&#039; : same as C, but we also have mysql++ headers and libraries on  XMission servers. To use this, #include &amp;lt;sqlplus&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Java&#039;&#039;&#039; : JDBC classes are available &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What do I do if I forgot my password?==&lt;br /&gt;
[mailto:support@xmission.com Email support@xmission.com] to have  your password reset. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Do I have a size limit (quota) for my database?==&lt;br /&gt;
&lt;br /&gt;
Yes. The size of your database counts against your /home quota, which is  100MB default for most account types. Pro Hosting accounts get 200MB /home  storage, and additional storage can be purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I use stored routines?==&lt;br /&gt;
&lt;br /&gt;
Our MySQL 5.x servers support stored functions, procedures, triggers, and other such routines.  Since it is a shared server, we do not allow users to create or edit their own routines.  If you would like to have a routine installed, please contact support, providing a full copy of the routine you&#039;d like installed.  We will install the routine if we decide the code does not cause any problems or cause an unreasonable support burden.  If you would like more complete control over database routines, please consider our [[VPS]] or [[Colocate]] products.&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about using MySQL?==&lt;br /&gt;
&lt;br /&gt;
Thorough documentation can be found at [http://www.mysql.com MySQL.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Hosting Archives|MySQL FAQ]]&lt;br /&gt;
[[Category:FAQ|MySQL]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3877</id>
		<title>MySQL FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3877"/>
		<updated>2011-08-23T18:23:14Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: /* How do I log in to my database? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is SQL?==&lt;br /&gt;
SQL stands for &amp;quot;Structured Query Language&amp;quot;. SQL is the most common  standardized language used to access databases.&lt;br /&gt;
&lt;br /&gt;
XMission uses MySQL, which is a very popular open-source database  management system. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What version of MySQL does XMission use?==&lt;br /&gt;
XMission currently has three versions of MySQL running: 5.1.57, 5.0.24a and 4.1.11. The current version is also displayed when you log in to the MySQL server.&lt;br /&gt;
&lt;br /&gt;
==How much does a database at XMission cost?==&lt;br /&gt;
If you have a Deluxe Hosting or Pro Hosting account, an SQL database  is included in your account package. For any other account type, the charge is $5 per month.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I get a database set up for my account?==&lt;br /&gt;
To add a database to your account, either [mailto:support@xmission.com email support@xmission.com] or contact sales. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I log in to my database?==&lt;br /&gt;
Depending on your MySQL version, you will need to connect to a different host. For MySQL version 4.x, the server name is &#039;&#039;mysql-41.xmission.com&#039;&#039;&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: &#039;&#039;mysql.xmission.com&#039;&#039; is the same machine, and will work for legacy purposes.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For MySQL version 5.1 the server name is &#039;&#039;mysql-51.xmission.com&#039;&#039;, for 5.0 &amp;quot;mysql-50.xmission.com&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To use a web interface to access your database, visit https://phpmyadmin.xmission.com/&lt;br /&gt;
&lt;br /&gt;
To connect directly to the database from our shell server:&lt;br /&gt;
#telnet or ssh to &#039;&#039;shell.xmission.com&#039;&#039;&lt;br /&gt;
#&amp;lt;tt&amp;gt;mysql -u acctname -h servername -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
#This will prompt you for a password, which is not necessarily the same as your login password.&lt;br /&gt;
&lt;br /&gt;
For example: to connect to a MySQL version 5.1 database, you would use:&lt;br /&gt;
&amp;lt;tt&amp;gt;mysql -u acctname -h mysql-51.xmission.com -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==What can I use to access my database?==&lt;br /&gt;
There isn&#039;t a &amp;quot;recommended&amp;quot; method to access your database, but here  is a list of the more popular programing languages connection methods  which we support. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;perl&#039;&#039;&#039; : DBI module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;python&#039;&#039;&#039; : mysql module or MySQLdb module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;php&#039;&#039;&#039; : php has been compiled with the mysql functions built in &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C&#039;&#039;&#039; : The header and libraries for mysql are installed so #include  &amp;lt;mysql/mysql.h&amp;gt; will need to be present in your source files. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C++&#039;&#039;&#039; : same as C, but we also have mysql++ headers and libraries on  XMission servers. To use this, #include &amp;lt;sqlplus&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Java&#039;&#039;&#039; : JDBC classes are available &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What do I do if I forgot my password?==&lt;br /&gt;
[mailto:support@xmission.com Email support@xmission.com] to have  your password reset. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Do I have a size limit (quota) for my database?==&lt;br /&gt;
&lt;br /&gt;
Yes. The size of your database counts against your /home quota, which is  100MB default for most account types. Pro Hosting accounts get 200MB /home  storage, and additional storage can be purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I use stored routines?==&lt;br /&gt;
&lt;br /&gt;
Our MySQL 5.0 server support stored functions, procedures, triggers, and other such routines.  Since it is a shared server, we do not allow users to create or edit their own routines.  If you would like to have a routine installed, please contact support, providing a full copy of the routine you&#039;d like installed.  We will install the routine if we decide the code does not cause any problems or cause an unreasonable support burden.  If you would like more complete control over database routines, please consider our [[VPS]] or [[Colocate]] products.&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about using MySQL?==&lt;br /&gt;
&lt;br /&gt;
Thorough documentation can be found at [http://www.mysql.com MySQL.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Hosting Archives|MySQL FAQ]]&lt;br /&gt;
[[Category:FAQ|MySQL]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3876</id>
		<title>MySQL FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=MySQL_FAQ&amp;diff=3876"/>
		<updated>2011-08-23T18:22:23Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: /* What version of MySQL does XMission use? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is SQL?==&lt;br /&gt;
SQL stands for &amp;quot;Structured Query Language&amp;quot;. SQL is the most common  standardized language used to access databases.&lt;br /&gt;
&lt;br /&gt;
XMission uses MySQL, which is a very popular open-source database  management system. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What version of MySQL does XMission use?==&lt;br /&gt;
XMission currently has three versions of MySQL running: 5.1.57, 5.0.24a and 4.1.11. The current version is also displayed when you log in to the MySQL server.&lt;br /&gt;
&lt;br /&gt;
==How much does a database at XMission cost?==&lt;br /&gt;
If you have a Deluxe Hosting or Pro Hosting account, an SQL database  is included in your account package. For any other account type, the charge is $5 per month.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I get a database set up for my account?==&lt;br /&gt;
To add a database to your account, either [mailto:support@xmission.com email support@xmission.com] or contact sales. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How do I log in to my database?==&lt;br /&gt;
Depending on your MySQL version, you will need to connect to a different host. For MySQL version 4.x, the server name is &#039;&#039;mysql-41.xmission.com&#039;&#039;&lt;br /&gt;
&amp;lt;div class=&amp;quot;messagebox metadata&amp;quot;&amp;gt;&#039;&#039;&#039;Note&#039;&#039;&#039;: &#039;&#039;mysql.xmission.com&#039;&#039; is the same machine, and will work for legacy purposes.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For MySQL version 5.x the server name is &#039;&#039;mysql-50.xmission.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To use a web interface to access your database, visit https://phpmyadmin.xmission.com/&lt;br /&gt;
&lt;br /&gt;
To connect directly to the database from our shell server:&lt;br /&gt;
#telnet or ssh to &#039;&#039;shell.xmission.com&#039;&#039;&lt;br /&gt;
#&amp;lt;tt&amp;gt;mysql -u acctname -h servername -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
#This will prompt you for a password, which is not necessarily the same as your login password.&lt;br /&gt;
&lt;br /&gt;
For example: to connect to a MySQL version 5.x database, you would use:&lt;br /&gt;
&amp;lt;tt&amp;gt;mysql -u acctname -h mysql-50.xmission.com -p databasename&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==What can I use to access my database?==&lt;br /&gt;
There isn&#039;t a &amp;quot;recommended&amp;quot; method to access your database, but here  is a list of the more popular programing languages connection methods  which we support. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;perl&#039;&#039;&#039; : DBI module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;python&#039;&#039;&#039; : mysql module or MySQLdb module &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;php&#039;&#039;&#039; : php has been compiled with the mysql functions built in &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C&#039;&#039;&#039; : The header and libraries for mysql are installed so #include  &amp;lt;mysql/mysql.h&amp;gt; will need to be present in your source files. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;C++&#039;&#039;&#039; : same as C, but we also have mysql++ headers and libraries on  XMission servers. To use this, #include &amp;lt;sqlplus&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Java&#039;&#039;&#039; : JDBC classes are available &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What do I do if I forgot my password?==&lt;br /&gt;
[mailto:support@xmission.com Email support@xmission.com] to have  your password reset. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Do I have a size limit (quota) for my database?==&lt;br /&gt;
&lt;br /&gt;
Yes. The size of your database counts against your /home quota, which is  100MB default for most account types. Pro Hosting accounts get 200MB /home  storage, and additional storage can be purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Can I use stored routines?==&lt;br /&gt;
&lt;br /&gt;
Our MySQL 5.0 server support stored functions, procedures, triggers, and other such routines.  Since it is a shared server, we do not allow users to create or edit their own routines.  If you would like to have a routine installed, please contact support, providing a full copy of the routine you&#039;d like installed.  We will install the routine if we decide the code does not cause any problems or cause an unreasonable support burden.  If you would like more complete control over database routines, please consider our [[VPS]] or [[Colocate]] products.&lt;br /&gt;
&lt;br /&gt;
==Where can I get more information about using MySQL?==&lt;br /&gt;
&lt;br /&gt;
Thorough documentation can be found at [http://www.mysql.com MySQL.com].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Hosting Archives|MySQL FAQ]]&lt;br /&gt;
[[Category:FAQ|MySQL]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_An_Announce-only_Mailer&amp;diff=2452</id>
		<title>Phplist: An Announce-only Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_An_Announce-only_Mailer&amp;diff=2452"/>
		<updated>2009-03-30T20:11:25Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: Phplist: An Announce-only Mailer moved to Phplist: Announcement Mailer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Phplist: Announcement Mailer]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2451</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2451"/>
		<updated>2009-03-30T20:11:25Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: Phplist: An Announce-only Mailer moved to Phplist: Announcement Mailer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== phplist&#039;s 30+ feature set includes: ==&lt;br /&gt;
&lt;br /&gt;
* double opt-in subscription mechanism&lt;br /&gt;
* scheduling&lt;br /&gt;
* RSS&lt;br /&gt;
* list segmentation&lt;br /&gt;
* click-tracking&lt;br /&gt;
* attachments&lt;br /&gt;
* bounce management&lt;br /&gt;
&lt;br /&gt;
== Wiki Articles: ==&lt;br /&gt;
&lt;br /&gt;
*[[phplist Features]]&lt;br /&gt;
*[[phplist Demo]]&lt;br /&gt;
*[[phplist User Guide]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Announcement_List&amp;diff=2450</id>
		<title>Announcement List</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Announcement_List&amp;diff=2450"/>
		<updated>2009-03-30T20:10:51Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: Announcement List moved to Phplist: An Announce-only Mailer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Phplist: An Announce-only Mailer]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2449</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2449"/>
		<updated>2009-03-30T20:10:51Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: Announcement List moved to Phplist: An Announce-only Mailer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== phplist&#039;s 30+ feature set includes: ==&lt;br /&gt;
&lt;br /&gt;
* double opt-in subscription mechanism&lt;br /&gt;
* scheduling&lt;br /&gt;
* RSS&lt;br /&gt;
* list segmentation&lt;br /&gt;
* click-tracking&lt;br /&gt;
* attachments&lt;br /&gt;
* bounce management&lt;br /&gt;
&lt;br /&gt;
== Wiki Articles: ==&lt;br /&gt;
&lt;br /&gt;
*[[phplist Features]]&lt;br /&gt;
*[[phplist Demo]]&lt;br /&gt;
*[[phplist User Guide]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2448</id>
		<title>XMission Services</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2448"/>
		<updated>2009-03-30T20:10:14Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Web Publishing Basics]]&lt;br /&gt;
*[[Webspace Permissions and File Uploading]]&lt;br /&gt;
*[[Email]]&lt;br /&gt;
*[[Mailing Lists]]&lt;br /&gt;
*[[Instant Messaging]]&lt;br /&gt;
*[[Remote Drive]]&lt;br /&gt;
*[[Announcement List]]&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2447</id>
		<title>XMission Services</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2447"/>
		<updated>2009-03-30T20:09:58Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Web Publishing Basics]]&lt;br /&gt;
*[[Webspace Permissions and File Uploading]]&lt;br /&gt;
*[[Email]]&lt;br /&gt;
*[[Mailing Lists]]&lt;br /&gt;
*[[Instant Messaging]]&lt;br /&gt;
*[[Remote Drive]]&lt;br /&gt;
*[[phplist: Announcement List]]&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist_User_Guide&amp;diff=2444</id>
		<title>Phplist User Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist_User_Guide&amp;diff=2444"/>
		<updated>2009-03-30T19:10:03Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: /* Concepts » 1. the Basics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Concepts » 1. the Basics ===&lt;br /&gt;
For more in-depth documentation visit phplist.com here: [http://docs.phplist.com/PhplistDocumentation]&lt;br /&gt;
&lt;br /&gt;
== Users &amp;amp; Lists ==&lt;br /&gt;
&lt;br /&gt;
phpList employs a very flexible “membership” concept.&lt;br /&gt;
&lt;br /&gt;
A User is an email address plus some Preferences, such as &amp;quot;I always want HTML emails&amp;quot;, and, optionally, some Attributes (&amp;quot;my name is Bob&amp;quot;, &amp;quot;I&#039;m a Pastafarian&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
A List is a grouper around some theme. It has Messages and Members.&lt;br /&gt;
&lt;br /&gt;
A User may be a Member of (or Subscriber to) multiple Lists.&lt;br /&gt;
&lt;br /&gt;
If you Import Users, from a CSV file for example, you have the option of automatically adding them to any of your Lists.&lt;br /&gt;
&lt;br /&gt;
This &amp;quot;Many-to-Many&amp;quot; between Lists and Users (each List may have many Users; each User may belong to many Lists) may seem odd, but, oh, say you have a &amp;quot;Bathroom Safety&amp;quot;, &amp;quot;Fishing Tips&amp;quot;, and &amp;quot;Lounger Living&amp;quot; mailings. Well, you could setup these three Lists and allow your Users to Subscribe to any or all of your Lists they wish.&lt;br /&gt;
&lt;br /&gt;
Many sites using phpList only have one List, and all Users should be Members of that, so it seems odd, this extra flexibility. You&#039;ll find that you can customize messages fairly well to remove any possible confusion for you or your Users.&lt;br /&gt;
&lt;br /&gt;
== Messages &amp;amp; Templates ==&lt;br /&gt;
&lt;br /&gt;
Now the other side of the system, Messages &amp;amp; Templates.&lt;br /&gt;
&lt;br /&gt;
A Message is a single email (event) sent to the Members of one or more Lists (yes, targeting multiple lists is allowed)&lt;br /&gt;
&lt;br /&gt;
A Message may use a Template or you may enter the Message Content in a &amp;quot;one-off&amp;quot; fashion, entering your HTML directly.&lt;br /&gt;
&lt;br /&gt;
A Template must contain a CONTENT Placeholder. This defines an area within your email design that will be filled with the Message Content, allowing you to have a consistent look to your pages, while the content changes with each mailing.&lt;br /&gt;
&lt;br /&gt;
Other Placeholders allow you to include a unique URL for each User that allows them to change their Preferences or Unsubscribe. You may also use any of the optional Attributes you defined.&lt;br /&gt;
&lt;br /&gt;
== System Behaviors ==&lt;br /&gt;
Here are a few built-in behaviors of phpList. Love &#039;em. Hate &#039;em. Either way, live with &#039;em.&lt;br /&gt;
&lt;br /&gt;
By design, a single Message is only sent to any User once.&lt;br /&gt;
&lt;br /&gt;
By default Users do not receive Messages until they Confirm their List membership. (as an Admin you are able to override this) This means that as soon as they sign-up for a List they receive a Confirmation Request (email). They must then click the link that was included in the email to acknowledge and agree to List membership.&lt;br /&gt;
&lt;br /&gt;
There are lots more features (some would say quirks, but all have a reason for being there once you see the Big Picture), so explore the documentation.&lt;br /&gt;
&lt;br /&gt;
== Documentation Reference ==&lt;br /&gt;
Taken from [[http://docs.phplist.com/PhpListConcepts]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist_User_Guide&amp;diff=2412</id>
		<title>Phplist User Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist_User_Guide&amp;diff=2412"/>
		<updated>2009-03-30T17:54:49Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: phplist basics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Concepts » 1. the Basics ===&lt;br /&gt;
For more in-depth documentation visit phplist.com here: [[http://docs.phplist.com/PhplistDocumentation&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
== Users &amp;amp; Lists ==&lt;br /&gt;
&lt;br /&gt;
phpList employs a very flexible “membership” concept.&lt;br /&gt;
&lt;br /&gt;
A User is an email address plus some Preferences, such as &amp;quot;I always want HTML emails&amp;quot;, and, optionally, some Attributes (&amp;quot;my name is Bob&amp;quot;, &amp;quot;I&#039;m a Pastafarian&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
A List is a grouper around some theme. It has Messages and Members.&lt;br /&gt;
&lt;br /&gt;
A User may be a Member of (or Subscriber to) multiple Lists.&lt;br /&gt;
&lt;br /&gt;
If you Import Users, from a CSV file for example, you have the option of automatically adding them to any of your Lists.&lt;br /&gt;
&lt;br /&gt;
This &amp;quot;Many-to-Many&amp;quot; between Lists and Users (each List may have many Users; each User may belong to many Lists) may seem odd, but, oh, say you have a &amp;quot;Bathroom Safety&amp;quot;, &amp;quot;Fishing Tips&amp;quot;, and &amp;quot;Lounger Living&amp;quot; mailings. Well, you could setup these three Lists and allow your Users to Subscribe to any or all of your Lists they wish.&lt;br /&gt;
&lt;br /&gt;
Many sites using phpList only have one List, and all Users should be Members of that, so it seems odd, this extra flexibility. You&#039;ll find that you can customize messages fairly well to remove any possible confusion for you or your Users.&lt;br /&gt;
&lt;br /&gt;
== Messages &amp;amp; Templates ==&lt;br /&gt;
&lt;br /&gt;
Now the other side of the system, Messages &amp;amp; Templates.&lt;br /&gt;
&lt;br /&gt;
A Message is a single email (event) sent to the Members of one or more Lists (yes, targeting multiple lists is allowed)&lt;br /&gt;
&lt;br /&gt;
A Message may use a Template or you may enter the Message Content in a &amp;quot;one-off&amp;quot; fashion, entering your HTML directly.&lt;br /&gt;
&lt;br /&gt;
A Template must contain a CONTENT Placeholder. This defines an area within your email design that will be filled with the Message Content, allowing you to have a consistent look to your pages, while the content changes with each mailing.&lt;br /&gt;
&lt;br /&gt;
Other Placeholders allow you to include a unique URL for each User that allows them to change their Preferences or Unsubscribe. You may also use any of the optional Attributes you defined.&lt;br /&gt;
&lt;br /&gt;
== System Behaviors ==&lt;br /&gt;
Here are a few built-in behaviors of phpList. Love &#039;em. Hate &#039;em. Either way, live with &#039;em.&lt;br /&gt;
&lt;br /&gt;
By design, a single Message is only sent to any User once.&lt;br /&gt;
&lt;br /&gt;
By default Users do not receive Messages until they Confirm their List membership. (as an Admin you are able to override this) This means that as soon as they sign-up for a List they receive a Confirmation Request (email). They must then click the link that was included in the email to acknowledge and agree to List membership.&lt;br /&gt;
&lt;br /&gt;
There are lots more features (some would say quirks, but all have a reason for being there once you see the Big Picture), so explore the documentation.&lt;br /&gt;
&lt;br /&gt;
== Documentation Reference ==&lt;br /&gt;
Taken from [[http://docs.phplist.com/PhpListConcepts]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist_User_Guide&amp;diff=2411</id>
		<title>Phplist User Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist_User_Guide&amp;diff=2411"/>
		<updated>2009-03-30T17:53:07Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: New page: === Concepts » 1. the Basics ===   == Users &amp;amp; Lists ==  phpList employs a very flexible “membership” concept.  A User is an email address plus some Preferences, such as &amp;quot;I always want...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Concepts » 1. the Basics ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Users &amp;amp; Lists ==&lt;br /&gt;
&lt;br /&gt;
phpList employs a very flexible “membership” concept.&lt;br /&gt;
&lt;br /&gt;
A User is an email address plus some Preferences, such as &amp;quot;I always want HTML emails&amp;quot;, and, optionally, some Attributes (&amp;quot;my name is Bob&amp;quot;, &amp;quot;I&#039;m a Pastafarian&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
A List is a grouper around some theme. It has Messages and Members.&lt;br /&gt;
&lt;br /&gt;
A User may be a Member of (or Subscriber to) multiple Lists.&lt;br /&gt;
&lt;br /&gt;
If you Import Users, from a CSV file for example, you have the option of automatically adding them to any of your Lists.&lt;br /&gt;
&lt;br /&gt;
This &amp;quot;Many-to-Many&amp;quot; between Lists and Users (each List may have many Users; each User may belong to many Lists) may seem odd, but, oh, say you have a &amp;quot;Bathroom Safety&amp;quot;, &amp;quot;Fishing Tips&amp;quot;, and &amp;quot;Lounger Living&amp;quot; mailings. Well, you could setup these three Lists and allow your Users to Subscribe to any or all of your Lists they wish.&lt;br /&gt;
&lt;br /&gt;
Many sites using phpList only have one List, and all Users should be Members of that, so it seems odd, this extra flexibility. You&#039;ll find that you can customize messages fairly well to remove any possible confusion for you or your Users.&lt;br /&gt;
&lt;br /&gt;
== Messages &amp;amp; Templates ==&lt;br /&gt;
&lt;br /&gt;
Now the other side of the system, Messages &amp;amp; Templates.&lt;br /&gt;
&lt;br /&gt;
A Message is a single email (event) sent to the Members of one or more Lists (yes, targeting multiple lists is allowed)&lt;br /&gt;
&lt;br /&gt;
A Message may use a Template or you may enter the Message Content in a &amp;quot;one-off&amp;quot; fashion, entering your HTML directly.&lt;br /&gt;
&lt;br /&gt;
A Template must contain a CONTENT Placeholder. This defines an area within your email design that will be filled with the Message Content, allowing you to have a consistent look to your pages, while the content changes with each mailing.&lt;br /&gt;
&lt;br /&gt;
Other Placeholders allow you to include a unique URL for each User that allows them to change their Preferences or Unsubscribe. You may also use any of the optional Attributes you defined.&lt;br /&gt;
&lt;br /&gt;
== System Behaviors ==&lt;br /&gt;
Here are a few built-in behaviors of phpList. Love &#039;em. Hate &#039;em. Either way, live with &#039;em.&lt;br /&gt;
&lt;br /&gt;
By design, a single Message is only sent to any User once.&lt;br /&gt;
&lt;br /&gt;
By default Users do not receive Messages until they Confirm their List membership. (as an Admin you are able to override this) This means that as soon as they sign-up for a List they receive a Confirmation Request (email). They must then click the link that was included in the email to acknowledge and agree to List membership.&lt;br /&gt;
&lt;br /&gt;
There are lots more features (some would say quirks, but all have a reason for being there once you see the Big Picture), so explore the documentation.&lt;br /&gt;
&lt;br /&gt;
== Documentation Reference ==&lt;br /&gt;
Taken from [[http://docs.phplist.com/PhpListConcepts]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2410</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2410"/>
		<updated>2009-03-30T17:50:46Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== phplist&#039;s 30+ feature set includes: ==&lt;br /&gt;
&lt;br /&gt;
* double opt-in subscription mechanism&lt;br /&gt;
* scheduling&lt;br /&gt;
* RSS&lt;br /&gt;
* list segmentation&lt;br /&gt;
* click-tracking&lt;br /&gt;
* attachments&lt;br /&gt;
* bounce management&lt;br /&gt;
&lt;br /&gt;
== Wiki Articles: ==&lt;br /&gt;
&lt;br /&gt;
*[[phplist Features]]&lt;br /&gt;
*[[phplist Demo]]&lt;br /&gt;
*[[phplist User Guide]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist_Demo&amp;diff=2409</id>
		<title>Phplist Demo</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist_Demo&amp;diff=2409"/>
		<updated>2009-03-30T17:48:05Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: Demo of phplist from phplist.com&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== phplist Demonstration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everything works in the demo, except the actual delivery of email messages.&lt;br /&gt;
&lt;br /&gt;
    * Admin URL: [[http://demo.phplist.com/lists/admin/]]&lt;br /&gt;
    * Admin login: admin&lt;br /&gt;
    * Admin password: phplist&lt;br /&gt;
    * Frontend URL: [[http://demo.phplist.com/lists/]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist_Demo&amp;diff=2408</id>
		<title>Phplist Demo</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist_Demo&amp;diff=2408"/>
		<updated>2009-03-30T17:47:31Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: New page:  == phplist Demonstration ==   Everything works in the demo, except the actual delivery of email messages.      * Admin URL: http://demo.phplist.com/lists/admin/     * Admin login: adm...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== phplist Demonstration ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everything works in the demo, except the actual delivery of email messages.&lt;br /&gt;
&lt;br /&gt;
    * Admin URL: [[http://demo.phplist.com/lists/admin/]]&lt;br /&gt;
    * Admin login: admin&lt;br /&gt;
    * Admin password: phplist&lt;br /&gt;
    * Frontend URL: [[http://demo.phplist.com/lists/]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2407</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2407"/>
		<updated>2009-03-30T17:46:52Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== phplist&#039;s 30+ feature set includes: ==&lt;br /&gt;
&lt;br /&gt;
* double opt-in subscription mechanism&lt;br /&gt;
* scheduling&lt;br /&gt;
* RSS&lt;br /&gt;
* list segmentation&lt;br /&gt;
* click-tracking&lt;br /&gt;
* attachments&lt;br /&gt;
* bounce management&lt;br /&gt;
&lt;br /&gt;
== Wiki Articles: ==&lt;br /&gt;
&lt;br /&gt;
*[[phplist Features]]&lt;br /&gt;
*[[phplist Demo]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2406</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2406"/>
		<updated>2009-03-30T17:45:54Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== phplist&#039;s 30+ feature set includes: ==&lt;br /&gt;
&lt;br /&gt;
* double opt-in subscription mechanism&lt;br /&gt;
* scheduling&lt;br /&gt;
* RSS&lt;br /&gt;
* list segmentation&lt;br /&gt;
* click-tracking&lt;br /&gt;
* attachments&lt;br /&gt;
* bounce management&lt;br /&gt;
&lt;br /&gt;
== Wiki Articles: ==&lt;br /&gt;
&lt;br /&gt;
*[[phplist Features]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2405</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2405"/>
		<updated>2009-03-30T17:45:36Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Wiki Articles: ==&lt;br /&gt;
&lt;br /&gt;
*[[phplist Features]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== phplist&#039;s 30+ feature set includes: ==&lt;br /&gt;
&lt;br /&gt;
* double opt-in subscription mechanism&lt;br /&gt;
* scheduling&lt;br /&gt;
* RSS&lt;br /&gt;
* list segmentation&lt;br /&gt;
* click-tracking&lt;br /&gt;
* attachments&lt;br /&gt;
* bounce management&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2404</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2404"/>
		<updated>2009-03-30T17:44:19Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;phplist&#039;s 30+ feature set includes:&lt;br /&gt;
* double opt-in subscription mechanism&lt;br /&gt;
* scheduling&lt;br /&gt;
* RSS&lt;br /&gt;
* list segmentation&lt;br /&gt;
* click-tracking&lt;br /&gt;
* attachments&lt;br /&gt;
* bounce management&lt;br /&gt;
&lt;br /&gt;
*[[phplist Features]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist_Features&amp;diff=2403</id>
		<title>Phplist Features</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist_Features&amp;diff=2403"/>
		<updated>2009-03-30T17:40:36Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &#039;&#039;&#039; phplist Features&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*phplist is a one-way email announcement delivery system. It is great for newsletters, publicity lists, notifications, and many other uses. (It is different from group mailing list systems like mailman.)&lt;br /&gt;
&lt;br /&gt;
*The Web Interface lets you write and send messages, and manage phplist over the internet.&lt;br /&gt;
&lt;br /&gt;
*phplist keeps sending messages from your web server, even after you shut down your computer.&lt;br /&gt;
&lt;br /&gt;
*100 000 + subscribers. phplist is designed to manage mailing lists with hundreds of thousands of subscribers. phplist is excellent with smaller lists too!&lt;br /&gt;
&lt;br /&gt;
*No duplicate messages. No &#039;forgotten&#039; messages. phplist manages message delivery with a message queue, ensuring that every subscriber gets the email message, and that no subscribers receive two copies, even if they&#039;re subscribed to more than one list!&lt;br /&gt;
&lt;br /&gt;
*Open/View Tracking tells you how many users opened your email message. This provides a minimum statistic, as many email clients with privacy or security policies block images (gmail, thunderbird, and others).&lt;br /&gt;
&lt;br /&gt;
*Click Tracking tracks links and URLs. Statistics can be viewed by message, URL or subscriber.&lt;br /&gt;
&lt;br /&gt;
*Multiple Subscribe Pages allow you to choose many different combinations of templates, languages, user attributes and lists.&lt;br /&gt;
&lt;br /&gt;
*Templates are completely customizable, and make site integration a breeze.&lt;br /&gt;
&lt;br /&gt;
*Multiple Templates on different subscribe pages can integrate phplist with several different web sites.&lt;br /&gt;
&lt;br /&gt;
*Subscriber Attributes like &#039;name&#039;, &#039;country&#039;, and other personal information, are completely customizable. You can specify what information you need to get from users when they subscribe.&lt;br /&gt;
&lt;br /&gt;
*User Specific Content. You can use Subscriber Attributes in message content to make each and every email message personalized with the subscribers name, country, or any other attribute.&lt;br /&gt;
&lt;br /&gt;
*HTML email messages. Subscribers can be given the choice between text or html email messages. You decide whether subscribers can choose, what the default choice is, and what format a message is sent in: text only, html only, or both!&lt;br /&gt;
&lt;br /&gt;
*The HTML Editor allows you to edit html messages from phplist using FCKeditor. TinyMCE is also available.&lt;br /&gt;
&lt;br /&gt;
*Internationalization. phplist is available in English, French, German, Spanish, Portuguese, Traditional Chinese, Dutch, Vietname and Japanese and translation work is in progress for other languages.&lt;br /&gt;
&lt;br /&gt;
*Easy Install via Fantastico, FTP upload, or SSH.&lt;br /&gt;
&lt;br /&gt;
*Multiple List Administrators. The super-admin can assign lists to List Managers, who can manage their users and lists. The super-admin user can &#039;prepare&#039; messages that can be sent by list managers to their lists.&lt;br /&gt;
&lt;br /&gt;
*Subscriber Preferences. Every email message contains personalized URLs for subscribers to update their preferences or unsubscribe. Subscribers can update their own information and keep your database up to date. Unlike most other mailing list managers, in phplist subscribers can change their email address.&lt;br /&gt;
&lt;br /&gt;
*The User Management tools are excellent to manage and maintain large databases of subscribers.&lt;br /&gt;
&lt;br /&gt;
*Bounce Processing keeps your database clean of unused and non-existent email addresses.&lt;br /&gt;
&lt;br /&gt;
*Advanced Bounce handling let&#039;s you teach phplist to distinguish between permanent and temporary message-delivery errors. You can define automated actions on receipt of bounce messages according to matches with your regular expressions.&lt;br /&gt;
&lt;br /&gt;
*CSV Import and Export. Use CSV and tab delimited files to import your existing list of users or to export the users on the phplist system for use in your in-house database. phplist&#039;s database has a &#039;foreign key&#039; to help keep multiple copies of databases synchronized without duplicating users.&lt;br /&gt;
&lt;br /&gt;
*Attachments can be uploaded and included in messages for download.&lt;br /&gt;
&lt;br /&gt;
*Send a Web page. Tell phplist the URL of a web page you want to send to your users, and phplist will fetch it and send it. You can even put subscriber-specific parameters in the URL.&lt;br /&gt;
&lt;br /&gt;
*RSS feeds can be automatically sent to a mailing list weekly, daily, or monthly.&lt;br /&gt;
&lt;br /&gt;
*PDF messages can be automatically created and sent as attachments to ensure that your message is seen the way it was designed by all your subscribers, regardless of their email message reader.&lt;br /&gt;
&lt;br /&gt;
*Batch Processing is useful in shared hosting environments. Set the maximum number of sent messages in a given time period.&lt;br /&gt;
&lt;br /&gt;
*Throttling can limit the load on your server so it doesn&#039;t overload.&lt;br /&gt;
&lt;br /&gt;
*Domain Throttling limits the number of emails to specific domains to keep on the friendly side of their system administrators.&lt;br /&gt;
&lt;br /&gt;
*Scheduled Sending let&#039;s you tell phplist when the message is to be sent.&lt;br /&gt;
&lt;br /&gt;
*Repetition. A message can be repeated automatically to send updated dynamic content and attachments.&lt;br /&gt;
&lt;br /&gt;
*Text from HTML. Text email messages are managed fluently in phplist. phplist will automatically create a text version of an html message. &lt;br /&gt;
&lt;br /&gt;
*Optionally the message composer can create it manually.&lt;br /&gt;
&lt;br /&gt;
*PGP signing and encrypting (soon).&lt;br /&gt;
&lt;br /&gt;
*Send your message digitally signed or encrypted, or both.&lt;br /&gt;
&lt;br /&gt;
*Email to Fax (soon).&lt;br /&gt;
&lt;br /&gt;
*Configure the details of your favourite email 2 fax gateway and phplist will send the HTML version of the message as a PDF attachment to your fax gateway. The fax will include the images in the HTML.&lt;br /&gt;
&lt;br /&gt;
*Integration with other tools. Several systems exist on the internet that integrate phplist with your favourite CMS or blogging tool. Check out the Documentation for a list.&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist_Features&amp;diff=2402</id>
		<title>Phplist Features</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist_Features&amp;diff=2402"/>
		<updated>2009-03-30T17:38:43Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: Feature List&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &#039;&#039;&#039; phplist Features&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
phplist is a one-way email announcement delivery system. It is great for newsletters, publicity lists, notifications, and many other uses. (It is different from group mailing list systems like mailman.)&lt;br /&gt;
&lt;br /&gt;
The Web Interface lets you write and send messages, and manage phplist over the internet.&lt;br /&gt;
&lt;br /&gt;
phplist keeps sending messages from your web server, even after you shut down your computer.&lt;br /&gt;
&lt;br /&gt;
100 000 + subscribers. phplist is designed to manage mailing lists with hundreds of thousands of subscribers. phplist is excellent with smaller lists too!&lt;br /&gt;
&lt;br /&gt;
No duplicate messages. No &#039;forgotten&#039; messages. phplist manages message delivery with a message queue, ensuring that every subscriber gets the email message, and that no subscribers receive two copies, even if they&#039;re subscribed to more than one list!&lt;br /&gt;
&lt;br /&gt;
Open/View Tracking tells you how many users opened your email message. This provides a minimum statistic, as many email clients with privacy or security policies block images (gmail, thunderbird, and others).&lt;br /&gt;
&lt;br /&gt;
Click Tracking tracks links and URLs. Statistics can be viewed by message, URL or subscriber.&lt;br /&gt;
&lt;br /&gt;
Multiple Subscribe Pages allow you to choose many different combinations of templates, languages, user attributes and lists.&lt;br /&gt;
&lt;br /&gt;
Templates are completely customizable, and make site integration a breeze.&lt;br /&gt;
&lt;br /&gt;
Multiple Templates on different subscribe pages can integrate phplist with several different web sites.&lt;br /&gt;
&lt;br /&gt;
Subscriber Attributes like &#039;name&#039;, &#039;country&#039;, and other personal information, are completely customizable. You can specify what information you need to get from users when they subscribe.&lt;br /&gt;
&lt;br /&gt;
User Specific Content. You can use Subscriber Attributes in message content to make each and every email message personalized with the subscribers name, country, or any other attribute.&lt;br /&gt;
&lt;br /&gt;
HTML email messages. Subscribers can be given the choice between text or html email messages. You decide whether subscribers can choose, what the default choice is, and what format a message is sent in: text only, html only, or both!&lt;br /&gt;
&lt;br /&gt;
The HTML Editor allows you to edit html messages from phplist using FCKeditor. TinyMCE is also available.&lt;br /&gt;
&lt;br /&gt;
Internationalization. phplist is available in English, French, German, Spanish, Portuguese, Traditional Chinese, Dutch, Vietname and Japanese and translation work is in progress for other languages.&lt;br /&gt;
&lt;br /&gt;
Easy Install via Fantastico, FTP upload, or SSH.&lt;br /&gt;
&lt;br /&gt;
Multiple List Administrators. The super-admin can assign lists to List Managers, who can manage their users and lists. The super-admin user can &#039;prepare&#039; messages that can be sent by list managers to their lists.&lt;br /&gt;
&lt;br /&gt;
Subscriber Preferences. Every email message contains personalized URLs for subscribers to update their preferences or unsubscribe. Subscribers can update their own information and keep your database up to date. Unlike most other mailing list managers, in phplist subscribers can change their email address.&lt;br /&gt;
&lt;br /&gt;
The User Management tools are excellent to manage and maintain large databases of subscribers.&lt;br /&gt;
&lt;br /&gt;
Bounce Processing keeps your database clean of unused and non-existent email addresses.&lt;br /&gt;
&lt;br /&gt;
Advanced Bounce handling let&#039;s you teach phplist to distinguish between permanent and temporary message-delivery errors. You can define automated actions on receipt of bounce messages according to matches with your regular expressions.&lt;br /&gt;
&lt;br /&gt;
CSV Import and Export. Use CSV and tab delimited files to import your existing list of users or to export the users on the phplist system for use in your in-house database. phplist&#039;s database has a &#039;foreign key&#039; to help keep multiple copies of databases synchronized without duplicating users.&lt;br /&gt;
&lt;br /&gt;
Attachments can be uploaded and included in messages for download.&lt;br /&gt;
&lt;br /&gt;
Send a Web page. Tell phplist the URL of a web page you want to send to your users, and phplist will fetch it and send it. You can even put subscriber-specific parameters in the URL.&lt;br /&gt;
&lt;br /&gt;
RSS feeds can be automatically sent to a mailing list weekly, daily, or monthly.&lt;br /&gt;
&lt;br /&gt;
PDF messages can be automatically created and sent as attachments to ensure that your message is seen the way it was designed by all your subscribers, regardless of their email message reader.&lt;br /&gt;
&lt;br /&gt;
Batch Processing is useful in shared hosting environments. Set the maximum number of sent messages in a given time period.&lt;br /&gt;
&lt;br /&gt;
Throttling can limit the load on your server so it doesn&#039;t overload.&lt;br /&gt;
&lt;br /&gt;
Domain Throttling limits the number of emails to specific domains to keep on the friendly side of their system administrators.&lt;br /&gt;
&lt;br /&gt;
Scheduled Sending let&#039;s you tell phplist when the message is to be sent.&lt;br /&gt;
&lt;br /&gt;
Repetition. A message can be repeated automatically to send updated dynamic content and attachments.&lt;br /&gt;
&lt;br /&gt;
Text from HTML. Text email messages are managed fluently in phplist. phplist will automatically create a text version of an html message. &lt;br /&gt;
&lt;br /&gt;
Optionally the message composer can create it manually.&lt;br /&gt;
&lt;br /&gt;
PGP signing and encrypting (soon).&lt;br /&gt;
&lt;br /&gt;
Send your message digitally signed or encrypted, or both.&lt;br /&gt;
&lt;br /&gt;
Email to Fax (soon).&lt;br /&gt;
&lt;br /&gt;
Configure the details of your favourite email 2 fax gateway and phplist will send the HTML version of the message as a PDF attachment to your fax gateway. The fax will include the images in the HTML.&lt;br /&gt;
&lt;br /&gt;
Integration with other tools. Several systems exist on the internet that integrate phplist with your favourite CMS or blogging tool. Check out the Documentation for a list.&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2401</id>
		<title>Phplist: Announcement Mailer</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Phplist:_Announcement_Mailer&amp;diff=2401"/>
		<updated>2009-03-30T17:38:26Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: What phplist can do for customers&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[phplist Features]]&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2400</id>
		<title>XMission Services</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2400"/>
		<updated>2009-03-30T17:37:51Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Web Publishing Basics]]&lt;br /&gt;
*[[Webspace Permissions and File Uploading]]&lt;br /&gt;
*[[Email]]&lt;br /&gt;
*[[Mailing Lists]]&lt;br /&gt;
*[[Instant Messaging]]&lt;br /&gt;
*[[Remote Drive]]&lt;br /&gt;
*[[Announcement List]]&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2399</id>
		<title>XMission Services</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2399"/>
		<updated>2009-03-30T17:37:37Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Web Publishing Basics]]&lt;br /&gt;
*[[Webspace Permissions and File Uploading]]&lt;br /&gt;
*[[Email]]&lt;br /&gt;
*[[Mailing Lists]]&lt;br /&gt;
*[[Instant Messaging]]&lt;br /&gt;
*[[Remote Drive]]&lt;br /&gt;
&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2397</id>
		<title>XMission Services</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Services&amp;diff=2397"/>
		<updated>2009-03-30T17:31:53Z</updated>

		<summary type="html">&lt;p&gt;Karmatrane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Web Publishing Basics]]&lt;br /&gt;
*[[Webspace Permissions and File Uploading]]&lt;br /&gt;
*[[Email]]&lt;br /&gt;
*[[Mailing Lists]]&lt;br /&gt;
*[[Instant Messaging]]&lt;br /&gt;
*[[Remote Drive]]&lt;br /&gt;
*[[Announcement Lists]]&lt;br /&gt;
&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Karmatrane</name></author>
	</entry>
</feed>