<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">

    <title type="text">pMachine Pro Community Forums</title>
    <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/" />
    <link rel="self" type="application/atom+xml" href="http://pmachinepro.com/forums/atom/" />
    <updated>2008-06-14T15:10:32Z</updated>
    <rights>Copyright (c) 2008</rights>
    <generator uri="http://www.pmachine.com/" version="1.6.3">ExpressionEngine</generator>
    <id>tag:pmachinepro.com,2008:06:14</id>


    <entry>
      <title>New Member Email Notification</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/82370/" />      
      <id>tag:pmachinepro.com,2008:forums/viewthread/.82370</id>
      <published>2008-06-14T15:09:19Z</published>
      <updated>2008-06-14T15:10:32Z</updated>
      <author><name>sgozali</name></author>
      <content type="html">
      <![CDATA[
        <p>Dear Expert,
<br />
Basically the Pmachine will automatically send email to every new member, wether admin rule the self activation or by activated by admin.
</p>
<p>
I have difficulty in finding how to change the content
</p>
<p>
This is the basic email to new member :
<br />
Header : Account Activated
<br />
Your account has been activated at: &#123;sitename&#125;
</p>
<p>
Name: &#123;name&#125;
<br />
Username: &#123;username&#125;
</p>
<p>
My question is : 
<br />
How to add password such as:
<br />
password: &#123;password&#125;
</p>
<p>
Thank you all for help!! Please....
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Add a cache for your more pages</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/53286/" />      
      <id>tag:pmachinepro.com,2007:forums/viewthread/.53286</id>
      <published>2007-05-30T16:35:36Z</published>
      <updated></updated>
      <author><name>lbneal</name></author>
      <content type="html">
      <![CDATA[
        <p>It ain&#8217;t simple, but it does work.
</p>
<p>
1) Get Lite.php from http://pear.php.net/package/Cache_Lite
</p>
<p>
2) Edit Lite.php and replace all instances of $id with $cid.
</p>
<p>
3) Upload Lite.php to your server directory and make sure it remains as Lite.php.
</p>
<p>
4) Create a directory named cache and CHMOD it to 777.
</p>
<p>
5) Edit your more.php file to add these lines at the beginning:
</p>
<p>
&lt;?php 
<br />
include("pm_inc.php");
<br />
require_once("Lite.php");
</p>
<p>
// set an ID for this cache
<br />
  $cid = get_id($id, "1");
</p>
<p>
// set some variables
<br />
  $options = array(
<br />
// cacheDir should be the absolute address of your files on your server**
<br />
// this will vary wildly depending on the server configuration
<br />
  'cacheDir' =&gt; '/home/myaccount/mydomain/cache/',
<br />
  'lifeTime' =&gt; 50
<br />
  );
</p>
<p>
// create a Cache_Lite object
<br />
  $objCache = new Cache_Lite($options);
</p>
<p>
// test if there exists a valid cache
<br />
  if ($quote = $objCache-&gt;get($cid)) 
<br />
  &#123;  echo $quote;  &#125; 
<br />
  else 
<br />
  &#123;
<br />
  echo $quote; 
<br />
  $objCache-&gt;save($quote, $cid);
<br />
  &#125;
<br />
?&gt;
</p>
<p>
**If you don&#8217;t know this, just comment out the last &#125; in the code upload the file and run it one time, the error message will let you know :=) Copy the path and insert it into your more.php file, don&#8217;t forget to fix the broken line.
</p>
<p>
Your server needs the Pear module installed (it probably will be).
</p>
<p>
This probably won&#8217;t work if you are on a WinDoes server.
</p>
<p>
If you have multiple weblogs on your site, some tuning will be required :=)
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>can we add automatic updating news&#63;</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/50314/" />      
      <id>tag:pmachinepro.com,2007:forums/viewthread/.50314</id>
      <published>2007-04-11T21:16:22Z</published>
      <updated></updated>
      <author><name>Achintha Samindika</name></author>
      <content type="html">
      <![CDATA[
        <p>can we add automatic updating news?how I add it? I try to add rss address but It&#8217; dosen&#8217;t see on my home page
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>how do i add a chart</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/35896/" />      
      <id>tag:pmachinepro.com,2006:forums/viewthread/.35896</id>
      <published>2006-07-04T00:02:28Z</published>
      <updated></updated>
      <author><name>oohansel</name></author>
      <content type="html">
      <![CDATA[
        <p>hello, how can i add a chart from a msword document with text in it to pMachine? thanks!
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Anyone know how to make posts automatically truncate&#63;</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/35495/" />      
      <id>tag:pmachinepro.com,2006:forums/viewthread/.35495</id>
      <published>2006-06-20T17:02:06Z</published>
      <updated></updated>
      <author><name>Susan Huberich</name></author>
      <content type="html">
      <![CDATA[
        <p>I would love to have our main page automatically truncate/limit the word count of long posts. The truncated post would end in a friendly &#8220;Read More&#8221; which would automatically link to the full posting.
</p>
<p>
Has anyone done this? And if so, are you willing to share your trick?
</p>
<p>
thank you
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>How to auto fill the username</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/32747/" />      
      <id>tag:pmachinepro.com,2006:forums/viewthread/.32747</id>
      <published>2006-03-21T14:14:16Z</published>
      <updated></updated>
      <author><name>simplesoul</name></author>
      <content type="html">
      <![CDATA[
        <p>Is it possible to auto fill the Username in the email address in the Email a friend form. Well trying new option if the user is logged to the site.
</p>
<p>
When user clicks on email a friend I would like to have an option of auto filling these two fields. How this can be done, please someone help me on that.
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Printerfriendly</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/32427/" />      
      <id>tag:pmachinepro.com,2006:forums/viewthread/.32427</id>
      <published>2006-03-10T01:42:00Z</published>
      <updated></updated>
      <author><name>Christian Sweatt</name></author>
      <content type="html">
      <![CDATA[
        <p>I have attempted, for several weeks now, to create a printerfiendly page.&nbsp; I&#8217;ve read the tutorial, but to no avail&#8230;
</p>
<p>
I have no idea how to set up my templates, link to that page, and how to get my actual page to show up on the printerfriendly page.
</p>
<p>
Can someone please give me some steps on doing this in pMachine 2.4?&nbsp; It would be VERY much appreciated..
</p>
<p>
Thanks!
</p>
<p>
Christian
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>display recent entrys by category&#63;</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/30497/" />      
      <id>tag:pmachinepro.com,2006:forums/viewthread/.30497</id>
      <published>2006-01-14T13:43:44Z</published>
      <updated></updated>
      <author><name>pilau</name></author>
      <content type="html">
      <![CDATA[
        <p>im stuck, ive searched the forums for a bit and messed around with pm.
</p>
<p>
im looking to display 3 recent entrys by category&#8230; i have 2 categorys.
</p>

<p>
any help is appreciated.
</p>

<p>
*****EDIT******
</p>
<p>
figured it out.
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>What happened to the external resources page&#63;</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/30118/" />      
      <id>tag:pmachinepro.com,2006:forums/viewthread/.30118</id>
      <published>2006-01-04T22:59:42Z</published>
      <updated></updated>
      <author><name>Christian Fierro - Lenqiu</name></author>
      <content type="html">
      <![CDATA[
        <p>the URL was http://www.pmachine.com/ext_resources.php
</p>
<p>
I created a PDF document (in Spanish) on how to create a digital newspaper in pm, you uploaded it a year ago (Rick Ellis did it) and now it&#8217;s gone....
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Single entry appearing in multiple weblogs&#63;</title>
      <link rel="alternate" type="text/html" href="http://pmachinepro.com/forums/viewthread/26176/" />      
      <id>tag:pmachinepro.com,2005:forums/viewthread/.26176</id>
      <published>2005-08-21T20:20:48Z</published>
      <updated></updated>
      <author><name>kenyabob</name></author>
      <content type="html">
      <![CDATA[
        <p>I tried a search on this question, but seemingly no one asked this question before, or I am phrasing it incorrectly. What I am looking to do is make a single entry that will appear in two different weblogs. Is that possible? Seems a simple request to me....
</p>
      ]]>
      </content>
    </entry>


</feed>