100 뷰
Missing Files
Talo

1 과목 , 3 개

읽지 않은 메시지
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 참가자
9 개
eResnova

17 과목, 875 개

참여자
읽지 않은 메시지
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 과목 , 3 개

읽지 않은 메시지
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 과목, 53 개

참여자 기증자
읽지 않은 메시지
can you post your .htaccess here?
Talo

1 과목 , 3 개

읽지 않은 메시지
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 과목 , 3 개

읽지 않은 메시지
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 과목, 53 개

참여자 기증자
읽지 않은 메시지
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 과목 , 응답 1 개

읽지 않은 메시지
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 과목, 12 개

읽지 않은 메시지
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 과목 , 응답 1 개

읽지 않은 메시지
Thanks alot for this thread. Had the exact same problem and with the solution of creativewild it worked. :)