• [MOD] Google Friendly Urls For 4images Best Seo Mod 4 0 5 1
Currently:  

Author Topic: [MOD] Google Friendly Urls For 4images Best Seo Mod  (Read 708014 times)

0 Members and 1 Guest are viewing this topic.

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #285 on: June 25, 2009, 02:31:16 PM »
:flag-de: Deutsch


Ich habe den Code komplett zusammengetragen. Demnach ist hier eigentlich alles wichtige nun vorhanden, was in den Thread vorkam. Ich hoffe das ich damit etwas helfen konnte.
Getestet mit 4images 1.7.7


:flag-en: English


I have the code completely together. Accordingly, everything here is important now in place, what happens in the thread. I hope I could help somewhat.
Tested with 4images 1.7.7


:arrow: Installation


Step 1

Open / Öffne: include/sessions.php
Search / Suche
?>
Add before / Füge davor ein
function fixname($text)
{
  return 
strtolower(strtr(
    
$text,
     array(
      
"é" => "e",
      
"è" => "e",
      
"ê" => "e",
      
"à" => "a",
      
"ë" => "e",
      
"â" => "a",
      
"ú" => "a",
      
"ó" => "o",
      
"í" => "i",
      
"á" => "a",

      
//russian UTF8 encoded alphabet (lower and upper cases)
      
"А" => "a",
      
"а" => "a",
      
"Б" => "b",
      
"б" => "b",
      
"В" => "v",
      
"в" => "v",
      
"Г" => "g",
      
"г" => "g",
      
"Д" => "d",
      
"д" => "d",
      
"Е" => "e",
      
"е" => "e",
      
"Ё" => "yo",
      
"ё" => "yo",
      
"Ж" => "zh",
      
"ж" => "zh",
      
"З" => "z",
      
"з" => "z",
      
"И" => "i",
      
"и" => "i",
      
"Й" => "j",
      
"й" => "j",
      
"К" => "k",
      
"к" => "k",
      
"Л" => "l",
      
"л" => "l",
      
"М" => "m",
      
"м" => "m",
      
"Н" => "n",
      
"н" => "n",
      
"О" => "o",
      
"о" => "o",
      
"П" => "p",
      
"п" => "p",
      
"Р" => "r",
      
"р" => "r",
      
"С" => "s",
      
"с" => "s",
      
"Т" => "t",
      
"т" => "t",
      
"У" => "u",
      
"у" => "u",
      
"Ф" => "f",
      
"ф" => "f",
      
"Х" => "h",
      
"х" => "h",
      
"Ц" => "c",
      
"ц" => "c",
      
"Ч" => "ch",
      
"ч" => "ch",
      
"Ш" => "sh",
      
"ш" => "sh",
      
"Щ" => "sch",
      
"щ" => "sch",
      
"Ъ" => "",
      
"ъ" => "",
      
"Ы" => "i",
      
"ы" => "i",
      
"Ь" => "'",
      
"ь" => "'",
      
"Э" => "e",
      
"э" => "e",
      
"Ю" => "yu",
      
"ю" => "yu",
      
"Я" => "ya",
      
"я" => "ya",
  )));
}
function 
get_category_url($cat_id,$cat_url '')
{
  global 
$site_db$cat_cache;
  static 
$urlname = array(); //cache names in this array
  
if (isset($urlname[$cat_id]))
    return 
$urlname[$cat_id];
  if (!empty(
$cat_cache))
  {
    
$row['cat_name'] = @$cat_cache[$cat_id]['cat_name'];
    
$row['cat_parent_id'] = @$cat_cache[$cat_id]['cat_parent_id'];
  }
  else
  {
    
$sql "SELECT cat_name,cat_parent_id FROM ".CATEGORIES_TABLE." WHERE cat_id = '".$cat_id."'";
    
$row $site_db->query_firstrow($sql);
  }
  
$row['cat_name'] = fixname($row['cat_name']);
  
$cat_url  '-'.str_replace('+','-',urlencode($row['cat_name'])).'-'.$cat_id.$cat_url;
  
// if you want full path of category in url, put next line in comment
  
$row['cat_parent_id'] = 0;
  if(
$row['cat_parent_id'] != 0)
  {
    
$urlname[$cat_id] = get_category_url($row['cat_parent_id'],$cat_url); 
  }
  else
  {
    
$urlname[$cat_id] = $cat_url;
  }
  return 
$urlname[$cat_id];
}
function 
get_image_url($image_id)
{
  global 
$site_db;
  static 
$urlname = array(); //cache names in this array
  
if (isset($urlname[$image_id]))
    return 
$urlname[$image_id];
  
  
$sql "SELECT cat_id,image_name FROM ".IMAGES_TABLE." WHERE image_id = '".$image_id."'";
  
$row $site_db->query_firstrow($sql);
  
$row['image_name'] = fixname($row['image_name']);
  
// if you want comlpete path to image in url, remove comment from following line
  //$urlname[$image_id] = get_category_url($row['cat_id']).'-'.str_replace('+','-',urlencode($row['image_name'])).'-'.$image_id;  
  
$urlname[$image_id] = '-'.str_replace('+','-',urlencode($row['image_name'])).'-'.$image_id;
  return 
$urlname[$image_id];
}


Find / Finde
  function url($url$amp "&") {
    global 
$l;
    
$dummy_array explode("#"$url);
    
$url $dummy_array[0];

    if (
$this->mode == "get" && strpos($url$this->session_id) === false) {
      
$url .= strpos($url'?') !== false $amp "?";
      
$url .= SESSION_NAME."=".$this->session_id;
    }

    if (!empty(
$l)) {
      
$url .= strpos($url'?') !== false $amp "?";
      
$url .= "l=".$l;
    }

    
$url .= (isset($dummy_array[1])) ? "#".$dummy_array[1] : "";
    return 
$url;
  }


Replace with / ersetze mit
/* ORIGINAL CODE
  function url($url, $amp = "&") {
    global $l;
    $dummy_array = explode("#", $url);
    $url = $dummy_array[0];

    if ($this->mode == "get" && strpos($url, $this->session_id) === false) {
      $url .= strpos($url, '?') !== false ? $amp : "?";
      $url .= SESSION_NAME."=".$this->session_id;
    }

    if (!empty($l)) {
      $url .= strpos($url, '?') !== false ? $amp : "?";
      $url .= "l=".$l;
    }

    $url .= (isset($dummy_array[1])) ? "#".$dummy_array[1] : "";
    return $url;
  }
*/
  
function url($url$amp "&") {
    global 
$l$user_info;
    
$dummy_array explode("#"$url);
    
$url $dummy_array[0];
    
$url str_replace('&''&'$url);
    if (!
defined('IN_CP')) {
      if (
strstr($url'index.php')) {
        if (
strstr($url'template=')) {
          
preg_match('#template=([0-9a-zA-Z_-]+)&?#'$url$matches);
          if (isset(
$matches[1])) {
            
$split explode('?'$url);
            
$url $split[0];
            
$query = @$split[1];
            
$url   str_replace('index.php''page-'.$matches[1].'.htm'$url);
            
$query str_replace('template='.$matches[1].'&'''$query);
            
$query str_replace('&template='.$matches[1], ''$query);
            
$query str_replace('template='.$matches[1], ''$query);
            if (!empty(
$query)) {
              
$url .= '?' $query;
            }
          }
        }
        else {
          
$url str_replace('index.php''./'$url);
        }
      }
      elseif (
strstr($url'search.php')) {
        if (
strstr($url'page=')) {
          
preg_match('#page=([0-9]+)&?#'$url$matches);
          if (isset(
$matches[1])) {
            
$split explode('?'$url);
            
$url $split[0];
            
$query = @$split[1];
            
$url   str_replace('search.php''search.'.$matches[1].'.htm'$url);
            
$query str_replace('page='.$matches[1].'&'''$query);
            
$query str_replace('&page='.$matches[1], ''$query);
            
$query str_replace('page='.$matches[1], ''$query);
            if (!empty(
$query)) {
              
$url .= '?' $query;
            }
          }
        }
        else {
          
$url str_replace('search.php''search.htm'$url);
        }
      }
      elseif (
strstr($url'lightbox.php')) {
        if (
strstr($url'page=')) {
          
preg_match('#page=([0-9]+)&?#'$url$matches);
          if (isset(
$matches[1])) {
            
$split explode('?'$url);
            
$url $split[0];
            
$query = @$split[1];
            
$url   str_replace('lightbox.php''lightbox.'.$matches[1].'.htm'$url);
            
$query str_replace('page='.$matches[1].'&'''$query);
            
$query str_replace('&page='.$matches[1], ''$query);
            
$query str_replace('page='.$matches[1], ''$query);
            if (!empty(
$query)) {
                
$url .= '?' $query;
            }
          }
        }
        else {
          
$url str_replace('lightbox.php''lightbox.htm'$url);
        }
      }
      elseif (
strstr($url'categories.php')) {
        if (
strstr($url'cat_id=') && strstr($url'page=')) {
          
preg_match('#cat_id=([0-9]+)&?#'$url$matches1);
          
preg_match('#page=([0-9]+)&?#'$url$matches2);
          if (isset(
$matches1[1]) && isset($matches2[1])) {
            
$split explode('?'$url);
            
$url $split[0];
            
$query = @$split[1];
            
$url   str_replace('categories.php''cat'.$matches1[1].'.'.$matches2[1].'.htm'$url);
            
$query str_replace('cat_id='.$matches1[1].'&'''$query);
            
$query str_replace('&cat_id='.$matches1[1], ''$query);
            
$query str_replace('cat_id='.$matches1[1], ''$query);
            
$query str_replace('page='.$matches2[1].'&'''$query);
            
$query str_replace('&page='.$matches2[1], ''$query);
            
$query str_replace('page='.$matches2[1], ''$query);
            if (!empty(
$query)) {
              
$url .= '?' $query;
            }
          }
        }
        elseif (
strstr($url'cat_id=')) {
          
preg_match('#cat_id=([0-9]+)&?#'$url$matches);
          if (isset(
$matches[1])) {
            
$split explode('?'$url);
            
$url $split[0];
            
$query = @$split[1];
            
$cat_url get_category_url($matches[1]);
            
$url   str_replace('categories.php''cat'.$cat_url.'.htm'$url);
            
$query str_replace('cat_id='.$matches[1].'&'''$query);
            
$query str_replace('&cat_id='.$matches[1], ''$query);
            
$query str_replace('cat_id='.$matches[1], ''$query);
            if (!empty(
$query)) {
              
$url .= '?' $query;
            }
          }
        }
        else {
          
$url str_replace('categories.php''cat.htm'$url);
        }
      }
      elseif (
strstr($url'details.php?image_id=')) {
        if (
strstr($url'image_id=') && strstr($url'mode=')) {
          
preg_match('#image_id=([0-9]+)&?#'$url$matches1);
          
preg_match('#mode=([a-zA-Z0-9]+)&?#'$url$matches2);
          if (isset(
$matches1[1]) && isset($matches2[1])) {
            
$split explode('?'$url);
            
$url $split[0];
            
$query = @$split[1];
            
$url   str_replace('details.php''img'.$matches1[1].'.'.$matches2[1].'.htm'$url);
            
$query str_replace('image_id='.$matches1[1].'&'''$query);
            
$query str_replace('&image_id='.$matches1[1], ''$query);
            
$query str_replace('image_id='.$matches1[1], ''$query);
            
$query str_replace('mode='.$matches2[1].'&'''$query);
            
$query str_replace('&mode='.$matches2[1], ''$query);
            
$query str_replace('mode='.$matches2[1], ''$query);
            if (!empty(
$query)) {
              
$url .= '?' $query;
            }
          }
        }
        else {
          
preg_match('#image_id=([0-9]+)&?#'$url$matches);
          if (isset(
$matches[1])) {
            
$split explode('?'$url);
            
$url $split[0];
            
$query = @$split[1];
            
$url   str_replace('details.php''img'.get_image_url($matches[1]).'.htm'$url);
            
$query str_replace('image_id='.$matches[1].'&'''$query);
            
$query str_replace('&image_id='.$matches[1], ''$query);
            
$query str_replace('image_id='.$matches[1], ''$query);
            if (!empty(
$query)) {
              
$url .= '?' $query;
            }
          }
        }
      }
      elseif (
strstr($url'member.php?action=uploadform'))
      {
        
preg_match('#cat_id=([0-9]+)&?#'$url$matches);
        
$url_cat_id "";
        if (isset(
$matches[1]))
        {
          
$url_cat_id $matches[1];
        }
        
$split explode('?'$url);
        
$url $split[0];
        
$query = @$split[1];
        
$url   str_replace('member.php''upload'.$url_cat_id$url);
        
$query str_replace('cat_id='.$url_cat_id.'&'''$query);
        
$query str_replace('&cat_id='.$url_cat_id''$query);
        
$query str_replace('cat_id='.$url_cat_id''$query);
        
$query str_replace('action=uploadform&'''$query);
        
$query str_replace('&action=uploadform'''$query);
        
$query str_replace('action=uploadform'''$query);
        if (!empty(
$query)) {
            
$url .= '?' $query;
        }
      }
      elseif (
strstr($url'postcards.php?image_id=')) {
        
preg_match('#image_id=([0-9]+)&?#'$url$matches);
        if (isset(
$matches[1])) {
          
$split explode('?'$url);
          
$url $split[0];
          
$query = @$split[1];
          
$url   str_replace('postcards.php''postcard.img'.$matches[1].'.htm'$url);
          
$query str_replace('image_id='.$matches[1].'&'''$query);
          
$query str_replace('&image_id='.$matches[1], ''$query);
          
$query str_replace('image_id='.$matches[1], ''$query);
          if (!empty(
$query)) {
            
$url .= '?' $query;
          }
        }
      }
    }
    if (
$this->mode == "get" && strstr($url$this->session_id)) {
      
$url .= strpos($url'?') !== false '&' '?';
      
$url .= SESSION_NAME."=".$this->session_id;
    }
    if (!empty(
$l)) {
      
$url .= strpos($url'?') ? '&' '?';
      
$url .= "l=".$l;
    }
    
$url str_replace('&'$amp$url);
    
$url .= isset($dummy_array[1]) ? "#".$dummy_array[1] : "";
    return 
$url;
  }


Find / Finde:
$user_profile_link = (!empty($url_show_profile)) ? preg_replace("/{user_id}/"$row['session_user_id'], $url_show_profile) : ROOT_PATH."member.php?action=showprofile&".URL_USER_ID."=".$row['session_user_id'];

Replace with / ersetze mit:
$user_profile_link = (!empty($url_show_profile)) ? str_replace("{user_id}"$row['session_user_id'], $url_show_profile) : ROOT_PATH."member.php?action=showprofile&".URL_USER_ID."=".$row['session_user_id'];

Download the Attachment
Downloade im Anhang die Datei

Put the .*htaccess in your ROOT
Füge die .*htaccess in dein ROOT
« Last Edit: June 25, 2009, 03:13:35 PM by Benny »

Offline tramfahrer

  • Full Member
  • ***
  • Posts: 112
    • View Profile
    • Straßenbahn-, Bus- und Eisenbahnbilder
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #286 on: June 25, 2009, 02:56:54 PM »
Hallo,

habe das jetz mal durchgeführt,  Die URL http://www.tram-und-bahnbilder.de/img-tw-8012-augsburg-m8c-1094.htm  allerdings kommt  "Die Webseite konnte nicht angezeigt werden!" 404

wer kann helfen ?? hab die Änderung erstmal rausgenommen wieder

grüße Tobias

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #287 on: June 25, 2009, 03:13:06 PM »
Hast du das aus meiner Anleitung genommen oder ist das noch das alte gewesen?
Hier läuft das aktuell: http://4images-videopaket.benny-boehnke.info/

Offline Sebas Bonito

  • Sr. Member
  • ****
  • Posts: 271
  • Sebas Bonito
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #288 on: June 25, 2009, 03:29:44 PM »
Hallo,

habe das jetz mal durchgeführt,  Die URL http://www.tram-und-bahnbilder.de/img-tw-8012-augsburg-m8c-1094.htm  allerdings kommt  "Die Webseite konnte nicht angezeigt werden!" 404

wer kann helfen ?? hab die Änderung erstmal rausgenommen wieder

grüße Tobias
Hatte dieses Problem beim Zusammenspiel mit der MOD TOP100. Hast Du die?

Offline bergblume

  • Sr. Member
  • ****
  • Posts: 463
  • on to the top!
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #289 on: June 25, 2009, 03:30:38 PM »
hi benny, ich habe auch mich genau nach deiner anleitung gehalten und bekomme beim aufruf meiner existierenden (test)gallerie und der bilder:
Diese Seite ist leider nicht verfügbar.
(startseite funktioniert - bloss in die kategoreien und detail-bilder komme ich nicht mehr, da dort die obige fehlermeldung kommt,.,.)
(Top100 ist nicht installiert)

[Edit: kann es evtl. daran liegen dass mein testserver unter funpic läuft und dort kein mod-rewrite [RewriteEngine On
] unterstützt wird??? ]
« Last Edit: June 25, 2009, 07:27:38 PM by bergblume »

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #290 on: June 25, 2009, 03:39:52 PM »
Eventuell habe ich irgendwie doch ein Fehler in der Anleitung.
Aber ich bin mir 100% sicher, dass dies der Code ist den ich in dem Paket verwende!

Offline tramfahrer

  • Full Member
  • ***
  • Posts: 112
    • View Profile
    • Straßenbahn-, Bus- und Eisenbahnbilder
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #291 on: June 25, 2009, 03:48:27 PM »
Hallo

ichhabe die aktuelle Anleitung verwendet

als mod habe ich den
Kalender Mod
den Bewerten Mod
und den 3 Spalten template Mod
die  oben genannten Mods alle von KurtW (wo ist er eigentlich abgeblieben??? es existiert rein Garnichts mehr von ihm, schade er hatt immer so gute Sachen gemacht)

den Moderatormod (von dem Spanier oder wer auch immer das war)


Offline Sebas Bonito

  • Sr. Member
  • ****
  • Posts: 271
  • Sebas Bonito
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #292 on: June 28, 2009, 03:36:27 PM »
Bei mir läuft die MOD, bis auf einen winzigen Punkt:

Code: [Select]
elseif (strstr($url, 'postcards.php?image_id=')) {
        preg_match('#image_id=([0-9]+)&?#', $url, $matches);
        if (isset($matches[1])) {
          $split = explode('?', $url);
          $url = $split[0];
          $query = @$split[1];
          $url   = str_replace('postcards.php', 'postcard.img'.$matches[1].'.htm', $url);
          $query = str_replace('image_id='.$matches[1].'&', '', $query);
          $query = str_replace('&image_id='.$matches[1], '', $query);
          $query = str_replace('image_id='.$matches[1], '', $query);
          if (!empty($query)) {
            $url .= '?' . $query;
          }
        }
      }

Die Postkart-Short-URL haut nicht hin, es kommt ne 404-Fehlermeldung. Ich hab das jetzt erstmal entfernt, bzw. zu folgendem abgeändert:
Code: [Select]
      elseif (strstr($url, 'postcards.php?image_id=')) {
      }

Offline Sebas Bonito

  • Sr. Member
  • ****
  • Posts: 271
  • Sebas Bonito
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #293 on: June 29, 2009, 11:02:52 PM »
BUG REPORT: Another 404-error, when the title/name of an image has the slash "/".

Offline Nicky

  • Administrator
  • 4images Guru
  • *****
  • Posts: 3.195
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #294 on: June 30, 2009, 12:18:20 AM »
Schnick und Schnack,

there is no bug..
you can control all extra chars within
Code: [Select]
$row['cat_name'] = strtr($row['cat_name'], "éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","eeeaeauoiaabcdefghijklmnopqrstuvwxyz");and
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","eeeaeauoiaabcdefghijklmnopqrstuvwxyz");
cheers
Nicky
Your first three "must do" before you ask a question ! (© by V@no)
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

nicky.net 4 4images
Signature stolen from mawenzi

Offline Sebas Bonito

  • Sr. Member
  • ****
  • Posts: 271
  • Sebas Bonito
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #295 on: June 30, 2009, 12:28:40 AM »
Schnick und Schnack,

there is no bug..
you can control all extra chars within
Code: [Select]
$row['cat_name'] = strtr($row['cat_name'], "éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","eeeaeauoiaabcdefghijklmnopqrstuvwxyz");and
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","eeeaeauoiaabcdefghijklmnopqrstuvwxyz");

Okay, no bug. Thx for this info... but I don't understand what do you mean bei "control". May I add the "/" in there?

Offline Nicky

  • Administrator
  • 4images Guru
  • *****
  • Posts: 3.195
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #296 on: June 30, 2009, 12:55:19 AM »
try this for image name
change
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","eeeaeauoiaabcdefghijklmnopqrstuvwxyz");to
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "/éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","-eeeaeauoiaabcdefghijklmnopqrstuvwxyz");or
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "/éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","_eeeaeauoiaabcdefghijklmnopqrstuvwxyz");
cheers
Nicky
Your first three "must do" before you ask a question ! (© by V@no)
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

nicky.net 4 4images
Signature stolen from mawenzi

Offline Sebas Bonito

  • Sr. Member
  • ****
  • Posts: 271
  • Sebas Bonito
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #297 on: June 30, 2009, 01:05:17 AM »
try this for image name
change
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","eeeaeauoiaabcdefghijklmnopqrstuvwxyz");to
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "/éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","-eeeaeauoiaabcdefghijklmnopqrstuvwxyz");or
Code: [Select]
$row['image_name'] = strtr($row['image_name'], "/éèêàëâúóíáABCDEFGHIJKLMNOPQRSTUVWXYZ","_eeeaeauoiaabcdefghijklmnopqrstuvwxyz");

Thx a lot, mate! This works...  :)

Offline crimmer

  • Pre-Newbie
  • Posts: 4
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #298 on: July 01, 2009, 11:25:24 AM »
Thanks @Benny
i added your seo mod codes
but turkish characters can not be seen in links?
 help me pls.

http://www.****.net/cat-%DDstanbul-1.htm
« Last Edit: July 04, 2009, 02:16:18 AM by crimmer »

Offline mayashu

  • Newbie
  • *
  • Posts: 20
    • View Profile
Re: [MOD] Google Friendly Urls For 4images Best Seo Mod
« Reply #299 on: July 03, 2009, 07:28:50 AM »
I instaled step by stef for many times but I have this error:

Quote
Not Found

The requested URL /4i/img-bafta-2647.htm was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.