|
SEO-Fusion
|
| PreFiX |
Posted on 03-08-2012 19:25
|

Junior Member

Posts: 20
Joined: 24/07/2012
|
what about Lighttpd support?Becouse in lighttpd .htaccess files doesn't work.
Sorry for my bad english :/
|
| |
|
|
| mawe4585 |
Posted on 06-08-2012 09:06
|

Junior Member

Posts: 46
Joined: 01/02/2008
|
Hello,
this is a really great addon to php-fusion!
I want to use it and want to be the path:
/infusions/myinfusion/subfolder/custompagefile.php
like this:
/custompagefile.html
and how does this work with params?
if i have this:
/infusions/myinfusion/subfolder/custompagefile.php?param1=1234¶m2=somethingelse
how would that look like with SEO-Fusion if the first step would be possible?
Thanks for this great work so far! |
| |
|
|
| Wanabo |
Posted on 06-08-2012 18:30
|

Senior Member

Posts: 357
Joined: 06/02/2006
|
PreFiX wrote:
what about Lighttpd support?Becouse in lighttpd .htaccess files doesn't work.
You have to enter the htaccess commands in httpd.conf. Create a <directory ></directory> for your dir you want these commands to be executed.
|
| |
|
|
| Ankur |
Posted on 07-08-2012 18:21
|

Admin

Posts: 1291
Joined: 02/11/2010
|
mawe4585 wrote:
Hello,
this is a really great addon to php-fusion!
I want to use it and want to be the path:
/infusions/myinfusion/subfolder/custompagefile.php
like this:
/custompagefile.html
and how does this work with params?
if i have this:
/infusions/myinfusion/subfolder/custompagefile.php?param1=1234¶m2=somethingelse
how would that look like with SEO-Fusion if the first step would be possible?
Thanks for this great work so far!
In .htaccess, Find this :
Code## Index Page
RewriteRule ^index(\.html)?$ index.php [L,NC]
After this Line, Add :
Code## My Custom Page
RewriteRule ^custompagefile\.html$ infusions/myinfusion/subfolder/custompagefile.php [L,NC]
Note: All Custom Rules must be added above all other Rules made for SEO-Fusion so that your Custom Rule will execute first, in order to ignore any kind of problems.
|
| |
|
|
| pemaxs |
Posted on 07-08-2012 19:24
|

Junior Member

Posts: 13
Joined: 19/05/2011
|
chatlaq wrote:
ankur very nice mod. a few bug for turkish on url. Turkish characters are truncated.
The following solution is described on the site. Will use the issue is resolved
http://www.mertoz...-htaccess/
url output: example/News-10-Ziraat-Trkiye-Kupas39nda-gruplarn-kura-ekimi-bugn-stanbul39da-yapld.html
 |
| |
|
|
| wheeler |
Posted on 08-08-2012 21:48
|

Member

Posts: 91
Joined: 07/07/2004
|
After testing a few weeks, seems very well coded however some options for forums / post reply buttons etc wont work when the mod is enabled, register button etc on various themes - Will look back at this in the near future.
Michael Wheeler
|
| |
|
|
| mertozakkas |
Posted on 11-08-2012 08:18
|

Newbie

Posts: 1
Joined: 11/08/2012
|
Try this for Seo Func;
Note: Turkish character problem was resolved
function seo($str, $replace=array(), $delimiter='-'){
setlocale(LC_ALL, 'tr_TR.windows-1254');
if( !empty($replace) ) {
$str = str_replace((array)$replace, ' ', $str);
}else{
$trArr = array('ç','Ç','i','I','s','S','g','G','ö','Ö','ü', 'Ü');
$toArr = array('c','c','i','I','s','s','g','g','o','o','u', 'u');
$str = str_replace($trArr,$toArr,$str);
}
$clean = iconv('windows-1254', 'ASCII//TRANSLIT', $str);
$clean = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $clean);
$clean = preg_replace("/[\/_|+ -]+/", $delimiter, $clean);
return $clean;
}
www.mertozakkas.com |
| |
|
|
| Ankur |
Posted on 12-08-2012 13:27
|

Admin

Posts: 1291
Joined: 02/11/2010
|
Thank you people...
I will really update the infusion with the required things.. Thank you all for your feedback
|
| |
|
|
| Septron |
Posted on 14-08-2012 11:07
|

Junior Member

Posts: 21
Joined: 29/12/2010
|
Hi all,
I must add something else here
it is about the "Download System MSF for PHP-Fusion 7.xx v.5.0 Std"
Unfortunately, this only works where the area is not:
Code## Downloads and Download Cats
RewriteRule ^Downloads(\.html)?$ downloads.php [L,NC]
RewriteRule ^Download-Category-([0-9]{1,15})-page-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?cat_id=$1&page=$2 [L,NC]
RewriteRule ^Download-([0-9]{1,15})-cat-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?cat_id=$2&download_id=$1 [L,NC]
RewriteRule ^Download-Category-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?cat_id=$1 [L,NC]
RewriteRule ^Download-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?download_id=$1 [L,NC]
what would there now be adjusted so that one can also use the SEO?
greeting Septron
|
| |
|
|
| Ankur |
Posted on 15-08-2012 10:40
|

Admin

Posts: 1291
Joined: 02/11/2010
|
Septron wrote:
Hi all,
I must add something else here
it is about the "Download System MSF for PHP-Fusion 7.xx v.5.0 Std"
Unfortunately, this only works where the area is not:
Code## Downloads and Download Cats
RewriteRule ^Downloads(\.html)?$ downloads.php [L,NC]
RewriteRule ^Download-Category-([0-9]{1,15})-page-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?cat_id=$1&page=$2 [L,NC]
RewriteRule ^Download-([0-9]{1,15})-cat-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?cat_id=$2&download_id=$1 [L,NC]
RewriteRule ^Download-Category-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?cat_id=$1 [L,NC]
RewriteRule ^Download-([0-9]{1,15})-(.*)(\.html)?$ downloads.php?download_id=$1 [L,NC]
what would there now be adjusted so that one can also use the SEO?
greeting Septron
Are you trying to implement SEO for Download System MSF ?
You may need to Add Custom Modifications for it... Currently, this SEO mod supports only Core Links...
|
| |
|
|
| Ankur |
Posted on 18-08-2012 09:06
|

Admin

Posts: 1291
Joined: 02/11/2010
|
For those, who are confused with the Query Optimization of this Infusion :
|
| |
|
|
| Tomas Kulhanek |
Posted on 18-08-2012 09:46
|

Newbie

Posts: 3
Joined: 18/08/2012
|
Hi. thanks for this addon. But i have problem. When i do everything what is in readme i have still URL link like news.php. And seo panel can show it. What i must do |
| |
|
|
| Ankur |
Posted on 19-08-2012 14:32
|

Admin

Posts: 1291
Joined: 02/11/2010
|
Tomas Kulhanek wrote:
Hi. thanks for this addon. But i have problem. When i do everything what is in readme i have still URL link like news.php. And seo panel can show it. What i must do
Please ensure that you have infused the infusion and Added the Panel and Enabled it.
After that, make sure that SEO is Enabled in Admin Panel --> Infusions --> SEO-Fusion. Also, don't forget to change Site Opening Page in Settings --> Main from news.php to news.html
|
| |
|
|
| Tomas Kulhanek |
Posted on 19-08-2012 14:38
|

Newbie

Posts: 3
Joined: 18/08/2012
|
Ankur wrote:
Tomas Kulhanek wrote:
Hi. thanks for this addon. But i have problem. When i do everything what is in readme i have still URL link like news.php. And seo panel can show it. What i must do
Please ensure that you have infused the infusion and Added the Panel and Enabled it.
After that, make sure that SEO is Enabled in Admin Panel --> Infusions --> SEO-Fusion. Also, don't forget to change Site Opening Page in Settings --> Main from news.php to news.html
Thanks. now is good.
I found a solution to the foreign characters does not belong to the www address. But I do not know whether this is the best solution.
To maincore.php must add the following line
setlocale (LC_ALL, strtolower (LOCALESET));
and to the file seo_friendly_urls_panel.php must then add a row (first) to function cleanmytext
$ text = iconv ('UTF-8', 'ASCII / / translit', $ text);
I have tested it on Czech characters (punctuation marks such as ěščřžýáíé).
setlocale maincore I put in on purpose to make it always carried out if anyone ever wanted to use iconv |
| |
|
|
| PreFiX |
Posted on 24-08-2012 22:51
|

Junior Member

Posts: 20
Joined: 24/07/2012
|
Wanabo wrote:
PreFiX wrote:
what about Lighttpd support?Becouse in lighttpd .htaccess files doesn't work.
You have to enter the htaccess commands in httpd.conf. Create a <directory ></directory> for your dir you want these commands to be executed.
1. IT'S NOT APACHE, There no such things as <directory>
2. there no such thing as httpd.conf
lighttpd.conf is main config file of whole lighttpd and there no <directory> inside it.
Sorry for my bad english :/
|
| |
|
|
| Wanabo |
Posted on 24-08-2012 23:56
|

Senior Member

Posts: 357
Joined: 06/02/2006
|
I'm not familiar with lighthttpd but googling for htaccess directives in lighthttpd.conf came up with a solution. And httpd.conf is the alter ego for lighthttpd.conf. Just was pointing to search in another direction.
Codelighttpd.conf file:
url.rewrite = ("^(.*/)?files/(.*)" => "wp-content/blogs.php?file=$2",)
Of course you have to alter it to suit your needs.
Other posibility is to use your virtualhost. That is if lighthttp uses this. If not they have their own substitute.
|
| |
|
|
| PreFiX |
Posted on 25-08-2012 00:12
|

Junior Member

Posts: 20
Joined: 24/07/2012
|
Yes, i was converted to something like that.But i had problems, 500 server error if i remember correctly :/ Some times it worked, some times not...
Sorry for my bad english :/
|
| |
|
|
| Krypto |
Posted on 26-08-2012 21:21
|

Newbie

Posts: 1
Joined: 17/06/2012
|
It would be great if you add the function that add to head the canonical url (google tell me that i have 500 page with duplicate tag title xD)
And if it redirect automatically to the seo link xD. |
| |
|
|
| Ankur |
Posted on 27-08-2012 16:38
|

Admin

Posts: 1291
Joined: 02/11/2010
|
Krypto wrote:
It would be great if you add the function that add to head the canonical url (google tell me that i have 500 page with duplicate tag title xD)
And if it redirect automatically to the seo link xD.
Thanks I will keep this in mind in the next version
|
| |
|
|
| Wanabo |
Posted on 27-08-2012 18:00
|

Senior Member

Posts: 357
Joined: 06/02/2006
|
To avoid duplicate content I used rel="nofollow" on links like php-fusion.co.uk/forum/viewthread.php?thread_id=31225&pid=172637#post_172593
But was heavily penalized by google. Perhaps because google thought I wanted to sculpt my pages for pagerank. But all I wanted was avoiding duplicate content.
Anyway rel="nofollow" is gone and I'm going up again.
So I think rel="conical" is the way to go but be carefull to what url's you append this.
|
| |
|