<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community</title>
		<link>http://www.daniweb.com/forums/</link>
		<description>Tech support, programming, web development, and internet marketing community. Forums to get free computer help and support.</description>
		<language>en-US</language>
		<lastBuildDate>Mon, 07 Dec 2009 07:47:12 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/alphaimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community</title>
			<link>http://www.daniweb.com/forums/</link>
		</image>
		<item>
			<title>I need a code to prevent SEOQuake on my sites</title>
			<link>http://www.daniweb.com/forums/thread238668.html</link>
			<pubDate>Sun, 15 Nov 2009 15:45:49 GMT</pubDate>
			<description><![CDATA[Please, I need a code that is capable of preventing SEOQuake from loading on my websites, even if a user has installed the plug-in. 
 
For example, Google, Yahoo and Bing implements such feature. I just don't want it to load whenever anybody visits my sites.]]></description>
			<content:encoded><![CDATA[<div>Please, I need a code that is capable of preventing SEOQuake from loading on my websites, even if a user has installed the plug-in.<br />
<br />
For example, Google, Yahoo and Bing implements such feature. I just don't want it to load whenever anybody visits my sites.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>mexabet</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread238668.html</guid>
		</item>
		<item>
			<title>How can I code an included template to appear only on two pages?</title>
			<link>http://www.daniweb.com/forums/thread230692.html</link>
			<pubDate>Fri, 16 Oct 2009 12:22:04 GMT</pubDate>
			<description><![CDATA[I need help to make an included template to appear only on two pages and not on other pages of a photo album. Can someone help me out on how to use the "elseif" statement to accomplish this? 
Right now template file appears on every page, which is not what I want. This is what I've got so far: 
 ...]]></description>
			<content:encoded><![CDATA[<div>I need help to make an included template to appear only on two pages and not on other pages of a photo album. Can someone help me out on how to use the &quot;elseif&quot; statement to accomplish this?<br />
Right now template file appears on every page, which is not what I want. This is what I've got so far:<br />
 <pre style="margin:20px; line-height:13px">&lt;?php<br />
//Display slide<br />
include('myfirst.tpl');<br />
?&gt;</pre>A hint of what I want to achieve is below:<br />
 <pre style="margin:20px; line-height:13px">&lt;php<br />
if &quot;list-album&quot;<br />
include('myfirst.tpl')<br />
elseif &quot;list-image&quot;<br />
include('myfirst.tpl')<br />
elseif &quot;list-image&quot;<br />
do nothing<br />
?&gt;</pre>The script uses $_GET['page'] method. The pages are &quot;list-album&quot;, &quot;list-image&quot; and &quot;image-detail&quot;. I want the template to be show on &quot;list-album&quot; and &quot;list-image&quot;, but not on &quot;image-detail&quot;. Any help will be appreciated.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>mexabet</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread230692.html</guid>
		</item>
		<item>
			<title>I need help rewriting dynamically-generated URLs</title>
			<link>http://www.daniweb.com/forums/thread230028.html</link>
			<pubDate>Wed, 14 Oct 2009 06:21:52 GMT</pubDate>
			<description><![CDATA[I need your help to rewrite the URLs generated dynamically by a PHP photo album software. 
These are how the URLs currently show on the browser: 
 
index.php?page=list-image&album=1 (The URL of "album 1" while I name the album "Tropical Trees") and index.php?page=list-image&album=2 (The URL of...]]></description>
			<content:encoded><![CDATA[<div>I need your help to rewrite the URLs generated dynamically by a PHP photo album software.<br />
These are how the URLs currently show on the browser:<br />
<br />
index.php?page=list-image&amp;album=1 (The URL of &quot;album 1&quot; while I name the album &quot;Tropical Trees&quot;) and index.php?page=list-image&amp;album=2 (The URL of &quot;album 2 while the name might be something like &quot;Images In The Darkness&quot; or &quot;Beaches&quot;).<br />
<br />
I need help to make the above-mentioned &quot;album 1&quot; URL to be: &quot;Tropical_Trees/&quot; and other albums to be in this form. <br />
<br />
The following example is how the image URLs shows:<br />
index.php?page=image-detail&amp;album=1&amp;image=1 (The URL of &quot;image 1&quot; of &quot;album 1&quot; while I name this image &quot;Buddha Statue&quot;)<br />
<br />
I want the image URLs to be in this form: &quot;Tropical_Trees/Buddha_Statue/&quot;<br />
<br />
Can anyone please show me how to rewrite the album and image URLs in order to have search engine-friendly URLs. I have tried without success to achieve this. This is what I have done so far:<br />
 <pre style="margin:20px; line-height:13px">## mod_rewrite configuration<br />
Options +FollowSymLinks<br />
<br />
# Turn on the rewriting engine<br />
RewriteEngine on<br />
<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]<br />
RewriteRule \.(gif|jpg|png)$ - [F]<br />
<br />
RewriteRule ^[a-zA-Z]$ index.php?page=list-image&amp;album=$0<br />
RewriteRule ^([a-zA-Z])\/$ /$1 [R]<br />
<br />
RewriteRule ^([A-Z]+)([a-z)]+)([0-9)]+)\.html$ index.php?page=image-detail&amp;album=1&amp;image=$3<br />
<br />
RewriteRule&nbsp; ^([^/]+)/$ index.php?page=image-detail&amp;album=1&amp;image=$1<br />
<br />
#Options -Indexes IncludesNOEXEC FollowSymLinks</pre><br />
I will appreciate your kind assistance.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum33.html">Linux Servers and Apache</category>
			<dc:creator>mexabet</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread230028.html</guid>
		</item>
	</channel>
</rss>
