Series that is compatible for my phpbb3 on my site I want to use this mod.
Download:( http://www.phpbb.com/community/viewtopi ... &t=1489745 )
Demo: http://dilipkumar.in/forum/mods/fetchal ... portal.php
but:
viewforum.php?f=29
viewtopic.php?t=104
viewtopic.php?p=141#141
memberlist.php?mode=viewprofile&u=2
in the above urls seems way. How can I adapt it to your mod(phpbb seo premod 3.0.6 )?
but another mod similar to phpbb2 series had. on the following regarding the edits you had. This is way above the new program will be adapted phpbb seo premod 3.0.6 changes and additions which have to do.
- Code: Select all
<a href="phpBB2/<?php echo format_url($latest[$i]['topic_title']); ?>-t<?php echo $latest[$i]['topic_id']; ?>.html"><?php echo $latest[$i]['topic_title']; ?></a>
function format_url( $url, $type = 'topic' ) {
$url = preg_replace("(\[.*\])U","",$url);
$find = array('"','&','<','>','\r\n','\n',);
$url = str_replace ($find, '-', $url);
$url = str_replace ('ß', 'ss', $url);
$url = str_replace (array('ö','Ö'), 'o', $url);
$url = str_replace (array('ä','Ä'), 'ae', $url);
$url = str_replace (array('ü','Ü'), 'u', $url);
$url = str_replace (array('ğ','Ğ'), 'g', $url);
$url = str_replace (array("ı","İ"), 'i', $url);
$url = str_replace (array('ş','Ş'), 's', $url);
$url = str_replace (array('ç','Ç'), 'c', $url);
$find = "ÀÁÂÃÅàáâãåÒÓÔÕØòóôõøÈÉÊËèéêëÌÍÎÏìíîïÙÚÛùúûÿÑñ";
$replace = "aaaaaaaaaaooooooooooeeeeeeeeiiiiiiiiuuuuuuynn";
$url = strtr($url,$find,$replace);
$url = strtolower($url);
$url = ereg_replace("[^a-zA-Z0-9]", "-", $url);
$url = preg_replace("`([\-])+`", "\\1", $url);
$url = trim($url, '-');
$url = ( $url == "" ) ? $type : $url;
return $url;
}
Thank you in advance.

English |
French

