100 views
Missing Files
Talo

1 subject , 3 replies

Unread message
hi folks, just testing clan cms and yours look pretty cool in demo mode..

Is it possible that there are missing files in the zip archive?
after installation i get an unstyled page and all links are dead ends (http error 404)!?

link: connexion wants to switch to [root]/user.html.. i dont have a single user.html in my webspace neither in the zip
6 participants
9 replies
eResnova

17 subjects, 875 replies

Contributors
Unread message
Hello Talo !

If all of your links are deads (with http error 404), its because your web host does not have the module rewrite from apache activated. Trying to see if this module is enabled.
Talo

1 subject , 3 replies

Unread message
thx for your advise, i checked my host settings.. htaccess is activated on my domain so mod rewrite should be activated as well if i understand following text correctly:

Settings
You can configure some global webserver settings here which affects your entire account. These settings can't be done per virtualhost or domain.

.htaccess Files
You are able to use .htaccess files with your servage account if your required. These Files can be used to influence the webservers configuration on a per-directory level. The most common usage is to configure mod_rewrite, mod_redirect or to create password protected directories that requires user authentication.

Normally we advise you to keep this option turned off as it can affect your website performance negatively or even cause the website to be offline due to misconfigurations in .htaccess files.
creativewild

17 subjects, 53 replies

Contributors donors
Unread message
can you post your .htaccess here?
Talo

1 subject , 3 replies

Unread message
It's Unchanged like in lastest Download included.. @work right now

My space so you can see how it Looks like:
http://talo.at/aw/index.php
Talo

1 subject , 3 replies

Unread message
OK, what ever it was.. my personal solution:
i made a new sub domain and put everything there.
it seems that your cms disliked being placed in a roots sub folder.

so now it's aw.talo.at instead of talo.at/aw and it works pretty fine.

thx for this nice cms!

PS: tonight/next days i will translate it into german and i can give you the DE-Localization for including into the download bundle afterwards
creativewild

17 subjects, 53 replies

Contributors donors
Unread message
sorry for a really late reply... but i know the problem with http://talo.at/aw/index.php

on the htaccess file it expects you to be on the root of your domain and not inside the aw folder. so you need to add/change the RewriteBase to match the subfolder

Original htaccess:


Options +FollowSymLinks -Indexes
AddDefaultCharset UTF-8

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /

RewriteRule ^humans.txt$ ajax/settings/humans.txt
RewriteRule ^robots.txt$ ajax/settings/robots.txt
RewriteRule ^noscript.html$ ajax/settings/noscript.html

RewriteCond %{REQUEST_FILENAME} !index.php

RewriteRule (.*) index.php?request_url=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]
</IfModule>


And the .htaccess with the change:


Options +FollowSymLinks -Indexes
AddDefaultCharset UTF-8

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /aw/

RewriteRule ^humans.txt$ ajax/settings/humans.txt
RewriteRule ^robots.txt$ ajax/settings/robots.txt
RewriteRule ^noscript.html$ ajax/settings/noscript.html

RewriteCond %{REQUEST_FILENAME} !index.php

RewriteRule (.*) index.php?request_url=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]
</IfModule>

Nexo

0 subject , 1 reply

Unread message
Hello,

I have the problem too.
My .htacess was edited like creativewild.
I dont know what i can do.

Domain: http://bornholm-county.de/necms/index.php

Best regards
Nexo
TseykSuli

2 subjects, 12 replies

Unread message
if you are using older apache webserver then make sure the module mod_rewrite is enabled in httpd.conf file other wise if you got latest apache the module rewrite is no longer seperated module and should be pre-enabled directely in apache webserver. But make sure you imported .sql file as well into db to fix url problems.
Crunch ♫ | ♥ 2018

0 subject , 1 reply

Unread message
Thanks alot for this thread. Had the exact same problem and with the solution of creativewild it worked. :)