<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.creativecommons.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Brenton+Simpson</id>
		<title>Creative Commons - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.creativecommons.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Brenton+Simpson"/>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/wiki/Special:Contributions/Brenton_Simpson"/>
		<updated>2026-04-16T12:32:44Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=CcHost_Skins&amp;diff=4490</id>
		<title>CcHost Skins</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=CcHost_Skins&amp;diff=4490"/>
				<updated>2006-09-03T03:40:23Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: /* CSS Stlye Sheet */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:ccHost]]&lt;br /&gt;
[[Category:HOWTO]]&lt;br /&gt;
[[Category:Guide]]&lt;br /&gt;
[[Category:Customization]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
&lt;br /&gt;
The following is a rough outline, with background, on what you need to do to create your own skin in [[CcHost|ccHost]].&lt;br /&gt;
&lt;br /&gt;
= Create the Skin =&lt;br /&gt;
*Go to the cctemplates directory&lt;br /&gt;
*Copy all the files skin-simple*.* to skin-joesoft*.*&lt;br /&gt;
*In skin-joesoft.xml on approx. line 25, replace the reference to '''string:skin-simple-map.xml''' with '''string:skin-joesoft-map.xml'''&lt;br /&gt;
*Log in with the admin you created during setup&lt;br /&gt;
*Click 'Manage Site'&lt;br /&gt;
*Scroll down and click 'Settings'&lt;br /&gt;
*Select 'joesoft' from the the skins drop down and Submit&lt;br /&gt;
&lt;br /&gt;
You now have your own sand box.&lt;br /&gt;
&lt;br /&gt;
= What Makes a 'Skin' =&lt;br /&gt;
&lt;br /&gt;
Each skin has three unique files, a style sheet, a template map and a main template.&lt;br /&gt;
&lt;br /&gt;
=== CSS Style Sheet ===&lt;br /&gt;
&lt;br /&gt;
100% (or close) of the style information is here, not in the code, not&lt;br /&gt;
in the templates. You should be able to hork things pretty good if you&lt;br /&gt;
never do anything but edit this one file.&lt;br /&gt;
&lt;br /&gt;
=== Template Map and Main Page ===&lt;br /&gt;
&lt;br /&gt;
You only need to mess with templates if you really hate the layout and&lt;br /&gt;
can't position using CSS (hey, it happens and yes, we use tables&lt;br /&gt;
occasionally)&lt;br /&gt;
&lt;br /&gt;
We use phpTAL for our templates. (It's 90% amazing, 10% head&lt;br /&gt;
scratching crazy.)&lt;br /&gt;
&lt;br /&gt;
Hint: phpTAL is 100% XML so &lt;br /&gt;
&lt;br /&gt;
 &amp;amp;lt;hr&amp;amp;gt; &lt;br /&gt;
 &amp;amp;lt;img src=&amp;quot;&amp;quot;&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
don't work, It's &lt;br /&gt;
&lt;br /&gt;
 &amp;amp;lt;hr/&amp;amp;gt; &lt;br /&gt;
 &amp;amp;lt;img src=&amp;quot;&amp;quot; /&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
Each area of the screen in ccHost/Mixter is represented with a template macro&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;metal:block define-macro=&amp;quot;show_remix_children&amp;quot;&amp;amp;gt;&lt;br /&gt;
 &amp;amp;lt;tal:block define=&amp;quot;reply record/local_menu/remix/replyremix | nothing&amp;quot; on-error=&amp;quot;&amp;quot;/&amp;amp;gt;&lt;br /&gt;
 &amp;amp;lt;tal:block define=&amp;quot;do_children record/has_children | reply | record/is_orphan_original&amp;quot; tal:on-error=&amp;quot;&amp;quot; /&amp;amp;gt;&lt;br /&gt;
 &amp;amp;lt;div id=&amp;quot;cc_upstream_mixes&amp;quot; tal:condition=&amp;quot;do_children&amp;quot; &amp;amp;gt;&lt;br /&gt;
     &amp;amp;lt;p tal:condition=&amp;quot;record/is_orphan_original&amp;quot; id=&amp;quot;noonesampled&amp;quot; tal:content=&amp;quot;php: CC_lang('(no one has sampled this)')&amp;quot; /&amp;amp;gt; &lt;br /&gt;
/* .... etc ...*/&lt;br /&gt;
&amp;amp;lt;/metal:block&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These templates blocks are shared amongst skins and many outer templates refer to inner ones:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;metal:block define-macro=&amp;quot;show_remix_children&amp;quot;&amp;amp;gt;&lt;br /&gt;
...&lt;br /&gt;
             &amp;amp;lt;metal:block use-macro=&amp;quot;${remix_line}&amp;quot; /&amp;amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;amp;lt;/metal:block&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the example above, the actual implementation of 'remix_line' is determined by the Template Map file. In skin-joesoft-map.xml you see that you inherit the default map from skin-blank. If you want to override a specific template, you add a single block to your map file that will do that for you (see skin-ccmixter-map.xml for an example):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;tal:block define=&amp;quot;&lt;br /&gt;
   remix_line string:skin-joesoft.xml/joesofts_remix_line;&lt;br /&gt;
&amp;quot;&lt;br /&gt;
 /&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you're (finally) ready to write some XHMTL. In skin-joesoft.xml add your template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;metal:block define-macro=&amp;quot;joesofts_remix_link&amp;quot;&amp;amp;gt;&lt;br /&gt;
...&lt;br /&gt;
    &amp;amp;lt;a class=&amp;quot;js_remix_link&amp;quot; href=&amp;quot;${rs/file_page_url}&amp;quot;&amp;amp;gt;${rs/upload_name}&amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;amp;lt;/metal:block&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hint: Don't put too many macros in the same XML file, it slows down page rendering. A lot.&lt;br /&gt;
&lt;br /&gt;
= Viewing Variables =&lt;br /&gt;
&lt;br /&gt;
You can dump various records at any time, right onto the screen. Edit index.php and change '''CCDebug::Enable(false)''' to '''CCDebug::Enable(true)'''&lt;br /&gt;
&lt;br /&gt;
As long as you logged in as admin, on any page browse to:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;nowiki&amp;gt;http://localhost/?dump_page=1&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tthat will list out all the global variables available to you (the user record is the currently logged in user).&lt;br /&gt;
&lt;br /&gt;
Upload an MP3 (or image or whatever) to your system. Then on the song's page add the dump_rec query:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;nowiki&amp;gt;http://localhost/media/files/3?dump_rec=1&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That will list out all the variables in a given upload record (the user record here is the one that uploaded the thing).&lt;br /&gt;
&lt;br /&gt;
Go crazy.&lt;br /&gt;
&lt;br /&gt;
= Support = &lt;br /&gt;
&lt;br /&gt;
At some point you'll probably request something that requires code changes, I think you'll find us very responsive to most things, however, you might be surprised how much interactivity policy is defined in the templates themselves.&lt;br /&gt;
&lt;br /&gt;
After you reach a certain point we'll give you access to one of the ''many'' dev mirror sites we have all around the web and you can use that to test out your skin against real ccMixter data and it gives us a chance to praise you, point out issues, add internal hacks and make suggestions.&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=CcHost&amp;diff=4489</id>
		<title>CcHost</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=CcHost&amp;diff=4489"/>
				<updated>2006-09-03T03:38:39Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: /* Upgrading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:ccHost]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
[[Category:Technology]]&lt;br /&gt;
[[Category:ccMixter]]&lt;br /&gt;
&lt;br /&gt;
'''ccHost''' is Creative Commons' open source ([http://creativecommons.org/licenses/GPL/2.0/ GPL] licensed) project that powers [http://ccmixter.org ccMixter] and is the winner of the [http://creativecommons.org/weblog/entry/6026 LinuxWorld Journal Product Excellence Award] for '''Best Open Source Solution.''' Read more about ccHost [[#Zeitgeist|here]].&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
=== Current Stable Release ===&lt;br /&gt;
&lt;br /&gt;
Latest stable builds of ccHost ([[CcHost_Release_Notes|NEWS]]) are available in several common archiving formats (.zip, .gzip, etc.)&lt;br /&gt;
&lt;br /&gt;
[http://sourceforge.net/project/showfiles.php?group_id=80503&amp;amp;package_id=156675 ccHost download page]&lt;br /&gt;
&lt;br /&gt;
To install: Unpack the contents of the archive on your local machine and see the README.&lt;br /&gt;
&lt;br /&gt;
=== Experimental Thrice-Daily Builds ===&lt;br /&gt;
&lt;br /&gt;
Currently, ccHost packages are being made three-times a day and are available here: &lt;br /&gt;
&lt;br /&gt;
[http://mirrors.creativecommons.org/cchost/packages/ ccHost 3x daily builds]&lt;br /&gt;
&lt;br /&gt;
Our experience has been very good however these are minimally tested builds so ''download, install and use these packages at your own risk.''&lt;br /&gt;
&lt;br /&gt;
Only 30 days worth of builds are saved currently.&lt;br /&gt;
&lt;br /&gt;
= Install = &lt;br /&gt;
&lt;br /&gt;
As stated above, all the information you need for installation is in the distribution package you downloaded. Treat these notes as addendums, hints and other possibly useful information.&lt;br /&gt;
&lt;br /&gt;
=== Simple  ===&lt;br /&gt;
&lt;br /&gt;
The easiest way to get going is to start with a web hosting server. Common web hosting services like [http://www.dreamhost.com/ Dreamhost] and [http://www.websitesource.com WebsiteSource] provide an administration interface for setting up a mysql database. Hosting services also provide some FTP or SFTP mechanism to upload the ccHost installation files as well. 99% of all services provide support for PHP as well. If you have questions about support in this area, check the server requirements below and with your hosting service.&lt;br /&gt;
&lt;br /&gt;
#Unzip the ccHost ZIP archive on your local system and copy the files to your server retaining the the directory structure.&lt;br /&gt;
#Browse to '''&amp;lt;nowiki&amp;gt;http://where_you_installed/ccadmin&amp;lt;/nowiki&amp;gt;''' and follow all the instructions from then on. &lt;br /&gt;
&lt;br /&gt;
=== Advanced ===&lt;br /&gt;
&lt;br /&gt;
If you have basic knowledge of using FTP and you are comfortable at a terminal command line you can use these steps to before, during and after installation. Many of these can be filed under &amp;quot;you'll be glad you did&amp;quot; by the time you get to the browser-based installation steps later on.&lt;br /&gt;
&lt;br /&gt;
==== Enabling 'Pretty URLs' ====&lt;br /&gt;
&lt;br /&gt;
All ccHost commands and URLs based on query strings:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://your_install_root/index.php?ccm=/media/people/victor&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That same URL can be made 'pretty' on Apache installations so that it looks more like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://your_install_root/media/people/victor&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here is the block of code in your .htaccess file setting the rewrite rules to get pretty urls:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteBase /&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
RewriteRule ^(.*)$ /index.php?ccm=/$1 [L,QSA]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you installed to a directory below the site's root make sure to specify that in the RewriteBase directive.&lt;br /&gt;
&lt;br /&gt;
For perfomance reasons (and if you are given access) you should put those directives into an Apache virtual host block in the .conf file for your server:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
ServerName ccmixter.localhost&lt;br /&gt;
ServerPath /ccmixter&lt;br /&gt;
#DocumentRoot /var/www/localhost/htdocs/cchost &lt;br /&gt;
DocumentRoot /home/rejon/Documents/freelance/creativecommons/src/ccmixter&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Directory &amp;quot;/home/rejon/Documents/freelance/creativecommons/src/ccmixter&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteBase /&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
RewriteRule ^(.*)$ /index.php?ccm=/$1 [L,QSA]&lt;br /&gt;
&amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== getID3 ====&lt;br /&gt;
&lt;br /&gt;
ccHost depends on the getID3 library for verifying uploads. Install getID3 (at least 1.7.3) here: http://www.getid3.org/#download before you install ccHost. (It's a simple download-unpack operation.)&lt;br /&gt;
&lt;br /&gt;
For example (on Linux):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tar xzf getid3.tar.gz&lt;br /&gt;
cp -a getid3/getid3 /var/www/localhost/htdocs/getid3/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The ccHost installer will 'find' your getID3 installation if it's roughly in the same area of the server, however it is ''not'' required that your getID3 be visible on the web and in fact, it's probably more secure if it isn't.&lt;br /&gt;
&lt;br /&gt;
==== ccHost Terminal Installtion ====&lt;br /&gt;
&lt;br /&gt;
*Unzip the ccHost ZIP or tar. bz2 archive on your local system and copy the files (retaining the directory structure) to your web-server directory. &lt;br /&gt;
* On Linux change the group and permissions of the files so they may be written by the web server (e.g., in the following lines, the web-server account is &amp;quot;apache&amp;quot;).&lt;br /&gt;
For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cp -a cchost-1.0.3 /var/www/localhost/htdocs/cchost&lt;br /&gt;
chgrp -R apache /var/www/localhost/htdocs/cchost&lt;br /&gt;
chmod g+w /var/www/localhost/htdocs/cchost/&lt;br /&gt;
chmod -R g+w /var/www/localhost/htdocs/cchost/cclib/phptal/phptal_cache/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Create a new database for ccHost (e.g., named &amp;quot;cchost&amp;quot;) and create an administrative user to access it (e.g., &amp;quot;cchostadmin&amp;quot;).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mysql -p -u root&lt;br /&gt;
mysql&amp;gt; CREATE DATABASE cchost;&lt;br /&gt;
mysql&amp;gt; GRANT SELECT,INSERT,UPDATE,DELETE,CREATE ON cchost.* TO 'cchostadmin'@'localhost' IDENTIFIED BY 'YOUR_PASSWORD_HERE';&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Make sure to change 'YOUR_PASSWORD_HERE' (and maybe 'cchostadmin') to something unique to your site.&lt;br /&gt;
(Many systems provide '''phpMyAdmin''' to take care of these tasks.&lt;br /&gt;
*Create directory /var/log/cchost or other location to store log files.  Must be writable by the web-server account (e.g., &amp;quot;apache&amp;quot;).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /var/log/cchost&lt;br /&gt;
chown apache:apache /var/log/cchost&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Finish with Install ====&lt;br /&gt;
&lt;br /&gt;
Browse to &amp;lt;nowiki&amp;gt;http://where_you_installed_cchost/ccadmin&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Everything else you need to know will be on the screen from that point on, including suggested php.ini and .htaccess settings, access permissions requirements, etc.&lt;br /&gt;
&lt;br /&gt;
==== More .htaccess file settings ====&lt;br /&gt;
&lt;br /&gt;
Put the following into a file named '.htaccess' in your root directory of a ccHost setup if you can't set your php.ini settings for your hosting setup. These settings should work, but should be tested first. They correct many memory problems people have with ccHost.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# php configs http://www.php.net/manual/en/ini.core.php#ini.memory-limit&lt;br /&gt;
# http://www.php.net/manual/en/ini.php#ini.list&lt;br /&gt;
&lt;br /&gt;
php_value max_input_time 200&lt;br /&gt;
php_value max_execution_time 200&lt;br /&gt;
php_value memory_limit 20M&lt;br /&gt;
php_value upload_max_filesize 20M&lt;br /&gt;
# next line fixes noncompliant &amp;amp; used in php&lt;br /&gt;
php_value arg_separator.output &amp;amp;amp;&lt;br /&gt;
php_flag session.use_trans_sid off&lt;br /&gt;
# turns off annoying autoquotes&lt;br /&gt;
php_flag magic_quotes_gpc off&lt;br /&gt;
&lt;br /&gt;
Options +MultiViews&lt;br /&gt;
&lt;br /&gt;
# Stop morons that are hammer your site&lt;br /&gt;
# Open Clip Art Library had someone DDoS'ing our site&lt;br /&gt;
&amp;lt;Limit GET&amp;gt;&lt;br /&gt;
 order deny,allow&lt;br /&gt;
 deny from 59.116.0.0/16&lt;br /&gt;
&amp;lt;/Limit&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Upgrading ===&lt;br /&gt;
'''Always''' make a backup of your mySQL ccHost database and the files you change (probably all of the ccfiles directory) before you start the upgrade process. Things go wrong. You have been warned.&lt;br /&gt;
&lt;br /&gt;
==== General ====&lt;br /&gt;
In general, small updates and patches come in a few files and only require that you copy over cclib and ccextras. Once you've copied the new system files&lt;br /&gt;
&lt;br /&gt;
#Log in as administrator to your current install (make sure to check 'Remember Me')&lt;br /&gt;
#Browse to: &amp;lt;nowiki&amp;gt;http://where_you_installed/?update=1&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Upgrading from 2.x to 3.0 ====&lt;br /&gt;
This specific upgrade requires a few extra steps&lt;br /&gt;
&lt;br /&gt;
#Make a BACKUP of your mySQL database (can be done via phpMyAdmin or from the command line using mysqldump)&lt;br /&gt;
#Make a BACKUP of your cchost directory onto your local machine (skip the /people and /contests directories). If you skip this step and you made changes (to say ccfiles/home.xml) then '''ALL YOUR CHANGES WILL BE LOST FOREVER'''&lt;br /&gt;
#Login to ccHost as your admin account and make sure to check 'Remember me'&lt;br /&gt;
#Unzip the cchost 3.0 package on your local machine&lt;br /&gt;
#Copy everything under the cchost directory '''EXCEPT''' ccadmin over your server's ccHost directory&lt;br /&gt;
#Delete the file '''ccextras/cc-language.php'''&lt;br /&gt;
#Delete ALL files under '''cclib/phptal/phptal_cache'''&lt;br /&gt;
#If you made changes to files in ccfiles (like home.xml), copy your local version over the ones on your server now.&lt;br /&gt;
#Browse to: &amp;lt;nowiki&amp;gt;http://where_you_installed/?update=1&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Troubleshooting ===&lt;br /&gt;
&lt;br /&gt;
==== File Access ====&lt;br /&gt;
By far the most common issue with new installs on Unix based systems involves file access permissions. The recommended way of dealing with this is to set the entire ccHost directory structure as all-access (0777) just while you get things going. If everything else is working then you should follow the &lt;br /&gt;
[[CcHost_File_Access|ccHost file access guildlines]].&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;There is an error rendering this page&amp;quot; ====&lt;br /&gt;
&lt;br /&gt;
The most common reason you get this error message on new installations is because the '''cclib/phptal/phptal_cache''' directory is not writable by ccHost. You should make sure this is not the case by setting that directory's permission to 0777 and trying again.&lt;br /&gt;
&lt;br /&gt;
The second most common reason are template errors during development of skins and other user interface testing. If you haven't already [[#Outputting Debug Messages|turn on debug messages]] login as admin and try to render the page again. &lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Down for upgrade, check back soon&amp;quot; ====&lt;br /&gt;
&lt;br /&gt;
This is actually an indication that something is wrong in the code (i.e. a bug) or your installation. [[#Outputting Debug Messages|Turn on debug messages]] and try to access your site. The very least that will do is give ccHost developers the exact location of the problem.&lt;br /&gt;
&lt;br /&gt;
==== Outputting Debug Messages ====&lt;br /&gt;
&lt;br /&gt;
In order to help ccHost developers troubleshoot your site you should enable debugging messages in your system. The easiest way to do this is to create a file called '''_DEBUG_.php''' with the following contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
  CCDebug::Enable(true);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and put that file into the '''ccextras''' directory.&lt;br /&gt;
&lt;br /&gt;
Now repeat the steps that led you to the problem and hopefully you will get more detailed information about the error.&lt;br /&gt;
&lt;br /&gt;
Make sure to remove this file in your production installation. ''Hint: Changing the extension to anything other than .php is the same as removing it''&lt;br /&gt;
&lt;br /&gt;
= Administration =&lt;br /&gt;
&lt;br /&gt;
So you've got your ccHost up and running. now what?&lt;br /&gt;
&lt;br /&gt;
''Victor is currently gathering data and writing up an Admin's Guide. If you have information you think would be useful please [https://lists.sourceforge.net/mailman/listinfo/cctools-cchost let him know].''&lt;br /&gt;
&lt;br /&gt;
== User Interface ==&lt;br /&gt;
&lt;br /&gt;
* [[Creating a custom user interface]]&lt;br /&gt;
* [[Creating a branded portal]]&lt;br /&gt;
&lt;br /&gt;
= Development =&lt;br /&gt;
&lt;br /&gt;
=== Source Code &amp;amp; Documentation ===&lt;br /&gt;
&lt;br /&gt;
* [http://svn.sourceforge.net/viewcvs.cgi/cctools/cchost/trunk/ Browsable Source Code (Anonymous)]&lt;br /&gt;
* [http://wiki.creativecommons.org/Source_Repository_Information How to Check Out Code]&lt;br /&gt;
* [http://mirrors.creativecommons.org/cchost/docs/ Online Code Documentation] including developer's guide.&lt;br /&gt;
&lt;br /&gt;
=== Creating Skins ===&lt;br /&gt;
&lt;br /&gt;
[[CcHost_Skins|How to create a skin for ccHost]]&lt;br /&gt;
&lt;br /&gt;
=== People ===&lt;br /&gt;
&lt;br /&gt;
* [[User:fourstones|Victor Stone]]&lt;br /&gt;
* [[User:Jon Phillips|Jon Phillips]]&lt;br /&gt;
&lt;br /&gt;
=== Communication ===&lt;br /&gt;
&lt;br /&gt;
* Chat: #cc on irc.freenode.net&lt;br /&gt;
* Wiki: This page (http://wiki.creativecommons.org/wiki/CcHost)&lt;br /&gt;
* Mailing List: https://lists.sourceforge.net/mailman/listinfo/cctools-cchost&lt;br /&gt;
** [http://sourceforge.net/mailarchive/forum.php?forum=cctools-cchost Archive]&lt;br /&gt;
&lt;br /&gt;
=== Submitting Code ===&lt;br /&gt;
&lt;br /&gt;
Before going too far down this road you definitely want to hop on the [https://lists.sourceforge.net/mailman/listinfo/cctools-cchost dev mailing list]. If you are shy ask to speak with Victor or Jon in private.&lt;br /&gt;
&lt;br /&gt;
[[HOWTO Patch|Submit Patches]]&lt;br /&gt;
&lt;br /&gt;
=== Bugs and Feature Requests ===&lt;br /&gt;
&lt;br /&gt;
''Make sure to use the 'ccHost' category when filing bugs. Also, please use a real email so that we can followup on any bugs posted. Be descriptive when posting and commenting on bugs (every bit counts).''&lt;br /&gt;
&lt;br /&gt;
* [https://sourceforge.net/tracker/?atid=559966&amp;amp;group_id=80503&amp;amp;func=browse Report Bugs]&lt;br /&gt;
* [https://sourceforge.net/tracker/?group_id=80503&amp;amp;atid=559969 Request Features]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CcHost]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
[[Category:opensource]]&lt;br /&gt;
[[Category:Technology]]&lt;br /&gt;
&lt;br /&gt;
= Zeitgeist =&lt;br /&gt;
&lt;br /&gt;
=== Goal ===&lt;br /&gt;
The goal of this project is to spread media content that is licensed under &lt;br /&gt;
Creative Commons throughout the web in much the same way that weblogs spread &lt;br /&gt;
CC licensed text. &lt;br /&gt;
&lt;br /&gt;
=== Short Description ===&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Web-based System Supporting Remixing and Collaboration on Media&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Slightly Longer Description === &lt;br /&gt;
'''ccHost''' is an open source ([http://creativecommons.org/licenses/GPL/2.0/ GPL] licensed) project that provides web-based infrastructure to support collaboration, sharing, and storage of multi-media using the Creative Commons licenses and metadata. It is the codebase used by [http://ccmixter.org ccMixter] and [[#Usage Examples|other sites]].&lt;br /&gt;
&lt;br /&gt;
Besides its focus on sharing content, ccHost differniates itself from other multi-media hosting programs by emphasizing the '''reuse''' (a.k.a. remixing) of content between artists, not only between artists on any given installation of ccHost, but between all installations across the web and any web site that implements the Creative Commons [http://ccmixter.org/media/viewfile/pool_api_doc.xml Sample Pool API], including non-ccHost sites such as the [http://freesound.iua.upf.edu/ freesound project].&lt;br /&gt;
&lt;br /&gt;
=== Press ===&lt;br /&gt;
&lt;br /&gt;
==== [[CcHost Release Notes|Release Notes]] ====&lt;br /&gt;
&lt;br /&gt;
==== [[CcHost Press Releases|Press Releases]] ====&lt;br /&gt;
&lt;br /&gt;
==== Sound Bites ====&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;ccHost enables you to '''run your own flickr or youtube while having an infrastructure for legally sharing audio, video, text, and other media.''&amp;quot; [[User:Jon Phillips|Jon Phillips]] 22:50, 25 August 2006 (UTC)&lt;br /&gt;
&lt;br /&gt;
''Please add your own sound bite...''&lt;br /&gt;
&lt;br /&gt;
==== [[ccHost Screenshots|Screenshots]] ====&lt;br /&gt;
&lt;br /&gt;
* The text for the front page can be changed by editing ccfiles/home.xml.  The other menu functions and so on are generally modified using the admin functions of the site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Usage Examples ===&lt;br /&gt;
&lt;br /&gt;
*[http://ccmixter.org ccMixter] - Primary usage of ccHost is the Creative Commons remix site, ccMixter.&lt;br /&gt;
*[http://www.opensourcecinema.com/cchost Open Source Cinema]&lt;br /&gt;
*[http://www.matrix-rayne.com Matrix Rayne Online]&lt;br /&gt;
*[http://remix.machinehasnoagenda.com/ remix.linux]&lt;br /&gt;
*[http://www.ccmixter.co.za/ ccmixter South Africa]&lt;br /&gt;
*[http://fourstones.net fourstones.net] Victor's personal website&lt;br /&gt;
*[http://www.openclipart.org/cchost/ Open Clip Art Library ccHost in testing]&lt;br /&gt;
*[http://www.esolpc.com/teacherhost/ TeacherHost] - for Instructors to share instructional materials.&lt;br /&gt;
*http://adrenalinicsound.com/music/&lt;br /&gt;
*[http://creativecommons.org.tw/formoz ccMixter Tawain]&lt;br /&gt;
* '''Please add your installation here.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Appendix A: Compatibility =&lt;br /&gt;
&lt;br /&gt;
=== Browsers ===&lt;br /&gt;
&lt;br /&gt;
Tested on: Firefox 1.0+ Mac/PC/Linux, IE 6+ PC, Safari Mac&lt;br /&gt;
&lt;br /&gt;
Cookies must be enabled.&lt;br /&gt;
&lt;br /&gt;
Most skins (the ones people will want to use) require Javascript enabled.&lt;br /&gt;
&lt;br /&gt;
=== Servers ===&lt;br /&gt;
&lt;br /&gt;
Primary development is done on Windows XP and up-to-date Linux development systems using Apache, mySQL, and PHP. &lt;br /&gt;
&lt;br /&gt;
==== Linux ====&lt;br /&gt;
ccHost on Apache (2.0.49 up to at least apache-2.0.55-r1) on Linux, &lt;br /&gt;
&lt;br /&gt;
One should be able to easily install mySQL, PHP, and Apache (if they are not already available) through their distributions packaging system.&lt;br /&gt;
&lt;br /&gt;
==== Windows IIS Server ====&lt;br /&gt;
&lt;br /&gt;
Windows users with their installation disks may install optionally the Windows IIS Web Server. This option has been tested. However, there might still be issues with it, and if so, please file a bug.&lt;br /&gt;
&lt;br /&gt;
Even if you using Apache on Windows you may need to have IIS installed if you plan to use mail contact functions.&lt;br /&gt;
&lt;br /&gt;
==== Windows Apache ====&lt;br /&gt;
There are many good tutorials for setting up a Windows/Apache/MySQL/PHP site ([http://google.com/search?q=installing+WAMP Google search]) and all three subsystems now come with Windows installers making the job of installing relatively straightforward.&lt;br /&gt;
&lt;br /&gt;
====== XAMPP ======&lt;br /&gt;
Windows installations without Apache, mySQL and PHP already installed should consider using [http://www.apachefriends.org/en/xampp.html XAMPP] for Windows, which provides an easy install of Apache web server, MySQL database server, and PHP and perl programming languages. This is an easy way to get up and running, with the underlying technology necessary to use ccHost.&lt;br /&gt;
&lt;br /&gt;
Follow the instructions for installation of XAMPP to know where to put the uncompressed ccHost package to properly work with your local setup.&lt;br /&gt;
&lt;br /&gt;
==== Mac OS X ====&lt;br /&gt;
&lt;br /&gt;
''NOTE: This setup is similar to Linux.''&lt;br /&gt;
&lt;br /&gt;
Verified:&lt;br /&gt;
&lt;br /&gt;
* OS X 10.4.6&lt;br /&gt;
* default OS X MySQL build, 4.0.26&lt;br /&gt;
* GetID3 1.7.7&lt;br /&gt;
* default Apache/PHP&lt;br /&gt;
&lt;br /&gt;
= Appendix B: Redistribution = &lt;br /&gt;
=== HOWTO Tag a Release ===&lt;br /&gt;
&lt;br /&gt;
Really, each major release needs to be tagged, but this 2.0.1 is the first SVN release, and we did it post CVS -&amp;gt; SVN migration. In the future, this is the proper way to tag and branch.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn copy https://svn.sourceforge.net/svnroot/cctools/cchost/trunk \&lt;br /&gt;
https://svn.sourceforge.net/svnroot/cctools/cchost/tags/2_0_1 \&lt;br /&gt;
-m &amp;quot;Tagging 2.0.1 bugfix release&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://svnbook.red-bean.com/nightly/en/svn.branchmerge.using.html Here is more about SVN merging/branching].&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
==== Sign Package ====&lt;br /&gt;
&lt;br /&gt;
You should do this for all packages (RPM, tar.gz, zip, tar.bz2, etc)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
gpg --detach-sign --armor cchost-VERSION.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Verify Package ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
gpg --verify cchost-VERSION.tar.gz.asc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Salon&amp;diff=3172</id>
		<title>Salon</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Salon&amp;diff=3172"/>
				<updated>2006-05-22T07:57:19Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: /* Where */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Salon]]&lt;br /&gt;
[[Category:General]]&lt;br /&gt;
[[Category:Event]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #ccc; padding: 2%; background: #eee; font-size: 130%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The CC Salon is a monthly event focused on building a community of artists and developers around Creative Commons licenses, standards, and technology. The first event is set for San Francisco with intention for the idea to replicate in other locations internationally. Have look at [[All Salons]] aorund the world ...&lt;br /&gt;
&lt;br /&gt;
The format for each event is to encourage loose networking amongst participants with 2-3 brief presentations from individuals and groups developing interesting projects that relate to the Creative Commons.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding: 2%; background: #bfcdff; font-size: 130%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;span style=&amp;quot;font-size: 130%; color: rgb(90, 122, 199);&amp;quot;&amp;gt;The Next CC Salon is June 14, 2006&amp;lt;/span&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
=== Who ===&lt;br /&gt;
&lt;br /&gt;
People interested in Creative Commons, copyright, Free Culture, Open Source, Art, Media, and Music&lt;br /&gt;
&lt;br /&gt;
=== What ===&lt;br /&gt;
&lt;br /&gt;
A local informal gathering of individuals around Creative Commons licenses, standards, and technology.&lt;br /&gt;
&lt;br /&gt;
==== Theme ====&lt;br /&gt;
&lt;br /&gt;
Publishing music, art, and video on the web&lt;br /&gt;
&lt;br /&gt;
=== When ===&lt;br /&gt;
&lt;br /&gt;
June 14, 2006, 6-9 PM&lt;br /&gt;
&lt;br /&gt;
* During Event&lt;br /&gt;
** Drink &amp;amp; Talk&lt;br /&gt;
** Chat on #cc on irc.freenode.net&lt;br /&gt;
** wifi provided free&lt;br /&gt;
&lt;br /&gt;
* '''6:00-7:00''' - Drinks, conversation, and music&lt;br /&gt;
* '''7:00-7:05''' - Welcome&lt;br /&gt;
* '''7:05-7:30''' - Victor Stone, ccmixter.org, fourstones.net&lt;br /&gt;
* '''7:30-8:00''' - Marisa Olson, International Artist and Curator at Large for Rhizome.org, http://lifeofmo.blogspot.com/&lt;br /&gt;
* '''8:00-8:30''' - Rick Prelinger, archive.org, preview of film, &amp;quot;Panorama Ephemera,&amp;quot; &amp;quot;...using the Internet Archive as the primary means of distributing a (very) independent feature (under CC of course)...&amp;quot;&lt;br /&gt;
* '''8:30-8:45''' - Wrap-up, questions, etc.&lt;br /&gt;
* '''8:45-9:00''' - More drinks, conversation, and music&lt;br /&gt;
&lt;br /&gt;
''See the blogpost: TBA''&lt;br /&gt;
&lt;br /&gt;
=== Where ===&lt;br /&gt;
&lt;br /&gt;
TBA (ALL AGES PLEASE =D)&lt;br /&gt;
&lt;br /&gt;
=== Why ===&lt;br /&gt;
&lt;br /&gt;
To connect with and build a community of artists and developers who are working with Creative Commons licenses, standards, and technology.&lt;br /&gt;
&lt;br /&gt;
=== [[Salon 200606 Media and Recordings|Media and Recordings]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[Salon 200606 Planning|Planning]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[Salon 200606 PR|Press Release]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[Salon 200606 Feedback|Feedback]] ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table style=&amp;quot;width: 100%; border: 1px solid #ccc; padding: 2%; background: #eee;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td colspan=&amp;quot;2&amp;quot; style=&amp;quot;font-size: 150%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Participate ==&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;font-size: 200%; width: 50%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[Announcement List]]&lt;br /&gt;
&lt;br /&gt;
* [[Salon How to Participate|How to Participate]]&lt;br /&gt;
&lt;br /&gt;
* [[Salon Communication|Communication]]&lt;br /&gt;
&lt;br /&gt;
* [[Speaking at Salon]]&lt;br /&gt;
&lt;br /&gt;
* [[Start Your Own Salon]]&lt;br /&gt;
&lt;br /&gt;
* [[All Salons]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;font-size: 200%; width: 50%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[Salon Future Events|Future Events]] (Monthly on 2nd Wednesday)&lt;br /&gt;
&lt;br /&gt;
* [[Salon Past Events|Past Events]]&lt;br /&gt;
&lt;br /&gt;
* [[Salon Future Presenters|Future Presenters]] (To Be Setup)&lt;br /&gt;
&lt;br /&gt;
* [[Salon Ideas|Ideas]]&lt;br /&gt;
&lt;br /&gt;
* [[Salon Background|Background Information]]&lt;br /&gt;
&lt;br /&gt;
* [[Salon External Links|External Links]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Salon_Future_Events&amp;diff=3018</id>
		<title>Salon Future Events</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Salon_Future_Events&amp;diff=3018"/>
				<updated>2006-05-11T05:41:54Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: /* Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Salon]]&lt;br /&gt;
=== Wednesday, June 14, 2006 ===&lt;br /&gt;
&lt;br /&gt;
==== Announcements ====&lt;br /&gt;
&lt;br /&gt;
* http://upcoming.org/event/69816/&lt;br /&gt;
&lt;br /&gt;
==== Theme ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Presenters ====&lt;br /&gt;
&lt;br /&gt;
* Victor Stone, ccmixter.org, fourstones.net&lt;br /&gt;
* Rick Prelinger, archive.org, film screening of &amp;quot;Panorama Ephemera&amp;quot;&lt;br /&gt;
** &amp;quot;...using the Internet Archive as the primary means of distributing a (very) independent feature (under CC of course)...&amp;quot;&lt;br /&gt;
** question: &amp;quot;Panorama Ephemera&amp;quot; is a feature-length film; can we show it all, or should we show a segment?&lt;br /&gt;
** answer: show part of the film and plug for another event where the full film is shown&lt;br /&gt;
* Marisa Olson, International Artist and Curator at Large for Rhizome.org, http://lifeofmo.blogspot.com/&lt;br /&gt;
&lt;br /&gt;
==== Location ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
'''PLEASE make this event all ages, or at least warn ahead of time if it is not.'''&lt;br /&gt;
&lt;br /&gt;
==== Format ====&lt;br /&gt;
&lt;br /&gt;
6-9 PM&lt;br /&gt;
&lt;br /&gt;
==== [[CC Salon June PR|Press Release]] ====&lt;br /&gt;
&lt;br /&gt;
=== Wednesday, July 12, 2006 ===&lt;br /&gt;
&lt;br /&gt;
==== Theme ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Presenters ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Location ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Format ====&lt;br /&gt;
&lt;br /&gt;
6-8:30 PM&lt;br /&gt;
&lt;br /&gt;
==== [[CC Salon July PR|Press Release]] ====&lt;br /&gt;
&lt;br /&gt;
=== Wednesday, August 9, 2006 ===&lt;br /&gt;
&lt;br /&gt;
==== Theme ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Presenters ====&lt;br /&gt;
&lt;br /&gt;
* Kevin Shockey, Editor in Chief, Tux Magazine (http://www.tuxmagazine.com)&lt;br /&gt;
&lt;br /&gt;
==== Location ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Format ====&lt;br /&gt;
&lt;br /&gt;
6-9 PM&lt;br /&gt;
&lt;br /&gt;
==== [[CC Salon August PR|Press Release]] ====&lt;br /&gt;
&lt;br /&gt;
=== Wednesday, Sept 13, 2006 ===&lt;br /&gt;
&lt;br /&gt;
==== Theme ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Presenters ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Location ====&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
==== Format ====&lt;br /&gt;
&lt;br /&gt;
6-8:30 PM&lt;br /&gt;
&lt;br /&gt;
==== [[CC Salon September PR|Press Release]] ====&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Talk:Licenses_in_Operating_Systems_Specification&amp;diff=2973</id>
		<title>Talk:Licenses in Operating Systems Specification</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Talk:Licenses_in_Operating_Systems_Specification&amp;diff=2973"/>
				<updated>2006-05-05T19:55:53Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why would Windows call the Licenses folder 'create' if Mac and Linux use 'Licenses'?&lt;br /&gt;
-[[User:Brenton_Simpson | Brenton Simpson]]&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=All_Salons&amp;diff=2972</id>
		<title>All Salons</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=All_Salons&amp;diff=2972"/>
				<updated>2006-05-05T19:55:13Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Salon]]&lt;br /&gt;
&lt;br /&gt;
This is where all CC Salon meeting go. Currently there is only a San Francisco Salon, but hopefully this will grow to other cities.&lt;br /&gt;
&lt;br /&gt;
* [[Salon|San Francisco]]&lt;br /&gt;
* Add your CC Salon after you &amp;quot;[[Start Your Own Salon]]&amp;quot;&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=TechChallenges&amp;diff=2971</id>
		<title>TechChallenges</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=TechChallenges&amp;diff=2971"/>
				<updated>2006-05-05T19:47:48Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#redirect [[Developer_Challenges]]&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2158</id>
		<title>Talk:CcHost</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2158"/>
				<updated>2006-04-15T05:09:49Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I tried to upgrade from 1.0.3 to 2.0.1 and the update script just returns ccHost Installation not complete.  So, I tried doing a 2.0 then a 2.0.1, and i got the same error.  I don't have much in my database yet, so I suppose I can start from 0, but that isn't cool. . .&lt;br /&gt;
&lt;br /&gt;
If I wrote over something I shouldn't have (I straight copied with Overwrite existing files turned on), the instructions need to be more specific.  I don't mean to complain, just to put in some constructive crit.. =)  I'd hate to have someone who has lots of stuff in their database lose everything because of a botched upgrade...&lt;br /&gt;
&lt;br /&gt;
[[User:Brenton Simpson | -Brenton]] April 13, 2006, 12:39AM&lt;br /&gt;
&lt;br /&gt;
'''UPDATE:''' Maybe I was just being a dumbass and didn't rename ccadmin.  I ended up backing up cc_tbl_user with flashmyadmin, reinstalling, and reimporting the user table.  The error for this really should be more descriptive, or at least the update instructions should include a reminder regarding the ccadmin trigger.  There's quite a difference between f%cking up your install in an upgrade and triggering a security warning.  Speaking of which, how do I get certified by Sourceforge to help maintain this project?&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2157</id>
		<title>Talk:CcHost</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2157"/>
				<updated>2006-04-15T05:09:38Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I tried to upgrade from 1.0.3 to 2.0.1 and the update script just returns ccHost Installation not complete.  So, I tried doing a 2.0 then a 2.0.1, and i got the same error.  I don't have much in my database yet, so I suppose I can start from 0, but that isn't cool. . .&lt;br /&gt;
&lt;br /&gt;
If I wrote over something I shouldn't have (I straight copied with Overwrite existing files turned on), the instructions need to be more specific.  I don't mean to complain, just to put in some constructive crit.. =)  I'd hate to have someone who has lots of stuff in their database lose everything because of a botched upgrade...&lt;br /&gt;
&lt;br /&gt;
[[User:Brenton Simpson | -Brenton]] April 13, 2006, 12:39AM&lt;br /&gt;
&lt;br /&gt;
'''UPDATE:''' Maybe I was just being a dumbass and didn't rename ccadmin.  I ended up backing up cc_tbl_user with flashmyadmin, reinstalling, and reimporting the user table.  The error for this really should be more descriptive, or at least the update instructions should include a reminder regarding the ccadmin trigger.  There's quite a difference between f%cking up your install in an upgrade and triggering a security warning.  Speaking of which, how do I get certified by SOurceforge to help maintain this project?&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2156</id>
		<title>Talk:CcHost</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2156"/>
				<updated>2006-04-15T05:09:12Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I tried to upgrade from 1.0.3 to 2.0.1 and the update script just returns ccHost Installation not complete.  So, I tried doing a 2.0 then a 2.0.1, and i got the same error.  I don't have much in my database yet, so I suppose I can start from 0, but that isn't cool. . .&lt;br /&gt;
&lt;br /&gt;
If I wrote over something I shouldn't have (I straight copied with Overwrite existing files turned on), the instructions need to be more specific.  I don't mean to complain, just to put in some constructive crit.. =)  I'd hate to have someone who has lots of stuff in their database lose everything because of a botched upgrade...&lt;br /&gt;
&lt;br /&gt;
[[User:Brenton Simpson | -Brenton]] April 13, 2006, 12:39AM&lt;br /&gt;
&lt;br /&gt;
'''UPDATE:''' Maybe I was just being a dumbass and didn't rename ccadmin.  I ended up backing up cc_tbl_user with flashmyadmin, reinstalling, and reimporting the user table.  The error for this really should be more descriptive, or at least the update instructions should clearer regarding the ccadmin trigger.  There's quite a difference between f%cking up your install in an upgrade and triggering a security warning.  Speaking of which, how do I get certified by SOurceforge to help maintain this project?&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2155</id>
		<title>Talk:CcHost</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2155"/>
				<updated>2006-04-15T05:08:27Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I tried to upgrade from 1.0.3 to 2.0.1 and the update script just returns ccHost Installation not complete.  So, I tried doing a 2.0 then a 2.0.1, and i got the same error.  I don't have much in my database yet, so I suppose I can start from 0, but that isn't cool. . .&lt;br /&gt;
&lt;br /&gt;
If I wrote over something I shouldn't have (I straight copied with Overwrite existing files turned on), the instructions need to be more specific.  I don't mean to complain, just to put in some constructive crit.. =)  I'd hate to have someone who has lots of stuff in their database lose everything because of a botched upgrade...&lt;br /&gt;
&lt;br /&gt;
[[User:Brenton Simpson | -Brenton]] April 13, 2006, 12:39AM&lt;br /&gt;
&lt;br /&gt;
'''UPDATE:''' Maybe I was just being a dumbass and didn't rename ccadmin.  I ended up backing up cc_tbl_user with flashmyadmin, reinstalling, and reimporting the user table.  The error for this really should be more descriptive, or at least the update instructions.  There's quite a difference between f%cking up your install in an upgrade and triggering a security warning.  Speaking of which, how do I get certified by SOurceforge to help maintain this project?&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2154</id>
		<title>Talk:CcHost</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2154"/>
				<updated>2006-04-15T05:08:14Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I tried to upgrade from 1.0.3 to 2.0.1 and the update script just returns ccHost Installation not complete.  So, I tried doing a 2.0 then a 2.0.1, and i got the same error.  I don't have much in my database yet, so I suppose I can start from 0, but that isn't cool. . .&lt;br /&gt;
&lt;br /&gt;
If I wrote over something I shouldn't have (I straight copied with Overwrite existing files turned on), the instructions need to be more specific.  I don't mean to complain, just to put in some constructive crit.. =)  I'd hate to have someone who has lots of stuff in their database lose everything because of a botched upgrade...&lt;br /&gt;
&lt;br /&gt;
[[User:Brenton Simpson | -Brenton]] April 13, 2006, 12:39AM&lt;br /&gt;
'''UPDATE:''' Maybe I was just being a dumbass and didn't rename ccadmin.  I ended up backing up cc_tbl_user with flashmyadmin, reinstalling, and reimporting the user table.  The error for this really should be more descriptive, or at least the update instructions.  There's quite a difference between f%cking up your install in an upgrade and triggering a security warning.  Speaking of which, how do I get certified by SOurceforge to help maintain this project?&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2125</id>
		<title>Talk:CcHost</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Talk:CcHost&amp;diff=2125"/>
				<updated>2006-04-13T07:36:57Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I tried to upgrade from 1.0.3 to 2.0.1 and the update script just returns ccHost Installation not complete.  So, I tried doing a 2.0 then a 2.0.1, and i got the same error.  I don't have much in my database yet, so I suppose I can start from 0, but that isn't cool. . .&lt;br /&gt;
&lt;br /&gt;
If I wrote over something I shouldn't have (I straight copied with Overwrite existing files turned on), the instructions need to be more specific.  I don't mean to complain, just to put in some constructive crit.. =)  I'd hate to have someone who has lots of stuff in their database lose everything because of a botched upgrade...&lt;br /&gt;
&lt;br /&gt;
[[User:Brenton Simpson | -Brenton]] April 13, 2006, 12:39AM&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=Slip_A_Buck&amp;diff=1884</id>
		<title>Slip A Buck</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=Slip_A_Buck&amp;diff=1884"/>
				<updated>2006-03-27T20:48:45Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: /* [http://www.slipabuck.com Slip A Buck.com] */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.slipabuck.com Slip A Buck.com] ==&lt;br /&gt;
&lt;br /&gt;
[http://www.slipabuck.com Slip A Buck.com] is a venue for artists to exhibit their work and patrons to peruse it.  The site and its artists are supported via tips.  The donations are pooled together and then distributed based upon which artists contributed how much to a particular project.  [http://www.slipabuck.com Slip A Buck] features [[Flash]] tools that integrate seemlessly with the [[ccHost]] backend.  If you would like to get involved with the project or have questions about [[Flash]]/[[ccHost]] integration, contact [[User:Brenton_Simpson | Brenton Simpson]].&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	<entry>
		<id>https://wiki.creativecommons.org/index.php?title=User:Brenton_Simpson&amp;diff=1883</id>
		<title>User:Brenton Simpson</title>
		<link rel="alternate" type="text/html" href="https://wiki.creativecommons.org/index.php?title=User:Brenton_Simpson&amp;diff=1883"/>
				<updated>2006-03-27T20:47:30Z</updated>
		
		<summary type="html">&lt;p&gt;Brenton Simpson: /* '''Brenton Simpson''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Brenton Simpson''' ==&lt;br /&gt;
'''Personal Site:''' [http://www.theillustratedlife.com The Illustrated Life]&lt;br /&gt;
&lt;br /&gt;
*[http://cinema.usc.edu/academic_programs/business_entertainment/academic-business-undergrad.cfm Entertainment Business] student at the University of Southern California (anticipated graduation May 2008)&lt;br /&gt;
*Working with [[ccHost]] to build [[Slip A Buck]], an online art community that emphasizes collaboration, DIY ethic, and compensating artists through tips&lt;br /&gt;
*Integrates [[ccHost]] and [[Flash]]&lt;/div&gt;</summary>
		<author><name>Brenton Simpson</name></author>	</entry>

	</feed>