Login
Username

Password



Not a member yet?
Click here to register.

Forgotten your password?
Request a new one here.
Navigation
Latest Addons
AD Gallery 54
SyntaxHighlighte... 51
Newsletters v4.03 112
Facebook Like Box 125
Newsletters v4.02 57
Metro 164
Facebook Connect 171
Shoutbox Panel 127
Redactor for PHP... 106
MI Floating Side... 109
Facebook Login/R... 154
Avatar Studio v2.03 179
Relationship Sta... 98
Sexual Orientati... 116
Fisherman 143
Popular Addons
iTheme2 5801
Arise 5790
User Control v1.23 4619
Event Calendar 4050
Photowidget panel 3888
Radio-Theme red2... 3356
Highslide Gallery 3314
CSS/JavaScript D... 3231
Facebook Connect... 2985
Dynamic Menu 2893
Slideshow Lightb... 2721
L-AMANT 2659
Enigma 2636
2Dark 2606
Black 2579
View Thread
Who is here? 1 guest(s)
 Print Thread
SEO-Fusion
PreFiX
what about Lighttpd support?Becouse in lighttpd .htaccess files doesn't work.
Sorry for my bad english :/
 
http://animefanai.lt
mawe4585
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&param2=somethingelse

how would that look like with SEO-Fusion if the first step would be possible?

Thanks for this great work so far!
 
Wanabo
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.
KPN Gebruikers Groep, my largest pHp-Fusion site about an ISP.
pHp-Fusion.Org, tutorials to enhance php-fusion.
pHp-Fusion.Asia & pHp-Fusion.Fr & pHp-Fusion.Cn are available for a localized support site. Send PB for info.
 
http://ziggo.gebruikers.eu
Ankur
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&param2=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 :
Download source  Code
## Index Page

RewriteRule ^index(\.html)?$ index.php [L,NC]




After this Line, Add :
Download source  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.

ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
pemaxs
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

i.imm.io/yXgz.png
 
http://www.reksnet.com
wheeler
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
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
 
www.mertozakkas.com
Ankur
Thank you people...

I will really update the infusion with the required things.. Thank you all for your feedback Smile
ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
Septron
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:
Download source  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
www.septron.de/signaturen/septron_1.png
 
http://www.septron.de
Ankur
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:
Download source  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...
ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
Ankur
For those, who are confused with the Query Optimization of this Infusion :

i47.tinypic.com/9hox0g.png
ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
Tomas Kulhanek
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
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
ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
Tomas Kulhanek
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 &#283;š&#269;&#345;žýáíé).


setlocale maincore I put in on purpose to make it always carried out if anyone ever wanted to use iconv
 
PreFiX
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. img442.imageshack.us/img442/4540/56683672.png 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 :/
 
http://animefanai.lt
Wanabo
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.
Download source  Code
lighttpd.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.
KPN Gebruikers Groep, my largest pHp-Fusion site about an ISP.
pHp-Fusion.Org, tutorials to enhance php-fusion.
pHp-Fusion.Asia & pHp-Fusion.Fr & pHp-Fusion.Cn are available for a localized support site. Send PB for info.
 
http://ziggo.gebruikers.eu
PreFiX
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 :/
 
http://animefanai.lt
Krypto
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.
 
http://www.habbogalactica.com
Ankur
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 Smile
ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
Wanabo
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.
KPN Gebruikers Groep, my largest pHp-Fusion site about an ISP.
pHp-Fusion.Org, tutorials to enhance php-fusion.
pHp-Fusion.Asia & pHp-Fusion.Fr & pHp-Fusion.Cn are available for a localized support site. Send PB for info.
 
http://ziggo.gebruikers.eu
Jump to Forum:
Similar Threads
Thread Forum Replies Last Post
How does the password encryption on php fusion work? User Administration 4 17-05-2013 19:40
Upgrade from PHP Fusion 7.00 to 7.02 Upgrading issues 3 17-05-2013 09:12
PHP-Fusion font for new header Themes Support 4 28-04-2013 04:50
How to insert a video from YouTude for php-fusion Content Administration 3 27-04-2013 00:10
Probleme beim übertagen von Usern in neue Fusion Ideas for Modifications and Requests 3 20-04-2013 14:45
Official Home of PHP-Fusion uses cookies. Some may already have been set. Read more about our Cookies here.
Please click the button I Consent Cookies to hide this bar and accept our cookies. If you continue to use the site with no action taken, we'll assume that you consent our cookies anyway.
Cookiebar Panel byVenue