Problems and solutions
From Cyclone3 Wiki
Contents |
[edit] Internal server error
Here's a list of possible reasons and their solutions:
- Missing mod_rewrite
- Missing mod_fcgid
- Erroneous local.conf
Check the local.conf configuration file if there's not a syntactic error, or misconfiguration.
- Trying to load non-existent component
This error may occur when you are trying to load a layer using
<CONF_VAR id="layers" value="non-existing-file" />
or
<ADDLAYER id="non-existing-file" />
or trying to load a non-existing header or body
<CONF_VAR id="header" value="non-existing-file" /> <CONF_VAR id="body" value="non-existing-file" />
so check the type you are using to display the erroneous link, and check if this is not a problem.
[edit] Never ending redirect
Check rewrite.conf and 301.conf and 301.log in your domain service.
[edit] Web browser is displaying source codes instead of webpage
Your FastCGI module is not enabled in Apache2
[edit] Links not rewriting according to sitemap
Check your local.conf, if it contains
$tom::a210=1;
Also, check your .htaccess in the !www directory, if it contains
# mod_rewrite settings
RewriteEngine On
#RewriteRule ^(.*)\/$ /$1 [L,QSA,R=301]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [S=35]
RewriteRule ^favicon\.ico$ favicon.ico [L,QSA]
RewriteRule ^robots\.txt$ robots.txt [L,QSA]
RewriteRule ^.*$ core.tom [L,QSA]
If you're using multiple languages, you probably also want to add
$TOM::LNG_permanent=1; $TOM::LNG_permanent_accepted=1;
to your local.conf.
[edit] Upload in XULadmin does not affect application
aka File is not uploaded.
- Check if exists _temp directory in you rpc domain service (/www/TOM/!domain.tld/rpc/_temp) and if permissions allows to create apache new files
[edit] Form data national characters get scrambled
The reason for this is mainly an incorrectly set enctype of the form. multipart/form is a commonly made mistake. It should be set to multipart/form-data instead.
