381
kerkyra
Re: Converting email addresses as images
  • 2007/5/25 16:47

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


i did upload the font file in the include folder as described in the readme txt file. And i'm using gd2 in the server for xcgal as well! Perhaps the problem lies somewhere else??? Have you tried it in 2.0.16? Any hints are welcome, i'd like to use this hack!Thanks
www.guidemap.gr - Beta is out...



382
kerkyra
Re: Converting email addresses as images
  • 2007/5/25 6:17

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


I tried that way and it gave me a white picture! Didn't work for me. I'm using XOOPS 2.0.16. :(
www.guidemap.gr - Beta is out...



383
kerkyra
Re: xcgal pagetitle hack ..improve the searchability of your site!
  • 2007/5/24 6:05

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


You can also include one key word of your site in front of all those variables and one in the end. Like "keyword - variable - variable - another keyword".

Xcgal for me is excellent BUT, the main problem of the module is the way it shows the pictures. Before the alt text you can see that it only shows watermark.php (if you are using watermarking) for each picture and if you try to save it in mozilla, it will be saved as watermark.php where as if you try the same in ie it will be saved as watermark.php.jpg.

I think it is essential to show the type of the picture and the path where it is stored so that google will not see this as duplicate data too.

And one more idea is to show toolbars or resize the picture in case its too big to show when, open in full size (new window).

Apart from those details for usability and SEO xcgal rocks

I also did one hack to edit the details of the picture you are viewing only so that you wont have to edit all of the album images to edit just one. Its not perfect but its working...i can send it to you if you are interested. perhaps you can make it even better Cheers
www.guidemap.gr - Beta is out...



384
kerkyra
Re: xcgal pagetitle hack ..improve the searchability of your site!
  • 2007/5/23 8:45

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


hallo there and thanks for the great hack. I'm trying to alter the xcgal_display.html file so that when a picture is displayed the alt text would show the title of the picture the description and the album name.

so far i only managed to show the pic_title. Any hints on how to show the album title as well as the picture description.

this is the change i did in the file
Quote:

alt="<{$pic_title}> - <{$pic_caption}> - <{$album_name}>"


This is essential for improving the searchability of the our sites as till now the xcgal module in the alt text for every picture, displays the text 'Click for full size' or something like that. So google sees only that message for every pic and doesnt index any of them.

If anybody could tell how to show the album name and picture description that would be great. Thanks
www.guidemap.gr - Beta is out...



385
kerkyra
Re: CBB and Google PageRanking
  • 2007/4/21 18:03

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


I didn't find the link but i did find the text regarding XOOPS and SEO

Quote:

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
1. Look for the code that generates you meta keyword data, it should look something like this;

content="<{$xoops_meta_keywords}>"

1. What we are going to do here is add the page title tag so that this meta data is at least partially unique.

2. Change this code to read;

content="<{$xoops_pagetitle}>, <{$xoops_meta_keywords}>"

Meta Description
1. Look for the code that generates you meta description data, it should look something like this;

content="<{$xoops_meta_description}>"

1. What we are going to do here is add the page title tag so that this meta data is at least partially unique.

2. Change this code to read;

content="<{$xoops_pagetitle}>, <{$xoops_meta_description}>"

Page Title Component Order
1. Look about a dozen lines down from the top for a line that looks like this;

<title><{$xoops_sitename}> - <{$xoops_pagetitle}></title>

1. 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

2. Change this code to read;

<title><{$xoops_pagetitle}> - <{$xoops_sitename}></title>

Page Title In H1 Tags
1. Move down past the items contained in the head tags and look for a line that looks like this;

<body>


1. Then immediately after it add the following;

<noscript><h1><{$xoops_pagetitle}></h1></noscript>

1. 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
1. 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"

1. 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
1. Scroll to the bottom of your theme.html file, and look for the following tag;

<{$xoops_footer}>

1. 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.
1. Not all modules actually generate page titles, meaning that code will need to be added to do so.

2. Generation of individual page titles is done on a per module basis, so there is no one central point where this can be modified.

3. 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.


hope it helps
www.guidemap.gr - Beta is out...



386
kerkyra
Re: CBB and Google PageRanking
  • 2007/4/21 17:57

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


I think the problem lies in the first lines of the pages where it shows category>forum etc. I think Google see those pages as duplicate data and ignores them (it might ever penaltize them) i'm not sure of course it is just what i found out on a text regarding XOOPS and SEO(sorry but i cant remember where exactly - i have no link). I'll try to find it again and tell you guys.

Moreover as i remember it pointed out some patches for the module 'articles' for example.

Quote:

If you have set Meta Robots option to "index,follow" under Preferences »» Meta Tags and Footer, be sure to add the following 3 lines into article.php (all versions), newsbythisauthor.php (new version):




//index nofollow
$meta_robots = str_replace( ',follow' , ',nofollow' , $xoopsTpl->get_template_vars( "xoops_meta_robots" ) ) ;
$xoopsTpl->assign( "xoops_meta_robots" , $meta_robots ) ;

before

include_once XOOPS_ROOT_PATH.'/footer.php';
?>

This will tell the robots to index your pages ONLY, not to follow any other links in the article, including "send to a friend", "print", "pdf", and other links.

Xoops default settings will allow the robots to index your page, then to print the page and to make a pdf version of the page - three versions of the same document. You could easily get penalized by Google for duplicate contents.

The issue has been brought to Herve's attention, and hopefully a new version will incorporate the index,nofollow rule.

credit: the index,nofollow idea is from GIJOE's piCal module.


I did those tweeks but unfortunatelly before i install protector. Someone had the chance to use sql injection or something and erased all my articles. So i dont know if this works.

Finally there is quite a number of modules that dont get a good ranking. I suppose it should be due to the 'duplicate data' factor that google looks into... I hope we will resolve this sooner or later. Its quite a shame not to get a good ranking at least for the forum which in my case is the one my guests visit the most! Anyways got to go now :) thanks for replying wizanda.
www.guidemap.gr - Beta is out...



387
kerkyra
CBB and Google PageRanking
  • 2007/4/19 8:18

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


Hallo there,

i noticed that in CBB topics and posts Google gives 0 rank. Anybody has a suggestion for this? The forum is a great deal for a site and its a great loss if google ignores its content. Any suggestions-hacks are welcome. The same happens in here as well! The page rank when reading a topic in the forum is 0.

Thanks
www.guidemap.gr - Beta is out...



388
kerkyra
Re: Making tiny the default xoops editor...
  • 2006/12/23 10:24

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


thank you veeryyy much! nice one!
www.guidemap.gr - Beta is out...



389
kerkyra
Making tiny the default xoops editor...
  • 2006/12/22 16:17

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


is there any way to do that? Thanks
www.guidemap.gr - Beta is out...



390
kerkyra
Re: xoops_trusted_path
  • 2006/11/30 10:56

  • kerkyra

  • Just can't stay away

  • Posts: 553

  • Since: 2005/2/14


i'll do that and i'll let you know guys! Thanks for your help!

(by the way not using any dublicatable modules or the hack from gijoe's or XOOPS Cube just the XOOPS 2.0.15 version with the multilanguage hack which I've already used again with no probs!)
www.guidemap.gr - Beta is out...




TopTop
« 1 ... 36 37 38 (39) 40 »



Login

Who's Online

300 user(s) are online (200 user(s) are browsing Support Forums)


Members: 0


Guests: 300


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits