Welcome,
Guest
.
Please
login
or
register
.
Did you miss your
activation email
?
News:
EDC:
Download extensions for Elxis CMS
.
Home
Help
Login
Register
Elxis CMS Forum
»
Support
»
General
(Moderators:
Ivan Trebješanin
,
Farhad Sakhaei
) »
autonomous pages not showing :(
« previous
next »
Print
Pages:
1
[
2
]
3
Author
Topic: autonomous pages not showing :( (Read 21607 times)
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #15 on:
May 18, 2011, 01:42:04 »
give me a link
Logged
ks-net.gr
ROUBOS
Hero Member
Posts: 699
Re: autonomous pages not showing :(
«
Reply #16 on:
May 18, 2011, 01:48:52 »
I PMed...
Logged
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #17 on:
May 18, 2011, 01:56:58 »
where is the problem?
i visited more than 20 pages without errors... all found
Logged
ks-net.gr
ROUBOS
Hero Member
Posts: 699
Re: autonomous pages not showing :(
«
Reply #18 on:
May 18, 2011, 01:58:32 »
that's because I enabled htaccess again. When I disable it, I get that error.
my htaccess is as follows:
##
# Elxis 2009.2 htaccess file
# Copyright (C) 2006-2010 Elxis.org. All rights reserved.
# License:
http://www.gnu.org/copyleft/gpl.html
GNU/GPL
# Elxis CMS is a Free Software
##
## Uncomment the following line, if it produces erors, comment it again
# Options -Indexes +FollowSymLinks
#
# mod_rewrite in use
#
RewriteEngine On
# The following line tells the web server where your Elxis installation is located in relation
# to the web server root directory. By default this is set to the www root folder ( RewriteBase / ).
# If you have installed Elxis in a sub-folder then set this path properly.
# For example if your elxis site is accessible via this URL
http://www.mysite.com/elxis/
# You should set: RewriteBase /elxis/
RewriteBase /
# Uncomment the line bellow if you use static cache in order to deny direct access to cached files.
#RewriteRule ^cache/static/(.*)$ - [F]
#
# Language Handling
# You may remove the languages that you dont need or add other languages not listed here
# For the proper language names and the iso 639 code languages consider includes/Core/locale.php file
# If you wish to use chinese you should add:
# chinese_traditional : zh-Hant,
# chinese_simplified : zh-Hans
#
RewriteCond %{QUERY_STRING} !mylang=[arabic|armenian|bosnian|creole|croatian|danish|dutch|english|french|german|greek|hebrew|indonesian|italian|japanese|latvian|lithuanian|persian|polish|romanian|russian|serbian|spanish|srpski|turkish|vietnamese]{2,}
RewriteRule ^([ar]{2})/(.*)$ /index.php?mylang=arabic [QSA,L]
RewriteRule ^([hy]{2})/(.*)$ /index.php?mylang=armenian [QSA,L]
RewriteRule ^([bs]{2})/(.*)$ /index.php?mylang=bosnian [QSA,L]
#RewriteRule ^([pt\-BR]{5})/(.*)$ /index.php?mylang=brazilian [QSA,L]
RewriteRule ^([ht]{2})/(.*)$ /index.php?mylang=creole [QSA,L]
RewriteRule ^(
{2})/(.*)$ /index.php?mylang=croatian [QSA,L]
RewriteRule ^([da]{2})/(.*)$ /index.php?mylang=danish [QSA,L]
RewriteRule ^([nl]{2})/(.*)$ /index.php?mylang=dutch [QSA,L]
RewriteRule ^([en]{2})/(.*)$ /index.php?mylang=english [QSA,L]
RewriteRule ^([fr]{2})/(.*)$ /index.php?mylang=french [QSA,L]
RewriteRule ^([de]{2})/(.*)$ /index.php?mylang=german [QSA,L]
RewriteRule ^([el]{2})/(.*)$ /index.php?mylang=greek [QSA,L]
RewriteRule ^([he]{2})/(.*)$ /index.php?mylang=hebrew [QSA,L]
RewriteRule ^([id]{2})/(.*)$ /index.php?mylang=indonesian [QSA,L]
RewriteRule ^([it]{2})/(.*)$ /index.php?mylang=italian [QSA,L]
RewriteRule ^([ja]{2})/(.*)$ /index.php?mylang=japanese [QSA,L]
RewriteRule ^([lv]{2})/(.*)$ /index.php?mylang=latvian [QSA,L]
RewriteRule ^([lt]{2})/(.*)$ /index.php?mylang=lithuanian [QSA,L]
RewriteRule ^([fa]{2})/(.*)$ /index.php?mylang=persian [QSA,L]
RewriteRule ^([pl]{2})/(.*)$ /index.php?mylang=polish [QSA,L]
RewriteRule ^([ro]{2})/(.*)$ /index.php?mylang=romanian [QSA,L]
RewriteRule ^([ru]{2})/(.*)$ /index.php?mylang=russian [QSA,L]
RewriteRule ^(sr)/(.*)$ /index.php?mylang=serbian [QSA,L]
RewriteRule ^([es]{2})/(.*)$ /index.php?mylang=spanish [QSA,L]
RewriteRule ^(rs)/(.*)$ /index.php?mylang=srpski [QSA,L]
RewriteRule ^(
{2})/(.*)$ /index.php?mylang=turkish [QSA,L]
RewriteRule ^([vi]{2})/(.*)$ /index.php?mylang=vietnamese [QSA,L]
#
# Exclude Files and directories
#
RewriteRule ^(administrator/|bridges/|cache/|components/|editor/|help/|images/|includes/|language/|mambots/|media/|modules/|templates/|tmpr/) - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
#
## Security rules. Comment them if they cause problems to your site
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
# This rule is commented because it may cause some Elxis features to not work!
# RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# 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-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
Logged
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #19 on:
May 18, 2011, 02:04:12 »
off cource you get an error if you disable it
seo and htaccess are need each other..... if one of them missing you get errors
where exactly is the problem ... in seo-pro only?
Logged
ks-net.gr
ROUBOS
Hero Member
Posts: 699
Re: autonomous pages not showing :(
«
Reply #20 on:
May 18, 2011, 02:09:45 »
well I had enebled seo pro from installation. Everything worked fine untill the hosting people changed all the permissions (to the correct ones 755 and 644) since I did not do it myself after the install.
Eversince that change, the site did not work.
Logged
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #21 on:
May 18, 2011, 02:11:48 »
give me access to ftp and elxis ...if can!
Logged
ks-net.gr
ROUBOS
Hero Member
Posts: 699
Re: autonomous pages not showing :(
«
Reply #22 on:
May 18, 2011, 02:13:06 »
ok will PM
getting :
Detected CSRF attack! Someone is forging your requests
when trying to enable SEO Pro
Logged
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #23 on:
May 18, 2011, 02:15:45 »
probably its you.... logged twice from diff browser or browser-windows?
Logged
ks-net.gr
ROUBOS
Hero Member
Posts: 699
Re: autonomous pages not showing :(
«
Reply #24 on:
May 18, 2011, 02:21:26 »
out of everything now since I PMed you
Logged
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #25 on:
May 18, 2011, 02:56:52 »
can we see apache error.log ?
elxis files are ok.... same htaccess ...
database not checked... but i dont think is there the problem.
only seo pro has problem
espacialy when needs to add the .html extension in an url
eg.
/discover-elxis works
/discover-elxis/radical-features
discover-elxis/radical-features/edc-installer
.html
oooops ... error and redirect to frontpage
Logged
ks-net.gr
ROUBOS
Hero Member
Posts: 699
Re: autonomous pages not showing :(
«
Reply #26 on:
May 18, 2011, 03:00:14 »
ok,
so what's your advice? Look at the database? Re-install everything? Something I could look at in phpMyAdmin?
Logged
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #27 on:
May 18, 2011, 03:06:54 »
i suggest reinstall the database ....
files look ok but your elxis sucks... seopro errors
content edit save errors and so on!
Suggest you to do it better... time to install
2009.3
download your template
install the new elxis 2009.3(now you have 2009.2) from scratch....
no big pain since you have 4-5 empty pages there
if problems continues we are here
Logged
ks-net.gr
ROUBOS
Hero Member
Posts: 699
Re: autonomous pages not showing :(
«
Reply #28 on:
May 18, 2011, 03:15:34 »
thanks for all the help.
Yes I've only just began the site, so I will re-install elxis.
I'll get the new one and even delete the database. (or just drop all tables during install)
OK.
thanks again. Will see how I go this time...
After install I'll need to set the folder and file permissions to 755 and 644. What's the best way to that? I use filezilla
Logged
ks-net
Elxis Community
Hero Member
Posts: 2072
Kostas Stathopoulos
Re: autonomous pages not showing :(
«
Reply #29 on:
May 18, 2011, 03:22:09 »
filezilla is ok
Logged
ks-net.gr
Print
Pages:
1
[
2
]
3
« previous
next »
Elxis CMS Forum
»
Support
»
General
(Moderators:
Ivan Trebješanin
,
Farhad Sakhaei
) »
autonomous pages not showing :(