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

<channel>
	<title>Master da Web</title>
	<atom:link href="http://masterdaweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://masterdaweb.com</link>
	<description>Teach to Learn</description>
	<lastBuildDate>Sat, 28 Apr 2012 02:02:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Instalando phpMyAdmin no Debian</title>
		<link>http://masterdaweb.com/linux-2/instalando-phpmyadmin-no-debian/</link>
		<comments>http://masterdaweb.com/linux-2/instalando-phpmyadmin-no-debian/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 02:02:53 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=526</guid>
		<description><![CDATA[phpMyAdmin é um programa de computador desenvolvido em PHP para administração do MySQL pela Internet. Basta usar o seguinte comando no SHELL: apt-get install phpmyadmin Siga as instruções que aparecerão na tela. Depois de instalado, mova a pasta do phpmyadmin localizada no diretório &#8220;usr/share/phpmyadmin&#8221; para a pasta a pasta raíz do seu domínio ou qualquer outra pasta de sua preferência que esteja acessível através do seu domínio.]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p><em>phpMyAdmin</em> é um programa de computador desenvolvido em PHP para administração do MySQL pela Internet.</p>
<p>Basta usar o seguinte comando no SHELL:</p>
<blockquote><p><strong>apt-get install phpmyadmin</strong></p></blockquote>
<p>Siga as instruções que aparecerão na tela. Depois de instalado, mova a pasta do<strong> phpmyadmin</strong> localizada no diretório &#8220;usr/share/phpmyadmin&#8221; para a pasta a pasta raíz do seu domínio ou qualquer outra pasta de sua preferência que esteja acessível através do seu domínio.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/linux-2/instalando-phpmyadmin-no-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como reiniciar o Webmin</title>
		<link>http://masterdaweb.com/linux-2/como-reiniciar-o-webmin/</link>
		<comments>http://masterdaweb.com/linux-2/como-reiniciar-o-webmin/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 23:21:23 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[webmin]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=523</guid>
		<description><![CDATA[As vezes o Webmin fica inacessível e então precisamos reiniciá-lo. Ao fazer isso ele voltará a funcionar normalmente. Para isso basta executar o seguinte comando no SHELL: /etc/init.d/webmin restart Depois de usar o comando acima, você verá a seguinte mensagem: Stopping Webmin server in /usr/share/webmin Starting Webmin server in /usr/share/webmin Agora o Webmin voltará a funcionar normalmente!]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><div>As vezes o Webmin fica inacessível e então precisamos reiniciá-lo. Ao fazer isso ele voltará a funcionar normalmente.</div>
<p>Para isso basta executar o seguinte comando no SHELL:</p>
<blockquote><p><code><code>/etc/init.d/webmin restart</code><br />
</code></p></blockquote>
<p>Depois de usar o comando acima, você verá a seguinte mensagem:</p>
<blockquote><p><code><code>Stopping Webmin server in /usr/share/webmin<br />
Starting Webmin server in /usr/share/webmin</code><br />
</code></p></blockquote>
<p>Agora o Webmin voltará a funcionar normalmente!</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/linux-2/como-reiniciar-o-webmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deletando Arquivos em C</title>
		<link>http://masterdaweb.com/programacao-1/linguagem-c/deletando-arquivos-em-c/</link>
		<comments>http://masterdaweb.com/programacao-1/linguagem-c/deletando-arquivos-em-c/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 05:30:13 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[C/C++]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=507</guid>
		<description><![CDATA[Mostrarei nesta breve postagem como deletar um arquivo usando a linguagem C. Para deletar um arquivo usamos a função delete(&#8220;nome_do_arquivo&#8221;). No exemplo abaixo o programa deletará o arquivo masterdaweb.txt: #include &#60;stdio.h&#62; #include &#60;stdlib.h&#62; int main() { delete("masterdaweb.txt"); return 0; }]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Mostrarei nesta breve postagem como deletar um arquivo usando a linguagem C.</p>
<p>Para deletar um arquivo usamos a função <strong>delete(&#8220;nome_do_arquivo&#8221;)</strong>. No exemplo abaixo o programa deletará o arquivo <strong>masterdaweb.txt</strong>:</p>
<pre>

#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;

int main()
{
delete("masterdaweb.txt");
return 0;
}
</pre>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/programacao-1/linguagem-c/deletando-arquivos-em-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Make Command Not Found&#8221; &#8211; Linux</title>
		<link>http://masterdaweb.com/linux-2/make-command-not-found-linux/</link>
		<comments>http://masterdaweb.com/linux-2/make-command-not-found-linux/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 21:36:29 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=501</guid>
		<description><![CDATA[Ao tentar compilar e/ou instalar, por exemplo, algum módulo em alguns servidores Linux com o comando &#8216;make&#8216;  e/ou &#8216;make install&#8216; temos o seguinte erro: Make Command Not Found Para corrigir o problema basta executar o seguinte comando no SHELL: apt-get install make]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Ao tentar compilar e/ou instalar, por exemplo, algum módulo em alguns servidores Linux com o comando <strong>&#8216;make</strong>&#8216;  e/ou &#8216;<strong>make install</strong>&#8216; temos o seguinte erro:</p>
<blockquote><p>Make Command Not Found</p></blockquote>
<p>Para corrigir o problema basta executar o seguinte comando no SHELL:</p>
<blockquote><p>apt-get install make</p></blockquote>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/linux-2/make-command-not-found-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[DBTech] vB Optimise 2.0.1 (Lite)</title>
		<link>http://masterdaweb.com/vbulletin/dbtech-vb-optimise-2-0-1-lite/</link>
		<comments>http://masterdaweb.com/vbulletin/dbtech-vb-optimise-2-0-1-lite/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 17:15:42 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[VBulletin]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=497</guid>
		<description><![CDATA[vB Optimize pretende otimizar software vBulletin integrando várias PHP &#8220;cachers&#8221; e manipulação de dados antes vBulletin. Isso funciona por encontrar e manipulação de dados antes de vBulletin, a fim de pular a execução arbitrária que seria mais intensivo ao servidor. Recursos (inglês) &#8211; Lite Supported Extensions APC eAccelerator Memcache XCache WinCache Filecache Style Cacher Caches style data to globally reduce a query within all vBulletin forum-based pages. Template Cacher Caches...]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>vB Optimize pretende otimizar software vBulletin integrando várias PHP &#8220;cachers&#8221; e manipulação de dados antes vBulletin. Isso funciona por encontrar e manipulação de dados antes de vBulletin, a fim de pular a execução arbitrária que seria mais intensivo ao servidor.</p>
<p><strong>Recursos (inglês) &#8211; Lite</strong></p>
<ul>
<li><strong>Supported Extensions</strong>
<ul>
<li>APC</li>
<li>eAccelerator</li>
<li>Memcache</li>
<li>XCache</li>
<li>WinCache</li>
<li>Filecache</li>
</ul>
</li>
<li><strong>Style Cacher</strong><br />
Caches style data to globally reduce a query within all vBulletin forum-based pages.</li>
<li><strong>Template Cacher</strong><br />
Caches template data to globally reduce a query within all vBulletin forum-based pages.</li>
<li><strong>Datastore Cacher</strong><br />
Forces custom datastore items from modifications (including those from vB&#8217;s blogs) to use your configured Datastore Cache method instead of being forced into the database. This reduces page queries by where affected.</li>
<li><strong>vB CMS Template Caching</strong><br />
(Automatic) Corrects many uncached templates within vB CMS to reduce upto 20+ queries on CMS pages (number varies based on content).</li>
<li><strong>Optimal Settings Check</strong><br />
Provides a quick interface to identify possible settings which can be changed on your forum for further optimisation.</li>
<li><strong>Self-System Tester</strong><br />
Provides a relatively straight-forward system check to ensure your vB Optimise installation works fully.</li>
<li><strong>Automatic Cache Flusher</strong><br />
Automatically flushes cache within the Admin CP based on specific triggers to make sure content does not remain stale on your forum.</li>
<li><strong>XCache Authentification</strong><br />
Supports XCache Admin Authentification by allowing you specify the username/password in a configuration if needs be.</li>
</ul>
<div id='wpdm_file_11' class='wpdm_file bluebox drop-shadow raised'><h3>[DBTech] vB Optimise 2.0.1 (Lite)</h3><div class='cont'><strong>vB Versão:</strong> 4.x.x</br><div class='btn_outer'><a class='btn_left ' rel='11' title='[DBTech] vB Optimise 2.0.1 (Lite)' href='http://masterdaweb.com/?wpdmact=process&did=MTEuaG90bGluaw=='  >Download</a><span class='btn_right'><img src='http://masterdaweb.com/wp-content/plugins/download-manager/icon/download.png'  height='16px'/></span></div><div class='clear'></div></div></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/vbulletin/dbtech-vb-optimise-2-0-1-lite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arquivos em C &#8211; Funções e Operações em Arquivos</title>
		<link>http://masterdaweb.com/programacao-1/linguagem-c/arquivos-em-c-funcoes-e-operacoes-de-arquivos/</link>
		<comments>http://masterdaweb.com/programacao-1/linguagem-c/arquivos-em-c-funcoes-e-operacoes-de-arquivos/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 21:53:10 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[C/C++]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=489</guid>
		<description><![CDATA[Neste artigo falaremos de funções de arquivo de operação em C, abertura de um arquivo, fechamento de um arquivo, o getw e funções putw, as funções fprintf e fscanf, o acesso aleatório a arquivos e função fseek. Funções para operação de arquivos: Função Operação fopen() Cria um novo arquivo Abre um arquivo existente fclose() Fecha um arquivo em uso fgetc() Lê um caractere de um arquivo fgets() Lê uma string...]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Neste artigo falaremos de funções de arquivo de operação em C, abertura de um arquivo, fechamento de um arquivo, o getw e funções putw, as funções fprintf e fscanf, o acesso aleatório a arquivos e função fseek.</p>
<p><a href="http://masterdaweb.com/wp-content/uploads/2012/03/C-programação.jpg"><img class="alignnone size-medium wp-image-490" title="C-programação" src="http://masterdaweb.com/wp-content/uploads/2012/03/C-programação-300x225.jpg" alt="" width="300" height="225" /></a></p>
<h2>Funções para operação de arquivos:</h2>
<table width="605" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="115"><span style="color: #800000;"><strong>Função</strong></span></td>
<td valign="top" width="295"><span style="color: #800000;"><strong>Operação</strong></span></td>
</tr>
<tr>
<td valign="top" width="115">fopen()</td>
<td valign="top" width="295">Cria um novo arquivo<br />
Abre um arquivo existente</td>
</tr>
<tr>
<td valign="top" width="115">fclose()</td>
<td valign="top" width="295">Fecha um arquivo em uso</td>
</tr>
<tr>
<td valign="top" width="115">fgetc()</td>
<td valign="top" width="295">Lê um caractere de um arquivo</td>
</tr>
<tr>
<td valign="top" width="115">fgets()</td>
<td valign="top" width="295">Lê uma string de um arquivo</td>
</tr>
<tr>
<td valign="top" width="115">putc()</td>
<td valign="top" width="295">Escreve um caractere em um arquivo</td>
</tr>
<tr>
<td valign="top" width="115">fprintf()</td>
<td valign="top" width="295">Writes a set of data values to a file</td>
</tr>
<tr>
<td valign="top" width="115">fscanf()</td>
<td valign="top" width="295">Lê o arquivo em um tamanho definido</td>
</tr>
<tr>
<td valign="top" width="115">getw()</td>
<td valign="top" width="295">Lê um inteiro de um arquivo</td>
</tr>
<tr>
<td valign="top" width="115">putw()</td>
<td valign="top" width="295">Escreve um inteiro no arquivo</td>
</tr>
<tr>
<td valign="top" width="115">fseek()</td>
<td valign="top" width="295">Aponto para uma posição definida em um arquivo</td>
</tr>
<tr>
<td valign="top" width="115">ftell()</td>
<td valign="top" width="295">Mostra a posição atual em bytes</td>
</tr>
<tr>
<td valign="top" width="115">rewind()</td>
<td valign="top" width="295">Aponta para o inicio do arquivo</td>
</tr>
</tbody>
</table>
<h2>fopen()</h2>
<p>Para criar ou abrir um arquivo ou para leitura e/ou escrita:</p>
<pre>

FILE *arq;
arq = fopen("nome-do-arquivo","modo");
</pre>
<p>Em &#8220;<strong>modo</strong>&#8221; usamos um paramêtro que defini quais operações serão feitas no arquivo tais como leitura e/ou gravação, tais parâmetros são definidos como:</p>
<p><strong>R</strong> &#8211; Abrir para leitura.<br />
<strong>R+</strong> &#8211; Leitura e gravação.<br />
<strong>W</strong> &#8211; Gravação, caso um arquivo já exista ele será subscrito, caso o contrário um novo será criado.<br />
<strong>W+</strong> &#8211; Gravação e leitura, caso um arquivo já exista ele será subscrito, caso o contrário um novo será criado.<br />
<strong>RB</strong> &#8211; Leitura em arquivo binário.<br />
<strong>RB+</strong> &#8211; Leitura e gravação em arquivo binário.<br />
<strong>WB</strong> &#8211; Gravação em arquivo binário, caso um arquivo já exista ele será subscrito, caso o contrário um novo será criado.<br />
<strong>WB+</strong> &#8211; Gravação e leitura, caso um arquivo já exista ele será subscrito, caso o contrário um novo será criado.</p>
<h2>fclose()</h2>
<p>Um arquivo aberto usando a função <strong>fopen()</strong> pode ser fechado com a função <strong>fclose()</strong>:</p>
<pre>

FILE *arq;

arq = fopen("masterdaweb.txt", "r");

fclose(arq); // Fecha o arquivo
</pre>
<h2>fgetc()</h2>
<p>A função <strong>fgetc()</strong> lê um único caractere de um arquivo.</p>
<pre>

fgetc(arq);
</pre>
<p>O exemplo acima lê um caractere do arquivo <strong>arq</strong>.</p>
<h2>fgets()</h2>
<p>A função <strong>fgets()</strong> lê até o final de uma linha caso o tamanho de definido no parâmetro da função seja suficiente, caso o contrário lê o tamanho definido.</p>
<pre>

char nome[100];

fgets(nome, sizeof(nome), arq);
</pre>
<p>O exemplo acima armazena o que foi lido na variável <strong>nome</strong>.</p>
<h2>putc()</h2>
<p>Escreve um caractere no arquivo.</p>
<pre>

putc ('a', arq);
</pre>
<p>O exemplo acima escreve a letra &#8216;<strong>a</strong>&#8216; no arquivo <strong>arq</strong>.</p>
<h2>getw() e putw()</h2>
<p>São semelhantes às funções GETC e PUTC e são usados ​​para ler e escrever valores inteiros:</p>
<pre>

FILE *arq;
arq = fopen("masterdaweb.txt","w+");

putw(inteiro,arq);
getw(arq);
</pre>
<h2>fprintf() e fscanf()</h2>
<p>As funções fprintf e fscanf são idênticas às funções printf e scanf, a diferença é que são usadas em arquivos.</p>
<pre>

fprintf(arq,%s%d%f”,nome,idade,7.5);

fscanf(arq,"%s%d”,nome,&amp;idade");
</pre>
<h2>fseek()</h2>
<p>Aponta para um posição contada em bytes a partir de uma determinada posição:</p>
<pre>

fseek(arq, 50, SEEK_SET);
</pre>
<p>O exemplo acima aponta para a posição de 50 bytes contadas a partir de <strong>SEEK_SET</strong> (inicio do arquivo).</p>
<p><strong>SEEK_SET</strong> &#8211; Início do arquivo.</p>
<p><strong>SEEK_CUR</strong> &#8211; Posição atual.</p>
<p><strong>SEEK_END</strong> &#8211; Final do arquivo.</p>
<h2>ftell()</h2>
<p>Mostra a posição atual no arquivo, contado a partir do início do arquivo.</p>
<pre>

ftell(arq);
</pre>
<h2>rewind()</h2>
<p>Aponta para o inicio do arquivo.</p>
<pre>

rewind(arq);
</pre>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/programacao-1/linguagem-c/arquivos-em-c-funcoes-e-operacoes-de-arquivos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin Post Thank You Hack v7.82 [AJAX]</title>
		<link>http://masterdaweb.com/vbulletin/vbulletin-post-thank-you-hack-v7-82-ajax/</link>
		<comments>http://masterdaweb.com/vbulletin/vbulletin-post-thank-you-hack-v7-82-ajax/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 20:51:47 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[VBulletin]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=478</guid>
		<description><![CDATA[Um dos maiores problemas em fóruns Como você deve saber é &#8220;impulsionar as mensagens&#8221;. Há usuários que adoram dizer &#8216;obrigado&#8217; quando sempre que podem. Ao dar aos seus usuários o recurso extra, você irá procurar colocar um forum agradável e organizado. É um gosto garantido por todos os membros do seu fórum. Recursos (inglês): Uses vBulletin easy Product installer/updater/uninstaller Uses AJAX technology so your users don&#8217;t have to refresh when...]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Um dos maiores problemas em fóruns Como você deve saber é &#8220;impulsionar as mensagens&#8221;. Há usuários que adoram dizer &#8216;obrigado&#8217; quando sempre que podem.</p>
<p>Ao dar aos seus usuários o recurso extra, você irá procurar colocar um forum agradável e organizado. É um gosto garantido por todos os membros do seu fórum.</p>
<p><strong>Recursos (inglês):</strong></p>
<ul>
<li><strong>Uses vBulletin easy Product installer/updater/uninstaller</strong></li>
<li>Uses <strong>AJAX</strong> technology so your users don&#8217;t have to refresh when they thank.</li>
<li>Places an easy to use button next to the edit button</li>
<li>Separate looks for postbit and postbit_legacy</li>
<li>Places all Thanks into one small box</li>
<li><strong>Uses only ONE query every time you view a showthread page!</strong></li>
<li>Users can&#8217;t thank twice</li>
<li>Option to not allow users to thank their own post</li>
<li>Guests don&#8217;t see &#8216;thanks&#8217; button</li>
<li>Counts how many thanks a user gives</li>
<li>Counts how many thanks a post gets</li>
<li>Shows how many thanks a user gave in every post of his</li>
<li>Shows how many thanks a user gave in profile</li>
<li>Shows how many thanks a user got</li>
<li>Shows how many posts or a user are thanked</li>
<li>Shows info in profile</li>
<li>Search for a users thanked posts</li>
<li>Search for all thanked posts</li>
<li>Administrator can remove all Thanks from a single post</li>
<li>Users can remove their own Thanks</li>
<li>Turn on and off hack totally</li>
<li>Turn on and off hack for only some forums</li>
<li>Option to turn off hack for all but the first post of a thread</li>
<li>Option to turn off hack for all but the first post of a thread in specific forums</li>
<li>Option to turn off hack view of date for specific or all forums</li>
<li>Option to add to post count when someone clicks &#8216;thanks&#8217;.</li>
<li>Option to give a user who receives thanks reputation points.</li>
<li>Ban Usergroups</li>
<li>Ban Users</li>
<li>Uses Phrases</li>
<li>Cache Templates</li>
<li><strong>Guaranteed to be liked by ALL users on your forum!</strong></li>
</ul>
<p><strong>Como instalar:</strong></p>
<p>1) Envie os arquivos da pasta &#8216;upload via ftp&#8217; para a pasta de seu fórum:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
post_thanks.php -&gt; \<br />
post_thanks_admin.php -&gt; \admincp\<br />
post_thanks.js -&gt; \clientscript\<br />
functions_post_thanks.php -&gt; \includes\<br />
cpnav_post_thanks.xml -&gt; \includes\xml\<br />
hooks_post_thanks.xml -&gt; \includes\xml\<br />
post_thanks.png -&gt; \images\buttons\ (and into EVERY &#8220;buttons&#8221; folder in every style you have)<br />
post_thanks-hover.png -&gt; \images\buttons\ (and into EVERY &#8220;buttons&#8221; folder in every style you have)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>2) Importe através do vBulletin o arquivo &#8216;product-post_thanks.xml&#8217;</p>
<div id='wpdm_file_10' class='wpdm_file bluebox '><h3>vBulletin Post Thank You Hack v7.82 [AJAX]</h3><div class='cont'><strong>vB Versão:</strong> 4.0.x</br><div class='btn_outer'><a class='btn_left ' rel='10' title='vBulletin Post Thank You Hack v7.82 [AJAX]' href='http://masterdaweb.com/?wpdmact=process&did=MTAuaG90bGluaw=='  >Download</a><span class='btn_right'><img src='http://masterdaweb.com/wp-content/plugins/download-manager/icon/download.png'  height='16px'/></span></div><div class='clear'></div></div></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/vbulletin/vbulletin-post-thank-you-hack-v7-82-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Point Chat v1.0</title>
		<link>http://masterdaweb.com/vbulletin/digital-point-chat-v1-0/</link>
		<comments>http://masterdaweb.com/vbulletin/digital-point-chat-v1-0/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 20:38:42 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[VBulletin]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=475</guid>
		<description><![CDATA[Este é um simples sistema de chat em tempo real vBulletin 4. Instalação: Envie chat.php para pasta de seu fórum. Envie digitalpoint_chat.js para pasta clientscript. Instale product-dp_chat.xml através do AdminCP -&#62; Plugins &#38; Products -&#62; Manage Products -&#62; Add/Import Product]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Este é um simples sistema de chat em tempo real vBulletin 4.</p>
<p><strong>Instalação:</strong></p>
<ul>
<li>Envie <strong>chat.php</strong> para pasta de seu fórum.</li>
<li>Envie <strong>digitalpoint_chat.js</strong> para pasta clientscript.</li>
<li>Instale <strong>product-dp_chat.xml</strong> através do AdminCP -&gt; Plugins &amp; Products -&gt; Manage Products -&gt; Add/Import Product</li>
</ul>
<p><a href="http://masterdaweb.com/wp-content/uploads/2012/03/digitalpoint-chat.jpg"><img class="alignnone size-medium wp-image-476" title="digitalpoint chat" src="http://masterdaweb.com/wp-content/uploads/2012/03/digitalpoint-chat-279x300.jpg" alt="" width="279" height="300" /></a></p>
<div id='wpdm_file_9' class='wpdm_file bluebox drop-shadow raised'><h3>Digital Point Chat v1.0</h3><div class='cont'><strong>vB Versão:</strong> 4.x.x</br><div class='btn_outer'><a class='btn_left ' rel='9' title='Digital Point Chat v1.0' href='http://masterdaweb.com/?wpdmact=process&did=OS5ob3RsaW5r'  >Download</a><span class='btn_right'><img src='http://masterdaweb.com/wp-content/plugins/download-manager/icon/download.png'  height='16px'/></span></div><div class='clear'></div></div></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/vbulletin/digital-point-chat-v1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin DownloadsII &#8211; v6.0.9</title>
		<link>http://masterdaweb.com/vbulletin/vbulletin-downloadsii-v6-0-9/</link>
		<comments>http://masterdaweb.com/vbulletin/vbulletin-downloadsii-v6-0-9/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 05:19:54 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[VBulletin]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=470</guid>
		<description><![CDATA[Downloads II é um banco de dados do download que se integra ao vBulletin. Ele permite que você upload de arquivos, adicionar imagens a eles, criar categorias, vincular a arquivos externos &#8211; e muito mais. É muito flexível e tem muitas opções. Demo: http://www.minatica.be/downloads.php]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Downloads II é um banco de dados do download que se integra ao vBulletin. Ele permite que você upload de arquivos, adicionar imagens a eles, criar categorias, vincular a arquivos externos &#8211; e muito mais. É muito flexível e tem muitas opções.</p>
<p><a href="http://masterdaweb.com/wp-content/uploads/2012/03/DownloadsII_v6.jpg"><img class="alignnone size-medium wp-image-471" title="DownloadsII_v6" src="http://masterdaweb.com/wp-content/uploads/2012/03/DownloadsII_v6-270x300.jpg" alt="" width="270" height="300" /></a></p>
<p><strong>Demo:</strong> http://www.minatica.be/downloads.php</p>
<div id='wpdm_file_8' class='wpdm_file bluebox drop-shadow lifted'><h3>DownloadsII - v6.0.9</h3><div class='cont'><strong>vB Versão:</strong> 4.0.4</br><div class='btn_outer'><a class='btn_left ' rel='8' title='DownloadsII - v6.0.9' href='http://masterdaweb.com/?wpdmact=process&did=OC5ob3RsaW5r'  >Download</a><span class='btn_right'><img src='http://masterdaweb.com/wp-content/plugins/download-manager/icon/download.png'  height='16px'/></span></div><div class='clear'></div></div></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/vbulletin/vbulletin-downloadsii-v6-0-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin 4 Point Market System 3.1.2</title>
		<link>http://masterdaweb.com/vbulletin/vbulletin-4-point-market-system-3-1-2/</link>
		<comments>http://masterdaweb.com/vbulletin/vbulletin-4-point-market-system-3-1-2/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 05:13:47 +0000</pubDate>
		<dc:creator>Lucas Viana</dc:creator>
				<category><![CDATA[VBulletin]]></category>

		<guid isPermaLink="false">http://masterdaweb.com/?p=466</guid>
		<description><![CDATA[Point Market System é um autônomo &#8220;store&#8221; ou &#8220;loja&#8221; hack para vBulletin série 4x. Este hack é considerado uma grande adição que permite que você instale um ou vários sistemas de ponto, sistemas de atividade, ou sistemas de moeda para usar os pontos para melhorias do fórum relacionados item ou um sistema de loja virtual / físico para o seu fórum vBulletin. &#160;]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p><strong>Point Market System</strong> é um autônomo &#8220;store&#8221; ou &#8220;loja&#8221; hack para vBulletin série 4x. Este hack é considerado uma grande adição que permite que você instale um ou vários sistemas de ponto, sistemas de atividade, ou sistemas de moeda para usar os pontos para melhorias do fórum relacionados item ou um sistema de loja virtual / físico para o seu fórum vBulletin.</p>
<p><a href="http://masterdaweb.com/wp-content/uploads/2012/03/point-market-system.gif"><img class="alignnone size-medium wp-image-467" title="point market system" src="http://masterdaweb.com/wp-content/uploads/2012/03/point-market-system-300x225.gif" alt="" width="300" height="225" /></a></p>
<p>&nbsp;</p>
<div id='wpdm_file_7' class='wpdm_file bluebox '><h3>Point Market System 3.2x</h3><div class='cont'><p><strong>vB Versão:</strong> 4.0.x</p>
</br><div class='btn_outer'><a class='btn_left ' rel='7' title='Point Market System 3.2x' href='http://masterdaweb.com/?wpdmact=process&did=Ny5ob3RsaW5r'  >Download</a><span class='btn_right'><img src='http://masterdaweb.com/wp-content/plugins/download-manager/icon/download.png'  height='16px'/></span></div><div class='clear'></div></div></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://masterdaweb.com/vbulletin/vbulletin-4-point-market-system-3-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

