<?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>Wordress Training</title>
	<atom:link href="http://www.wordpressmelbourne.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wordpressmelbourne.com</link>
	<description>websites, wordpress, hosting, melbourne</description>
	<lastBuildDate>Mon, 14 May 2012 07:37:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress Compass style.css vs screen.css</title>
		<link>http://www.wordpressmelbourne.com/code/wordpress-compass-style-css-vs-screen-css/</link>
		<comments>http://www.wordpressmelbourne.com/code/wordpress-compass-style-css-vs-screen-css/#comments</comments>
		<pubDate>Thu, 10 May 2012 08:09:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[wordpress-blog]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=724</guid>
		<description><![CDATA[If WordPress can&#8217;t find style.css. It renders your theme as broken. The issue is Compass wants to use screen.css. Whilst WordPress forces the use of style.css. To get around this stylesheet naming problem in WP. There are two methods. Both have their pitfalls. The first: use 1 @import url(&#34;mycompassproject/stylesheets/screen.css&#34;); Create a stylesheet called style.css saved [...]]]></description>
			<content:encoded><![CDATA[<p>If WordPress can&#8217;t find style.css. It renders your theme as broken.</p>
<p>The issue is Compass wants to use screen.css. Whilst WordPress forces the use of style.css. </p>
<p>To get around this stylesheet naming problem in WP. There are two methods.</p>
<p>Both have their pitfalls. </p>
<p>The first: use</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre>@import url(&quot;mycompassproject/stylesheets/screen.css&quot;);</pre>
</div>
<p>Create a stylesheet called style.css saved to your theme folder. With the above code added. Effectively Importing your compass generated style sheet.</p>
<p>I don&#8217;t like this method that much as it is almost empty, additional stylesheet. </p>
<p>The second:</p>
<h3>
This method is even more hackier then the first. But some may prefer it</h3>
<p>For starters, make sure you have your required theme activated in wordpress.</p>
<p>Now, create your compass project in your wordpress theme directory.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre>compass create myshit</pre>
</div>
<p>Open the header.php file of your theme and alter the style link to point to your compass project directory.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre>&lt;link rel=&quot;stylesheet&quot; href=&quot;/mysite/wp-content/themes/mytheme/myshit/stylesheets/style.css&quot;&gt;</pre>
</div>
<p>Now, from within your theme directory in terminal, start your compass/Sass project with the usual:</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre>compass watch myshit</pre>
</div>
<p>In the wordpress admin. In the themes panel, WordPress will still say the theme is broken due to a missing stylesheet. But it will still remain as the activated theme and work as intended. </p>
<h3>Quick tip</h3>
<p>Don&#8217;t forget this stuff at the top of your scss stylesheet too. </p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre>
<pre>/*
Theme Name: mytheme
Theme URI: http://www.pixelstorm.com.au/
Description: one badass theme.
Author: one badass mutha
Author URI: http://www.pixelstorm.com.au/
Version: 1.0
*/</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/code/wordpress-compass-style-css-vs-screen-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress group training</title>
		<link>http://www.wordpressmelbourne.com/wordpress-training/wordpress-group-training/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-training/wordpress-group-training/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 23:16:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress training]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=702</guid>
		<description><![CDATA[I met these 3 weird guys a few weeks back. They said they wanted to make a movie website with WordPress but needed some group training. It was a bit tough having 3 good sized lads in my little office, but after a while the jokes stared flowing and we started to have a good [...]]]></description>
			<content:encoded><![CDATA[<p>I met these 3 weird guys a few weeks back. They said they wanted to make a movie website with WordPress but needed some group training. It was a bit tough having 3 good sized lads in my little office, but after a while the jokes stared flowing and we started to have a good time of it. It was a good session and these 3 talented boys have made a beauty of a blog.</p>
<p><a href="http://www.thecrat.com/">visit site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-training/wordpress-group-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ftp files with terminal Mac OSX</title>
		<link>http://www.wordpressmelbourne.com/code/ftp-files-with-terminal-mac-osx/</link>
		<comments>http://www.wordpressmelbourne.com/code/ftp-files-with-terminal-mac-osx/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 04:15:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[wordpress-blog]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=691</guid>
		<description><![CDATA[Cut out the need to use ftp programs and just use terminal. Originally I was made this for Snow leopard but should work with Lion. 1. Connect to server Get terminal into ftp mode by typing &#8220;ftp&#8221; without the quotes Connect to your server by typing &#8220;ftp yourserver.com&#8221; without the quotes and without a dot [...]]]></description>
			<content:encoded><![CDATA[<p>Cut out the need to use ftp programs and just use terminal.<br />
Originally I was made this for Snow leopard but should work with Lion.</p>
<h2>1. Connect to server</h2>
<ul>
<li>Get terminal into ftp mode by typing &#8220;ftp&#8221; without the quotes</li>
<li>Connect to your server by typing &#8220;ftp yourserver.com&#8221; without the quotes and without a dot between ftp and yourserver.com</li>
<li>Terminal then displays a welcome message and asks for your name. Type your ftp username.</li>
<li>It will then ask for your password. Type or paste-in your ftp passwword. The password will be invisible. Press Enter.</li>
</ul>
<h2>2. Select destination folder on server</h2>
<ul>
<li>Type &#8220;pwd&#8221; to print the folder name you are in on the server. terminal will probably respond with &#8220;Remote Directory: /&#8221; Which means you are in the root directory of the server.</li>
<li>Type &#8220;ls&#8221;. It will list the files and folders of the directory you are currently in on the server. </li>
<li>Navigate to the folder you wish to upload to by typing &#8220;cd public_html/mysite/mysitefolder&#8221;. Changing &#8220;public_html/mysite/mysitefolder&#8221; to your destination folder path on the server.</li>
</ul>
<h2>3. Select folder from the local computer</h2>
</ul>
<li>Type &#8220;lcd&#8221; to display your local machine current directory.</li>
<li>Type &#8220;lcd /Applications/MAMP/htdocs&#8221; to change your local current directory to the &#8220;htdocs&#8221; directory folder. Case sensitivety applies. Escape spaces in file names with &#8220;\&#8221; eg: &#8220;my\ folder&#8221;.
<p>Typing the &#8220;lcd&#8221; function without any file path will take you to the root directory of your local machine. eg: /users/yourname.  </li>
</ul>
<h2>4. Upload using the put command</h2>
<ul>
<li>put page.php</li>
<li>Proving &#8220;page.php&#8221; was in the directory on the local side. &#8220;Page.php&#8221; will now be on the server in the directory you specified.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/code/ftp-files-with-terminal-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php mailer with ajax form submission</title>
		<link>http://www.wordpressmelbourne.com/wordpress-blog/php-mailer-with-ajax-form-submission/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-blog/php-mailer-with-ajax-form-submission/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 11:18:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress-blog]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=670</guid>
		<description><![CDATA[Using Plugins all the time is sometimes not the best approach. Here is my manual solution for contact forms. The elements involved: PHPMailer &#8211; the php script which handles the email submission Gmail &#8211; send mail through your own gmail account SMTP (simple mail transfer protocal) &#8211; the method the php script uses to send [...]]]></description>
			<content:encoded><![CDATA[<p>Using Plugins all the time is sometimes not the best approach. Here is my manual solution for contact forms.</p>
<p>The elements involved:</p>
<ul>
<li><a href = "http://phpmailer.worxware.com/">PHPMailer</a> &#8211; the php script which handles the email submission </li>
<li>Gmail &#8211; send mail through your own gmail account</li>
<li>SMTP (simple mail transfer protocal) &#8211; the method the php script uses to send mail</li>
<li>Ajax &#8211; submit the form without refreshing the page. For added coolness.</li>
<li>Html &#8211; obviously</li>
</ul>
<h3>The html</h3>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
</pre>
<pre><span class="html"><span class="html-form-element">&lt;form id=<span class="html-attribute">&quot;memberform&quot;</span> class=<span class="html-attribute">&quot;group&quot;</span> action=<span class="html-attribute">&quot;&quot;</span> method=<span class="html-attribute">&quot;POST&quot;</span>&gt;</span>

	<span class="html-other-element">&lt;h3&gt;</span>Contact<span class="html-other-element">&lt;/h3&gt;</span>

	<span class="html-other-element">&lt;div class=<span class="html-attribute">&quot;item group&quot;</span>&gt;</span>
		<span class="html-other-element">&lt;label for = <span class="html-attribute">&quot;senderName&quot;</span>&gt;</span>Name<span class="html-other-element">&lt;span&gt;</span> * <span class="html-other-element">&lt;/span&gt;</span> <span class="html-other-element">&lt;/label&gt;</span>
		<span class="html-form-element">&lt;input id = <span class="html-attribute">&quot;senderName&quot;</span> type=<span class="html-attribute">&quot;text&quot;</span> class=<span class="html-attribute">&quot;required error&quot;</span> name=<span class="html-attribute">&quot;senderName&quot;</span> tabindex=<span class="html-attribute">&quot;1&quot;</span> /&gt;</span>
	<span class="html-other-element">&lt;/div&gt;</span>
	<span class="html-other-element">&lt;div class=<span class="html-attribute">&quot;item group&quot;</span>&gt;</span>
		<span class="html-other-element">&lt;label for = <span class="html-attribute">&quot;senderNumber&quot;</span>&gt;</span>Phone<span class="html-other-element">&lt;span&gt;</span> * <span class="html-other-element">&lt;/span&gt;</span> <span class="html-other-element">&lt;/label&gt;</span>
		<span class="html-form-element">&lt;input id = <span class="html-attribute">&quot;senderNumber&quot;</span> type=<span class="html-attribute">&quot;number&quot;</span> name=<span class="html-attribute">&quot;senderNumber&quot;</span> class=<span class="html-attribute">&quot;required error&quot;</span> tabindex=<span class="html-attribute">&quot;2&quot;</span> /&gt;</span>
	<span class="html-other-element">&lt;/div&gt;</span>
	<span class="html-other-element">&lt;div class=<span class="html-attribute">&quot;item group&quot;</span>&gt;</span>
		<span class="html-other-element">&lt;label for = <span class="html-attribute">&quot;senderEmail&quot;</span>&gt;</span>Email<span class="html-other-element">&lt;span&gt;</span> * <span class="html-other-element">&lt;/span&gt;</span><span class="html-other-element">&lt;/label&gt;</span>
		<span class="html-form-element">&lt;input id = <span class="html-attribute">&quot;senderEmail&quot;</span> type=<span class="html-attribute">&quot;email&quot;</span> class=<span class="html-attribute">&quot;required error&quot;</span> name=<span class="html-attribute">&quot;senderEmail&quot;</span> tabindex=<span class="html-attribute">&quot;3&quot;</span> /&gt;</span>
	<span class="html-other-element">&lt;/div&gt;</span>
	<span class="html-other-element">&lt;div class=<span class="html-attribute">&quot;item group&quot;</span>&gt;</span>
		<span class="html-other-element">&lt;label for = <span class="html-attribute">&quot;senderSuburb&quot;</span>&gt;</span>Suburb<span class="html-other-element">&lt;span&gt;</span> * <span class="html-other-element">&lt;/span&gt;</span><span class="html-other-element">&lt;/label&gt;</span>
		<span class="html-form-element">&lt;input id = <span class="html-attribute">&quot;senderSuburb&quot;</span> type=<span class="html-attribute">&quot;text&quot;</span> class=<span class="html-attribute">&quot;required error&quot;</span> name=<span class="html-attribute">&quot;senderSuburb&quot;</span> tabindex=<span class="html-attribute">&quot;3&quot;</span> /&gt;</span>
	<span class="html-other-element">&lt;/div&gt;</span>
	<span class="html-other-element">&lt;div class=<span class="html-attribute">&quot;item group&quot;</span> id=<span class="html-attribute">&quot;comment&quot;</span>&gt;</span>
		<span class="html-other-element">&lt;label for = <span class="html-attribute">&quot;senderComments&quot;</span>&gt;</span>
		<span class="html-other-element">&lt;span class=<span class="html-attribute">&quot;special&quot;</span>&gt;</span>Additional Information<span class="html-other-element">&lt;/span&gt;</span>
		<span class="html-other-element">&lt;/label&gt;</span>
		<span class="html-comment">&lt;!--&lt;input id = &quot;senderComments&quot; type=&quot;textarea&quot; name=&quot;senderComments&quot; class=&quot;required error&quot; tabindex=&quot;4&quot; /&gt;--&gt;</span>
		<span class="html-form-element">&lt;textarea id=<span class="html-attribute">&quot;senderComments&quot;</span> tabindex=<span class="html-attribute">&quot;4&quot;</span> name=<span class="html-attribute">&quot;senderComments&quot;</span>&gt;</span><span class="html-form-element">&lt;/textarea&gt;</span>
	<span class="html-other-element">&lt;/div&gt;</span>
	<span class="html-other-element">&lt;div id = <span class="html-attribute">&quot;sub&quot;</span>&gt;</span>
	<span class="html-form-element">&lt;input type=<span class="html-attribute">&quot;image&quot;</span> src=<span class="html-attribute">&quot;images/icons_14.png&quot;</span> id=<span class="html-attribute">&quot;submit&quot;</span> value=<span class="html-attribute">&quot;submit&quot;</span>/&gt;</span>

	<span class="html-other-element">&lt;/div&gt;</span>
	<span class="html-other-element">&lt;div id = <span class="html-attribute">&quot;loader&quot;</span>&gt;</span><span class="html-other-element">&lt;/div&gt;</span>
<span class="html-form-element">&lt;/form&gt;</span></span></pre>
</div>
<h3>The PHPMailer script (handler.php)</h3>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
</pre>
<pre><span class="php"><span class="php-script-tag">&lt;?php</span>
<span class="php-keyword">require</span><span class="php-brackets">(</span><span class="php-string">&quot;PHPMailer/class.phpmailer.php&quot;</span><span class="php-brackets">)</span>;
<span class="php-keyword">include</span><span class="php-brackets">(</span><span class="php-string">&quot;class.smtp.php&quot;</span><span class="php-brackets">)</span>; <span class="php-comment">// optional, gets called from within class.phpmailer.php if not already loaded</span>

<span class="php-comment">//collect the posted variables into local variables before calling $mail = new mailer</span>

<span class="php-var">$senderName</span> <span class="php-operator">=</span> <span class="php-var">$_POST</span><span class="php-brackets">[</span><span class="php-string">'senderName'</span><span class="php-brackets">]</span>;
<span class="php-var">$senderNumber</span> <span class="php-operator">=</span> <span class="php-var">$_POST</span><span class="php-brackets">[</span><span class="php-string">'senderNumber'</span><span class="php-brackets">]</span>;
<span class="php-var">$senderEmail</span> <span class="php-operator">=</span> <span class="php-var">$_POST</span><span class="php-brackets">[</span><span class="php-string">'senderEmail'</span><span class="php-brackets">]</span>;
<span class="php-var">$senderSuburb</span> <span class="php-operator">=</span> <span class="php-var">$_POST</span><span class="php-brackets">[</span><span class="php-string">'senderSuburb'</span><span class="php-brackets">]</span>;
<span class="php-var">$senderComments</span> <span class="php-operator">=</span> <span class="php-var">$_POST</span><span class="php-brackets">[</span><span class="php-string">'senderComments'</span><span class="php-brackets">]</span>; 

<span class="php-var">$mail</span>             <span class="php-operator">=</span> <span class="php-keyword">new</span> PHPMailer<span class="php-brackets">(</span><span class="php-brackets">)</span>;

<span class="php-comment">//$body             = file_get_contents('contents.html');</span>
<span class="php-comment">//$body             = eregi_replace(&quot;[]&quot;,'',$body);</span>

<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>IsSMTP<span class="php-brackets">(</span><span class="php-brackets">)</span>; <span class="php-comment">// telling the class to use SMTP</span>
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Host       <span class="php-operator">=</span> <span class="php-string">&quot;youremail@gmail.com&quot;</span>; <span class="php-comment">// SMTP server</span>
<span class="php-comment">//$mail-&gt;SMTPDebug  = 2;                     // enables SMTP debug information (for testing)</span>
                                           <span class="php-comment">// 1 = errors and messages</span>
                                           <span class="php-comment">// 2 = messages only</span>
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>SMTPAuth   <span class="php-operator">=</span> <span class="php-keyword">true</span>;                  <span class="php-comment">// enable SMTP authentication</span>
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>SMTPSecure <span class="php-operator">=</span> <span class="php-string">&quot;ssl&quot;</span>;                 <span class="php-comment">// sets the prefix to the servier</span>
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Host       <span class="php-operator">=</span> <span class="php-string">&quot;smtp.gmail.com&quot;</span>;      <span class="php-comment">// sets GMAIL as the SMTP server</span>
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Port       <span class="php-operator">=</span> <span class="php-number">4</span><span class="php-number">6</span><span class="php-number">5</span>;                   <span class="php-comment">// set the SMTP port for the GMAIL server</span>
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Username   <span class="php-operator">=</span> <span class="php-string">&quot;youremail@gmail.com&quot;</span>;  <span class="php-comment">// GMAIL username</span>
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Password   <span class="php-operator">=</span> <span class="php-string">&quot;yourpassword&quot;</span>;            <span class="php-comment">// GMAIL password</span>

<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>SetFrom<span class="php-brackets">(</span><span class="php-string">'youremail@gmail.com'</span>, <span class="php-string">'senderName'</span><span class="php-brackets">)</span>;

<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>AddReplyTo<span class="php-brackets">(</span><span class="php-string">&quot;youremail@gmail.com&quot;</span>,<span class="php-string">&quot;senderName&quot;</span><span class="php-brackets">)</span>;

<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Subject    <span class="php-operator">=</span> <span class="php-string">&quot;Email subject&quot;</span>;

<span class="php-comment">//$mail-&gt;AltBody    = &quot;To view the message, please use an HTML compatible email viewer!&quot;; // optional, comment out and test</span>

<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>MsgHTML<span class="php-brackets">(</span><span class="php-var">$body</span><span class="php-brackets">)</span>;

<span class="php-var">$address</span> <span class="php-operator">=</span> <span class="php-string">&quot;youremail@gmail.com&quot;</span>;
<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>AddAddress<span class="php-brackets">(</span><span class="php-var">$address</span>, <span class="php-string">&quot;John Doe&quot;</span><span class="php-brackets">)</span>;

<span class="php-comment">//$mail-&gt;AddAttachment(&quot;images/phpmailer.gif&quot;);      // attachment</span>
<span class="php-comment">//$mail-&gt;AddAttachment(&quot;images/phpmailer_mini.gif&quot;); // attachment</span>

<span class="php-comment">//now make those variables the body of the emails</span>

<span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Body<span class="php-operator">=</span><span class="php-string">&quot;
Name: $senderName
Phone: $senderNumber
Email: $senderEmail
Suburb: $senderSuburb
Additional Information: $senderComments&quot;</span>;

<span class="php-keyword">if</span><span class="php-brackets">(</span><span class="php-operator">!</span><span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>Send<span class="php-brackets">(</span><span class="php-brackets">)</span><span class="php-brackets">)</span> <span class="php-brackets">{</span>
  <span class="php-keyword">echo</span> <span class="php-string">&quot;Mailer Error: &quot;</span> <span class="php-operator">.</span> <span class="php-var">$mail</span><span class="php-operator">-</span><span class="php-operator">&gt;</span>ErrorInfo;
<span class="php-brackets">}</span> <span class="php-keyword">else</span> <span class="php-brackets">{</span>
  <span class="php-keyword">echo</span> <span class="php-string">&quot;&lt;h2&gt;Thank you. We will contact you shortly.&lt;/h2&gt;&quot;</span>;
<span class="php-brackets">}</span>
<span class="php-script-tag">?&gt;<span class="html"></span></span></span></pre>
</div>
<h3>The Ajax</h3>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre>
<pre>$(function() {

  $(&quot;#memberform&quot;).validate({

      submitHandler: function(form) {

      $(&#039;#loader&#039;, form).html(&#039;&lt;img src=&quot;images/loader.gif&quot; /&gt; Please Wait...&#039;);
          $.ajax({
            type: &quot;POST&quot;,
            url: &quot;handler.php&quot;,
            data: $(form).serialize(),
            timeout: 20000,
            success: function(msg) { $(form).fadeOut((500, function(){ $(form).html(&quot;&lt;h2&gt;Thank you. We will contact you shortly.&lt;/h2&gt;&quot;).fadeIn(); }));},
            error: $(&#039;.thanks&#039;).show()
          });
          return false;
      }
  });
});</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-blog/php-mailer-with-ajax-form-submission/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Training and Hosting</title>
		<link>http://www.wordpressmelbourne.com/wordpress-hosting-melbourne/wordpress-training-and-hosting/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-hosting-melbourne/wordpress-training-and-hosting/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 04:49:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Hosting melbourne]]></category>
		<category><![CDATA[wordpress training]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=659</guid>
		<description><![CDATA[ManySquareMetres (MSQM) is a fantastic art exhibition space in kensington. Specialising in really big art exhbitions. MSQM is run by a creative bunch of girls who don&#8217;t mind getting their hands dirty with a little web work. So once the Architectos theme had been selected, a little WP training and some hard work, the MSQM [...]]]></description>
			<content:encoded><![CDATA[<p>ManySquareMetres (MSQM) is a fantastic art exhibition space in kensington. Specialising in really big art exhbitions. MSQM is run by a creative bunch of girls who don&#8217;t mind getting their hands dirty with a little web work. So once the Architectos theme had been selected, a little WP training and some hard work, the MSQM site is finally finished and it looks pretty dam ace. Well done girls.</p>
<p>Let me take you through the work flow.</p>
<p>I installed wordpress on the girls laptop so they could have a play on the local machine. This allowed them to keep the current MSQM site up for the public whilst they developed the new site in wordpress locally.</p>
<p>After all the modifications and content added had been added to the Architectos theme, it was time to push the site live. This is where I came back into the picture. Wp Melbourne to the rescue!</p>
<p>But we had some trouble. Doh! We found the blue host (hosting company) control panel to be way too confusing and unawesome to use. The Solution: Wp Melbourne Hosting! So now the new MSQM site lives happily on the WordPress Melbourne server, and its running like a dream.</p>
<p><a href="http://www.manysquaremetres.com/">visit site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-hosting-melbourne/wordpress-training-and-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>moving wordpress..</title>
		<link>http://www.wordpressmelbourne.com/wordpress-support/moving-wordpress/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-support/moving-wordpress/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 12:52:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Support]]></category>
		<category><![CDATA[wordpress-blog]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=627</guid>
		<description><![CDATA[..and correcting the new image paths. I recently changed the directory that one of my WordPress sites was in. For SEO Reasons i thought &#8220;websites-melbourne&#8221; is a much more semantic directory name then &#8220;pixelstormv5&#8243;. I followed the method listed on the wordpress codex Moving WordPress and everything went smoothly. Except my images were not visible. [...]]]></description>
			<content:encoded><![CDATA[<h3>..and correcting the new image paths.</h3>
<p>I recently changed the directory that one of my WordPress sites was in.<br />
For SEO Reasons i thought &#8220;websites-melbourne&#8221; is a much more semantic directory name then &#8220;pixelstormv5&#8243;.</p>
<p>I followed the method listed on the wordpress codex <a href="http://codex.wordpress.org/Moving_WordPress">Moving WordPress</a> and everything went smoothly. Except my images were not visible. All my images where hardcoded in using custom fields with relative urls. eg:</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php"><span class="php-operator">/</span>pixelstormv<span class="php-number">5</span><span class="php-operator">/</span>images<span class="php-operator">/</span>website<span class="php-operator">-</span><span class="php-number">0</span><span class="php-number">5</span><span class="php-operator">.</span>jpg<span class="php-operator">.</span></span></pre>
</div>
<p>So the problem was the image path needed to be changed on each individual post. Changing 187 image paths manually is time intensive. I try to avoid manual alterations like this and went searching for a more dynamic way.</p>
<p>Here is that dynamic way.</p>
<p>Access your database via php myAdmin. Click the SQL button. Now do a SQL find and replace using the below code.</p>
<h3>Find and replace meta data in the mysql database.</h3>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php">update TABLE_NAME set FIELD_NAME <span class="php-operator">=</span> replace<span class="php-brackets">(</span>FIELD_NAME, ‘find this <span class="php-var-type">string</span>’, ‘replace found <span class="php-var-type">string</span> with this <span class="php-var-type">string</span>’<span class="php-brackets">)</span>;</span></pre>
</div>
<p>As i mentioned before. I use custom fields for all my image paths.<br />
<img title="screenshot_01" src="http://www.wordpressmelbourne.com/wp-content/uploads/2012/01/screenshot_01.jpg" alt="" width="504" height="67" /></p>
<p>So all my image paths are in the table &#8220;wp_postmeta&#8221; table of the database. Therefore, my script looked like this.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php">update wp_postmeta SET meta_value <span class="php-operator">=</span> replace<span class="php-brackets">(</span>meta_value,<span class="php-string">&quot;pixelstormv5&quot;</span>,<span class="php-string">&quot;websites-melbourne&quot;</span><span class="php-brackets">)</span>;</span></pre>
</div>
<p>Click go and let the script run. If it worked. the Script just saved you hours of frustrating manual adjustments. And was far more accurate then a human could be. Computers don&#8217;t get distracted and start day dreaming of more enjoyable tasks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-support/moving-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>budget wordpress website in 1 hour</title>
		<link>http://www.wordpressmelbourne.com/wordpress-support/budget-wordpress-website-in-1-hour/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-support/budget-wordpress-website-in-1-hour/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 01:09:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Support]]></category>
		<category><![CDATA[wordpress-blog]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=617</guid>
		<description><![CDATA[Setting up the foundation of a WordPress website will take about 1 hour. Providing: The domain name has been purchased and the domain name server is pointing to the correct location (your hosting space). The hosting space has been setup and has the ability to create at least one Mysql database. The Parental Animations website [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up the foundation of a WordPress website will take about 1 hour. Providing:</p>
<ul>
<li>The domain name has been purchased and the domain name server is pointing to the correct location (your hosting space). </li>
<li>The hosting space has been setup and has the ability to create at least one Mysql database. </li>
</ul>
<p>The Parental Animations website below is a real world example of what can be accomplished in just one hour of website training with WordPress.<br />
It&#8217;s a pretty good starting point for a website on a budget.</p>
<p><a href="http://parentinganimations.org/">visit site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-support/budget-wordpress-website-in-1-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feather theme</title>
		<link>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/feather-theme/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/feather-theme/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 07:02:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress designer folio melbourne]]></category>
		<category><![CDATA[wordpress-blog]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=522</guid>
		<description><![CDATA[I had the pleasure of modifying the Elegant Themes premium &#8220;Feather&#8221; theme recently. And it&#8217;s a step in the right direction for the WordPress community. Visit Site Handy little features such as swappable background: textures / colors give the owner a chance to input a little of their own creativity into the theme. Along with [...]]]></description>
			<content:encoded><![CDATA[<p>I had the pleasure of modifying the <a href="http://www.elegantthemes.com/">Elegant Themes</a> premium &#8220;Feather&#8221; theme recently. And it&#8217;s a step in the right direction for the WordPress community.</p>
<p><a href="http://redtreeconsulting.com.au/" />Visit Site</a></p>
<div class="clear"><span></span></div>
<p><img src="http://www.wordpressmelbourne.com/wp-content/gallery/cache/21__559x_screenshot_04_0.jpg" alt="screenshot_04_0" title="screenshot_04_0"></p>
<div class="clear"><span></span></div>
<p>Handy little features such as swappable background: textures / colors give the owner a chance to input a little of their own creativity into the theme.</p>
<div class="clear"><span></span></div>
<p><img class="alignleft size-full wp-image-526" title="screenshot_02" src="http://www.wordpressmelbourne.com/wp-content/uploads/2011/10/screenshot_02.jpg" alt="" width="486" height="551" /></p>
<div class="clear"><span></span></div>
<p>Along with picture overlay graphics which add a bit more depth to the design.</p>
<div class="clear"><span></span></div>
<p><img class="alignleft size-full wp-image-528" title="screenshot_03" src="http://www.wordpressmelbourne.com/wp-content/uploads/2011/10/screenshot_03.jpg" alt="" width="218" height="145" /></p>
<div class="clear"><span></span></div>
<p>It comes with all your standard page templates with a few extras thrown in too. The final list is plentiful and looks like this.</p>
<div class="clear"><span></span></div>
<p><img class="alignleft size-full wp-image-524" title="Picture-1(2)_03" src="http://www.wordpressmelbourne.com/wp-content/uploads/2011/10/Picture-12_03.jpg" alt="" width="292" height="211" /></p>
<div class="clear"><span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/feather-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-commerce Multisite on WordPress.</title>
		<link>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/e-commerce-multisite-on-wordpress/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/e-commerce-multisite-on-wordpress/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 04:24:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress designer folio melbourne]]></category>
		<category><![CDATA[wordpress-blog]]></category>
		<category><![CDATA[e-commerce]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=423</guid>
		<description><![CDATA[I&#8217;ve spent countless hours looking for a wordPress multi-site e-commerce solution. Here is what i went through before settling on my final solution. WpEcommerce There where a few bugs when i was testing this. And answers in the forum where hard to come by. This was the premium version of the plugin too. Shopp Nice [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent countless hours looking for a wordPress multi-site e-commerce solution. Here is what i went through before settling on my final solution.</p>
<ul id = "E-commerce-software-list">
<li><strong>WpEcommerce</strong> There where a few bugs when i was testing this. And answers in the forum where hard to come by. This was the premium version of the plugin too.</li>
<li><strong>Shopp</strong> Nice plugin but, doesn&#8217;t support multisite as yet.</li>
<li><strong>YAK</strong> Probably not suited to my audience, the use of shortcodes could make it a hard to explain to users how to upload products. </li>
<li><strong>Cart66 (phpurchase)</strong> Tax options not available for Australia </li>
</ul>
<p>I used <a href="http://premium.wpmudev.org/" target = "_blank" alt="wordpress e-commerce software"><strong>WPMU&#8217;s Marketpress</strong></a> for the final solution. It was really the only option i had for an E-commerce multisite with wordpress.</p>
<p>The draw-backs to WPMU where plentiful. </p>
<ul>
<li>WPMU products themes/plugins are loaded with unused buddypress code. I don&#8217;t use buddypress. I don&#8217;t even know what it is exactly.</li>
<li>The marketpress software i&#8217;snt brilliant but it works.</li>
<li>The only source of documentation is the forum</li>
<li>I found The support team frustrating. They would prefer to dodge questions rather then provide straight answers on the software capabilities. They are in america somewhere and there is a massive time difference to Melbourne. This made the process so slow.</li>
<li>So many times i asked the support team detailed questions, with screenshots etc, only to wait 15 hours for a basic routine response like &#8220;Is the plugin switched on?&#8221;</li>
<li>Fortunately for WPMU, when your monthly membership expires you aren&#8217;t allowed to post forum messages. I think this is quite an unethical business practice. I feel as if I&#8217;m paying to notify them of bugs in their software</li>
<li>WPMU are expensive.</li>
<p>This was a difficult project in general as there is plenty of functionality to consider with multisites. You have multiple accounts, multiple sites, different user roles and capabilities <i>Gasp</i> I got in done, and i have got to say I quite enjoyed creating this monster. New people sign up everyday. New products being uploaded consistently and for me, it&#8217;s a peek inside a world of craft I never new existed.</p>
<p>
<a target="_blank" href="http://www.ybrmarket.com.au">Visit Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/e-commerce-multisite-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress lessons melbourne</title>
		<link>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/wordpress-lessons-melbourne/</link>
		<comments>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/wordpress-lessons-melbourne/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 04:06:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress designer folio melbourne]]></category>
		<category><![CDATA[wordpress-blog]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.wordpressmelbourne.com/?p=492</guid>
		<description><![CDATA[WordPress themes can often be quite simple and easy to workout. That&#8217;s fine simple is good. But what about some of those jaw-dropping, must-have Wp themes. Are they simple? Easy to work out? Well, some of them can test you. They will test your time, your patience and your knowledge of WordPress. Remember many themes [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress themes can often be quite simple and easy to workout. That&#8217;s fine simple is good. But what about some of those jaw-dropping, must-have Wp themes. Are they simple? Easy to work out?</p>
<p>Well, some of them can test you. They will test your time, your patience and your knowledge of WordPress. Remember many themes come with access to a forum. But often support these kaotic forums are scary and its hard to get the support you require.</p>
<p>The High Art Theme is one of those drop dead gorgeous WP themes that comes with a couple advanced techniques ingrained into its core. It expects everyone to have a certain level of knowledge in order to use the theme as advertised.</p>
<p>I&#8217;m here for those who don&#8217;t want to spent the time working things out. I can show you how. Provide wordpress and theme specific training. Its quick, it&#8217;s painless, its friendly and effective.</p>
<p>Below is the HighArt theme which i got know quit intimately whilst working through a few customizations for &#8220;Girl Printer&#8221; Carolyn Fraser. </p>
<p>
<a target="_blank" href="http://www.carolynfraser.com">Visit Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpressmelbourne.com/wordpress-designer-folio-melbourne/wordpress-lessons-melbourne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

