phpBB - Create a Vertical Cell or Pane on the Left Side of the Forum for Google AdSense phpBB - Criar uma célula vertical ou pane no lado esquerdo do Fórum para o Google AdSense
This step by step guide will add a vertical cell / pane on the left hand side of the phpBB board, which can be used to accomodate a Google AdSense Skyscraper or Wide Skyscraper ads. Este guia passo a passo irá acrescentar uma célula vertical / painel do lado esquerdo do phpBB bordo, que pode ser utilizado para acomodar um Google AdSense Arranha-céu Arranha-céu largo ou anúncios.
Due to Google AdSense’s terms and conditions, the AdSense ads shouldn’t appear on every page. Devido ao Google AdSense's termos e condições, os anúncios do AdSense não devem aparecer em cada página. The pages that shouldn’t have any Google AdSense ads includes, but not limited to, such as log-in page, member-lists and search-results pages. As páginas que não deveria ter quaisquer Os anúncios do Google AdSense, inclui, mas não limitado a, tais como a página de log-in-membro listas de resultados de pesquisa e páginas. Apart from violating Google AdSense’s terms and conditions, you may found that the ads won’t get good results in these pages because there is insufficient content to deliver meaningful ads. Para além de violar o Google AdSense's termos e condições, você pode encontrar os anúncios que não vai obter bons resultados nestas páginas, pois é insuficiente para fornecer conteúdos significativos anúncios.
So, the best place to put the Google AdSense ads is on the index page, the forum page, and the topic page. Então, o melhor local para colocar os anúncios do Google AdSense é a página de índice, o fórum página eo tema página.
The layout of these pages is controlled by the following (.tpl) template files: A apresentação destas páginas é controlada pelo seguinte (. TPL) template arquivos:
index_body.tpl - For the index page. index_body.tpl - Para a página de índice.
viewforum_body.tpl - For the forum page. viewforum_body.tpl - Para o fórum página.
viewtopic_body.tpl - For the topic page. viewtopic_body.tpl - Para o tópico página.
So for each of these files, a left side vertical cell needs to be added in order to add the Google AdSense code. Então, para cada um desses arquivos, um lateral esquerda vertical célula tem que ser adicionado no fim de adicionar o código do Google AdSense.
These files can be found at the forum web server in this directory: Estes arquivos podem ser encontrados no Fórum servidor web, neste diretório:
templates/subSilver templates / subSilver
These files are text files. Estes arquivos são arquivos de texto. Open the files in any text editor, make the changes, then save them. Abrir os arquivos em qualquer editor de texto, faça as alterações e, em seguida, guardá-las. If you downloaded them to edit them, you will need to upload the modified versions to the same templates/subSilver directory. Se fez o download deles para editá-los, você precisa fazer o upload para as versões modificadas dos mesmos templates / subSilver diretório.
Basically, the following changes will add a table with two cells to each page. Basicamente, as alterações a seguir irá acrescentar uma tabela com duas células de cada página. The left cell will contain the Google AdSense ads. A esquerda célula irá conter os anúncios do Google AdSense. The right cell will contain the forum information. O direito de células irá conter informações do fórum.
index_body.tpl index_body.tpl
Open index_body.tpl in any text editor. Index_body.tpl aberto em qualquer editor de texto.
Locate these lines in the file (roughly lines 12, 13, 14): Localizar essas linhas no arquivo (aproximadamente 12 linhas, 13, 14):
<a href=”{U_SEARCH_UNANSWERED}” mce_href=”{U_SEARCH_UNANSWERED}” class=”gensmall”>{L_SEARCH_UNANSWERED}</a></td> <a href="{U_SEARCH_UNANSWERED}" mce_href="{U_SEARCH_UNANSWERED}" class="gensmall"> (L_SEARCH_UNANSWERED) </ a> </ td>
</tr> </ TR>
</table> </ table>
BELOW these lines, insert this code: ABAIXO estas linhas, inserir este código:
<table width=”100%” border=”0″><tr><td valign=”top”> <table width="100%" border="0"> <tr> <td valign="top">
Google AdSense Code Google AdSense Código
</td> </ td>
<td width=”100%” valign=”top”> <td width="100%" valign="top">
This section of code should now looks like this: Esta seção de código deve agora se parece com esta:
<a href=”{U_SEARCH_UNANSWERED}” mce_href=”{U_SEARCH_UNANSWERED}” class=”gensmall”>{L_SEARCH_UNANSWERED}</a></td> <a href="{U_SEARCH_UNANSWERED}" mce_href="{U_SEARCH_UNANSWERED}" class="gensmall"> (L_SEARCH_UNANSWERED) </ a> </ td>
</tr> </ TR>
</table> </ table>
<table width=”100%” border=”0″><tr><td valign=”top”> <table width="100%" border="0"> <tr> <td valign="top">
Google AdSense Code Google AdSense Código
</td> </ td>
<td width=”100%” valign=”top”> <td width="100%" valign="top">
Replace the words Google AdSense Code with your actual Google AdSense code. Substituir as palavras com o seu código do Google AdSense do Google AdSense código real.
Locate these lines (near the bottom): Localizar essas linhas (junto ao fundo):
<table cellspacing=”3″ border=”0″ align=”center” cellpadding=”0″> <table cellspacing="3" border="0" align="center" cellpadding="0">
<tr>
<td width=”20″ align=”center”><img src=”templates/subSilver/images/folder_new_big.gif” mce_src=”templates/subSilver/images/folder_new_big.gif” alt=”{L_NEW_POSTS}”/></td> <td width="20" align="center"> <img src="templates/subSilver/images/folder_new_big.gif" mce_src="templates/subSilver/images/folder_new_big.gif" alt="{L_NEW_POSTS}"/> </ td>
ABOVE these lines, insert this code: Acima destas linhas, inserir este código:
</td> </ td>
</tr></table> </ tr> </ table>
This section of code should now looks like this: Esta seção de código deve agora se parece com esta:
</td> </ td>
</tr></table> </ tr> </ table>
<table cellspacing=”3″ border=”0″ align=”center” cellpadding=”0″> <table cellspacing="3" border="0" align="center" cellpadding="0">
<tr>
<td width=”20″ align=”center”><img src=”templates/subSilver/images/folder_new_big.gif” mce_src=”templates/subSilver/images/folder_new_big.gif” alt=”{L_NEW_POSTS}”/></td> <td width="20" align="center"> <img src="templates/subSilver/images/folder_new_big.gif" mce_src="templates/subSilver/images/folder_new_big.gif" alt="{L_NEW_POSTS}"/> </ td>
viewforum_body.tpl viewforum_body.tpl
Open viewforum_body.tpl in any text editor. Viewforum_body.tpl aberto em qualquer editor de texto.
Locate this line in the file (roughly line 15): Localize esta linha do arquivo (aproximadamente 15 linhas):
<table border=”0″ cellpadding=”4″ cellspacing=”1″ width=”100%” class=”forumline”> <table border="0" cellpadding="4" cellspacing="1" width="100%" class="forumline">
ABOVE this line, include this code: Acima desta linha, este código incluem:
<table width=”100%” border=”0″><tr><td valign=”top”> <table width="100%" border="0"> <tr> <td valign="top">
Google AdSense Code Google AdSense Código
</td> </ td>
<td width=”100%” valign=”top”> <td width="100%" valign="top">
This section of code should now looks like this: Esta seção de código deve agora se parece com esta:
<table width=”100%” border=”0″><tr><td valign=”top”> <table width="100%" border="0"> <tr> <td valign="top">
Google AdSense Code Google AdSense Código
</td> </ td>
<td width=”100%” valign=”top”> <td width="100%" valign="top">
<table border=”0″ cellpadding=”4″ cellspacing=”1″ width=”100%” class=”forumline”> <table border="0" cellpadding="4" cellspacing="1" width="100%" class="forumline">
As above, replace the words Google AdSense Code with actual Google AdSense Code. Tal como referido, substituir as palavras com as reais Código Google AdSense do Google AdSense Código.
Locate this line (last line): Localize esta linha (última linha):
</table> </ table>
BELOW this line, include this code: Abaixo desta linha, este código incluem:
</td> </ td>
</tr></table> </ tr> </ table>
This section of code should now look like this: Esta seção de código deverá agora ser semelhante a este:
</table> </ table>
</td> </ td>
</tr></table> </ tr> </ table>
viewtopic_body.tpl viewtopic_body.tpl
Open viewtopic_body in any text editor. Viewtopic_body aberto em qualquer editor de texto.
Locate this line in the file (possibly line 1): Localize esta linha do arquivo (possivelmente linha 1):
<table class=”forumline” width=”100%” cellspacing=”1″ cellpadding=”3″ border=”0″> <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
ABOVE this line, include this code: Acima desta linha, este código incluem:
<table width=”100%” border=”0″><tr><td valign=”top”> <table width="100%" border="0"> <tr> <td valign="top">
Google AdSense Code Google AdSense Código
</td> </ td>
<td width=”100%” valign=”top”> <td width="100%" valign="top">
This section of code should now looks like this: Esta seção de código deve agora se parece com esta:
<table width=”100%” border=”0″><tr><td valign=”top”> <table width="100%" border="0"> <tr> <td valign="top">
Google AdSense Code Google AdSense Código
</td> </ td>
<td width=”100%” valign=”top”> <td width="100%" valign="top">
<table class=”forumline” width=”100%” cellspacing=”1″ cellpadding=”3″ border=”0″> <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
As above, remember to replace the words Google AdSense Code with the actual Google AdSense code. Tal como referido, lembre-se de substituir as palavras com o Google AdSense Código real Google AdSense código.
Locate this line (last line in the file): Localize esta linha (última linha do arquivo):
</table> </ table>
BELOW this line, include this code: Abaixo desta linha, este código incluem:
</td> </ td>
</tr></table> </ tr> </ table>
This section of code should now look like this: Esta seção de código deverá agora ser semelhante a este:
</table> </ table>
</td> </ td>
</tr></table> </ tr> </ table>
Google AdSense Colour Code for Standard Colours of phpBB subSilver Forum Google AdSense Cor Código de Cores Padrão de phpBB subSilver Fórum
006699 darkish blue-green - for ad border and links. 006699 darkish azul-verde - para o anúncio das fronteiras e links.
000000 black - for text. 000000 preto - para o texto.
EFEFEF light grey - for ad background. EFEFEF cinzento claro - para o anúncio de fundo.
The only other issue is in the topic page at resolution 800×600 where the page is a little too wide for the screen. A única outra questão é o tema da página na resolução 800 × 600 onde a página está um pouco demasiado grande para a tela. There’sa lot of competition for space there! Há muita competição por espaço de lá! There’s the Google ads, avatars and poster info, plus the post itself, all going across the page. There's a anúncios do Google, avatares e info cartaz, mais o próprio posto, tudo acontecendo em toda a página.
The modification with Wide Skycraper Google AdSense ads looks perfect in screen resolution of 1024×768. A modificação com Wide Skycraper Os anúncios do Google AdSense parece perfeito na resolução de tela de 1024 × 768. To accomodate lower screen resolution, it’s better to use narrower Skycraper instead of Wide Skycraper. Para acomodar mais baixa resolução de tela, é melhor usar mais restrito Skycraper vez de Wide Skycraper.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma página traduzida máquina que é fornecida "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de compreender. Please refer to Por favor, consulte a original English article Inglês original article whenever possible. sempre que possível.
Share and contribute or get technical support and help at Compartilhe e contribuir ou obter suporte técnico e ajudar a My Digital Life Forums Minha vida digital Fóruns .
Related Articles Artigos relacionados
- AdSense Help Group for AdSense Publishers Grupo de Ajuda do AdSense para editores do AdSense
- AdSense Login to Update to Google Account Login do AdSense para atualizar a conta do Google
- Install phpBB 2 in Windows XP running on Apache 2, PHP 5 and MySQL 4 Instale phpBB 2 do Windows XP rodando em Apache 2, PHP 5 e MySQL 4
- How to Reset AdSense Password Not Associated with Google Account Como redefinir a senha do AdSense não associados a conta do Google
- Add and Put AdSense Ads Code and JavaScript to Google Page Creator Website Adicionar e colocar anúncios do AdSense eo código JavaScript ao site do Google Page Creator
- Hack to Add Forum Sponsors to vBulletin Categories and Forums Hack para Adicionar ao Fórum Patrocinadores vBulletin Categorias e Fóruns
- AdSense New Ads Style with Horizontal Image and Ad Links AdSense novos anúncios gráficos e de estilo com horizontal anúncio Links
- Change to ads about Feature in Google Adsense Ads Mudar para anúncios sobre Feature nos anúncios do Google Adsense
- AdSense Money for Referrals to Google Pack and Picasa As remessas de dinheiro para o AdSense para o Google Pack e Picasa
- When was Google AdSense Launched? Quando foi lançado o Google AdSense?



















November 24th, 2006 23:47 24 de novembro de 2006 23:47
I’m looking for any information of XRUMER program. Estou à procura de qualquer informação de XRUMER programa.
Can you help me? Vocês podem me ajudar? Or give me a link to the official site with this program. Ou dar-me um link para o site oficial com esse programa.
January 7th, 2007 16:34 7o janeiro de 2007 16:34
Hi. Oi.
Nice site design. Nice design do site. Okay, I need your help. Ok, eu preciso da sua ajuda.
So, I wanna make my little sister’s site, and I am looking for site template. Por isso, quero fazer a minha pequena irmã do site, e estou procurando site modelo.
Can you suggest some online store or other resource where I can find many site templates? Você pode sugerir alguma loja online ou de outro recurso, onde podemos encontrar muitos modelos site?
It would be better if it will be free:) Seria melhor se ele estará livre:)
I think many of us have personal sites, do you design it yourself? Penso que muitos de nós têm sites pessoais, não é mesmo desenho que você mesmo?
Thx, Bill. Thx, Bill.
April 6th, 2007 06:05 6 de abril de 2007 06:05
Thanks for this!!! Graças a esta! Worked like a charm. Trabalhou como um encanto. I wish you had more adsense “fixes” like this for PHPBB. Desejo-lhe tinham mais adsense "correções" como este para phpBB. I am SHITE at editing the tpl and php files. Eu sou a merda editando o TPL e arquivos php. I woul love to see how you add a link across the yop, and a search box. I woul amor para ver como você adicionar um link em todo o yop, e uma caixa de pesquisa. Adding Kontera would be nice too. Adicionando Kontera seria agradável também. Glad somebody out there understands this stuff. Contentes alguém lá fora, compreende este material.
Cheers, M. Cheers, M.
April 9th, 2007 03:20 9 de abril de 2007 03:20
One thing to watch out for though. Uma coisa que estar atentos embora. Make sure that you watch out for the formatting on the parentheses marks. Assegure-se que atente para a formatação sobre as marcas parênteses. You will end up with a funky looking table around the adsense and forum tables if you are not careful See this page for more details Você vai acabar com um funky olhando à volta da mesa adsense e mesas fórum se você não for cuidada Veja esta página para obter mais detalhes
http://www.phpbb.com/community/viewtopic.php?f=1&t=530828&start=0&st=0&sk=t&sd=a
April 19th, 2007 00:58 19 de abril de 2007 00:58
One old american man win in lotto 250 000 000$. Um velho homem ganhar americanos em Lotto 250 000 000 dólares.
I want win money too!!!!!!!!!!aaaa Eu quero ganhar dinheiro também !!!!!!!!!! aaaa
Give me money! Dê-me dinheiro!
September 10th, 2007 20:37 10 de setembro de 2007 20:37
Hi just coming to forum for first time. Oi apenas a chegar ao fórum para uma primeira vez.
Having a look and finding many good posts. Ter uma boa aparência e encontrar muitos lugares.
Thank you. Obrigado.
xiphoneguyx
September 11th, 2007 04:39 11 de setembro de 2007 04:39
Thank you for this post it was very helpful. Obrigado por este post foi muito útil. I could not have implemented adsense the way I wanted with out this. Eu não poderia ter aplicado adsense da maneira que eu queria com esta.
October 15th, 2007 10:04 15 de outubro de 2007 10:04
Those bastards owe me money, they refuse to pay. Aqueles diabos dever-me dinheiro, eles se recusam a pagar. Good job Shoemoney [img]http://funnycrud.net/thumbs.gif[/img] Bom trabalho shoemoney [img] http://funnycrud.net/thumbs.gif [/ img]
Bah, anyway, anyone else have probs with these douches? Bah, mesmo assim, ninguém tem probs com esses douches?
October 20th, 2007 06:58 Oct 20, 2007 06:58
Hi! Oi! I just found this forum and it looks really cool. Acabei de encontrar este fórum e ele parece estar muito legal.
Now, I gotta run off and read some posts. Agora, eu gotta correr ao largo e ler alguns lugares.
March 12th, 2008 02:48 12 de março de 2008 02:48
Thanks, the code worked! Obrigado, o código funcionou!
March 26th, 2008 00:33 26 de março de 2008 00:33
[SIZE="4"]Предлагаю раскрутку вашего сайта методом массовой рассылки сообщений по форумам[/SIZE] [Size = "4"] Предлагаю раскрутку вашего сайта методом массовой рассылки сообщений по форумам [/ size]
[SIZE="2"][I][COLOR="Blue"] [Size = "2"] [I] [color = "Azul"]
Основные преимущества перед обычной СПАМ-рассылкой[/I][/SIZE][/COLOR] Основные преимущества перед обычной СПАМ-рассылкой [/ I] [/ size] [/ COLOR]
[COLOR="DeepSkyBlue"]*В отличие от e-mail СПАМ’а данный метод продвижения сайта [B]не преследуется УК.РФ [/B] [Color = "DeepSkyBlue"] * В отличие от de e-mail СПАМ'а данный метод продвижения сайта [B] не преследуется УК.РФ [/ B]
*Поднятие ТиЦ более чем на 70ед. * Поднятие ТиЦ более чем на 70 ед.
*Быстрая индексация сайта поисковиками * Быстрая индексация сайта поисковиками
[/COLOR] [/ COLOR]
[COLOR="Blue"][SIZE="2"][I]Особенности.[/I][/SIZE][/COLOR] [Color = "Azul"] [size = "2"] [I] Особенности. [/ I] [/ size] [/ COLOR]
[COLOR="Lime"]*Рассылка ведётся с помощью специализированного программного комплекса, [Color = "Lime"] * Рассылка ведётся с помощью специализированного программного комплекса,
который позволяет обойти практически все типы защиты от автоматической регистрации такие как: [/COLOR] который позволяет обойти практически все типы защиты от автоматической регистрации такие как: [/ COLOR]
[SIZE="1"][I] - Защита при помощи пиктокода (тикетов) типа “Введите число, которое видите” [Size = "1"] [I] - Защита при помощи пиктокода (тикетов) типа "Введите число, которое видите"
- Защита при помощи активации по e-mail. -- Защита при помощи активации по e-mail.
- Защита при помощи некоторых Java-скриптов.[/I][/SIZE] -- Защита при помощи некоторых Java-скриптов. [/ I] [/ size]
[COLOR="Lime"] [Color = "Lime"]
*Рассылка ведётся по [I]тематическим[/I] форумам, что позволяет получить максимально качественный траффик * Рассылка ведётся по [I] тематическим [/ I] форумам, что позволяет получить максимально качественный траффик
*Скорость рассылки ~4тыс. * Скорость рассылки ~ 4 тыс. сообщений в час сообщений в час
[/COLOR] [/ COLOR]
Цены: 15тыс. Цены: 15 тыс. форумов-120$ форумов-120 US $
Просьба связываться со мной только через ICQ. Просьба связываться со мной только через ICQ.
ICQ 432-992 ICQ 432-992
June 9th, 2008 17:13 9 de junho de 2008 17:13
дорогие родители!! дорогие родители!
хочу предложить вам свои услуги в качестве инструктора по динамической гимнастике с детьми от 0 до 1года;по плаванью и нырянию в любом возрасте.обучу вас работе с детьми.индивидуальная разработка спортивных комплексов и тренажеров.консультации по слингам и закаливанию.Сертификат РАЕН с правом на работу инструктором по динамической гимнастике и плаванию с новорожденными.Плавание с новорожденными, обучение плаванию младенцев, грудничковое плавание, наныривание, обучение плаванью детей, малыши плавают. хочу предложить вам свои услуги в качестве инструктора по динамической гимнастике с детьми от 0 до 1 года; по плаванью и нырянию в любом возрасте.обучу вас работе с детьми.индивидуальная разработка спортивных комплексов и тренажеров.консультации по слингам и закаливанию.Сертификат РАЕН с правом на работу инструктором по динамической гимнастике и плаванию с новорожденными.Плавание с новорожденными, обучение плаванию младенцев, грудничковое плавание, наныривание, обучение плаванью детей, малыши плавают.
egorchenko(собака)inbox.ru egorchenko (собака) inbox.ru
тел 8 926 186 15 74 тел 8 926 186 15 74
ICQ 236491607 ICQ 236491607
Елена