<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0" xml:base="http://www.leveltendesign.com/articles">
  <channel>
    <title>LevelTen Interactive | Articles</title>
    <link>http://www.leveltendesign.com/articles</link>
    <description />
    <language>en</language>
          <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/leveltenarticles" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="leveltenarticles" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">leveltenarticles</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
    <title>Drupal errors "Notice: Undefined index: profile in..."</title>
    <link>http://www.leveltendesign.com/solution/drupal-errors-notice-undefined-index-profile</link>
    <description>&lt;div class="field field-type-text field-field-solution-text"&gt;
    &lt;div class="field-items"&gt;
            &lt;div class="field-item odd"&gt;
                      &lt;div class="field-label-inline-first"&gt;
              Solution:&amp;nbsp;&lt;/div&gt;
                    &lt;p&gt;Ah the joy of procedural programming in a  weakly typed language. &lt;/p&gt;
&lt;p&gt;There are two issues here:&lt;br /&gt;
1. Drupal is reporting notices&lt;br /&gt;
2. Datastructure mismatches  &lt;/p&gt;
&lt;p&gt;The particular above notice is created when php tries to access a index of an array where the variable is not holding an array.   In general this notice will not cause problems with Drupal functionality. You may want to turn off php reporting notices. To do this you can change php's error reporting.  &lt;/p&gt;
&lt;p&gt;In php.ini use:&lt;br /&gt;
error_reporting = E_ALL &amp;amp; ~E_NOTICE  &lt;/p&gt;
&lt;p&gt;In .htaccess user:&lt;br /&gt;
php_value error_reporting 2039&lt;/p&gt;
        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/solution/drupal-errors-notice-undefined-index-profile#comments</comments>
 <category domain="http://www.leveltendesign.com/category/technology/php">PHP</category>
 <category domain="http://www.leveltendesign.com/category/programming-language/php-0">PHP</category>
 <category domain="http://www.leveltendesign.com/category/programming-language-framework/php/drupal/drupal-6">Drupal 6</category>
 <category domain="http://www.leveltendesign.com/category/programming-language-framework/php">PHP</category>
 <pubDate>Fri, 30 Oct 2009 19:38:28 +0000</pubDate>
 <dc:creator>Tom</dc:creator>
 <guid isPermaLink="false">1939 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>How To 301 Redirect Multiple Domains Into One Domain</title>
    <link>http://www.leveltendesign.com/solution/how-301-redirect-multiple-domains-one-domain</link>
    <description>&lt;div class="field field-type-text field-field-problem-text"&gt;
      &lt;div class="field-label"&gt;Problem:&amp;nbsp;&lt;/div&gt;
    &lt;div class="field-items"&gt;
            &lt;div class="field-item odd"&gt;
                    &lt;p&gt;If you need to do a 301 redirect between multiple domain names, and force all domains to direct to the "www", use the following code in your .htaccess file.&lt;/p&gt;
&lt;p&gt;RewriteCond %{HTTP_Host} ^(www\.)?secondary-domain1\.com$ [NC]&lt;br /&gt;RewriteRule ^(.*)$ http://www.maindomain.com/$1 [L,R=301]&lt;/p&gt;
&lt;p&gt;RewriteCond %{HTTP_Host} ^(www\.)?secondary-domain2\.com$ [NC]&lt;br /&gt; RewriteRule ^(.*)$ http://www.maindomain.com/$1 [L,R=301]&lt;/p&gt;
&lt;p&gt;RewriteCond %{HTTP_Host} ^maindomain\.com$ [NC]&lt;br /&gt; RewriteRule ^(.*)$ http://www.maindomain.com/$1 [L,R=301]&lt;/p&gt;
&lt;p&gt;And that's how you would do a 301 redirect between multiple domain names, and force the "www" version of your main domain.  The code above is for a .htaccess file on an apache server.&lt;/p&gt;
        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/solution/how-301-redirect-multiple-domains-one-domain#comments</comments>
 <category domain="http://www.leveltendesign.com/category/tags/htaccess">.htaccess</category>
 <category domain="http://www.leveltendesign.com/category/tags/301">301</category>
 <category domain="http://www.leveltendesign.com/category/tags/domain">domain</category>
 <category domain="http://www.leveltendesign.com/category/tags/redirect">redirect</category>
 <category domain="http://www.leveltendesign.com/category/tags/seo">SEO</category>
 <category domain="http://www.leveltendesign.com/category/technology/http">HTTP</category>
 <category domain="http://www.leveltendesign.com/category/url/http/wwwmaindomaincom/1">http://www.maindomain.com/$1</category>
 <category domain="http://www.leveltendesign.com/category/currency/usd">USD</category>
 <pubDate>Fri, 30 Oct 2009 03:00:24 +0000</pubDate>
 <dc:creator>Colin</dc:creator>
 <guid isPermaLink="false">1938 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>How do I test a website in IE6 on Windows XP?</title>
    <link>http://www.leveltendesign.com/answer/how-do-i-test-website-ie6-windows-xp</link>
    <description>&lt;p&gt;For Windows XP, the best way I have found to test a website in IE6, is to create a virtual machine on your PC.  You will need two things in order to make this happen: &lt;/p&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/answer/how-do-i-test-website-ie6-windows-xp#comments</comments>
 <category domain="http://www.leveltendesign.com/category/calais-document-category/technology">Technology</category>
 <category domain="http://www.leveltendesign.com/category/technology/virtual-machine">virtual machine</category>
 <category domain="http://www.leveltendesign.com/category/technology/virtual-pc">Virtual PC</category>
 <pubDate>Thu, 22 Oct 2009 14:51:30 +0000</pubDate>
 <dc:creator>Rachel</dc:creator>
 <guid isPermaLink="false">1902 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>How do I shade every other row in Excel 2007?</title>
    <link>http://www.leveltendesign.com/answer/how-do-i-shade-every-other-row-excel-2007</link>
    <description>&lt;p&gt;In Excel 2007, here is step-by-step instruction for shading every other row in your selection: &lt;/p&gt;
&lt;p&gt;1. Select the rows or cells in Excel you want affected&lt;br /&gt;
2. Under the "Home" tab, click on the "Conditional Formatting" drop-down and select "New Rule..."&lt;br /&gt;
3. Select the option, "Use a formula to determine which cells to format"&lt;br /&gt;
4. Copy and paste the following values into the field for "Format values where this formula is true:" &lt;span class="geshifilter"&gt;&lt;code class="drupal5 geshifilter-drupal5"&gt;=MOD&lt;span style="color: #66cc66;"&gt;&amp;#40;&lt;/span&gt;ROW&lt;span style="color: #66cc66;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;&amp;#41;&lt;/span&gt;,&lt;span style="color: #cc66cc;"&gt;2&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;&amp;#41;&lt;/span&gt;=&lt;span style="color: #cc66cc;"&gt;1&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
5. Click on the "Format..." button to format the row style desired (Use the "Fill" tab to insert cell background color) and press OK&lt;br /&gt;
6. Click OK again and voila!&lt;/p&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/answer/how-do-i-shade-every-other-row-excel-2007#comments</comments>
 <category domain="http://www.leveltendesign.com/category/tags/excel-2007">Excel 2007</category>
 <category domain="http://www.leveltendesign.com/category/city/click">Click</category>
 <pubDate>Tue, 20 Oct 2009 22:16:09 +0000</pubDate>
 <dc:creator>Rachel</dc:creator>
 <guid isPermaLink="false">1901 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>jQuery Full-Screen Video Fix For Drupal</title>
    <link>http://www.leveltendesign.com/article/jquery-full-screen-video-fix-drupal</link>
    <description>&lt;p&gt;I recently had an issue displaying jQuery Media full-screen videos in Drupal 6.  After a little research, reading some threads and some trial and error, I was able to successfully display videos in full-screen mode.  The fix ended up being quite simple, but there didn't seem to be a lot of documentation so here it is.&lt;/p&gt;
&lt;h3&gt;My Situation:&lt;/h3&gt;
&lt;p&gt;This fix assumes that you you're using jQuery Media module and successfully playing the video through JW Player of similar.&lt;/p&gt;
&lt;h3&gt;The Quick Fix:&lt;/h3&gt;
&lt;p&gt;1. Go to: Administer &gt; Configuration &gt; jQuery Media&lt;br /&gt;
2. Select Advanced Settings&lt;/p&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/article/jquery-full-screen-video-fix-drupal#comments</comments>
 <category domain="http://www.leveltendesign.com/category/tags/drupal-6">Drupal 6</category>
 <category domain="http://www.leveltendesign.com/category/tags/jquery-full-screen-video-fix">jQuery Full-Screen Video Fix</category>
 <category domain="http://www.leveltendesign.com/category/tags/video-issues">Video Issues</category>
 <category domain="http://www.leveltendesign.com/category/programming-language-framework/php/drupal/drupal-5">Drupal 5</category>
 <category domain="http://www.leveltendesign.com/category/programming-language-framework/javascript/jquery">jQuery</category>
 <category domain="http://www.leveltendesign.com/category/calais-document-category/sports">Sports</category>
 <category domain="http://www.leveltendesign.com/category/calais-document-category/technology">Technology</category>
 <category domain="http://www.leveltendesign.com/category/programming-language-framework/php/drupal/drupal-6">Drupal 6</category>
 <pubDate>Wed, 14 Oct 2009 20:40:36 +0000</pubDate>
 <dc:creator>Brent</dc:creator>
 <guid isPermaLink="false">1889 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>How To Paste Excel Content Into Drupal</title>
    <link>http://www.leveltendesign.com/article/how-paste-excel-content-drupal</link>
    <description>&lt;p&gt;I was recently had a client ask if it was possible to paste Microsoft Excel content directly into Drupal and for the life of me I could not answer that question.  I've typically pasted content from Microsoft Word or other text editors, but had never tried pasting Excel content.  So, is pasting Excel rows and columns into Drupal possible?  After a little research and some trial and error, the answer is yes!&lt;/p&gt;
&lt;p&gt;Here are the simple steps:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1.  Download and install WYSIWYG module from Drupal.org if you don't already have it installed.&lt;/strong&gt;&lt;/p&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/article/how-paste-excel-content-drupal#comments</comments>
 <category domain="http://www.leveltendesign.com/category/company/microsoft">Microsoft</category>
 <category domain="http://www.leveltendesign.com/category/movie/paste-word">Paste from Word</category>
 <category domain="http://www.leveltendesign.com/category/calais-document-category/technology">Technology</category>
 <pubDate>Fri, 09 Oct 2009 02:59:40 +0000</pubDate>
 <dc:creator>Brent</dc:creator>
 <guid isPermaLink="false">1881 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>How do I create a test PayPal PayFlow Pro account?</title>
    <link>http://www.leveltendesign.com/answer/how-do-i-create-test-paypal-payflow-pro-account</link>
    <description>&lt;p&gt;Go through the steps on creating a real PayPal PayFlow Pro account, but as soon as you reach the page that asks for credit card information, exit out of it (close the tab or browser window).  PayPal will send you an email notifying you of your login information for your new TEST PayFlow Pro account!  Tricky, but simple!&lt;/p&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/answer/how-do-i-create-test-paypal-payflow-pro-account#comments</comments>
 <pubDate>Thu, 01 Oct 2009 23:11:04 +0000</pubDate>
 <dc:creator>Rachel</dc:creator>
 <guid isPermaLink="false">1875 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>How do I fix Drupal's fatal error for memory size exhausted?</title>
    <link>http://www.leveltendesign.com/solution/how-do-i-fix-drupals-fatal-error-memory-size-exhausted</link>
    <description>&lt;div class="field field-type-text field-field-problem-text"&gt;
      &lt;div class="field-label"&gt;Problem:&amp;nbsp;&lt;/div&gt;
    &lt;div class="field-items"&gt;
            &lt;div class="field-item odd"&gt;
                    &lt;p&gt;Ideally, for a memory issue, you would want to change your php settings to increase php memory allotted.  In the case of most hosting providers, you do not have permissions or the ability to change the php.ini file, so here is another option: &lt;/p&gt;
&lt;p&gt;1. Log-in to your site via FTP&lt;br /&gt;
2. Locate the base install of your Drupal installation - often "www" or "public_html"&lt;br /&gt;
3. Open/edit the .htaccess file&lt;br /&gt;
4. Insert the following into the .htaccess file: &lt;span class="geshifilter"&gt;&lt;code class="drupal5 geshifilter-drupal5"&gt;php_value memory_limit 96M&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
5. Save the file and rewrite the .htaccess file on the server&lt;br /&gt;
6. Most memory issues should be resolved&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.leveltendesign.com/files/htaccess.gif" width="300" /&gt;&lt;br /&gt;
&lt;img src="http://www.leveltendesign.com/files/memory-limit.gif" width="300" /&gt;&lt;/p&gt;
        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/solution/how-do-i-fix-drupals-fatal-error-memory-size-exhausted#comments</comments>
 <category domain="http://www.leveltendesign.com/category/technology/php">PHP</category>
 <category domain="http://www.leveltendesign.com/category/programming-language/php-0">PHP</category>
 <category domain="http://www.leveltendesign.com/category/calais-document-category/technology">Technology</category>
 <pubDate>Wed, 09 Sep 2009 21:09:50 +0000</pubDate>
 <dc:creator>Rachel</dc:creator>
 <guid isPermaLink="false">1855 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>Social Networks in Drupal - Modules to Define Relationships</title>
    <link>http://www.leveltendesign.com/article/social-networks-drupal-modules-define-relationships</link>
    <description>&lt;p&gt;At the heart of most social networks is the ability for users to contribute content and collaborate/communicate with each other.  At its foundation “relationships” are typically defined giving users certain privileges to each others information.  For example, on a music community, artists may have a relationship with fans that have subscribed to the artist allowing the two roles to send private messages between each other.&lt;/p&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/article/social-networks-drupal-modules-define-relationships#comments</comments>
 <category domain="http://www.leveltendesign.com/category/technology/api">API</category>
 <category domain="http://www.leveltendesign.com/category/calais-document-category/technology">Technology</category>
 <pubDate>Thu, 02 Jul 2009 16:12:54 +0000</pubDate>
 <dc:creator>Brent</dc:creator>
 <guid isPermaLink="false">1789 at http://www.leveltendesign.com</guid>
  </item>
  <item>
    <title>Create your own customized Facebook URL at 12:01am EST</title>
    <link>http://www.leveltendesign.com/tip/create-your-own-customized-facebook-url-1201am-est</link>
    <description>&lt;p&gt;Currently, your Facebook account URL looks something like this: &lt;a href="http://www.facebook.com/profile.php?id=123456789" title="http://www.facebook.com/profile.php?id=123456789"&gt;http://www.facebook.com/profile.php?id=123456789&lt;/a&gt;. The URL is not personalized, not searchable, and difficult to remember/share. FB is finally moving to customizable URLs, or as some call them, Vanity URLs. &lt;/p&gt;
&lt;p&gt;Snatch your name up before someone else does!&lt;/p&gt;
&lt;p&gt;At 12:01am EST login to your Facebook account and go to: &lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.facebook.com/username/"&gt;www.facebook.com/username/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;There will be instructions on how to create your username. The URL cannot be changed once created. &lt;/p&gt;
&lt;div class="og_rss_groups"&gt;&lt;/div&gt;</description>
     <comments>http://www.leveltendesign.com/tip/create-your-own-customized-facebook-url-1201am-est#comments</comments>
 <category domain="http://www.leveltendesign.com/category/company/facebook">Facebook</category>
 <pubDate>Fri, 12 Jun 2009 20:14:49 +0000</pubDate>
 <dc:creator>Jennifer</dc:creator>
 <guid isPermaLink="false">1741 at http://www.leveltendesign.com</guid>
  </item>
  </channel>
</rss>
