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

<channel>
	<title>Mambo Solutions</title>
	<atom:link href="http://mandichase.com/mambosolutions/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://mandichase.com/mambosolutions</link>
	<description>A compilation of my tips, tricks and solutions found for the CMS Mambo</description>
	<lastBuildDate>Wed, 09 Mar 2011 20:32:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Auto Email Response from form Submission</title>
		<link>http://mandichase.com/mambosolutions/?p=22</link>
		<comments>http://mandichase.com/mambosolutions/?p=22#comments</comments>
		<pubDate>Fri, 30 Jul 2010 02:33:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Facile Forms]]></category>
		<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://mandichase.com/mambosolutions/?p=22</guid>
		<description><![CDATA[Here is how you set up a form submission to automatically send a custom email back to the person who filled out the form. I am using this feature for a client who wants to distribute a PDF automatically to the user but wants to know who is downloading it. As opposed to just posting [...]]]></description>
			<content:encoded><![CDATA[<p>Here is how you set up a form submission to automatically send a custom email back to the person who filled out the form. I am using this feature for a client who wants to distribute a PDF automatically to the user but wants to know who is downloading it. As opposed to just posting a link to download the PDF on their site I have created a form that the user must first fill out to get the PDF. Here is what you need to do to set something like this up for yourself:</p>
<p>1. Create a simple form in <a href="http://mandichase.com/mambosolutions/?p=17" target="_blank">Facile Forms</a>. It can ask for anything, but it needs to have a field for the user to input their email (or else the auto respond email will have no where to go!)</p>
<p>2. Once your form is complete, click on the &#8220;Manage Forms&#8221; button on the upper right hand of your screen. This will bring up a list of all your forms created within Facile Forms.</p>
<p>3. Click on the name of your form. (important: not the title, but the name)</p>
<p>4. Click on the tab &#8220;Submit Pieces&#8221;</p>
<p>5. Select the &#8220;Custom&#8221; radio button under the &#8220;Begin Submit&#8221; section and paste the following code into the box that appears:</p>
<p>// load the standard FacileForms library<br style="font-size: 43.875px; line-height: 64.125px;" />$this-&gt;execPieceByName(&#8216;ff_InitLib&#8217;);<br style="font-size: 43.875px; line-height: 64.125px;" /></p>
<p>//Sends confirmation e-mail to the visitor</p>
<p><br style="font-size: 43.875px; line-height: 64.125px;" />$from = ff_getSubmit(&#8216;cf_name&#8217;);<br style="font-size: 43.875px; line-height: 64.125px;" />$this-&gt;sendMail(<br style="font-size: 43.875px; line-height: 64.125px;" /> $mosConfig_mailfrom,                // email from name: as in config.php<br style="font-size: 43.875px; line-height: 64.125px;" /> $mosConfig_fromname,                // email from addres: as in config.php<br style="font-size: 43.875px; line-height: 64.125px;" /> ff_getSubmit(&#8216;cf_email&#8217;),           // email address as filled in by visitor<br style="font-size: 43.875px; line-height: 64.125px;" /> &#8216;Put Subject of Email Here&#8217;,<br style="font-size: 43.875px; line-height: 64.125px;" />&#8216;Dear &#8216;.$from.&#8217;,&#8217;.nl().nl(). &#8216;This is where you put your custom message&#8217;.nl().nl().<br style="font-size: 43.875px; line-height: 64.125px;" />&#8216;This is the last line of your custom message.&#8217; <br style="font-size: 43.875px; line-height: 64.125px;" />);</p>
<p>6. Click Save &amp; Test your form!</p>
<p><strong>A few notes: </strong></p>
<ul>
<li>The code for the script is really finicky. If you put one wrong period or space in there and it will throw a [Parse error: Syntax error, Unexpected T_String...] so be careful. I found it best to copy and paste the code into a text edit document and make my changes there, then copy and paste into the site when you are ready. This will help you keep track of what you have done &amp; when in doubt return to my code provided if you mess up.</li>
<li>The  string [.nl().] found throughout the code are what create new lines. Put more of them together to create more space, use just one if you want a single line break.</li>
<li>Be sure that the last line of your message ends with a &#8216; and the whole code block ends with a );</li>
<li>The ['Dear '.$from.','.nl().nl().] code string is what addresses the email. If you did not ask for the users name, this feature will not work.</li>
<li>The variables used throughout (ie: cf_name) are based on what FacileForms auto generates for the name and email field titles. If you have changed yours to something custom, then you&#8217;ll need to update this code accordingly.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FacileForms Troubleshooting</title>
		<link>http://mandichase.com/mambosolutions/?p=17</link>
		<comments>http://mandichase.com/mambosolutions/?p=17#comments</comments>
		<pubDate>Fri, 19 Mar 2010 19:05:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Facile Forms]]></category>

		<guid isPermaLink="false">http://mandichase.com/mambosolutions/?p=17</guid>
		<description><![CDATA[So far the best third party form generator I have come across for Mambo is one called FacileForms. It takes a bit to learn how to incorporate them, but once you do, they are pretty useful. When you go to the site, download an install the Mambot, Component and the Module. You use the universal [...]]]></description>
			<content:encoded><![CDATA[<p>So far the best third party form generator I have come across for Mambo is one called <a title="FacileForms" href="http://www.facileforms.biz/">FacileForms</a>. It takes a bit to learn how to incorporate them, but once you do, they are pretty useful. When you go to the site, download an install the Mambot, Component and the Module. You use the universal installer to upload them.</p>
<p>Once installed, you should check out the getting-started documents found on their site. They will help you learn the basics.</p>
<p><strong>Troubleshooting</strong></p>
<p><span style="text-decoration: underline;">If the info input into the fields of your form are not being recorded</span> you need to make sure the form element (ie: textarea) is above its label (ie: static text/html). Not above it in the graphic sense (how it is viewed on the front end) but rather in the backend of the facile form manager where they list each individual form element.</p>
<p><span style="text-decoration: underline;">If the form is not submitting</span> make sure all the form elements are lower case and are different from each other. (ie: cannot have the label and form element share the same name)</p>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosting</title>
		<link>http://mandichase.com/mambosolutions/?p=15</link>
		<comments>http://mandichase.com/mambosolutions/?p=15#comments</comments>
		<pubDate>Wed, 17 Mar 2010 23:44:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://mandichase.com/mambosolutions/?p=15</guid>
		<description><![CDATA[Not sure which hosting proivder to go with? I ALWAYS use GoDaddy. They are amazing. They will install mambo for you (for free) in their &#8220;GoDaddy Hositing Connection&#8221; section in your account. All you did is click the install Mambo button, answer a few questions and say GO, then they do the rest. Its genious.  [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure which hosting proivder to go with? I ALWAYS use <a href="http://www.godaddy.com" target="_self">GoDaddy</a>. They are amazing. They will install mambo for you (for free) in their &#8220;GoDaddy Hositing Connection&#8221; section in your account. All you did is click the install Mambo button, answer a few questions and say GO, then they do the rest. Its genious.  Their customer support is the best. They are always there to pick up the phone and answer your questions (no matter how stupid of the question). They are competitively priced and in my opinion could charge more then they do, and I would still stay with them. I have owned my business for over 6 years and I have used them the whole way.</p>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mambo Manual Install- Session Save Path unwritable?</title>
		<link>http://mandichase.com/mambosolutions/?p=13</link>
		<comments>http://mandichase.com/mambosolutions/?p=13#comments</comments>
		<pubDate>Wed, 17 Mar 2010 23:39:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Installing Mambo]]></category>

		<guid isPermaLink="false">http://mandichase.com/mambosolutions/?p=13</guid>
		<description><![CDATA[If  have to do a manual install of mambo on your server you will find the Mambo Manual to be very helpful. It basically holds your hand through the whole process. I just finished an install and it took be about 1 hour to go through it all. If you host with GoDaddy, they will [...]]]></description>
			<content:encoded><![CDATA[<p>If  have to do a manual install of mambo on your server you will find the <a href="http://mambo-manual.org/display/conf/Home" target="_blank">Mambo Manual</a> to be very helpful. It basically holds your hand through the whole process. I just finished an install and it took be about 1 hour to go through it all. If you host with <a href="http://www.godaddy.com" target="_blank">GoDaddy</a>, they will install if for you through their &#8220;Godaddy Hosting Connection&#8221; section of your account. This reason alone is why I always use GoDaddy for my client&#8217;s hosting provider (when I get the choice). Sometimes I am forced to work with pre-existing hosting accounts, and in those times does the Mambo Manual come in handy.</p>
<p>On step of the process is doing a pre-install server check to make sure you have all the correct settings. If anything is not right it will appear in red. A common problem with the pre-install is the &#8220;Session Save Path&#8221; being unwriteable. To change this you will need to gain access to the php.ini file that should be found in the control panel of your site. In most cases the session save path is already in the php.ini file you just need to un-comment it out. (ie: go from &#8220;<span style="color: #ff6600;">; </span>session.save_path = /tmp&#8221; to &#8220;session.save_path = /var/tmp&#8221;). To un-comment it out, remove the semi-colon found at the beginning of that line, I have made it red here so you can see is clearly.</p>
<p>If you do not have that line in your php.ini file OR you see it and it already is un-commented out, then you will need to call your hosting provider. No matter what the hosting company&#8217;s technical support tell you, this is a problem that they have to fix. I have run into a few hosting providers that just don&#8217;t know how to help you, and so they say they cannot do that. In fact, they are the ONLY ones who can do it. Ask for their supervisor or technical support manager. Its actually a simple fix for them, its just a permission issue on the session save path directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forgot Username? or Can&#8217;t login to backend when you KNOW you have the right username &amp; password?</title>
		<link>http://mandichase.com/mambosolutions/?p=10</link>
		<comments>http://mandichase.com/mambosolutions/?p=10#comments</comments>
		<pubDate>Wed, 17 Mar 2010 19:28:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Admin Login]]></category>

		<guid isPermaLink="false">http://mandichase.com/mambosolutions/?p=10</guid>
		<description><![CDATA[For some reason I have encountered this problem twice now (on two different sites). I go to the back-end of my site (www.yoursite.com/administrator) put in my user-name and password and for some reason I am not allowed in. Sometimes I get a message saying &#8220;user-name and password incorrect&#8221; and others I do not. In both [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason I have encountered this problem twice now (on two different sites). I go to the back-end of my site (www.yoursite.com/administrator) put in my user-name and password and for some reason I am not allowed in. Sometimes I get a message saying &#8220;user-name and password incorrect&#8221; and others I do not. In both cases I was 100% certain that the user-name and password I entered were correct. Furthermore if I went into the server via an FTP client and viewed the &#8216;configuration.php&#8217; I saw that the password was in fact what I knew it to be. Luckily I have come up with a solution (see below)! This solution will also help you if you have lost only your user-name.</p>
<p><strong>Solution Explanation:</strong></p>
<p>Databases store your password in a encrypted version. Although you know your password to be something like &#8216;password1&#8242; the database encrypts that into a really long gobley-gook string. When you go to login, the database encrypts your entry and sees if it matches the stored encrypted version on the server, if they match, you are allowed in. For whatever reason, sometimes the database encrypted version of your password changes. I have not figure out how, but it has happened twice to me now. The text version of your password remains the same (ie: password1) but the encrypted database version is no longer the correct encryption. So although you are entering the correct password, you are denied access. If you try to change the password to something else in the &#8216;configuration.php&#8217; file, you will get a Admin Error 2 on your mambo site, so don&#8217;t try that. Follow the steps below to solve the problem:</p>
<p>1. Create a php file at the root of your server. You can name it whatever you want but be sure to keep the .php extension. Place the following code into the file and put your password in between the quotes then save it and load it up to your server.</p>
<p>&lt;?php<br />
print md5(&#8220;PlaceYourPasswordHere&#8221;);<br />
?&gt;</p>
<p>2. Visit the file in a broswer. (www.yoursite.com/yournewfile.php) Take note of the long string outputed.</p>
<p>3. Login to your PHPmyAdmin. Click on your database that is connected to your  mambo site, then on the side bar loacte the entry titled &#8220;mos_users&#8221; (it should be about half-way down the page). From there click on the &#8220;browse&#8221; tab at the top of this window. You should see the list of the users registered for your site. For those of you that have forgotten you username, this screen will show you what it is. Next, click on the pencil icon found to &#8220;Administrator&#8221; row. Now in the password field, paste in the new string you have created with our new file. Finally, click GO.</p>
<p>4. You should now be able to log into tyour site. Before doing so, clear your cache.</p>
<p>5. IMPORTANT. be sure to delete the password out of the quotes in your new php file. I assume there are some fairy significant security risks involved with displaying your encrypted database password on a non protected php file on your server. I would keep the file on your server in case you need to do this int the future.</p>
<p>Your problem should be fixed!</p>
<p>UPDATE</p>
<p>If the above solution does not work, try this:</p>
<p>Simply login to your database using PHPmyadmin and run the following statement:</p>
<pre>update mos_users
set password = md5('newpassword')
where username = 'admin';</pre>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO- Page Titles in Mambo</title>
		<link>http://mandichase.com/mambosolutions/?p=8</link>
		<comments>http://mandichase.com/mambosolutions/?p=8#comments</comments>
		<pubDate>Tue, 09 Mar 2010 19:49:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://mandichase.com/mambosolutions/?p=8</guid>
		<description><![CDATA[One of my areas of expertise for website production is Search Engine Optimization. A big player in your SEO rating is your page titles. Fortunately mambo has a dynamic page title feature that allows you have to specific titles for each page. To enable this go to: Site&#62;Global Configuration, then click on the SEO tab [...]]]></description>
			<content:encoded><![CDATA[<p>One of my areas of expertise for website production is Search Engine Optimization. A big player in your SEO rating is your page titles. Fortunately mambo has a dynamic page title feature that allows you have to specific titles for each page. To enable this go to: Site&gt;Global Configuration, then click on the SEO tab and hit the radio button next to Dynamic Page title to yes. Its important to note that the dynamic page titles are take from the content titles.</p>
<p>I noticed that Mambo automatically adds the URL into the dynamic page titles, which may or may not be what you want. Since every word in the page title is weighted for SEO (the more words you have the less importance each word has), I wanted to remove it. To do that you need to remove the &#8220;Site Name&#8221; in the Global Configuration. When I removed it it didn&#8217;t remove it right away, so I had to go into the configuration.php file found at your site root and remote is there as well in the &#8220;$mosConfig_sitename = &#8221;;&#8221; section.</p>
<p>And ther you go, custom dynamic page titles without the URL!</p>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop code from being added/taken away where you don&#8217;t want it</title>
		<link>http://mandichase.com/mambosolutions/?p=6</link>
		<comments>http://mandichase.com/mambosolutions/?p=6#comments</comments>
		<pubDate>Wed, 17 Feb 2010 01:07:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MOStlyCE]]></category>
		<category><![CDATA[code cleanup off]]></category>
		<category><![CDATA[unwanted html code]]></category>

		<guid isPermaLink="false">http://mandichase.com/mambosolutions/?p=6</guid>
		<description><![CDATA[By default the Mambo editor MOStlyCE has a &#8216;code cleanup&#8217; feature on.  Under normal circumstances this is fine, but sometimes you need to add special code in that the Code Clean up does not allow (ie: form code). To turn the &#8216;code cleanup&#8217; off, follow these steps: Find the file &#8220;mostlyce.php&#8221; on your sever and [...]]]></description>
			<content:encoded><![CDATA[<p>By default the Mambo editor MOStlyCE has a &#8216;code cleanup&#8217; feature on.  Under normal circumstances this is fine, but sometimes you need to add special code in that the Code Clean up does not allow (ie: form code). To turn the &#8216;code cleanup&#8217; off, follow these steps:</p>
<ol>
<li>Find the file &#8220;mostlyce.php&#8221; on your sever and edit it in a text edit program, the path to find this file on your sever is: /mambots/editors/mostlyce.php (I would save a back up somewhere, in case you mess up)</li>
<li>Once the file is open, do a find for the following snipit &#8220;tinyMCE.init&#8221;, once you find it, place this code somewhere within the brackets: <strong>cleanup : &#8220;false&#8221;,</strong></li>
<li>Save this file, and upload to the same place you found it.</li>
<li>Login and logout of your admin panel and your done</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Mambo Solutions Revealed</title>
		<link>http://mandichase.com/mambosolutions/?p=1</link>
		<comments>http://mandichase.com/mambosolutions/?p=1#comments</comments>
		<pubDate>Tue, 16 Feb 2010 23:48:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[about mambo solutions]]></category>

		<guid isPermaLink="false">http:/?p=1</guid>
		<description><![CDATA[I own a small graphic design company based out of Northern California. My company does pretty much everything under the &#8220;Graphic Design&#8221; umbrella with a specialization in website design. The last few years I have noticed a growing trend in clients needing to be able to update their sites on their own. After much research [...]]]></description>
			<content:encoded><![CDATA[<p>I own a small <a href="http://www.mandichase.com">graphic design company</a> based out of Northern California. My company does pretty much everything under the &#8220;Graphic Design&#8221; umbrella with a specialization in website design. The last few years I have noticed a growing trend in clients needing to be able to update their sites on their own. After much research I settled on using the Content Management System called Mambo to be my platform of choice. Since then, about 99% of my clients opt for the CMS based site (as opposed to the traditional HTML). Over the years I have mastered the art of harnessing the Mambo beast.</p>
<p>What follows is a compiliation of all my tips, tricks and solutions I have found over the years. Because Mambo is open source there is no one authority to tell you what to do when something goes wrong. As a result when something does go wrong, you are left hunting and pecking around forums to find your solution. I am by no means a expert when it comes to Mambo, but I have learned a few things over the years that might be able to help some of you out. Feel free to comment if you have any knowledge to add.</p>
]]></content:encoded>
			<wfw:commentRss>http://mandichase.com/mambosolutions/?feed=rss2&#038;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

