<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[vldPersonals Forum - Tutorials and Guides]]></title>
		<link>http://www.vldpersonals.com/forum/</link>
		<description><![CDATA[The most recent topics at vldPersonals Forum.]]></description>
		<lastBuildDate>Wed, 08 Feb 2012 19:53:01 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Hide Chat Now if user is not online]]></title>
			<link>http://www.vldpersonals.com/forum/topic/10408/hide-chat-now-if-user-is-not-online/new/posts/</link>
			<description><![CDATA[<p>Hi, how can we hide the Chat Now option if the user is not online please?</p>]]></description>
			<author><![CDATA[dummy@example.com (Zoheir)]]></author>
			<pubDate>Wed, 08 Feb 2012 19:53:01 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/10408/hide-chat-now-if-user-is-not-online/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[vldPersonal 2.5.3 RSS Discussion/Tutor - Part 1]]></title>
			<link>http://www.vldpersonals.com/forum/topic/5943/vldpersonal-253-rss-discussiontutor-part-1/new/posts/</link>
			<description><![CDATA[<p>RSS is a new feature of vldPersonals that may&nbsp; not be so obvious to many. I would like to take the time to discuss RSS for those who are interested. The benefits can be many. Feedback is welcome.</p><p>This discussion/tutor will be in two parts. <strong>Part 1</strong> will be&nbsp; a discussion of RSS and how to put subscriptions links on your site. <strong>Part 2</strong> will be how to market your site with RSS by placing comments below this tutor. Even without Part 2, Part 1 could be a benefit to your members and your site if you understand how RSS can be used.</p><p>Before I get started, a big thank you to <strong>Radioact/vldCrowd </strong>for his help on coding the links for RSS subscriptions.</p><p><span class="bbu"><span style="color: #FF0000">HEADER.TPL</span></span></p><p>If you look at the header.tpl you will notice coding between the head tags that looks like this:</p><p>&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;{settings.app_title} | {app_page}&quot; href=&quot;{virtual_path}{member_blog_rss_link}&quot; /&gt;</p><p>By providing the above code in the header.tpl, it makes it easier for browsers and RSS aggregators (readers) to automatically discover your rss feed for indexing and subscription services <strong>(will give an example of using a RSS reader later).</strong></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs01.jpg" alt="http://www.filipina-lady.net/test253/rs01.jpg" /></span></p><p>Vlad also uses conditional statements in the head tag like this:</p><p>&lt;!-- IF active_module == &quot;news&quot; AND settings.enable_news_feed --&gt; </p><p>What this means is if you have news settings turned on in the CP (most do) and are on the news page (it is the active module) you will see the subscription icon in the browser.</p><p><span class="bbu"><span style="color: #FF0000">Should we add it to the homepage.tpl</span></span></p><p>I&#039;m far from an expert in coding (vlad &amp; radioact are), but from a user&#039;s perspective, my only concern with the conditional statements in the header.tpl is that most visitors initially land on your home page. If a user lands on your home page and is looking for a subscription service via browser icon, they may not be aware of it since all conditional statements in the header are coded to be displayed when that template is the active module as is the case for the news feed. </p><p>Before I talk more about the homepage.tpl, understand that most of the RSS feeds are based on member&#039;s input and not on your overall website. For example,&nbsp; when Member A writes a blog OR if Member B signs Member C&#039;s guestbook a RSS feed is created. This type of RSS&nbsp; makes the RSS feed member orientated. You could make an exception to this with your site&#039;s news feed which we will talk about next for your homepage.tpl. </p><p> Unlike blogs and guestbooks, News feed is created by the Admin. This makes this feed more of a <strong>site feed</strong> rather than a member orientated feed. Consequently, I would use your news feed as a way to display a RSS icon on your homepage.tpl by making the following changes in your header.tpl.</p><p><strong>FIND IN YOUR HEAD TAGS</strong></p><p>&lt;!-- IF active_module == &quot;news&quot; AND settings.enable_news_feed --&gt;</p><p><strong>CHANGE TO:</strong></p><p>&lt;!-- IF active_module == &quot;news&quot; OR active_module == &quot;homepage&quot; AND settings.enable_news_feed --&gt;</p><p><strong>NOTE:&nbsp; if you are going to make this change to your header, recommend you add&nbsp; a link in your footer for the news feed which I will show you how to do later.</strong></p><p>Now if a visitor lands on my home page looking for an RSS feed in his browser, he will see the RSS icon for the News feed.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs02.jpg" alt="http://www.filipina-lady.net/test253/rs02.jpg" /></span></p><p>If a visitors clicks the icon on the home page, they will see the RSS News feed and can subscribe.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs03.jpg" alt="http://www.filipina-lady.net/test253/rs03.jpg" /></span></p><p><span class="bbu"><span style="color: #FF0000">SUBSCRIPTION LINKS</span></span></p><p>Subscription links is just another way of providing visitors and members a way to subscribe to a news feed. What I want to discuss is how to create these links.</p><p><strong>Before I get started one caveat</strong>. Not all browsers can handle the coding for RSS templates in vldPersonals. In most cases we are talking about older browsers. </p><p>If I click an RSS link using an older browser (for example, i.e. 6) it will ask you if you want to download the file instead of displaying the RSS feed. Probably this isn&#039;t a big concern since most are using the latest browsers, but I wanted to make you aware of it.</p><p><span class="bbu"><span style="color: #FF0000">FOOTER SUBSCRIPTION LINK FOR SITE NEWS</span></span></p><p>Where you want to put the link in the footer is up to you. Here is the coding for the link:</p><p> &lt;a href=&quot;{virtual_path}news/rss/&quot; title=&quot;{app_page}&quot;&gt;Site News Subscription&lt;/a&gt;</p><p>If you want to use the RSS icon with your link you would have to download and upload the icon to your templates media folder. Since the icon is an image, there may be some formatting involved to display the icon the way you want in your footer. I went without the icon, but if I did use it, the link would look something like this:</p><p>&lt;a href=&quot;{virtual_path}news/rss/&quot;&gt;Site News Subscription&lt;/a&gt; &lt;img src=&quot;{virtual_tpl_path}{session.template}/media/rss2.gif&quot; border=&quot;0&quot; align=&quot;absmiddle&quot; /&gt;</p><p><strong>Note: you can find tons of RSS icons by googling.</strong></p><p><span class="bbu"><span style="color: #FF0000">SUBSCRIPTION LINK FOR MEMBER&#039;S BLOG</span></span></p><p>There are two templates I would consider for placing a subscription link for member&#039;s blogs: MEMBER_BLOG.TPL &amp; MEMBER_BLOG_ENTRY.TPL</p><p>Where you place them is up to you but the coding may be slightly different depending on where you place the link in the template.</p><p><span style="color: blue"><span class="bbu">MEMBER_BLOG.TPL</span></span></p><p>Here is where I placed it on my site:</p><p><strong>FIND:</strong> &lt;li&gt;{lang:&quot;member&quot;,&quot;post_date&quot;} {entry_post_date}&lt;/li&gt;</p><p><strong>AFTER ADD:</strong> &lt;li&gt;&lt;a href=&quot;{top.virtual_path}{top.member_blog_rss_link}&quot; title=&quot;{app_page}&quot;&gt;Subscribe to {top.member_username} Blog&lt;/a&gt;&lt;/li&gt;</p><p><strong>NOTE: Since I placed the link inside an array, I had to use &quot;top&quot; in the path statements. If you place the code outside an array on member_blog.tpl you probably don&#039;t have to use &quot;top&quot; in your link. Instead it would look like:</strong></p><p><strong>AFTER ADD:</strong> &lt;li&gt;&lt;a href=&quot;{virtual_path}{member_blog_rss_link}&quot; title=&quot;{app_page}&quot;&gt;Subscribe to {member_username} Blog&lt;/a&gt;&lt;/li&gt;</p><p>If you are not sure, try one if it works you got it. If not, try the other.</p><p><span style="color: blue"><span class="bbu">MEMBER_BLOG_ENTRY.TPL</span></span></p><p>On my site, I placed it at:</p><p><strong>FIND:</strong> &lt;li&gt;{lang:&quot;member&quot;,&quot;post_date&quot;} {entry_post_date}&lt;/li&gt;</p><p><strong>AFTER ADD:</strong> &lt;li&gt;&lt;a href=&quot;{virtual_path}{member_blog_rss_link}&quot; title=&quot;{app_page}&quot;&gt;Subscribe to {member_username} Blog&lt;/a&gt;&lt;/li&gt;</p><p><strong>NOTE: same note as above about using &quot;top&quot; or not in your link.</strong></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs05.jpg" alt="http://www.filipina-lady.net/test253/rs05.jpg" /></span></p><p>If member A is in love with simplebutterfly, they may subscribe to her blog on google reader, facebook, myspace, youtube reader and a thousand other places. Or if another site is just looking for some content for their site, they may subscribe as well. It doesn&#039;t matter, it is a link to your site, that is all you care about.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs06.jpg" alt="http://www.filipina-lady.net/test253/rs06.jpg" /></span></p><p><span class="bbu"><span style="color: #FF0000">SUBSCRIPTION LINK FOR MEMBER&#039;S GUESTOOK</span></span></p><p>There is only one template I used for subscription link for member&#039;s Guestook: MEMBER_GUESTBOOK.TPL</p><p><strong>FIND:</strong> &lt;li&gt;{lang:&quot;member&quot;,&quot;post_date&quot;} {entry_post_date}&lt;/li&gt;</p><p><strong>AFTER ADD:</strong> &lt;li&gt;&lt;a href=&quot;{top.virtual_path}{top.member_guestbook_rss_link}&quot; title=&quot;{app_page}&quot;&gt;Subscribe to {top.member_username} Guestbook&lt;/a&gt;&lt;/li&gt;</p><p><strong>NOTE: Since I placed the link inside an array, I had to use &quot;top&quot; in the path statements. If you place the code outside an array on member_guestbook.tpl you probably don&#039;t have to use &quot;top&quot; in your link. </strong></p><p><span class="bbu"><span style="color: #FF0000">MEMBER_SECTIONS_CARD.TPL</span></span></p><p>I would of never figured this one out without Radioacts/vldCrowd blog post and his help. </p><p>The concern with putting a blog link in the member_sections_card.tpl is having a link in a member&#039;s profile when they did not create a blog.&nbsp; <strong>Consequently, we only want to create a link in their profile if the member created a blog. Here is the coding:</strong></p><p>&lt;!-- IF settings.enable_blogs AND member_total_blogs &gt; &quot;0&quot; --&gt;<br />&lt;dt&gt;Member&#039;s Blog&lt;/dt&gt;<br />&lt;dd&gt;&lt;a href=&quot;{top.virtual_path}member/{member_id}/blog/rss/&quot;&gt;Subscribe to {member_username} blog&lt;/a&gt;&lt;/dd&gt;<br />&lt;!-- ENDIF --&gt;</p><p>Where you place the above code in member_sections_card.tpl is up to you, but I usually just keep adding new code at the end of the links</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs07.jpg" alt="http://www.filipina-lady.net/test253/rs07.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs08.jpg" alt="http://www.filipina-lady.net/test253/rs08.jpg" /></span></p><p><span class="bbu"><span style="color: #FF0000">SUBSCRIPTION LINK FOR EVENTS</span></span></p><p>I don&#039;t use Events on my site so I did not do the coding. However, with the above examples, it shouldn&#039;t be too hard to figure out. Without looking more into it,&nbsp; Events seems more like an overall site RSS link than a member&#039;s RSS link. If that is true, you may want to lean towards a link similar to the News RSS subscription link. I&#039;m sure those who use Events on their site can figure out which is the best type of link to use based on the above examples.</p><p><span class="bbu"><span style="color: #FF0000">NOW WHAT</span></span></p><p>Before we talk about marketing with RSS, I wanted to give you some idea of how RSS readers work. The list of readers is overwhelming so don&#039;t be shy -- start googling and you will find tons of ways to use RSS links.</p><p>There are basically <strong>three types of readers, (1)desktop readers, (2)personal site &amp; browser readers and (3) website readers</strong>. </p><p>With desktop readers you do not have to be online to read the content of the RSS feed. You can read it from your desktop. </p><p>Personal Site &amp; Browser readers are usually part of a site -- for example if you have a Yahoo My Page you can subscribe to RSS feeds, if you have a google account you can subscribe to RSS feeds, if you use firefox as your browser you can bookmark and subscribe to a RSS feed, etc.</p><p>Website readers are usually used to place RSS feeds on your own website. Seeme uses a Website reader on his site as I do on one of my sites. In some cases all it takes is a link, other times it requires you to install some code be it php or javascript. </p><p> <strong>I&#039;ll&nbsp; demo a few readers but hopefully others will provide feedback&nbsp; if they discover a RSS reader and the best way to use it.</strong></p><p><span class="bbu"><span style="color: blue">Desktop&nbsp; Readers</span></span></p><p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/qxh64YoRPeU"></param><embed src="http://www.youtube.com/v/qxh64YoRPeU" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p><p>The little demo above is only meant to give you a flavor of RSS readers. It would take hours to cover all the variety of readers and how to use them. You may be asking,&nbsp; are users savvy enough to use them. I was surprised how savvy they were. Since this is my first round with vldPersonals and RSS it is too early to tell, but with my other sites, I can report how pleasantly surprised I would be when I would discover my RSS content from my wordpress or 4images site on another website.</p><p>Lets look at some other options you can explore</p><p><span class="bbu"><span style="color: blue">Personal Sites and Browser Readers</span></span></p><p>Google Reader: http://www.google.com/reader</p><p>Yahoo Reader: http://my.yahoo.com/s/about/rss/index.html</p><p>If you use firefox as a browser (this is probably true of other browsers, but I&#039;m more familiar with firefox), there are several ways to subscribe to a feed as you can see in the image below.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs09.jpg" alt="http://www.filipina-lady.net/test253/rs09.jpg" /></span></p><p><span class="bbu"><span style="color: blue">Website Readers</span></span></p><p>This is probably the most popular and&nbsp; useful RSS reader. If another webmaster finds your site content interesting he may place a RSS link of your site&#039;s content on his site. </p><p>I&#039;m a little cautious about placing my own RSS link on my site in fear of being penalized by google, but below is an image of a RSS Reader on my site reading the feed from another site. The same theory if a webmaster decided to put your RSS feed on his site. </p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/rs10.jpg" alt="http://www.filipina-lady.net/test253/rs10.jpg" /></span></p><p><strong>My thoughts are that vldPersonals made a good start with RSS, but in future updates, I hope there are&nbsp; RSS feeds to global blogs, global videos, and global pictures, etc, to increase interest from other webmasters, which in turn will give you more&nbsp; inbound links and traffic. </strong></p><p><span class="bbu"><span style="color: #FF0000">RSS Marketing</span></span></p><p>I&#039;m been debating how to discuss part 2 and marketing with RSS. Depending on the marketing technique each topic could be an article in itself. After some thought, I think it would be best to add comments below this post related to RSS marketing. Now that you have an idea how RSS works on vldPersonals, the challenge is how to use it to help promote your site. For example, how to use RSS with twitter to market your site, how to use facebook, myspace, etc.</p>]]></description>
			<author><![CDATA[dummy@example.com (gugu)]]></author>
			<pubDate>Sun, 29 Jan 2012 12:09:01 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/5943/vldpersonal-253-rss-discussiontutor-part-1/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Clean up your ACCOUNT HOME and MEMBER PROFILE empty links]]></title>
			<link>http://www.vldpersonals.com/forum/topic/6079/clean-up-your-account-home-and-member-profile-empty-links/new/posts/</link>
			<description><![CDATA[<p>Hi,</p><p>I have noticed many places in vld software for improvements which I read about everywhere in the forum. This is a neat little thing I thought of fixing after it annoyed me. If you click on the &#039;friends&#039; or &#039;favorites&#039; link and you don&#039;t have any friends or faves, you get an ugly error message: &quot;You don&#039;t have any friends....&quot;</p><p>Well guess what? The same kind of thing happens with members!</p><p>How fix??</p><p>Header.tpl:</p><p>Under logged in area:<br />&lt;!-- IF settings.enable_favorites --&gt;<br />(display the favorites link)<br />ENDIF,</p><p>CHANGE THIS TO:</p><p>&lt;!-- IF settings.enable_favorites AND {member_total_favorites} ==&quot;0&quot; --&gt;<br />&amp;nbsp;<br />&lt;!-- ELSE --&gt;<br />&lt;li&gt;{anchor:url1=&quot;account/favorites/&quot;,url2=&quot;index.php?m=account_favorites&quot;,name=&quot;core|usermenu_favorites&quot;}&lt;/li&gt;</p><p>This code basically says, if you have NO favorites, DON&#039;T display the favorites link!</p><p>Same with friends,</p><p>CHANGE THIS: &lt;!-- IF settings.enable_friends ------</p><p>TO THIS:&nbsp; &lt;!-- IF settings.enable_friends AND {member_total_friends} ==&quot;0&quot; --&gt;<br />&amp;nbsp; <br />&lt;!-- ELSE --&gt;<br />&lt;!-- IF session.new_friends &gt; &quot;0&quot; --&gt;<br />&nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;.....................</p><p>Get the picture???&nbsp; - MUCH more professional.</p>]]></description>
			<author><![CDATA[dummy@example.com (gugu)]]></author>
			<pubDate>Mon, 26 Dec 2011 13:01:28 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/6079/clean-up-your-account-home-and-member-profile-empty-links/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Ultimate ad management for ad blindness and content]]></title>
			<link>http://www.vldpersonals.com/forum/topic/6406/ultimate-ad-management-for-ad-blindness-and-content/new/posts/</link>
			<description><![CDATA[<p>This tutor covers the ultimate way to manage your ads and content in vldPersonals version 2.5.3 using the Ad management tools in the Control Panel (CP).</p><p>Ad blindness occurs because regular visitors see the same ads over and over and in time your ads melt into the background instead of standing out. When your ads become routine occurrences that visitors see over and over, their brain filters out routine ads and they are ignored. Not good if you rely on ads to make money from your site.</p><p> Ad blindness was first discovered by adsense users but more and more affiliate advertisers are promoting cures for ad blindness. vldPersonals commercial version provides banner/ad management in the control panel (CP), but it is limited and not very efficient. This article is to show you how to utilize vldPersonals to best manage your banners/ads and avoid ad blindness.</p><p>The answer to ad blindness is to vary your banners/ads so the visitor does not see the same ads over and over. <strong>Thanks to Ramil/Radioact, the vldCrowd owner, a minor change will help avoid some inefficiencies of vldPersonals banner management.</strong> I will discuss how to make Ramil&#039;s changes later.</p><p>First, lets look at an image of the default ad/banner management v.s. Ramil changes that will help manage your banners/ads.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/manageban.jpg" alt="http://www.filipina-lady.net/test253/manageban.jpg" /></span></p><p>In your CP, you&nbsp; find the individual banners at: content/manage banners/click one of the banner groups. Note: if you did not add a banner under one of the banner groups, you will not see the individual&nbsp; banner table.</p><p>If you click one of your banners, you have the option to make a banner active or inactive, however, this is very inefficient for managing ad blindness. Hence Ramil&#039;s change (see above image) was to make managing individual banners/ads more efficient by providing an easier and faster way to make your banners/ads active or inactive.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/active.jpg" alt="http://www.filipina-lady.net/test253/active.jpg" /></span></p><p><span style="color: #FF0000">To make Ramil&#039;s&nbsp; changes to manage individual banners, download the following zip folder, unzip folder and upload to your server replacing default files. Be sure to backup before replacing files.</span></p><p>http://www.filipina-lady.net/test253/banners_switch.zip</p><p><span style="color: #0000FF">[size=18]How to use vldPersonals with the Above Changes to Manage Ad Blindness and Change Content[/size].</span></p><p>Now that we understand what ad blindness is and have Ramil&#039;s change in place, lets see how best to utilize vldPersonals ad/banner management to avoid ad blindness and change our content.</p><p><span style="color: #FF0000">UPDATE:</span> If you read previous articles on how to manage ads in vldPersonals, you need to be aware of a change from 2.5.2 of vldPersonals to 2.5.3. </p><p>When coding for individual ads within a banner group, the code will look like this for 2.5.3:</p><p>{banners:group=&quot;homepage&quot;,banner=&quot;side01&quot;}</p><p>Basically the difference is, in 2.5.2 you use <span style="color: #FF0000">label=</span> while in 2.5.3 you use <span style="color: #FF0000">banner=</span> to display individual banners within an ad banner group.</p><p><span style="color: #FF0000"><strong>My plan is as follows:</strong></span></p><p><strong>Since I&#039;m concerned about ad blindness with adsense, the rest of the article will address how to manage adsense and my content with this approach.</strong> However, it will work with any type of ads, including affiliate ads. You can also include different formatting codes with your ad to change your template&#039;s format. If you are thinking initially this will take effort to setup, you are right. But once it is setup, it will be a matter of turning ads on (active) and off (inactive) to help avoid ad blindness or change conent. If you had to apply this tutor to only one area of your site, I would recommend your home page.</p><p><strong><span style="color: #FF0000">Here is an outline of my approach:</span></strong></p><p>1. Create individual banner groups for each template - in our tutor we will be working on homepage and header templates.</p><p>2. Within each banner group, I will have different banners for that template including some format coding.</p><p>3. I will be changing content on my home page by using this method.</p><p>4. I will turn certain banners on and off by using the active/inactive switch created with Ramil&#039;s changes.</p><p>5. By varying my banners and content I hope to avoid ad blindness and attract the search engine spider more often.</p><p>The coding that I will be using in each banner in my template will be formatted like this:</p><p>{banners:group=&quot;homepage&quot;,banner=&quot;side01&quot;} (this coding is for 2.5.3)</p><p><strong>Lets get started. Hopefully by showing you some of the steps I will be taking, it will give you enough info to understand the best way to manage your banners/ads and content.</strong></p><p><strong><span style="color: #FF0000">HOMEPAGE.TPL</span></strong></p><p>By far your home page is the most important page on your site. If you applied this tutor to your homepage only, it may be enough to help double your revenue. As a benefit to managing your ads, we are going to be able to vary our content to keep the content changing for search engine spiders. </p><p>Lets look at my homepage as of this writing.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/homead01.jpg" alt="http://www.filipina-lady.net/test253/homead01.jpg" /></span></p><p>The areas I highlighted above are some of the areas I may want to consider managing for ad blindness. As you can see in the image, I have two horizontal ads at the top and one ad on the side. I also highlighted the content area for coding.</p><p>It helps to have a basic understanding of how vldPersonals templates are laid out to take advantage of ad placement.</p><p>When a visitor looks at your home page, they are actually seeing more than one template: header.tpl, footer.tpl and homepage.tpl. Any content displayed in the header.tpl or footer.tpl will be displayed on every page of your site. The header.tpl also has the coding for any sidebar content that may be displayed throughout your site. <strong>Don&#039;t make the mistake of taking the easy way out by displaying ALL your ads in the header and footer only - you will not optimize your ads if you take this route</strong>. If you want to display an ad on the side, you really only have one choice and that is to place it in the header.tpl between the sidebar coding.</p><p>The visitor sees your home page as one page and does not realize it is broken up into several templates. For managing ads, I will use the visitor&#039;s perspective of what a home page is, not the developers.</p><p>It should not be too hard to guess what I&#039;m going to name my&nbsp; banner ad group to manage my ads for my home page (remember, I&#039;m looking at my home page through a visitor&#039;s eyes).</p><p>1. Go to CP - Content - Manage banners - Create group</p><p>I&#039;m going to create a group called: Homepage with the label called homepage (note that the group name and label are the same name with the group name starting with a capital letter and the label name in all lower case).</p><p>2. Now within the group Homepage, I need to create my banners. I will name my banners based on their position or the type of banner being displayed on the home page. I also need to somehow group these banners within the banner group named Homepage. I will use a numbering system to do so.</p><p>For example. Within the Banner group Homepage, I will have 4 banners ending with 01. Here is the name and label of each:</p><p>Top01 - top01<br />Topp01 - topp01<br />Side01 - side01<br />Content01 - content01</p><p>Just like banner groups, the banner name and label name are the same with the banner name beginning with a capital letter and the label name in all lower case lettering. Notice in the above naming scheme, all names&nbsp; end with the number 01. This makes it easier to know which banners should be active together. Note that in the above, Content01 is not a banner, but content only. This will help keep content changing for search engine spiders.</p><p>I will be displaying 3 ads on the home page. </p><p>Now that we have created our banners, we need to place the appropriate coding in the home page (in this case homepage.tpl and header.tpl -- again, I&#039;m looking at the home page through the eyes of a visitor).</p><p><strong><span style="color: #FF0000">Summary</span></strong></p><p>Lets summarize what we have done to this point using images. </p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/adgroup01.jpg" alt="http://www.filipina-lady.net/test253/adgroup01.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/adgroup02.jpg" alt="http://www.filipina-lady.net/test253/adgroup02.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/adgroup03.jpg" alt="http://www.filipina-lady.net/test253/adgroup03.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/adgroup04.jpg" alt="http://www.filipina-lady.net/test253/adgroup04.jpg" /></span></p><p>Now that you see how I created and setup my banner group, plus how we displayed the banners/ads within the banner group, lets look at the banner coding within the homepage.tpl and header.tpl templates (remember, I&#039;m looking at this through the eyes of the visitor).<span style="color: #FF0000"> Note that this will not be the final coding. I&#039;m just bringing you up to date to where we are in the tutor.</span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/adgroup05.jpg" alt="http://www.filipina-lady.net/test253/adgroup05.jpg" /></span></p><p>[size=18]<span style="color: blue">02 Ads</span>[/size]</p><p>Now that we have the 01 ads created under the Homepage Banner Group, we need to create alternate 02 ads under the same group. Here is how we will name and label the ads:</p><p>Top02 - top02<br />Side02 - side02<br />Content02 - content02<br />Right02 - right02</p><p>Just like the 01 ads, I will be displaying 3 ads on the home page. The Content02 contains content only. The difference between Content01 and 02 is they are worded and formatted differently. Giving search engines fresh content to crawl and more keywords to have my site indexed on.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/bannerA.jpg" alt="http://www.filipina-lady.net/test253/bannerA.jpg" /></span></p><p>In the above image, all my banners are under the Homepage Banner Group. With Ramil&#039;s change, I can now easily alternate my ads and content on my home page. Maybe for 1 week, I will have the 01 banners and content active. The following week the 02 banners and content active. I can alternate between 01 and 02 banners so members and search engines do not become blind to my home page. When time permits, I may add a 03, 04, etc to have even more versatility. </p><p>Also, vldP will monitor the clicks and CTR of each ad. This way I can test which ads do best.&nbsp; In short, I can use this method to find out which ads perform best on my site. <strong>My only wish is that I could re-set the counter so all ads start out with 0 for comparison. Maybe I can do it through phpmyadmin.</strong></p><p><span style="color: red">Lets look at an example of some of my coding</span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/bannerB.jpg" alt="http://www.filipina-lady.net/test253/bannerB.jpg" /></span></p><p>Everything is in place. Of course we don&#039;t have to stop here. We can do the same thing for other templates, add more banners to the Homepage Banner Group I created, etc. </p><p>Lets look at two images showing the difference of my home page depending on which banners are active -- 01 or 02.</p><p>[size=24]<span style="color: red">HOMEPAGE WHEN 01 IS ACTIVE</span>[/size]</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ultimate02.jpg" alt="http://www.filipina-lady.net/test253/ultimate02.jpg" /></span></p><p>[size=24]<span style="color: red">HOMEPAGE WHEN 02 IS ACTIVE</span>[/size]</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ultimate01.jpg" alt="http://www.filipina-lady.net/test253/ultimate01.jpg" /></span></p><br /><p>That&#039;s it. Sorry for the lengthy tutor. There are many ways to improve Banner management in vldP. It would be vastly improved if it mimic how adsense manages ads, but I will save that thought for another time.</p><p>Good Luck.</p>]]></description>
			<author><![CDATA[dummy@example.com (SuperZen)]]></author>
			<pubDate>Sat, 10 Dec 2011 12:43:54 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/6406/ultimate-ad-management-for-ad-blindness-and-content/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How to Enable / Disable  Member Features]]></title>
			<link>http://www.vldpersonals.com/forum/topic/8036/how-to-enable-disable-member-features/new/posts/</link>
			<description><![CDATA[<p><strong>Audio Files</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules]---» select group [Audio] <br />Enable audio files [Yes] or [No]<br />[Submit]</p><p><strong>Pictures</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules]---» Select group [Pictures] <br />Enable pictures [Yes] or [No]<br />[Submit]</p><p><strong>Avatars</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules]---» Select group [Avatars] <br />Maximum size of a photo (kb) <br />[Submit]</p><p><strong>Videos</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules]---» Select group [Videos] <br />Enable videos [Yes] or [No]<br />[Submit]</p><p><strong>Chat</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Chat] <br />Enable chat [Yes] or [No]<br />[Submit]</p><p><strong>Blogs</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Blogs] <br />Enable blogs [Yes] or [No]<br />[Submit]</p><p><strong>Guest books</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Guestbooks] <br />Enable guestbooks [Yes] or [No]<br />[Submit]</p><p><strong>Private Messaging </strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Messaging] <br />Enable private messaging [Yes] or [No]<br />[Submit]</p><p><strong>Gifts</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Gifts] <br />Enable gifts [Yes] or [No]<br />[Submit]</p><p><strong>Friends</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Friends] <br />Enable friends [Yes] or [No]<br />[Submit]</p><p><strong>Favorites</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Favorites] -<br />Enable favorites [Yes] or [No]<br />[Submit]</p><p><strong>Visitors</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Visitors] <br />Enable visitors [Yes] or [No]<br />[Submit]</p><p><strong>Blocked</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Blocked] <br />Enable blocking members [Yes] or [No]<br />[Submit]</p><p><strong>Events</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Events] <br />Enable events [Yes] or [No]<br />[Submit]</p><p><strong>Profiles</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [Profiles] <br />Show members status&nbsp; [Yes] or [No]<br />[Submit]</p><p><strong>BBCode</strong><br />In the Control Panel<br />[Settings] ---» under the &quot;Options&quot; menu---» [Member modules] ---» select group [BBcode] <br />Enable BBcode support [Yes] or [No]<br />[Submit]</p>]]></description>
			<author><![CDATA[dummy@example.com (SuperZen)]]></author>
			<pubDate>Mon, 05 Dec 2011 13:12:38 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/8036/how-to-enable-disable-member-features/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Email Problems - Maybe Google Apps is the Answer]]></title>
			<link>http://www.vldpersonals.com/forum/topic/6149/email-problems-maybe-google-apps-is-the-answer/new/posts/</link>
			<description><![CDATA[<p>One of the most talked about topics on vldForum is email. Many of the questions related to email problems are not always easy to pin point. Is it a problem with vldPersonals or is it a problem with your email server? I bet in 99% of the cases, it is related to your email server. </p><p>When you signed up for a hosting package, it&nbsp; includes an email server to take care of your website email tasks. If your hosting package is a shared server, it could be your email problems are related to someone who resides on your shared host IP address that you inherited at no fault of your own. Also, hosts don&#039;t always provide the best spam filters for your inbox. </p><p>If you think you are having email problems with your host, one option to consider is to change your email server to google servers. You get fast email service and a great spam filter&nbsp; for FREE.&nbsp; </p><p>The following video shows you how to sign up and change your MX records on your server for google. In this case, my host is hostmonster. Instructions for your host may be slightly different but the following is a good guide since most hosts follow very similar instructions. <strong>While watching the video, recommend pausing the video to read the instructions if they pass by too quickly</strong>. </p><br /><p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/FBdYoeelb2o"></param><embed src="http://www.youtube.com/v/FBdYoeelb2o" type="application/x-shockwave-flash" width="425" height="350"></embed></object> </p><p>[center]<span class="postimg"><img src="http://www.filipina-lady.net/test253/48a.jpg" alt="http://www.filipina-lady.net/test253/48a.jpg" /></span>[/center]</p><br /><p>If you need to sign up for google apps click this link:</p><p>http://www.google.com/apps/intl/en/group/index.html</p><br /><p><strong><span style="color: #FF0000">Once you have you changed your MX records to google apps, don&#039;t forget the following:</span></strong></p><p>1. Update your vldPersonal script to reflect the new email address (it will be a gmail address created by google apps).</p><p>2. If you have more than one domain, you do NOT have to create a new google app account for each domain. You can add a new domain to your primary google apps account as an alias.</p><p>3. Firefox has a great add on you can use for checking your email in google apps</p><p>4. If you have outlook express you can also configure it to use google apps.</p><p>Note the above 4 points are not that difficult to do. If you do make google apps your email server and need further help, let me know.</p><p><span style="color: #FF0000">Now that google apps is setup as my email server, I will show you how I use with vldPersonals in screen shots below. </span></p><p>To log in to google apps use the following URL:</p><p>https://www.google.com/a/filipina-lady.net/ (replace filipina-lady.net with your URL)</p><p>Note: if you watched the above video, when you signed up for google apps, it asked you what domain you wanted to use. Hence, you will now use that domain when you login to your google apps (note: there is a firefox addon that makes logging in faster - I will show you in screen shot).</p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap10.jpg" alt="http://www.filipina-lady.net/test253/ap10.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap11.jpg" alt="http://www.filipina-lady.net/test253/ap11.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap12.jpg" alt="http://www.filipina-lady.net/test253/ap12.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap13.jpg" alt="http://www.filipina-lady.net/test253/ap13.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap14.jpg" alt="http://www.filipina-lady.net/test253/ap14.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap15.jpg" alt="http://www.filipina-lady.net/test253/ap15.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap16.jpg" alt="http://www.filipina-lady.net/test253/ap16.jpg" /></span></p><p>I should of explained better in the image below why you would want to use an alias. If you have more than one domain, you do NOT have to create an account for each domain. Instead you can add an alias domain to your primary account so all your domains use one account as their email server. There is nothing stopping your from creating a new google apps account for each domain, but the less accounts I have to remember the better. </p><p><span class="postimg"><img src="http://www.filipina-lady.net/test253/ap17.jpg" alt="http://www.filipina-lady.net/test253/ap17.jpg" /></span></p><p>You can also setup your outlook express to use google apps. I did not cover at this time. If you use firefox and add the add on for managing google apps, you may never need to use outlook express again. However, if someone really wants to use outlook express, let me know and I will explain the settings when time permits.</p>]]></description>
			<author><![CDATA[dummy@example.com (truedeaf)]]></author>
			<pubDate>Mon, 21 Nov 2011 06:47:47 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/6149/email-problems-maybe-google-apps-is-the-answer/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How to add links outside your website in the top header?]]></title>
			<link>http://www.vldpersonals.com/forum/topic/10161/how-to-add-links-outside-your-website-in-the-top-header/new/posts/</link>
			<description><![CDATA[<p>After playing around I needed a way to make a link in the header transfer someone to another url or simple terms another website. Here is what I did to make it happen.</p><p>Login to your control panel.</p><p>Goto content &gt;manage pages</p><p>In the name section type the name of the link that you want to show up.</p><p>Give it a label to go along since you need that.</p><p>Scroll down to custom tag and put the word header in it. This makes the link visible on the header section of your website.</p><p>Now in the field where it says page click on the box and in the right corner click on html, it&#039;s the little blue symbol to the right and insert the following into the box that pops up.</p><p>&lt;META HTTP-EQUIV=Refresh CONTENT=&quot;2; URL=www.where you want to go here/&quot;&gt;</p><p>Where it says content=&quot;2 that is how long till it redirects to that page. In the url= enter the webpage that you want it to forward to.</p><p>I thought this might be helpful to some people so I posted it.</p>]]></description>
			<author><![CDATA[dummy@example.com (kwatts22)]]></author>
			<pubDate>Sun, 06 Nov 2011 16:08:03 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/10161/how-to-add-links-outside-your-website-in-the-top-header/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How to: Zodiac works]]></title>
			<link>http://www.vldpersonals.com/forum/topic/5863/how-to-zodiac-works/new/posts/</link>
			<description><![CDATA[<p>In this tutorial I&#039;m going to explain nice way of creating zodiac fields and displaying zodiac sign in member&#039;s profile page.</p><p>1. First of all go and find some good zodiac icons. Free or paid. <br />Here&#039;s a couple of useful links in case you don&#039;t know how to use Google: <br /><a href="http://roundpixel.org/?p=69">http://roundpixel.org/?p=69</a>, <a href="http://www.mouserunner.com/Spheres_Icons_ZodiacCharacters.html">Free zodiac icons by Ken Saunders</a></p><p>If you are too lazy take <a href="http://www.vldcrowd.com/media/uploads/file_1jd58uq26mo59u5s7f14r5rg2q4d.zip">these resized Ken Saunders&#039; icons</a> I&#039;m using in the tutorial.</p><p>2. Go to your vldP Control panel -&gt; Settings -&gt; Custom fields and create new custom field &#039;zodiac&#039; under General group. And locate it under Age field cause it makes sense.</p><p><span class="postimg"><img src="http://www.vldcrowd.com/media/uploads/ckf/ra/radioact/images/cp-customfields.gif" alt="http://www.vldcrowd.com/media/uploads/ckf/ra/radioact/images/cp-customfields.gif" /></span></p><p>3. Rename your icons using this pattern: zodiac_[item_id].png (or gif depending on your file):</p><p><span class="postimg"><img src="http://www.vldcrowd.com/media/uploads/ckf/ra/radioact/images/renaming.gif" alt="http://www.vldcrowd.com/media/uploads/ckf/ra/radioact/images/renaming.gif" /></span></p><p>Renaming files you must set your own item ids you&#039;ve got creating field at step 2. <br />Place files to your template&#039;s media folder.</p><p>4. Open your member_profile.tpl (member&#039;s profile page template) and account_home.tpl (My profile or My page template) and find code:<br /><strong>&lt;div class=&quot;datainfo&quot;&gt;</strong> (which is right before <br /><em>&lt;!-- INCLUDE member_sections_name.tpl --&gt;</em>)</p><p>and make it look like:<br /><strong>&lt;div class=&quot;datainfo&quot; style=&quot;background: url(&#039;{virtual_tpl_path}{session.template}/media/zodiac_{profile_field_zodiac_value_id}.png&#039;) no-repeat 200px 10px;&quot;&gt;</strong></p><p>5. Test and enjoy!</p><p><span class="postimg"><img src="http://www.vldcrowd.com/media/uploads/ckf/ra/radioact/images/final.gif" alt="http://www.vldcrowd.com/media/uploads/ckf/ra/radioact/images/final.gif" /></span></p><p>This is result I&#039;ve got.</p><p>P.S.: We could be using &#039;icon_Libra.png&#039; and link to it as {profile_field_zodiac_value}.png but in that case no multi language would be supported. &quot;Id has no nationality <img src="http://www.vldpersonals.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" />&quot; (c) Me</p><p>P.P.S.: We could be using &lt;img src=&quot;{virtual_tpl_path}{session.template}/media/zodiac_{profile_field_zodiac_value_id}.png&quot; alt=&quot;{profile_field_zodiac_value}&quot; border=&quot;0&quot; /&gt; instead of styles but that would break your design layout by putting lots of space to profile fields.</p><p>Next time I&#039;ll tell you how to automate zodiac selection depending on birthday.</p><p><em>This text was originally posted on <a href="http://www.vldcrowd.com">vldCrowd</a></em></p>]]></description>
			<author><![CDATA[dummy@example.com (radioact)]]></author>
			<pubDate>Sat, 05 Nov 2011 04:13:41 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/5863/how-to-zodiac-works/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How to translate your vldPersonal site into different Languages]]></title>
			<link>http://www.vldpersonals.com/forum/topic/5507/how-to-translate-your-vldpersonal-site-into-different-languages/new/posts/</link>
			<description><![CDATA[<p>You and your site members can translate your vldPersonals site into 13 different languages with a single click of the mouse. Just follow the simple steps below to set-up your translate interface.</p><p>Step 1<br />Download the language pack you want from the Downloads area.<br />Unzip the language pack. <br />Upload&nbsp; the language pack folder to your &#039;includes/languages&#039; folder.<br />Note: the language pack folder is the folder with language name only. </p><p>Step 2<br />Activate your new language.<br />In the control panel: <br />Settings----»Languages<br />Select the “un-installed” icon to install your new language.</p><p>Step 3 <br />Set your site default language<br />in the control panel: <br />Settings---» Select group---» Localizations <br />System language---- »select your default site Language <br />Override members language [No] <br />[submit]</p><p>Step 4<br />Now that you&#039;ve installed the language pack, set your site default language and allowed your members to change the site language, you need a front-end interface (switch) to translate your site to the new language.</p><p>There are many ways you to allow members to translate your site. <br />Create a new link and place it in your header.tpl or wherever you want the link to appear.</p><p>Here are 3 examples of translation interface<br />Example1<br />for&nbsp; word links:<br /></p><div class="codebox"><pre><code>&lt;a href=&quot;{virtual_path}?language=english&quot;&gt;English&lt;/a&gt; |
&lt;a href=&quot;{virtual_path}?language=spanish&quot;&gt;Espanol&lt;/a&gt;</code></pre></div><p>Example 2<br />for image links:<br /></p><div class="codebox"><pre><code>&lt;a href=&quot;{virtual_path}?language=english&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;{virtual_path}templates/your_template/media/flag1.gif&quot; width=&quot;20&quot; height=&quot;20&quot;&gt;&lt;/a&gt;

 
&lt;a href=&quot;{virtual_path}?language=spanish&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;{virtual_path}templates/your_template/media/flag.2&quot; width=&quot;20&quot; height=&quot;20&quot;&gt;&lt;/a&gt;</code></pre></div><p>***Please Note***<br />Where flag1.gif and flag2.gif are flag images uploaded to your &#039;templates/your_template/media&#039; folder<br />Or you may use the flag images in your &#039;media/flags&#039; folder</p><br /><p>Example 3<br />for drop-down menu<br /></p><div class="codebox"><pre><code>&lt;form name=&quot;jump&quot;&gt;
&lt;select name=&quot;menu&quot; onChange=&quot;location=document.jump.menu.options[document.jump.menu.selectedIndex].value;&quot; value=&quot;GO&quot;&gt;
&lt;option value=&quot;{virtual_path}&quot;&gt;Translate&lt;/option&gt;
&lt;option value=&quot;{virtual_path}?language=english&quot;&gt;English&lt;/option&gt;
&lt;option value=&quot;{virtual_path}?language=spanish&quot;&gt;Espanol&lt;/option&gt;
&lt;/select&gt;
&lt;/form&gt;</code></pre></div><p>Now your members can translate your site with just one mouse click.</p>]]></description>
			<author><![CDATA[dummy@example.com (gugu)]]></author>
			<pubDate>Tue, 01 Nov 2011 22:57:59 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/5507/how-to-translate-your-vldpersonal-site-into-different-languages/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Prevent users to change gender]]></title>
			<link>http://www.vldpersonals.com/forum/topic/10113/prevent-users-to-change-gender/new/posts/</link>
			<description><![CDATA[<p>Hi, </p><p>here is the mod. it displays what user enter when registering</p><p>open account_profile.tpl<br />search for:<br />&lt;!-- BEGIN profile_fields --&gt;</p><p>before add:</p><p>&lt;!-- Mod to prevent user to change gender--&gt;<br />&lt;dt&gt;I am&lt;/dt&gt;&lt;dd&gt; {session.profile_gender1}&lt;/dd&gt;</p><p>Don&#039;t forget to change custom fields in your cp so that gender won&#039;t be shown on profil.</p>]]></description>
			<author><![CDATA[dummy@example.com (Zoheir)]]></author>
			<pubDate>Wed, 19 Oct 2011 06:51:09 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/10113/prevent-users-to-change-gender/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Replace that bored and tired looking NiceEdit]]></title>
			<link>http://www.vldpersonals.com/forum/topic/6968/replace-that-bored-and-tired-looking-niceedit/new/posts/</link>
			<description><![CDATA[<p>Tired of the &#039;NiceEdit&#039; that ships with vldPersonals?</p><p>I much prefer <a href="http://tinymce.moxiecode.com/">TinyMCE</a>, and fortunately, changing from NiceEdit (not so nice I think) to TinyMCE is very easy.</p><p>Below: NiceEdit<br /><span class="postimg"><img src="http://www.fatlizard.com.au/uploads/vld/nice.edit.jpg" alt="http://www.fatlizard.com.au/uploads/vld/nice.edit.jpg" /></span></p><p>Below: TinyMCE<br /><span class="postimg"><img src="http://www.fatlizard.com.au/uploads/vld/tiny.mce.jpg" alt="http://www.fatlizard.com.au/uploads/vld/tiny.mce.jpg" /></span></p><p>Apart from familiarity, it offers more options and functionality, and functions (I believe personally) in a better way than NiceEdit.</p><p><strong>Want to give it a try?</strong></p><p>First, download the jQuery version of TinyMCE.<br />Rather than trying to find your way around the TinyMCE download area, to make it easier, you can get it <a href="http://www.fatlizard.com.au/uploads/vld/tiny_mce.zip">here</a>.</p><p>Unpack this archive, into your root/includes directory, so it&#039;s installed as follows:<br />public_html/includes/tiny_mce<br />(there will be further subdirectories under the tiny_mce directory, but they don&#039;t need our attention.)</p><p>Now, open the file <span class="bbu">/includes/templates/header.tpl</span><br />Around line 15, find and DELETE the entry <br />&lt;script type=&quot;text/javascript&quot; src=&quot;{virtual_path}includes/js/nicedit.js&quot;&gt;&lt;/script&gt;<br />That&#039;s right, delete it, erase it, cast it into cyber space.</p><p>Now, still in <span class="bbu">/includes/templates/header.tpl</span> paste the following, just about where you deleted the other line.<br /></p><div class="codebox"><pre><code>&lt;script type=&quot;text/javascript&quot; src=&quot;{virtual_path}includes/tiny_mce/tiny_mce.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
tinyMCE.init({
    mode : &quot;textareas&quot;,
    plugins : &quot;inlinepopups&quot;,
    dialog_type : &quot;modal&quot;,
    theme : &quot;advanced&quot;,
    theme_advanced_buttons1 : &quot;save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect&quot;,
    theme_advanced_buttons2 : &quot;cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor&quot;,    
    theme_advanced_toolbar_location : &quot;top&quot;,
    theme_advanced_toolbar_align : &quot;left&quot;,
    theme_advanced_statusbar_location : &quot;bottom&quot;,
    theme_advanced_resizing : true
});
&lt;/script&gt;</code></pre></div><p>You can now save and close <span class="bbu">/includes/templates/header.tpl</span></p><p>Now, all you need to do is modify two template files: <br /><span class="bbu">/includes/templates/pages_edit.tpl</span><br />and<br /><span class="bbu">/includes/templates/news_edit.tpl</span></p><p>(&nbsp; if you have my vldArticles mod, then you would also have to change<br /><span class="bbu">/includes/templates/articles_edit.tpl</span>&nbsp; )</p><p>Towards the bottom of the files you will find an entry such as this:<br /></p><div class="codebox"><pre><code>&lt;script type=&quot;text/javascript&quot;&gt;
    $(document).ready(function(){
        new nicEditor({
            iconsPath: &#039;{virtual_path}includes/js/nicicons.gif&#039;,
            buttonList: 
        }).panelInstance(&#039;field_body&#039;);
    });
&lt;/script&gt;</code></pre></div><p>Delete this entire selection, close and save your files, and voila, you should now have a much better textarea editor than NiceEdit.</p><p>Cheers</p>]]></description>
			<author><![CDATA[dummy@example.com (godyn)]]></author>
			<pubDate>Tue, 04 Oct 2011 14:19:18 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/6968/replace-that-bored-and-tired-looking-niceedit/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[adding banner]]></title>
			<link>http://www.vldpersonals.com/forum/topic/10064/adding-banner/new/posts/</link>
			<description><![CDATA[<p>i would like to know how to add banner to the footer of my pages and to the content of my pages ,</p>]]></description>
			<author><![CDATA[dummy@example.com (mattmad)]]></author>
			<pubDate>Mon, 03 Oct 2011 21:37:24 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/10064/adding-banner/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Moving to New Host and vldP License -- Lessons Learned]]></title>
			<link>http://www.vldpersonals.com/forum/topic/7785/moving-to-new-host-and-vldp-license-lessons-learned/new/posts/</link>
			<description><![CDATA[<p>Recently I moved to a new host (WiredTree). WiredTree will migrate your site for you, but I wanted to do it myself. <strong>The following are lessons learn from the move including understanding vldP license requirements.</strong></p><p><span style="color: red"><strong>NEW HOST</strong></span></p><p>When you sign up for a new host, they will probably send you a Welcome Email with passwords and instructions. One of the first things you will want to do before getting started with the steps below is pointing your URLs from your old host to your new host. It is something that most can do on their own, but if not, contact your host. Here is the basic steps.</p><p>1. Log in to your old host cpanel</p><p>2. There should be an area to manage your domains. In my case, there is a tab called Name Servers.</p><p>3. For each domain I own (I have 9) I had to change the Name Server from my old host to my new host. Normally the new host&#039;s Welcome email will tell you what the Name Servers are called. You will type in the Name Servers of your new host for each domain you own in your old host&#039;s domain manger. How exactly you accomplish this on your host may be different than mine, but usually it is pretty obvious where you change the Name Servers. </p><p>4. Propagation is the process of your domain transferring from your old host to your new host. This can take anywhere from a few hours to 24 hours. If you want to check out how things are going,&nbsp; here is link you can use to check your propagating process - <a href="http://www.whatsmydns.net/">http://www.whatsmydns.net/</a></p><p>What you are looking for, is the new IP address of your new host. If you check and see the IP address of your old host, than your domain is still pointing to your old server. Once you see your new host IP address, than you know your domain is pointing to your new server.</p><p>5. You can also check to see if your site is propagating for your ISP by using windows ping or lookup command.</p><p>-- In windows click Run<br />-- Type cmd<br />-- Next type ping yourdomain.com or type nslookup yourdomain.com</p><p>If you see your site propagating by using the link in step 4 above, but hours later your&nbsp; ISP is still showing your old host&#039;s ISP, recommend you turn off your computer, unplug your modem and any network hub you are using to network, to clear your ISP cache.&nbsp; I would leave the computer off and modem/network turned off for at least 10 minutes before turning it on and plugging things back in.</p><p>6. You may also have to create what they call a DNS Zone for each domain on your new host. Again, instructions should of been provided by your new host. If not, contact them.</p><p>When you decide to proceed with the following steps depends on rather you want to wait until your domain name has propagated to your new server or you can jump right in if you have adequate instructions from your hosts on how to access your new and old hosts cpanels, how to ftp, etc. I jumped right in. Nothing says you have to do the following in the order listed. </p><p><span style="color: red"><strong>MOVING FILES</strong></span></p><p>Moving files is not that difficult with one possible exception and that is your media folder. Before I get into the steps, let me say I&#039;m using vldP version 2.5.3. I believe starting with 2.5.5, the file structure of the media (audio, images, video) folder changed and ftp may not be an issue. With 2.5.3 and prior, all media was saved under one folder called upload. My upload folder had tons of files. This caused&nbsp; ftp issues when I would copy files from my host to my local drive. If you use a ftp programs (I use several but FileZilla at <a href="http://filezilla-project.org/">http://filezilla-project.org/</a> is one of the best and it is free) to copy a large media folder from your host to your local drive,&nbsp; I can guarantee you that you will not move all your media with a ftp program. The following steps is what I recommend for moving files.</p><p>1. On your old host, copy (ftp) all your vldP files from your sever to your local drive. As far as the media folder (read above paragraph), if you do not have that much media, there should be no issue copying the folder to your local drive. If your media folder has a lot of files there may be an issue (later I will recommend how to solve).</p><p>2. On your new host, recommend uploading your vldP files to the same file structure you used on your old host. If you had vldP installed in the root of the old host, upload to the root of the new host. If you had vldP installed in a folder at your old host, create a folder with the same name on your new host and upload to it.</p><p>3. <strong>Config.php.</strong> Make sure you do not delete or change the config.php that you copied from your old host. Later you may have to make changes, but for now, just make sure you don&#039;t accidently delete it.</p><p>4. <strong>Media Folder.</strong> Ok, You read everything I said above about media folder. Lets assume you are having problems with copying your media folder to your local drive by ftp. Again you won&#039;t get any ftp errors, but after you upload your media folder to your new host, you discover images are missing. There is a good chance ftp didn&#039;t copy all your media files to your local drive.&nbsp; Here is what I did:</p><p>-- In my old host CPANEL, I would use the backup command</p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/back01.jpg" alt="http://www.filipina-lady.net/lesson/back01.jpg" /></span></p><p>-- There are several ways to backup. The important thing is to use the backup that will copy all files, including your media folder, to your local drive. By using the backup command, you will ensure that all media files have been downloaded to your local drive. In my hosts cpanel, I use the Home Directory backup (see image below). I could of used the Full Backup, but that is overkill - backs up all my files plus all cpanel files. If you are not sure, ask your old host which backup command to use to back up all your files. Also, if you have a lot of files, you may want to do the back up when you are not using your computer -- I do it before going to bed and leave it backup during the night.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/back02.jpg" alt="http://www.filipina-lady.net/lesson/back02.jpg" /></span></p><p>Now that I have all of the media files on my local drive, I can use my ftp program to upload my media files. </p><p><strong>NOTE:</strong> When uploading to a new host, I usually have no issues with ftp. The only time I have ftp issues is when I try to download (copy)&nbsp; the content of the media folder to my local drive when the media folder is large. That is why I use my cpanel backup command to copy my files to my local drive and then use ftp to upload my media folder to my new host.</p><p>5. <strong>Permissions.</strong> Now that you have all your files, including media files, on your new host, it is time to check your permissions.&nbsp; Besides my vldP files, I also made sure my ioncube folder, my htaccess and php.ini files were uploaded to my new host. The permissions you check are the same ones you checked when you installed vldP. <a href="http://www.vldpersonals.com/docs/installation/installation_instructions">Installation/Permission Instructions</a></p><p><strong><span style="color: green">TO ALL GURU&#039;S WHO WILL MENTION SSH -- I agree, if you have SSH use it, but if not or you don&#039;t know what SSH is, than don&#039;t bother with it. My old host did not have SSH capability or they did not give me permission to use it.</span></strong></p><p><strong><span style="color: red">CREATING DATABASE AND USER ON NEW HOST</span></strong></p><p>1. I was lucky and was able to create the same database and username that I used on my old host to my new host including the same prefix. Many of you may be able to create the same name, but your new host&#039;s prefix may be different. It isn&#039;t a big deal if you can&#039;t create the same name as your old host, we just got to remember to change the config.php file to reflect the new name. I will discuss config.php later.</p><p>2. <strong>Exporting</strong>. We need to export the database from the old host. We are going to use phpmyadmin to export to our local drive.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/php01.jpg" alt="http://www.filipina-lady.net/lesson/php01.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/php02.jpg" alt="http://www.filipina-lady.net/lesson/php02.jpg" /></span></p><p>The image below should help you set the settings to export your database. I highlited in green the important settings.</p><p>-- After you have selected the database (see above image), select the Export tab.<br />-- Make sure to click&quot;select all&quot; to select all tables and&nbsp; check the sql format to export<br />-- Under Structure - be sure to select the settings you see in the image highlited in green<br />-- Under Data - be sure to select the settings you see in the image highlited in green<br />-- Be sure you have the &quot;Save as file&quot; selected with a check mark and &quot;gzipped&quot; as your format<br />-- When everything is set, click the Go button to export the database to your local drive.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/php03.jpg" alt="http://www.filipina-lady.net/lesson/php03.jpg" /></span></p><p>3. <strong>Importing</strong>. Ok, now that we have exported the database from our old host to our local drive, it is time to import the old database to the new database we created in step 1 above on our new host.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/admin01.jpg" alt="http://www.filipina-lady.net/lesson/admin01.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/admin02.jpg" alt="http://www.filipina-lady.net/lesson/admin02.jpg" /></span></p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/admin03.jpg" alt="http://www.filipina-lady.net/lesson/admin03.jpg" /></span></p><p><strong><span style="color: red">CONFIG.PHP</span></strong></p><p>Your config.php contains your configuration for your site. It is usually under the includes folder. In the above steps, I talked about keeping the same file structure and names from your old host on your new host, but if things did not quite work out, good chance you will need to make some changes to your config.php. Before making those changes, be sure to backup the old one and keep it in a safe place. Once you know you have a working config.php for your site, you will want to make another copy of that working copy and keep in safe place.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/config.jpg" alt="http://www.filipina-lady.net/lesson/config.jpg" /></span></p><p>After you made your changes and uploaded the config.php to your new host, I would double check the config.php permission to be sure it is correrct. </p><p><strong><span style="color: red">READY, SET, GO</span></strong></p><p>Ok we now cross our fingers, and type in the URL for our site. If all went well, we say yea, if not, we say CACHE. If you did everything correctly but something went wrong, the first I thing I would do is clear cache. Go to your includes/cache folder on your new host and clear it out and try again.</p><p><strong><span style="color: red">VLDP LICENSE</span></strong></p><p>Even though you have a valid license, you may still see an error saying your license is not valid. I&#039;m still not sure I have this whole licensing thing down pat. It took me a few tries to get licensing straight, but once I did, I was up and running. Here is the scoop.</p><p>You will have to log in to your vldP Client area and click the My Product link. There you should see a list of your license. Click the license you are using for the vldP you uploaded to your new host. The license number in your vldP Product area should match the license number in your config.php. You can use only one license per vldP installed. There are some exceptions I will talk about later.</p><p><span class="postimg"><img src="http://www.filipina-lady.net/lesson/lic01.jpg" alt="http://www.filipina-lady.net/lesson/lic01.jpg" /></span></p><p>In the above screen, you click the &quot;Reissue License&quot; button. After you click it, you must clear the includes/cache folder for the vldP you uploaded to the new host.</p><p>For whatever reason, it took me a few tries to get things straight. I was moving 3 vldP sites to the new host and it could be that I was just tired and not paying attention. But it did take me several tries to get my licenses matched up with the right vldP config file for each copy I owned. If you do have problems, check your config.php file and make sure the license you are &quot;Reissuing&quot; matches. If you have the right license number in your config.php for the license you are trying to reissue, all I can say is to try again by pushing the &quot;Reissue License&quot; button, clear the includes/cache again and keep trying until it works out. Like I said, it took me several tries.</p><p>Obviously if you tried more times than you can count and still are not getting it to work, it is time to put in a help ticket at vldP help desk.</p><p><strong><span style="color: red">VLDP LICENSE EXCEPTIONS</span></strong></p><p>I asked vlad about using the same license more than once for testing and he said you could as long you installed the test copy of vldP in a folder called test. Here is how it works.</p><p>If I have&nbsp; vldP installed under my root at asian-wife.net, I could create a folder under the root called test, install vldP in the test folder and use the same license I used for asian-wife.net&nbsp; for the vldP I installed in the test folder. </p><p>Another example: Lets say I have my main vldP installed in a folder called dating. The path to my main vldP is root/dating/. In this case, if I want to install a test copy than I would have to install the test folder under the dating folder. The path for my test folder would be root/dating/test.</p><p><strong><span style="color: red">TESTING</span></strong></p><p>Ok, you have vldP installed on your new host. There are no cache or license problems and things seem to be running ok or are they?? It is time to test. I&#039;m not big into testing, for that matter I hate it, but it is a necessary evil. </p><p>A good example is my recent experience. I had my sites running on my new host and all seem to be working well. I created a test member (by the way, if you have a folder named test, do not create a member in vldP called test). I called my test member &quot;asiantest&quot;, logged in and went to create a blog as asiantest and I got a fatal error message -- oh my!</p><p>This is why you have the debug=1 in your config.php file when testing. If it was set as debug=0 (default setting) and I did the blog test, I would of got a blank screen with no error message. But with debug=1 set in my config.php, I got a error message. I copied the error message and sent it to my host. They knew what the problem was and fixed it. Can you imagine if I said to my host &quot;I get a blank screen when I create a blog&quot;. They probably would of scratched their head and told me to contact vlad which in turn vlad would of told me to change my debug to debug=1 and tell him what the error said. </p><p>So lesson learn is if you have a problem and not sure what it is, try changing your debug in your config.php file to debug=1 to see if you&nbsp; get an error message to send to the experts so they can figure out what is wrong. Don&#039;t forget to change your debug back to 0 when you are done testing.</p><p><strong><span style="color: red">MISSION ACCOMPLISHED</span></strong></p><p>All my sites are now on my new host and things are up and running. There were some minor tweaking but other than that, things seem to be as they should. <strong>Don&#039;t forget about your emails.</strong> If you changed hosts and got new emails addresses, you may have to update your email settings in your vldP Control Panel.</p><p>Good Luck.</p>]]></description>
			<author><![CDATA[dummy@example.com (GuyMat)]]></author>
			<pubDate>Mon, 26 Sep 2011 02:32:38 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/7785/moving-to-new-host-and-vldp-license-lessons-learned/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Using Amazon Cloud Front to serve images]]></title>
			<link>http://www.vldpersonals.com/forum/topic/10053/using-amazon-cloud-front-to-serve-images/new/posts/</link>
			<description><![CDATA[<p>Decided to start playing around by using Amazon S3 and CloudFront to serve up images from my site. I did this more for the learning experience than to solve any types of problems I was having. I would be curious to hear if anyone else is using this and how you did it! </p><p>First attempt:</p><p>1) Signed up for Amazon S3 (simple storage system) and moved all my site graphics and banners up to it. Changed links on my banners to point to my S3 bucket. Not impressed with the speed as the latency seemed higher at times than from my VPS server.</p><p>2) Decided to sign up for Amazon Cloud Front and try serving the images from their network if edge servers. This proved incredibly easy and I could see an improvement on my site page load speeds. To do this I did the following:</p><p>a) Created a new CloudFront Distribution using my S3 bucket.<br />b) Associated the distribution to a CNAME cache.mysite.com<br />c) created CNAME record in my DNS of: cache.mysite.com pointing to the URL of the distribution in step a.<br />d) changed link to images to point to cache.mysite.com</p><p>Now all my static images (logos, banners, etc) are being served from Amazon edge servers around the world. Within a couple of hours I saw servers in the US, Europe, Japan, and Singapore serving my images. I could see a decrease in page loading time as well. Again, nothing I had to do but kinda cool.</p><p>I then wanted to look into having all my members images served from the cloud as I felt I would see a better return by doing this. Initially I though I was was going to have to code in their API (which I still plan on doing) but in the short term found a quick way to do this that so far seems to work.</p><p>a) created a new CloudFront Distribution using my current server as the origin server instead of an S3 bucket.</p><p>origin server: <a href="http://www.mysite.com">www.mysite.com</a><br />CNAME: images.mysite.com</p><p>b) created CNAME record in my DNS of: images.mysite.com pointing to the URL of the distribution in step a.</p><p>c) I then changed the virtual_pic_path in my vld config file to use images.mysite.com instead of <a href="http://www.mysite.com">www.mysite.com</a></p><p>All member profile images, thumbnails, uploaded pics are now being served by the amazon edge servers around the globe.</p><p>NOTE: and this may be important! <img src="http://www.vldpersonals.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> I did some basic testing on my site and so far these changes do not appear to have affected anything in a negative way. I am not and cannot say for sure that the change in step c above was an OK one to make. Still very possible I broke something I have not discovered yet. Page load time is definitely improved though!</p><p>Doing some basic calculations using my highest traffic month to date (~ 6GB transfers) it looks like all in all this will cost me at most around 1.00 - 2.00 a month but probably less. I can live with that for the speed increase I am seeing so far. </p><p>Next up I want to look into their API and if there would be any benefit to using that.</p>]]></description>
			<author><![CDATA[dummy@example.com (DDNY)]]></author>
			<pubDate>Sat, 24 Sep 2011 17:13:27 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/10053/using-amazon-cloud-front-to-serve-images/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[how to make you own templates (for beginners)]]></title>
			<link>http://www.vldpersonals.com/forum/topic/6013/how-to-make-you-own-templates-for-beginners/new/posts/</link>
			<description><![CDATA[<p>before you try to make you own templates you need some knowledge about html and css.<br />and even knowledge how to change yours tpl files. This tutor is only for beginners.<br />Ofcource you can make a new one but it is very hard and it will be a tutor about it later ...</p><p><em>and think about I write this tutorial only for beginners so don´t think I´m stupid then I explain the tutor step by step for the beginners ... please you must wait for the next tutorials for the more advanced members <img src="http://www.vldpersonals.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></em></p><p><strong>okey now we start the tutorial ...</strong></p><p>1. the best and easiest way is to duplicate a template ... from vldpersonal ...<br />( and you must know every time vldpersonal have a update you must do this change manually on yours templates)<br />2. first you must have write down on a paper that colors you will have on your site ...don´t ignore it !!!<br />( webdesigner write down on a paper that colors images and change they will have before they make a new templates or they don´t but then it take very long time to make a templates ...)</p><p><strong>that should I think about before I start</strong><br />don´t worry about&nbsp; this I will explain it all for you later ...</p><p>a. that images/text logo you will have (maybee you need to make a new one on photoshop)<br />b. should I have headerimage/headercolors ... or only make it with css ... or both<br />c. should I have backgrundsimage/backgroundscolors ... or only make it with css ... or both<br />d. should I have sidebarsimage/sidebarscolors ... or only make it with css ... or both<br />e. should I have footerimage/footercolors ... or only make it with css ... or both</p><p><strong>and now how the templates is build</strong><br />* the template is build in this way ...*<br />------------------------------------------------------------<br /><span class="postimg"><img src="http://webbsupport.eu/image/template.png" alt="http://webbsupport.eu/image/template.png" /></span><br />------------------------------------------------------------<br />*<span class="bbu"><span style="color: darkred">header on the top</span></span>&nbsp; <br />*<span class="bbu"><span style="color: darkblue">sidebar on the left or right</span></span><br />*<span class="bbu"><span style="color: darkgreen">content on the middle</span></span><br />*<span class="bbu"><span style="color: #cc9900">footer on the bottom</span></span><br />------------------------------------------------------------<br /><span class="postimg"><img src="http://webbsupport.eu/image/templates.png" alt="http://webbsupport.eu/image/templates.png" /></span><br />------------------------------------------------------------</p><p><strong>some other thing you need to think about</strong><br />1. will you have different frontpage for logged in members and logged out members ...<br />2. maybee you need a nice background behind your site templates ...<br />3. that colors you need I recommend red/pink blue/gray colors in the templates (pastelcolors)<br />4. you maybee need more functions you can change from controlpanel ...<br />5. should you have text buttons or real buttons ...<br />6. do you need a shoutbox (chat) in the frontpage ...<br />7. slideshow of your members profile pictures ...<br />8. and this is the most important ... you must get your site being attractive for your members ...<br />( that I mean is a nice logo and a nice header images it make your site being more attractive ... )<br />9. make a help page so members can send you a question and get a answer ( from controlpanel )<br />I´m testing a new flipbook I have done just now and will see that my members like it ...</p><p>I´m so sorry have so much to do but soon soon I´m back and make the ending of this tutorial.</p>]]></description>
			<author><![CDATA[dummy@example.com (gugu)]]></author>
			<pubDate>Fri, 23 Sep 2011 17:00:16 +0000</pubDate>
			<guid>http://www.vldpersonals.com/forum/topic/6013/how-to-make-you-own-templates-for-beginners/new/posts/</guid>
		</item>
	</channel>
</rss>

