» Publishers, Monetize your RSS feeds with FeedShow: More infos (Show/Hide Ads)
Date: Wednesday, 04 Mar 2009 22:58
galera achei um servidor na net espetacular muito bom mesmo nunca joguei um server com tanto items customs e com balanceamente de items customs excelente, skill, classes, e tudo de bom o server galera vale apena conferir
--=== SERVER INFO ===--
- Lineage 2 interlude C6
- Rates 500xp 500sp 800adena
- GradePenalty
- Shop Fulls
- Grocery shop em todas cidades
- Special shop em todas cidades
- Shop grade S em goddard
- Shop grade A em aden
- Shop grade B em oren
- Shop grade C em giran
- Shop grade D em todas cidades
- Shop no-grade em todas cidades
- City principais giran, heine, goddard, aden, oren
- NPC buffer Full
- NPC caradine
- NPC anti-pk
- Npc TvT manager
- NPC class manager
- NPC wyvern manager
- NPC special shop
- NPC augmentation
- NPC tattuador
- NPC casamento
- NPC quest items
- Buffs 10 Horas
- Gatekeeper Glogal
- Subclass free
- Npc blacksmith
- Npc BlackSmith of Mammom
- Dye
- Seven Signs
- Clan hall
- Quest nobless venda no Shop
- Quest Dual Class Full
- Quest AioxBuffer Full
- Olimpiadas Hero
- Sieges
- Enchant Safe: +4
- Enchant Max: +25
- Enchant Rate: 80% black Scroll 80% Blessed Scroll 90% Crystal Scroll
- Customs areas drops monastery of silence, imperial tomb drop
L][ILLuSionBr Adena
- Primavel Isle drop crystal scroll
--=== Items Customs ===--
- Weapon epic
- Weapon titanium
- weapon dynasty
- weapon ice
- Weapon Jedi
- Weapon dual epic
- Weapon Tombs
- Weapon Custom
- Weapon Hero
- Weapon Icarus
- Weapon of ILLuSionBr
- Weapon God's
- Set armor epic
- Set armor titanium
- Set armor dynasty
- Set armor ice
- Set armor dragon Fire
- Set armor dragon land
- Set armor dragon water
- Set armor dragon wind
- Set armor dragon thunder
- Set armor ruby
- Set armor golden
- Set jewelry epic
- Set jewelry titanium
- Set jewelry kamael
- Set jewelry Boss
- Party mask
- Asa's
- Oculos
- Bandanas
- Tattoo AIO
- Tattoo GM Power Mytic, Fighter
- Shield's Customs
OBS 1: Esse Server Eu achei extraordinario por ser um unico server que tem muitos items customs porem e diferente dos outros que ja joguei pq os items sao super balanceados
OBS 2: Server E Dedicado 100% Sem Lag.. Eu Tou Chamando Vcs para joga esse server pq fazia tempo que nao encontrava um servidor assim esse promete ser um L2Extreme, Server Tem Futuro Por isso Tou ajudando
OPA Ja Ia me esquecendo do site para galera WWW.L2ILLUSIONBR.PAGE.TL aeee logar pm em mim NICK: Lord-DO-MAL
Date: Tuesday, 03 Mar 2009 16:26
Maximising Google SEO and Adsense ad relevance for XOOPS
Maximising Google SEO and Adsense ad relevance for Xoops
Used correctly the Google search engine is a great tool for generating some traffic for your site, and in turn the Google Adsense program can be a great way of monetizing that traffic. A problem can arise here though if you are running a site on a system such as Xoops with dynamically generated content, and you may find yourself with advertising that is totally irrelevant to the content on your site. The problem with this is that very few of your visitors will click on these ads as they are of little relevance to why they came to your site in the first place. This in turn reduces the the amount of money you get paid for each click as you'll only be delivered very cheap ads that are using very generic keywords . However it doesn't have to be like this, and it can be as simple as adding a few items to the HTML in your Xoops theme, and modifying the way your module generate their page titles. ARTICLE SCOPE
This article explores how altering the way your page titles are generated can result in a huge increase in the relevancy of the ads being delivered to your site from the Google Adsense network. This article does not involve complex ideas, but does involve editing some HTML so some basic knowledge of this would help. A good level of understanding of both the Xoops and the Google Adsense interfaces as well as advertising terminology is also assumed. MAKING MONEY FROM YOUR WEBSITE
First off let me point out that I do not claim to be any sort of expert on this, and the fact that I still work a regular day job is testament to this. However having only become interested in this topic around the middle of this year, I believe that what I have learnt and seen with my own eyes would be a valuable to those who are just starting out in this area. THINGS THAT MAKE XOOPS GOOGLE UNFRIENDLY
From my experimentation the reason that Xoops is not generally very search engine friendly and delivers irrelevant ads is due mainly in the way most meta data and page titles are generated. With meta data, most of the problem comes down to how most themes use the available Xoops smarty tags, and the lack of some basic search engine friendly practices. However, this is only half the problem as the current functionality within the Xoops core for generating meta data does not allow you to do it on a per page basis. There are some modules now supporting the creation of per page meta data such as the News module.
Generating page titles is currently the responsibility of each Xoops module, but not all of them actually generate individual page titles which is essential for not only delivering relevant ads, but also for SEO. Even those that do generate individual page titles more often than not do not generate them in a fashion that is friendly for delivering relevant ads. This is because most of the time page titles are generated in the format of site name - module name - category - item name. The effect this has is that the start of the page title is always going to be the same, and search engines are going to look at this as duplicate data and will start degrading it. THINGS TO DO THAT MAKE XOOPS GOOGLE FRIENDLY
Getting your theme to be more Google friendly is not a massive task, and pretty much everything that I am going to cover here has actually already been documented at the main Xoops site in this great FAQ . In this guide we will be using existing Xoops smarty tags to enhance information that Google looks for when crawling your site. To do this you'll need a good text editor , and access to edit the theme.html file of the theme in use on your Xoops website. Meta Keywords Look for the code that generates you meta keyword data, it should look something like this;
content="<{$xoops_meta_keywords}>"
What we are going to do here is add the page title tag so that this meta data is at least partially unique.
Change this code to read;
content="<{$xoops_pagetitle}>, <{$xoops_meta_keywords}>"
Meta Description Look for the code that generates you meta description data, it should look something like this;
content="<{$xoops_meta_description}>"
What we are going to do here is add the page title tag so that this meta data is at least partially unique.
Change this code to read;
content="<{$xoops_pagetitle}>, <{$xoops_meta_description}>"
Page Title Component Order Look about a dozen lines down from the top for a line that looks like this;
<title><{$xoops_sitename}> - <{$xoops_pagetitle}></title>
This is the code that generates the page title for each page, and the problem here is that the site name comes first meaning that page titles are always going to begin the same and will look like duplicate data to Google. What we are going to do here is reverse the position of the two tags so that the page title tag which is unique under most modules comes first
Change this code to read;
<title><{$xoops_pagetitle}> - <{$xoops_sitename}></title>
Page Title In H1 Tags Move down past the items contained in the head tags and look for a line that looks like this;
<body>
Then immediately after it add the following;
<noscript><h1><{$xoops_pagetitle}></h1></noscript>
By doing this we are placing the page title in the largest heading tags there are making it more prominent to Google, without actually printing the page title to screen.
Creating Logo Image ALT Tag Look for the line of code that displays your websites logo. It should look something like;
src="<{$xoops_url}>/themes/<{$xoops_theme}>/images/logo.gif"
Add a new alt tag, or modify the existing one so that it looks like;
alt="<{$xoops_pagetitle}>"
Creating Link In Footer Using Page Title Scroll to the bottom of your theme.html file, and look for the following tag;
<{$xoops_footer}>
Directly after this tag, or on a new line (personal preference) add the following;
<a href="<{$xoops_url}>" target="_self"><{$xoops_pagetitle}></a>
Page Title Generation
This brings us to modules now, and the way in which they actually generate the page title which is passed onto the page title smarty tag that we used in the theme. This is a lot more complex than modifying the theme for several reasons. Not all modules actually generate page titles, meaning that code will need to be added to do so.
Generation of individual page titles is done on a per module basis, so there is no one central point where this can be modified.
Requires some knowledge of PHP to do.
This is a little more advanced than I am looking to go in this guide, but there is an excellent tutorial on this over at www.xoops-tips.com . I have made modifications for AMS, CBB 1.x, MyDownloads, MyLinks, Xoopspoll and SmartFAQ and have added them to my downloads section here for others to use. FINAL WORDS
SEO and monetizing your website is a massive world that is never fully conquered, and will always keep you on your toes. There are many out there that claim their optimisation practices are best, and although they usually follow similar fundamentals that will make a difference (such as those covered in this guide), the art of fine tuning is something that has to be done largely on a trial and error basis for each web site.
Using the same techniques in this guide and applying them to this very site, the number of referrals from the Google search engine this month is on target to be over 300% of that from just 2 months ago. The ads being delivered by Google Adsense are also a lot more relevant, and last month revenue jumped by 436% over the previous month. Have a browse through the site and see for yourself how relevant ads are to the content being displayed. Compare this to an Xoops website with very little optimisations in this area, and it is a completely different story. I know for a fact this site is now earning a very comparable amount to other Xoops sites with no optimisation that are getting more than 10 times more traffic than here. Definitely shows that optimising Xoops can bring about some rewarding results.
Marcadores: AdSense , google , Google Adsense , Google search , html , keyword , Search Engine , Search engine optimization , Web search engine
Date: Thursday, 26 Feb 2009 19:33
Já tentou fazer por fora do xoops criando uma pasta para gravar esses pdfs para download e fazer a chamada <a href>. O chato disso é que você fica sem estatísticas sobre os downloads.
Seria assim:
1. abra seu programa de ftp e acesse a pasta raiz do seu site. Explo: www/seusite;
2. crie uma nova pasta e nomeie de downs, por exemplo;
3. suba o seu arquivo *.pdf para essa pasta downs;
4. no corpo do texto de onde quer que se inicie o download, crie a âncora:
<a href="http://www.seudominio/downs/arquivo.pdf">baixe aqui!</a>
Pelo xoops, eu não sei. Já tentou alternar o item:
>Usar Texto no lugar do ID na URL?
>Selecionando 'Sim', será usado o Texto do Menu no lugar do >ID do conteúdo na URL. O sistema aceita ambos por padrão >para trazer uma página. Esta configuração só afeta os >links gerados pelo sistema.*
que fica na aba preferências da página de administração do mastop?
Date: Thursday, 26 Feb 2009 13:48
Alguém pode me ajudar a incluir uma função para moderar o conteúdo gerado por um usuário no userpage?
Já alterei o template colocando uma condicional que identifica o administrador e abre um botão para moderar. No caso ele abre o userpage_edit.php, mas abre a página de edição da página do administrador e não a do usuário.
Tentei criar um novo arquivo chamado userpage_moderar.php, mas diz que a página não foi encontrada.
Não consigo alterar o script para que o administrado abra o conteúdo do usuário... Alguém tem alguma sugestão?
Vitor Araujo
Date: Friday, 20 Feb 2009 18:28
Existe algum módulo ou extensão para fazer um portal de classificados com pesquisa de números de telefone, endereços, por cidade?
Date: Thursday, 05 Feb 2009 19:32
A solução para isso é simples, basta ir ao gerenciamento de blocos e adicionar um novo bloco na página inicial, na posição centro-centro, com o conteúdo que você deseja.
Date: Wednesday, 04 Feb 2009 14:12
Saudações!
Transferi as contas de email para o google app .. tenho o meu link http://email.clubedorenault.com.br mas gostaria de adicionar um bloco .. pelo qual acessaria os gmail pelo meu site..
alguém teria uma luz?!
[]´s
Date: Friday, 23 Jan 2009 22:03
Olá amigos, fiz o meu site em XOOPS, e uso o módulo de notícias News, na página inicial de meu site eu coloco vários blocos de últimas notícias do módulos news, mas somente aparece a data e o título da notícia, eu queria que aparecesse também o nome do tópico "categoria" antes do título porque já vi alguns sites desse jeito, alguém pode me ajudar? aonde altero? meu site é www.padom.com aguardo a sua ajuda. muito obrigado
Date: Thursday, 22 Jan 2009 04:18
ae galera estou aki trasendo mais uma vez o mais novo mu e bom (MuVicio) ate agora o melhor de todos espero q joguem site www.muvicio.net
obrigado ...
Date: Monday, 19 Jan 2009 17:24
Prezados amigos
Nós, da Lingva Assessoria Linguística Ltda, uma empresa prestadora de serviços de idiomas para grandes companhias, está em busca de um funcionário para contratar, com conhecimentos bons de Xoops. Usamos este programa, e queremos contratar um técnico em PHP que entenda bem de Xoops para customizar e, eventualmente, criar módulos específicos para nossas necessidades.
Oferecemos três meses de experiência na empresa. Caso seja efetivado, o contratado ganhará um salário maior, com todos os benefícios previstos em lei.
É necessário que o candidato more na Grande São Paulo, e que tenha conhecimento avançado em programação PHP e em manipulação e alteração do programa XOOPS.
Favor enviar currículos, o quanto antes, para o endereço eletrônico LINGVA@LIVE.COM
Estamos no aguardo...gratos!
Lingva Assessoria Linguística Ltda
Date: Saturday, 10 Jan 2009 19:50
Olá pessoal.
Procurava um módulo de destaques e encontrei o Mastop Go2. Fiz download do mesmo no site da Mastop e consegui instalá-lo perfeitamente. Porém os destaques não são exibidos na página inicial. Aparece somente um pequeno filete de imagem. Por exemplo, se eu fizer upload de uma imagem 300x200 aparece um filede de 2x200 aproximadamente.
Uso Xoops 2.2.3.
Alguma idéia do que possa ser?
Obrigado.
Date: Saturday, 10 Jan 2009 19:26
Este módulo funciona com Xoops 2.3.2?
Date: Friday, 02 Jan 2009 15:05
Bom, o extgallery versão 1.05 permite o envio de fotos diretamente pelo site. O único problema é caso seja necessário enviar muitas fotos de uma vez só, infelizmente ele só envia as fotos uma a uma... você só precisa do FTP para enviar imagens em lote!
Quanto ao myalbum, não me recordo precisamente (faz muito tem que não uso), mas se não me engano ele também envia pelo site.
Agora se quiser mais um para testar, existe o webphoto , o qual ainda não testei, mas que ouvi falar muito bem.
Date: Sunday, 14 Dec 2008 21:26
pessoal. Recentemente instalei o módulo Myconference versão 0.9 e, ao tentar acessar a conferência ele apresenta o seguinte erro: Error Code: 0013 ERROR: Could not query the database. Error: You have an error in your SQL syntax; check the manual that corresponds estou your MySQL server version for the right syntax estou use near '' at line 1. Alguém sabe como posso resolver isto?
Date: Tuesday, 25 Nov 2008 13:48
Pessoal Preciso de uma ajuda urgente! Tenho o XOOPS 2.0.18.1 com o módulo WeBlog que uso para permitir "colunistas" de postarem suas cronicas, porem, de uma hora para outra, sem mais nem menos, o módulo parou de aceitar postagens. Qd colocamos o texto e clicamos em postar, aparece uma mensagem assim: "Desculpe, somente visitantes cadastrados podem postar. Por favor, registre-se para poder postar seus textos" Ou algo muito próximo disso, já que foi traduzido por um amigo meu... Detalhe: meu servidor trocou o PHP para 5 recentemente. Alguem sabe o que pode ser isso? Como resolver? Preciso muito arrumar! Obrigado!
Date: Wednesday, 12 Nov 2008 21:04
Amigos, Gostaria que o player do debaser no bloco "Ouça o arquivo mais visualizado" apareça automaticamente, sem apertar nenhum botão (como na versão 0.93). Isso é possível? Abraços!
Date: Tuesday, 07 Oct 2008 18:09
devo dizer que não entendo nada e queria fazer um blog para meter um flashchat alguem me ajuda por favor meu enderço é damasdp1@hotmail.com Obrigado
Date: Monday, 22 Sep 2008 18:13
Oi galéra chegei neste forun agora, acabei de me cadastrar, sou agora usuário XOOPS tambem , instalei o gerenciador em dois portais meu http://guiacostadosolnet.net e http://lagospublik.com.br estou meio perdido,até agora construí meus portais em HTML puro que para gerenciar é um saco tenho dois blogs que instalei o gerenciador do wordpless que não tenho dificuldades para utilizar,mas o XOOPS me parece meio paulada,diz aí como começar... parece eu a dois anos começando no blogger.
Date: Saturday, 13 Sep 2008 10:57
Sou responsável por um portal - http://pastoralis.com.br - que usa o Smartsection como módulo de artigos (passamos a usar depois que o WF-Section deu um problema que o tirou do ar). Atualizei a versão 2.1 para 2.14, a última, que corrige um antigo problema que permitia o acesso aos artigos offline pelo endereço direto. Mas essa versão ocasiona problemas com os blocos de itens recentes, entre outros, incluindo a visualização dos artigos na página de exibição dos utilizadores. São exibidos artigos com datas de publicação futura, isto é, agendados para publicação posterior (ex. 10/10/2016). Antes isso não acontecia. Fui obrigado a adaptar uma solução com um bloco do whatsnew para colocar na página inicial a fim de contornar parcialmente o problema - http://pastoralis.com.br/pastoralis/html/modules/sections/ -, mas gostaria de resolver essa questão. Mesmo porque, o bloco do whatsnew exibe a data na forma americana, como se pode ver no link. Ao se pedir a visualização de um perfil de algum usuário, os artigos dele com data futura de publicação também ficam disponíveis. O bloco de exibição de categorias em menu, que acompanha o módulo, permanece estático na raiz, não mostrando mais subcategorias de seções que as possuem (só mostra as categorias principais, ainda que o usuário navegue entre subcategorias; antigamente, ele mostrava as categorias-filhas). Alguém conhece alguma solução que substitua o Smartsection sem perda de funcionalidades e realizando backup dele? Cordialmente,
Date: Monday, 25 Aug 2008 13:38
Instalei o XOOPS 2.0.18.1 é rw-banner 1.5, está tudo instalado, mas não consigo mostrar o banner no site, fiz a alteração nos dois arquivos header.php e module.textsanitizer.php, já li bastante documentação, mas não sei aonde adicionar a tal tag " <{$publicidade}> ", tentei colocar no arquivo theme.html dentro do theme defaul, mas não funcionou. Obrigado.
» © All content and copyrights belong to their respective authors.«
» © FeedShow - Online RSS Feeds Reader







