-
AuthorPosts
-
mambolearn Friend
mambolearn
- Join date:
- January 2006
- Posts:
- 36
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 10
- Thanked:
- 8 times in 1 posts
January 20, 2010 at 7:36 pm #147830Hi
I have a website on Linux with cPanel and Lightspeed as web server.
I installed JA Teline III and when I enable joomla default seo options, some of my links go to 404 error page (not all of the links).
here is an example of some of my links:mysite.com/–/-/369-someword.html
some of these links open and some don’t.
But I don’t have this problem with other templates.
If the problem was because of Lightspeed web server, I should have problems in other templates too.
The problem stops when I disable “use mod_rewrite” in SEO Settings.
Looking forward to you helpKind Regards
gray Friendgray
- Join date:
- October 2009
- Posts:
- 957
- Downloads:
- 0
- Uploads:
- 17
- Thanks:
- 28
- Thanked:
- 292 times in 230 posts
January 21, 2010 at 5:44 am #329924Please give exmple of links which work and links which do not. Have you renamed htaccess.txt to .htaccess?
Aslo check if you don’t have the same alliase words for several menu items.PS. on my site SEO is enalbed (with mod_rewrite and html suffix to URLs both ON) and all is OK.
mambolearn Friendmambolearn
- Join date:
- January 2006
- Posts:
- 36
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 10
- Thanked:
- 8 times in 1 posts
January 21, 2010 at 6:18 am #329928Hi
thanks for your answer.
I tested it on my other server with apache web server and renamed htaccess.txt to .htaccess
on this server I never had a problem with joomla.The important thing is my joomla and contents language is utf8.
The English Quickstart of Teline iii works with no problem.Regards
gray Friendgray
- Join date:
- October 2009
- Posts:
- 957
- Downloads:
- 0
- Uploads:
- 17
- Thanks:
- 28
- Thanked:
- 292 times in 230 posts
January 21, 2010 at 6:39 am #329930Mine is also UTF8. For aliases I installed special plugin to convert non-Latin characters into Latin ones (so-called translit).
mambolearn Friendmambolearn
- Join date:
- January 2006
- Posts:
- 36
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 10
- Thanked:
- 8 times in 1 posts
January 21, 2010 at 8:26 am #329937That plugin works just for Vietnam. My language is Persian (Farsi)
Another problem: I install my joomla and it works perfectly with all templates. But when I install Teline iii then even with other templated the problem exists and links do not work.
JA Admin please help me 🙁
January 23, 2010 at 2:25 pm #330137… may I join this thread.
I did try everything w/o any improvements to my site.
mambolearn Friendmambolearn
- Join date:
- January 2006
- Posts:
- 36
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 10
- Thanked:
- 8 times in 1 posts
January 23, 2010 at 2:27 pm #330138I found the problem.
The problem is JA Zinc plugin. do not install it if your language is utf8.
It has trouble with utf8.I can help if JA Developers want to fix this.
Regards
1 user says Thank You to mambolearn for this useful post
January 23, 2010 at 3:01 pm #330139There is jazin which I have disabled. ja zinc is not present.
Shall I try deinstall jazin?
January 23, 2010 at 3:13 pm #330141As some of th menues do work (some categories, some sections) and others don’t it looks quite weird to me. The jazin I already deactivated because I was sick and tired of all the inconsitent changes to my menu magazin wich I deleted anyway and replaced it again by mainmenu.
I wait now several hours and test again before I (have to) deactivate SEO again. With ja_teline_ii it works still fine but of course I cant switch back because of all the modules and changes made.
my .htaccess looks like this:
AddHandler php5-cgi .php
php_flag register_globals off
##
# @version $Id: htaccess.txt 10492 2008-07-02 06:38:28Z ircmaxell $
# @package Joomla
# @copyright Copyright (C) 2005 – 2008 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
#######################################################
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: ‘Options +FollowSymLinks’ may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url’s. If they work,
# it has been set by your server administrator and you do not need it set here.
#
####################################################### Can be commented out if causes errors, see notes above.
Options +FollowSymLinks#
# mod_rewrite in useRewriteEngine On
########## Begin – Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_{1,21}(=|%3D)
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*(.*)
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (<|%3C).*script.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|{0,2})
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End – Rewrite rules to block out some common exploits# Uncomment following line if your webserver’s URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root)# RewriteBase /
########## Begin – Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|.php|.html|.htm|.feed|.pdf|.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* –
#
########## End – Joomla! core SEF Sectionmambolearn Friendmambolearn
- Join date:
- January 2006
- Posts:
- 36
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 10
- Thanked:
- 8 times in 1 posts
January 23, 2010 at 4:01 pm #330148Hi
Sorry, I mean JAZIN plugin. Uninstall it completely, including removing its files and the field in database.
Disabling is not enough. If it didn’t work by uninstalling, you should install joomla and other staff again and import a backup of your present content, then install all extensions except jazin.Regards
1 user says Thank You to mambolearn for this useful post
January 23, 2010 at 7:24 pm #330157Hi thanks,
did uninstall JAZIN. What finally solved the problem was that I changed the menu alias to a different name than the category alias. JAZIN named them always identical. Is that the reason? Would be weird enough.
Regards
RonnyJanuary 23, 2010 at 7:31 pm #330158yes – deinstall JAZIN!
And: change the name aliases of menues such that they are no longer identical with the categories and sections… Weird isn’t it? >:(
Best Regards
Ronnymambolearn Friendmambolearn
- Join date:
- January 2006
- Posts:
- 36
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 10
- Thanked:
- 8 times in 1 posts
January 23, 2010 at 7:36 pm #330159I’m happy it got solved 😉
-
AuthorPosts
This topic contains 13 replies, has 3 voices, and was last updated by mambolearn 14 years, 10 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum