Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

SEO-Fusion not working on mywebsite but...

Asked Modified Viewed 1,226 times
A
alpe
A
alpe 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

Hi everybody!

I have "infuse" (step by step like it is explain in the readme file) the SEO-Fusion add on on my NEW website, www.ilcazzeggio.com, but the result is this:

http://www.ilcazzeggio.com/news.php?r...readmore=2 >>>>> become >>>>>> http://www.ilcazzeggio.com/News-2-.html.

In other words: the url NOT becomes a SEO Url!!!

For a checking i have infused this add on in another PHP Fusion's system, www.lescommessesportive.it, WHIT THE SAME METHOD, and on it SEO-Fusion work without problem!!!

I'm very confused.... :|

Can you help me? What kind of information you need for help me?

PHPFusion is the V7.02.7.

Sorry for my english.
Edited by alpe on 24-07-2014 14:33,
0 replies

3 posts

F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Hello there, the first thing you need to do is respect our Copyrights on both your sites,

http://www.ilcazzeggio.com
http://www.lescommessesportive.it

Read more about licenses and how to legally remove copyright notices here in the license section

Send me a message when you have taken the proper measures ( either purchase a CRL or put the Copyright back), until then this thread stays locked.

Edit : CR issue resolved, thread unlocked.
Edited by N/A on 24-07-2014 15:16,
0 replies
C
Chan
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,841 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
answered
Super Admin

Quote


This Infusion will Change almost all URLs of your website into Descriptive SEO URLs.

##################
# #
# INSTALLATION #
# #
##################

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

1. Upload Files :
* Upload the folder 'seo_friendly_urls_panel' to the 'infusions' folder of your Web Server.
* Upload '.htaccess' file to the root directory.

2. Login into Website and goto Admin Panel --> System Admin --> Infusions and Infuse the 'SEO URLs for PHPFusion' Infusion.

3. Add the Panel 'seo_friendly_urls_panel' as Left/Right Panel on your website an Enable it. If adding as a Center Panel, then check 'Display on All Pages'.

4. Modify 'maincore.php' :

Look For :
define("TRUE_PHP_SELF", $current_page);

Now, if you are going to have URLs as HTML URLS (http://mysite.com/news.html), then Replace this Line with :

if (preg_match("/\/(administration)\//", $current_page)) {
define("TRUE_PHP_SELF", $current_page);
}
else if (preg_match("/".preg_replace("/([a-zA-Z0-9_]+)(\.php|\.html)?/", "$1", $settings['opening_page'])."/", preg_replace("/\/([a-zA-Z0-9_]+)(\.php|\.html)?/", "$1", $current_page))) {
define("TRUE_PHP_SELF", preg_replace("/\/([a-zA-Z0-9_]+)(\.php|\.html)?/", "/$1.html", $current_page));
}
else {
define("TRUE_PHP_SELF", $current_page);
}

----------

Now, if you are going to have URLs as Plain URLS (http://mysite.com/news), then Replace this Line with :

if (preg_match("/\/(administration)\//", $current_page)) {
define("TRUE_PHP_SELF", $current_page);
}
else if (preg_match("/".preg_replace("/([a-zA-Z0-9_]+)(\.php|\.html)?/", "$1", $settings['opening_page'])."/", preg_replace("/\/([a-zA-Z0-9_]+)(\.php|\.html)?/", "$1", $current_page))) {
define("TRUE_PHP_SELF", preg_replace("/\/([a-zA-Z0-9_]+)(\.php|\.html)?/", "/$1", $current_page));
}
else {
define("TRUE_PHP_SELF", $current_page);
}


0 replies
A
alpe
A
alpe 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

Hi hien.

I used the "plain URLs' code" but the result is error 404 (Not Found The requested URL /news was not found on this server.)...

I also tryed to use original maincore.php file (i not replace define("TRUE_PHP_SELF", $current_page); with the new code) but the result is the same: I think that the problem is something about this file.

Thanks.

Merged on Jul 25 2014 at 09:37:18:
Finally I found this error!!!

How I fix it?


Thanks!
Edited by alpe on 25-07-2014 09:37,
alpe attached the following file:
error.jpg [No information available / 39 Downloads]
0 replies

Category Forum

Panels and Infusions

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

F
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
C
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,841 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
A
A
alpe 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet