Thirteen Ways To Add SEO To Gallery2
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
Below are thirteen ways to make Gallery2 search engine optimized. I hope this is a starting point for those that want to make Gallery2 more SEO. I have not seen any centralized location that listed how to add SEO to Gallery2. There are few message threads in the forum that list one or two of these suggestions (and most of these are copied from them), but I have not seen any that list this many in one message or thread. Please remember that the SEO doesn't make you show up higher in search listings, but makes it easier for this to happen. Having other people link to your pages is always the best thing you can do. Any additions to this list would be helpful. If you have questions or would like clarification, please ask. Some of the suggestions on this list involve editing template and class files, do this at your own risk. Gallery2 administrators recommend copying the file you are editing to the subdirectory called "local" and editing the file there. Gallery2 will then use that file instead of the original. This also means that upgrades will not overwrite your edited file. In the examples below, I am using Gallery 2.2.3. NOTE: Any new installations should look into the Tags Module I have not used this module, but it appears to have more mature administrative features, such as parent-child relationships, bulk editing, and inline editing while browsing. --Stephen - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1. Activate URL Rewrite plugin 2. Make items in keyword and other dynamic albums point to item's permalink 3. Use keywords in filenames I recommend you use a bulk file renaming tool. On Windows, I use the free Bulk Rename Utility at http://www.bulkrenameutility.co.uk/. It allows all sorts of file naming options including regular expressions, recursive file renaming of files in subdirectories, add suffixes, add prefixes and many, many more. It's a little overwhelming when you first load the program. Thankfully, you can see the actual before/after of the file names, so you don't have to guess at what you are doing. If anyone know of an OS-X bulk renaming tool, please contact me. My naming convention for a file name is photo_set-photo_subset-people_or_objects. For a photo of my parents, my bride and myself at my wedding, I used wedding-party-rachel-stephen-richard-mary-james.jpg 4. Create keyword-dense titles and keywords for each item Upon wanting to post over five hundred photographs of my honeymoon in Ireland to my Gallery2, I decided to write an automated PHP script that goes through the database and does the following: After creating the title, I re-run the php script that then adds keywords. It does the following: Now you can do all this manually and probably get better results by fine-tuning each item's keywords and title, but in this instance, I did not want to enter thousands of keywords and possibly misspell them. The script has no warranty for anything it does to your system. Before using it, backup your database. After the script has run, the database cache will need to deleted at Site Admin >> Maintenance >> Delete database cache. Visit my media production blog for more information on the Gallery2 titles and keywords search engine optimization script. 5. Optimize robots.txt 6. Remove duplicate information - EXIF and slideshows You will want to prevent duplicate content because of EXIF details mode switching. On each photograph under "Photo Properties," you will see a Summary / Details option. This is almost all duplicate content, and adds variables to your URL. To remove the EXIF mode switching HTML, comment out the following lines in /modules/exif/templates/blocks/ExifInfo.tpl: {if isset($block.exif.LoadExifInfo.mode)} <div> {if ($block.exif.LoadExifInfo.mode == 'summary')} {g->text text="summary"} {else} <a href="{g->url arg1="controller=exif.SwitchDetailMode" arg2="mode=summary" arg3="return=true"}"> {g->text text="summary"} </a> {/if} {if ($block.exif.LoadExifInfo.mode == 'detailed')} {g->text text="details"} {else} <a href="{g->url arg1="controller=exif.SwitchDetailMode" arg2="mode=detailed" arg3="return=true"}"> {g->text text="details"} </a> {/if} </div> {/if} LINE 16 - AFTER {* {if isset($block.exif.LoadExifInfo.mode)} <div> {if ($block.exif.LoadExifInfo.mode == 'summary')} {g->text text="summary"} {else} <a href="{g->url arg1="controller=exif.SwitchDetailMode" arg2="mode=summary" arg3="return=true"}"> {g->text text="summary"} </a> {/if} {if ($block.exif.LoadExifInfo.mode == 'detailed')} {g->text text="details"} {else} <a href="{g->url arg1="controller=exif.SwitchDetailMode" arg2="mode=detailed" arg3="return=true"}"> {g->text text="details"} </a> {/if} </div> {/if} *}
You can optionally make, the details mode the default with the following: LINE 38 - AFTER Next, I would say that this is the least important item on this list, but you want to be sure to remove as much duplicate content as possible, then to remove the slideshow: 7. Remove multiple sizes 8. Enable Google Sitemap 9. Optimize permalinks Comment out the urlParams call in /modules/core/classes/GalleryTheme.class if (!empty($theme['parents'][$i + 1]['id'])) { $urlParams['highlightId'] = $theme['parents'][$i + 1]['id']; } else if ($itemId && ($i + 1) == count($theme['parents'])) { $urlParams['highlightId'] = $itemId; } LINE 1408 - AFTER /* if (!empty($theme['parents'][$i + 1]['id'])) { $urlParams['highlightId'] = $theme['parents'][$i + 1]['id']; } else if ($itemId && ($i + 1) == count($theme['parents'])) { $urlParams['highlightId'] = $itemId; } */
Remove arg3 in /modules/keyalbum/templates/blocks/KeywordLinks.tpl {foreach from=$block.keyalbum.keywords item=keyword} <a href="{g->url arg1="view=keyalbum.KeywordAlbum" arg2="keyword=$keyword" arg3="highlightId=`$item.id`"}">{$keyword}</a> {/foreach} LINE 15 - AFTER {foreach from=$block.keyalbum.keywords item=keyword} <a rel="tag" href="{g->url arg1="view=keyalbum.KeywordAlbum" arg2="keyword=$keyword" }">{$keyword}</a> {/foreach} NOTE: I have also added rel="tag" which is a microformat for tags and keywords. I know that Technorati and WordPress utilize this markup. 10. Make item titles into heading text and links LINE 121 - BEFORE <p class="giTitle"> {if $child.canContainChildren && (!isset($theme.params.albumFrame) || $theme.params.albumFrame == $theme.params.itemFrame)} {* Add prefix for albums unless imageframe will differentiate *} {g->text text="Album: %s" arg1=$child.title|markup} {else} {$child.title|markup} {/if} </p> LINE 121 - AFTER <h2 class="giTitle"> {if $child.canContainChildren && (!isset($theme.params.albumFrame) || $theme.params.albumFrame == $theme.params.itemFrame)} {* Add prefix for albums unless imageframe will differentiate *} <a href="{g->url arg1="view=core.ShowItem" arg2="itemId=`$child.id`"}"> {g->text text="Album: %s" arg1=$child.title|markup}</a> {else} <a href="{g->url arg1="view=core.ShowItem" arg2="itemId=`$child.id`"}"> {$child.title|markup}</a> {/if} </h2>
11. Prevent duplicate base URLs for your Gallery # Set the default handler. DirectoryIndex main.php It should be said that not all hosts allow you do change the DirectoryIndex. Also, this also might need to be done to get rid of "main.php" in the breadcrumb. I'm not sure if I changed this myself or gallery set it automatically, but on line 177 of /config.php, I have: $gallery->setConfig('baseUri', 'www.mydomain.com/photos/'); In a related note, some search engines will differentiate www.yourdomain.com and yourdomain.com. This not good and could result in duplicate content. You can search Google via site:yourdomain.com and find out how your site is currently listed. You want to be listed in the same format that external links and internal links are linking to your site. To redirect pages without "www" to a page with the prefix, add the following lines to the top of your .htaccess: RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] If you are hosting, your Gallery2 in a subdirectory (e.g.- photos), use this: RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/photos/$1 [R=301,L]
12. Add META tags to your Gallery2 pages LINE 19 - BEFORE {* If Gallery doesn't provide a header, we use the album/photo title (or filename) *} {if empty($head.title)} <title>{$theme.item.title|markup:strip|default:$theme.item.pathComponent}</title> {/if} LINE 19 - AFTER {* If Gallery doesn't provide a header, we use the album/photo title (or filename) *} {if empty($head.title)} <title>{$theme.item.title|markup:strip|default:$theme.item.pathComponent}</title> {/if} <meta name="keywords" content="{$theme.item.keywords|markup:strip|default:$theme.item.pathComponent}" /> <meta name="description" content="{$theme.item.description|markup:strip|default:$theme.item.pathComponent}" /> Note: The above is only an addition of the meta tags. 13. Optimize page title Add lines in /themes/matrix/templates/theme.tpl {if empty($head.title)} <title>{$theme.item.title|markup:strip|default:$theme.item.pathComponent}</title> {/if} LINE 14 - AFTER {if empty($head.title)} <title>{$theme.item.title|markup:strip|default:$theme.item.pathComponent} {if $theme.parent.title} :: {$theme.parent.title|markup:strip|default:$theme.parent.pathComponent} {/if} :: Title of Site</title> {/if}
14. Create SEO page numbers |
|
skunker
Joined: 2005-02-04
Posts: 344 |
![]() |
Very timely info. Thank you so much for adding this! |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
great thread! when you talk seo for photo gallery software, you have to think about the gallery2 image alt text... one of the few threads that i've seen on the subject is this one: http://gallery.menalto.com/node/62170 i can't get the code in that thread to work, i wish that it was a documented a little better. afaik, with the default g2 install, the only alt text is the name of the jpg. |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
@osv My alt text is the title of the item. I usually think of descriptions as being a few sentences. Do you think it's a good idea to link multiple sentences with one link? It might degrade the quality of the keywords. Also, are you proposing the alt text be the description on the item's permalink page or in the navigation (in it's parent album)? If you are referring to the item's page, then you'll be duplicating the same content on the same page. I think it would make the most sense to include the item's description in the navigation (in it's parent album), especially if similar keywords were mentioned across multiple items in an album. --Stephen |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
any way that you do it there will be duplication, but i think that you are right about the length of the descriptions being a bit much for alt text... the album keywords could be an issue as well... would you be willing to share how you made the title of the item the alt text? that may be the best solution. one important factor in google image search ranking is the proximity of the text to the image. i'm brand new to g2, so i'm not up on where the permalink falls in the equation, although i have read speculation that it has the potential to create a duplicate content situation? |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
@osv I have not customized my Gallery2 to have titles as the alt text. I believe it is the default. The default title however is the name of the file, so I'm guessing that you haven't added your own title to each image and have let Gallery make the filename into the title. That's a good point about the proximity to the image. When I usually think about SEO, I don't think about image search or wanting to show up high in image search. I tend to think about the main search. --Stephen |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
i don't know what the default titles are, because i always put in custom titles for every image(aka every image page)... what i'm seeing is the name of the pic being the same as the alt text for the pic... sounds like we are looking at different pages? EDIT: turns out that there are a couple of choices for where the default titles come from, but i can't remember where those choices are located in the gallery software. for image search feasibility, you have to evaluate the sector you are in... most of the time there are more search results returned in the regular google search, so it will be harder to rank there... look for the gallery2 site andrewprokos.com, search term "new york photos": google search: front page, out of 50 million results, outstanding! if you look at andrewprokos.com, the seo is good for google search, but really weak for google image search, because he doesn't have any photo names per se, nothing that says "jpg"... on a side note, you should also open up the directory the photos are in for public browsing, the search engines can find the content easier. i'm desperately trying to figure out how he mapped out his site structure, because there is no "gallery2" or "index.php/main.php" in his page titles... getting rid of the g2 garbage is another aspect of seo that could be covered in this thread. EDIT EDIT: great, the forum software bumped this post out of sequence when i edited it :-/ |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
@osv Getting rid of the index.php/main.php is this number 11. Prevent duplicate base URLs for your Gallery # Set the default handler. getting rid of the g2 garbage is this number 9. Optimize permalinks Comment out the urlParams call in /modules/core/classes/GalleryTheme.class Aren't these what you are referring to? That's the way it is on my site. Home is http://www.smjdesign.com/photos/ not http://www.smjdesign.com/photos/main.php --Stephen |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
thanks smj, i already had the default handler set, but per your post for #11, i was able to remove main.php from the breadcrumb: still working on the term "urlParams" in that file. i guess that this has to be spelled out exactly for the dummies like me who can't write code :-/ |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
It is possible that you hosts doesn't allow you to change the DirectoryIndex. Also, the order of htaccess is very important and the DirectoryIndex directive should be at the top. --Stephen |
|
francisca
Joined: 2005-10-29
Posts: 14 |
![]() |
This tutorial is quite excellent. Question... as you state the permalink points to a 'filename', are there examples of this anywhere? I have been searching and searching for it suse, examples, anything, but can't find. Am trying to learn how to point to an image, object, entity, filename, whatever... using this /f/ function. Or is this not the correct use? From what I have read, G2 should do this. Help??? ................................. 3. Use keywords in filenames |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
@francisca I don't know the use of the the permalink module's "/f/%filename%.JPG", but I know that you can change the URL of a filename ("/v/%album%/%filename%.JPG") by changing the name (not the title) in "Edit Photo" --Stephen |
|
francisca
Joined: 2005-10-29
Posts: 14 |
![]() |
Ah, thank you for your response. Yes, I have done as you indicated for this kind of 'access' to the image. That works. What I am trying to find ut is how the /f/ behaves. For the life of me have not been able to locate examples of this... yes it is sitting smack in the middle of the Site Admin/URL Rewrite panel. Thank you for this very fast resposne. f smjdesign wrote:
@francisca |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
fwiw, you can replace the "f" or the "v" or any of those letters with a word, or another letter... just don't use the replacement item in more than one place. i have my own dedicated windows server, and since it doesn't have native url rewriting capability, i have to use something like the helicon ISAPI_Rewrite 2.x module... that version of the module is old, it's a proprietary format, and it does not recognize the standard apache rewrite text, for instance a non-www to www rewrite(step #11 above)is: it can only utilize httpd.ini, not .htaccess, so things that were created for .htaccess have to go in the httpd.ini, and i don't know if they are in the proper vernacular to begin with, for instance is this helicon 2.x-compatible: long story short, doing this seo on a windows server is a nightmare... i've re-installed gallery2 from scratch multiple times, and i can't get rid of those stupid highlights in the breadcrumbs, even after deleting the urlParams in gallerytheme.class... so ymmv with windows. |
|
francisca
Joined: 2005-10-29
Posts: 14 |
![]() |
Thank you for your response. Yes, I have played with changing the 'v' to other characters and strings. This is going to sound moronic, but what does the /f/%filename% actually call, or do? What 'filename' does it run? I am trying to learn how to have it call an image name, item name, object name. Like permalinks work for albums, I'd like to figure out to have each image, preferably a sized version, reachable the same way via a permalink call. Thoughts? Really appreciate your response to this. osv wrote:
fwiw, you can replace the "f" or the "v" or any of those letters with a word, or another letter... just don't use the replacement item in more than one place. |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
having spent the last week pouring over this forum, my uneducated impression is that those weird /f/%-type letters were created in order to obtain the fastest possible operation of the database... they don't serve any useful seo or organizational purpose that i can figure out. |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
Excellent thread and some really good ideas. The ALT tags for images is a MUST. Google is really big on these. Be as descriptive as you can within reason (DO NOT SPAM THE TAGS). Also, adding the meta description and keywords can help some too. Although Google does not use the meta keywords to index your site, it does use the description somewhat. It will highlight words in the description that match your query. Live/MSN still use meta keywords. Again, thanks for the tips. There's a lot of good stuff there that most of us wouldn't have thought about. ______________________________________________ |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
big problem with duplicate content in the google search engine... it seems that there are two copies of all my gallery pages, the dupes have "?g2_jsWarning=true" in the link... this is a disaster. has anyone seen this before? here are the search results, they will be gone shortly because i deleted the links with google webmaster tools: http://www.google.com/search?q=site:dragracingtv.com&hl=en&start=100&sa=N |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
@osv I'm guessing its your Javascript sidebar. That's the only Javascript on your screen. This is in your actual HTML: <div class="gbBlock giWarning"> --Stephen |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
Stephen is correct. Its your sidebar. Put your mouse over the link on one of those pages for the sidebar. ______________________________________________ |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
thank you both very much, i'm running the carbon theme... so googlebot can't parse the js correctly? i'll ask this question over on the theme forum. |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
osv wrote:
thank you both very much, i'm running the carbon theme... so googlebot can't parse the js correctly? i'll ask this question over on the theme forum. No. Spiders (not just Google) do not process JavaScript. ______________________________________________ |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
it was pointed out to me that i have not just the dhtml sidebar, but also a second dhtml menu, on the same page... dhtml uses javascript. i have been able to confirm that this dupe content is an issue with the carbon theme, at the minimum... here are two pages from the creator of the carbon theme, mincel... notice how both are ranked in the google search engine: cutting to the chase, i guess that i have two options: |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
pursuant to the above :-/ here is how to delete dupe content pages in the search engines... as an aside, you might also want to consider using a 301 redirect, if there are links or google pr pointing to the dupe pages. so far just google and yahoo allow you to do this, what you have to do is authenticate your sites with them, by uploading some code so that they can see it. you can do a search for all of your pages in the search engines: site:mysite.com, or site:www.mysite.com https://www.google.com/webmasters/tools/docs/en/about.html |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
All the good engines use robots.txt. Google, Yahoo, Ask, MSN/Live. Outside of those, who cares. They power most of the other engines out there. osv wrote:
https://www.google.com/webmasters/tools/docs/en/about.html Currently only Google & Yahoo offer anything for webmasters to maintain sitemaps and other information. Hopefully MSN/Live will jump on board with something. If you don't have your FREE account setup with these two, you have been missing out. Google has some of the best free tools. ______________________________________________ |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
they will all read the robots.txt, but they don't all interpret it the same way... for instance, some search engines don't allow wildcards at all(per the original robots.txt standard), while others process wildcard commands differently. in this case, i don't want any url with a "?" in it, which google fortunately has a wildcard command for: User-agent: Googlebot i believe that the yahoo version is the same syntax?: here is my robots.txt, substitute "gallery2" for "media", if you have the standard g2 install... and as smj mentioned in step 5 above, be careful with this: |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
osv wrote:
they will all read the robots.txt, but they don't all interpret it the same way... for instance, some search engines don't allow wildcards at all(per the original robots.txt standard), while others process wildcard commands differently. That's not true with the major search players. Google, MSN/Live.com, Yahoo and Ask all support wildcards in the robots.txt. Note that most of them point you to http://www.robotstxt.org/ for more information. Google Yahoo MSN/Live.com ASK One thing that needs to be considered when using a robots.txt is that most search engines PREFER that you specify the user agent rather than using the *. User Agents: All that said, I'll reiterate this point. These are the major engines and the providers of search data to MANY others. These are the guys to optimize for. And just for kicks, here's Google's robots.txt: ...I love threads like this. ______________________________________________ |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
Addict wrote:
Google, MSN/Live.com, Yahoo and Ask all support wildcards in the robots.txt. Note that most of them point you to http://www.robotstxt.org/ for more information. that is not correct, both msn/live and ask do not officially support wildcards, which is why i did not list them if you test the robots.txt that i posted here on any validator, it will fail, because it's not legal to the original robots.txt standards... but it will pass 100% on the google robots.txt validator. putting user agents in front of wildcard commands might be a good idea, but the only thing that i care about is google, yahoo, and msn/live, and if the latter won't agree with what the first two already agree on, well, i can live with that |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
osv wrote:
that is not correct, both msn/live and ask do not officially support wildcards, which is why i did not list them You are correct about MSN/Live.com. They are still a good ways behind the others. They don't even support sitemaps yet (as far as I know). Pretty lame. Quote:
putting user agents in front of wildcard commands might be a good idea, but the only thing that i care about is google, yahoo, and msn/live, and if the latter won't agree with what the first two already agree on, well, i can live with that True. True. Yahoo & Google support the addition of SITEMAP: in the robots.txt now. Not sure what the others will do when they hit that. ______________________________________________ |
|
maravizzo
![]()
Joined: 2005-09-11
Posts: 49 |
![]() |
Someone in another post suggests to add in the TITLE tag not only the item title, but also the parent item title (if any). <title>{$theme.item.title|markup:strip|default:$theme.item.pathComponent}</title> And modify it in this way: <title>{$theme.item.title|markup:strip|default:$theme.item.pathComponent} {if $theme.parent.title} - {$theme.parent.title|markup:strip|default:$theme.parent.pathComponent} {/if} </title> Matteo ------------------------------------------ |
|
maravizzo
![]()
Joined: 2005-09-11
Posts: 49 |
![]() |
Hi again! I need some help to get rid of main.php on my gallery at www.zorring.org... Thank you ------------------------------------------ |
|
skunker
Joined: 2005-02-04
Posts: 344 |
![]() |
Does anyone think there could be SEO issues with having our URLS like: jpg.html ? I seem to see some rumblings about this over at webmasterworld as how it may cause conflicts with Google Images or even the vanilla Google search. Can anyone confirm that their "jpg.html" URLs are indeed being correctly indexed? Thanks. |
|
osv
Joined: 2007-09-19
Posts: 26 |
![]() |
maravizzo: http://www.google.com/search?hl=en&q=main.php+site%3Awww.ruraljourney.com does not show the main.php on any urls? did i do the search correctly? i'm confused about the tip you gave, i need to figure that one out, thanks skunker, i can confirm that jpg.html will index the web page url correctly in google search, but google image search is another question... it's very flakey, it doesn't update often, but i'm hoping that the pics will show up there. |
|
bollywoodguru
![]()
Joined: 2007-11-26
Posts: 4 |
![]() |
this is really good !! bookmarked for futher use. |
|
maravizzo
![]()
Joined: 2005-09-11
Posts: 49 |
![]() |
Hi back after a long while! For Osv: I didn't have problem with www.ruraljourney.com, that host service is ok and support DirectoryIndex, but the zorring.org host doesn't! Now a question: Bye ------------------------------------------ |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
@maravizzo: --Stephen |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
I use the tags module. Its pretty nice. I haven't seen any increase since I've been using it (or any decrease). It DOES get indexed very well. My gallery PR has been a steady 5 and that hasn't changed since using tags. Always worth a shot. ______________________________________________ |
|
maravizzo
![]()
Joined: 2005-09-11
Posts: 49 |
![]() |
Ok, thanks, I'll test it too! Bye ------------------------------------------ |
|
mridgwel
Joined: 2007-01-27
Posts: 215 |
![]() |
Have you submitted any of these code so they will become (optional?) standard features of the matrix theme? I like the change to the page titles, and ideally I don't want to have to redo these. btw it looks like the page numbers in the rewrite module has been partially implemented - I can't get it to work on dynamic albums... but other than that works great. |
|
micrafty
Joined: 2007-12-27
Posts: 53 |
![]() |
Wow, thank you for this list. It's the first place anyone with a new install should come. I do have a question about alt descriptions for the images. Gallery2 appears to be grabbing the description and using it for longdesc - how do I make it stop? I try to use several sentences for my descriptions and I would think such a long longdesc could be considered keyword stuffing. I'm using 2.2.4. |
|
smjdesign
![]()
Joined: 2007-02-26
Posts: 25 |
![]() |
@ micrafty Are you wanting to disable the ALT attribute in all you images, so that the same description doesn't appear twice? --Stephen |
|
micrafty
Joined: 2007-12-27
Posts: 53 |
![]() |
Here's an example of what I'm getting: Quote:
<img src="/d/53-2/ivy.jpg" width="94" height="150" id="IFid2" class="ImageFrame_image giThumbnail" alt="Ivy" longdesc="One in a series of Victorian era images of girls and flowers. Little Ivy with her dark hair and green dress is just waiting to become part of your latest art project. This downloadable image is the perfect size to use for notecards and postcards."/> It appears that the alt=title and the longdesc=description. Even if I could just change it to the longdesc=summary, it would be better. I think the easiest thing to do would be to not use a longdesc at all. How/where would I delete that part? If I were programming it from scratch (not likely with my skills), I would love for the alt=summary and there to be no longdesc. And here's my site info: Quote:
Gallery version = 2.2.4 core 1.2.0.6 |
|
maravizzo
![]()
Joined: 2005-09-11
Posts: 49 |
![]() |
Hi micrafty, I have very long description form my albums on http://www.ruraljourney.com/italy_travelguide/ , so replacing Description with Summary in longdesc is exactly what I've done. Edit: On line 210 (Gallery version 2.2.4) you should find the following function. Replace getDescription with getSummary in this way: if (!isset($params['longdesc'])) { $longdesc = preg_replace('/[\r\n]+/', ' ', GalleryUtilities::markup($item->getSummary(), 'strip')); if (!empty($longdesc)) { $params['longdesc'] = $longdesc; } }
Editing a class file can't be done in a "local" folder as a template, so you have to check every Gallery update if the new version has overwritten it. Bye bye ------------------------------------------ |
|
micrafty
Joined: 2007-12-27
Posts: 53 |
![]() |
Thank you Matteo. I found another thread yesterday that talks about removing the longdesc completely. What I ended up doing was implementing the removal suggestion and making the alt=item summary. The code follows if anyone else is interested... Quote:
if (!isset($params['alt'])) { Also, according to the other thread another file has to also be changed - modules/core/classes/GalleryPhotoItem.class |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
Fixed in this revision: http://gallery.svn.sourceforge.net/viewvc/gallery?view=rev&revision=16885 Dave |
|
Addict
Joined: 2003-07-23
Posts: 27 |
![]() |
floridave wrote:
Fixed in this revision: http://gallery.svn.sourceforge.net/viewvc/gallery?view=rev&revision=16885 Excellent. ______________________________________________ |
|
jens_k
Joined: 2007-01-28
Posts: 244 |
![]() |
1) After the upgrade to v2.2.4 one of my changes regarding to SEO does not work anymore: For optimizing the links to the pages and eliminating the /updates/?g2_page=2 in the URI I have added the keyword page in /modules/dynamicalbum/modules.inc /** * @see GalleryModule::getRewriteRules */ /* -- JK -- SEO optimizing whole func */ function getRewriteRules() { return array( array('comment' => $this->translate('Updates Album'), 'match' => array('view' => 'dynamicalbum.UpdatesAlbum'), 'pattern' => 'updates/%page%', 'help' => $this->translate('Short URL for album of recent items'), 'page' => array('pattern' => '([0-9]*)', 'help' => $this->translate('Page number in a dynamic album'))), array('comment' => $this->translate('Popular Album'), 'match' => array('view' => 'dynamicalbum.PopularAlbum'), 'pattern' => 'popular/%page%', 'help' => $this->translate('Short URL for album of most viewed items'), 'page' => array('pattern' => '([0-9]*)', 'help' => $this->translate('Page number in a dynamic album'))), array('comment' => $this->translate('Random Album'), 'match' => array('view' => 'dynamicalbum.RandomAlbum'), 'pattern' => 'random/%page%', 'help' => $this->translate('Short URL for album of random items'), 'page' => array('pattern' => '([0-9]*)', 'help' => $this->translate('Page number in a dynamic album'))), ); } As the file was not changed by updating the code is still existing. In the SiteAdmin I can not see the additional keyword %page% for the dynamic albums. For my keyalbums this modification still works fine. What can I change in the current version 2.2.4 to implement this SE optimization? 2) At the Navigation on album pages there are still differences between using the Previous/First icon and the directly linked Pages (Page 1 2 3...). Is there a way to eliminate the /1 from the navigation for the first page of every album? Thanks for your support, Gallery version = 2.2.4 core 1.2.0.6 If you want to have a look you can find this gallery at |
|
micrafty
Joined: 2007-12-27
Posts: 53 |
![]() |
Jens, I tried on a new install of 2.2.4 to make that modification and it ended up creating a giant mess. Never did get an answer to what caused the site to break nor a solution to fix it. (There's a thread someplace that I started relating to it.) I'm not happy with leaving it as the default settings, but at least my site is working. |
|
oriolhernan
Joined: 2008-01-08
Posts: 41 |
![]() |
I followed the instructions to improve SEO but I have a problem with it. When I edit a description i can't put html links or any other type of format, only text. It's related that when I edit the description, i save, and then the texts is visualizated in correct form but when I enter again at edit album there's no description in the texts square. The important thing is to recover the use of the format tools at description. |
|
skunker
Joined: 2005-02-04
Posts: 344 |
![]() |
I've been noticing lots of SESSION IDS appended to my URLS. Does anyone know why it does this and how I can get rid of this? Thanks. |
|
EverythingEverywhere
![]()
Joined: 2008-04-25
Posts: 3 |
![]() |
I just installed Gallery2 and imported 2,800 photos from Flickr. The importing script worked great, but the file and folder names are gibberish. Are there any bulk renaming tools I can use which will rename files based on the titles? |
|