<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/messupclientwin/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/messupclientwin/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 24 Sep 2013 08:03:13 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/messupclientwin/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by line5</title><link>https://sourceforge.net/p/messupclientwin/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -127,8 +127,6 @@
 ======
 It's a triangle! Yeah, that's hipster! And ... we recycle words...

-&lt;a href="https://plus.google.com/105580914345269192654" rel="nofollow"&gt;Google+&lt;/a&gt;
-

 [[members limit=20]]

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">line5</dc:creator><pubDate>Tue, 24 Sep 2013 08:03:13 -0000</pubDate><guid>https://sourceforge.net6a2f69cfe70a71be22f3d5c581922727a21790f9</guid></item><item><title>Home modified by line5</title><link>https://sourceforge.net/p/messupclientwin/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">line5</dc:creator><pubDate>Mon, 23 Sep 2013 22:42:55 -0000</pubDate><guid>https://sourceforge.net40803df74dd6493fb4cff12eb0141829c0c30119</guid></item><item><title>Home modified by line5</title><link>https://sourceforge.net/p/messupclientwin/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,134 @@
-Welcome to your wiki!
+Chat with your website customers!
+======

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+This tiny software is useful to implement a small sales or support chat on your website. 

-The wiki uses [Markdown](/p/messupclientwin/wiki/markdown_syntax/) syntax.
+![Screenshot: The website visitors' perspective](https://pbs.twimg.com/media/BKTAiHiCYAAn4Ap.png:small)
+![Screenshot: The website owner's perspective](https://pbs.twimg.com/media/BKTAT7xCIAEnWmi.png:small)
+
+How does it work?
+======
+
+It consists of a client-side and a server-side part. 
+The client-side part is some kind of chat-client which you should install on your windows machine. 
+The server-side part is a chat-layer for your website. If your visitors send you a message via the chat-layer on your website, you are able to have a conversation with them directly using the windows chat client.
+
+In case somebody ends a conversation, an email containing the entire conversation is being sent.
+
+The solution might be useful for:
+
+  * Sales
+  * Support
+  * Consulting
+  * ...
+
+It is a very basic implementation. The intention was, to keep the installation as simple as possible - with no database, just files.
+
+Features
+======
+  * Serve multiple live support/sales chats on multiple websites with just one windows client
+  * Customers do not need to install anything (But JavaScript must be enabled within their browser!)
+  * Sound notification for new chats and incoming messages
+
+Installation
+======
+The system must be installed on the server, ensuring that there is a little "chat with our support"-field on your website.
+You also need the windows client, to receive the visitors' messages, and to answer them.
+
+Server-side
+------
+1. download and unpack https://github.com/Line5/messup/archive/master.zip
++ edit the file src/messup/config.php:
+    * Add at least one agent
+    * change the email address 
+    * change the name
++ copy the messup directory including its contents to the public root directory of your webserver.
++ ensure that the php file is able to create a tmp folder within the messup directory.
++ include the following code to the header of your website, after embedding jquery: 
+
+jQuery:
+
+~~~~~~
+
+~~~~~~
+
+That's it!
+
+Client-side
+------
+
+1. download and install [Microsoft(R) .NET Framework 4.5](http://www.microsoft.com/en-us/download/details.aspx?id=30653)
++ download and install [MESSUP Chat Client for Windows](https://sourceforge.net/projects/messupclientwin/files/latest/download)
++ Start the program. Go to "Options" &gt; "Accounts". Create an entry containing the agent data, which you stored in the config.php further upwards.
+    * Url: usually http://www.yourdomain.com/messup/messup.php
+    * Username: usually your@email.com
+    * Password: same as in the config.php
++ Save the account data with the "OK" button.
++ Exit and restart the program. This is necessary for the new account to become active.
+
+
+FAQ
+======
+*What kind of database is needed?*
+No database is needed, neither on the server, nor on the client side.
+
+*Is the chat communication encrypted?*
+If your visitors visit your website using SSL, and you've setup an SSL URL in your client, it is encrypted. However, on the server, communication is stored unencrypted.
+
+*How can I change the notification sound?*
+You could replace the file _dingding.wav_ in the program directory.
+
+*Nothing appears on the website.*
+Please ensure that you've included the jQuery library on your website. For example like this:
+
+~~~~~~
+
+
+~~~~~~
+
+*Strange error messages appear since I've included jQuery...* 
+You might try using the jQuery compatibility mode:
+
+~~~~~~
+
+
+
+~~~~~~
+
+Compatibility with CMS and Shop systems
+======
+  * Messup [ChatForWordpress LiveChat for Wordpress]
+  * Messup [ChatForOXID4 LiveChat for OXID 4]
+
+Version History
+======
+2013-09-24 / version 0.22
+------
+  * Project moved to sourceforge.
+  * improved WIN XP compatibility by resizing icons.
+
+2013-09-07 / version 0.21
+------
+  * The project uses .NET 4.0 now instead of .NET 4.5, due to reported incompatibilities with Windows XP. The software should now be compatible with WIN XP.
+
+
+Developers
+======
+The source code for the php server files is hosted at https://github.com/Line5/messup
+The source code for the windows client is hosted at https://github.com/Line5/messupclientwin
+
+The code is not _that_ clean, but seems to work.
+
+Commercial Support
+======
+English and German language commercial support is available at Line5 e.K. (http://www.line5.eu).
+
+The Logo
+======
+It's a triangle! Yeah, that's hipster! And ... we recycle words...
+
+&lt;a href="https://plus.google.com/105580914345269192654" rel="nofollow"&gt;Google+&lt;/a&gt;
+

 [[members limit=20]]
-[[download_button]]
+
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">line5</dc:creator><pubDate>Mon, 23 Sep 2013 22:42:13 -0000</pubDate><guid>https://sourceforge.net21569b5093d7cb620bbf2826ae0c29038057ad05</guid></item><item><title>Home modified by line5</title><link>https://sourceforge.net/p/messupclientwin/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/messupclientwin/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/line5/"&gt;line5&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-5240aa2fc4d10468b5a4edae" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">line5</dc:creator><pubDate>Mon, 23 Sep 2013 20:53:04 -0000</pubDate><guid>https://sourceforge.netd198a00cbfc1c1611699ac53a415eb23e58a72f3</guid></item></channel></rss>