Nickname

Password



Lost Password?

Don't have an account?
Register now!

Main Menu

Site Info

Whos Online
#99: Guest (s)
#1: Member (s)
#823: Registered Members

# netshark » News


You are Visitor.
Register Now.

Partners Block
http://www.runcms.ru

http://www.runcms-france.com

http://www.runcms.de/


Table of Contents


New to RunCMS? How to start..

New to RunCMS? start reading the --> documentation <--
Back to Top

It always disconnects me -why?

You login and you get the message: you are now connected. But you are immediately back to login page. What happens?

Several options:
- Your browser. Try with an other one and check if it happens too.
- Cookies. Accept cookies must be enabled
- Your browsers cache. Eventually empty cache and try again.
- On several sites the www disappears in the URL. And with some hosters, the site doesn't work without www. Check your mainfile.php at the root of your site; it must contain  the www  where it's talking about URL:

define('XOOPS_URL', 'http://yoursite);



Back to Top

I can't login - why?

No way to login? Always error message even if sure that your login data is ok? Several options why this occour, and the most current is this:

You changed the start page of your site, but the page you set for start has no access-right for guests, even for reading. How to fix this?

In your browser you type: /yoursite/user.php, so you can login
Then you go to admin panel and you fix access rights for the module defined as to be displayed on START.

Back to Top

My FAQ don't display anything!

You have to put something in the field order  right at the bottom of Question. If order = 0, the question is not displayed.
Back to Top

I just get a blank page - why?

Your site, suddenly, only displays a blank page. What's happening?
Well, mostly it's related to mainfile.php. Check it! It must contain all information, hostname, path, and so on.
If you are sure: mainfile.php is ok, then check your CHMOD
If CHMOD also ok, re-upload your file without mainfile.php because often, problems occours only because some file upload failed.

Back to Top

How can I move my site?

- upload your files to your server
- upload your database. That means connect to your site via PHPMyAdmin, and go to SQL - panel. Browse your harddisk to your DB-backup and click execute. It may take some time, depending size of database.
- check mainfile.php, path, username, password and so on
- check CHMODS
- go to Admin/Modules and update System
- verify if anything works fine

This explanation comes from the old runcms.org site and it was written by  Half-Dead, Neon & Bob

Back to Top

Internal Server Error - RunCms 1.5

RunCMS 1.5 comes with an .htaccess file configuring rewrite modus.
Some hosters don't allow some configurations, or they are already configured to rewrite modus. If you get an error message like this.

500 Internal Server Error

open your .htaccess file and comment out the following lines
--------------------------------------------
php_flag register_globals off
php_flag display_errors on
php_value error_reporting 7
--------------------------------------------
to
--------------------------------------------
#php_flag register_globals off
#php_flag display_errors on
#php_value error_reporting 7
--------------------------------------------

Back to Top

I just install RunCMS 1.5(.1) in the not root server directory & sait don't working.

Look in runcms/.htaccess - it has 2 variants

By default - RunCMS must be installed in server root directory as http://www.somesait.com/

If not so - ( http://www.somesait.com/RunCMS/ ) you need comment first variant and delete remarks from second, as shown below

###################################
# news & articles
###################################
# RunCMS installed in root directory of www server
###################################
#RewriteBase /

#RewriteRule ^news/([1-9][0-9]*).html /modules/news/article.php?storyid=$1
#RewriteRule ^links/([1-9][0-9]*).html /modules/mylinks/singlelink.php?lid=$1
#RewriteRule ^downloads/([1-9][0-9]*).html /modules/mydownloads/singlefile.php?lid=$1
#RewriteRule ^users/([1-9][0-9]*).html /userinfo.php?uid=$1
#RewriteRule ^newstopic/([1-9][0-9]*).html /modules/news/index.php?storytopic=$1
#RewriteRule ^news/ /modules/news/ [NC,R=301,L]

# if RunCMS installed in RunCMS directory on server comment lines above and remark off below
###################################
RewriteBase /RunCMS/
RewriteRule ^news/([1-9][0-9]*).html /RunCMS/modules/news/article.php?storyid=$1
RewriteRule ^links/([1-9][0-9]*).html /RunCMS/modules/mylinks/singlelink.php?lid=$1
RewriteRule ^downloads/([1-9][0-9]*).html /RunCMS/modules/mydownloads/singlefile.php?lid=$1
RewriteRule ^users/([1-9][0-9]*).html /RunCMS/userinfo.php?uid=$1
RewriteRule ^newstopic/([1-9][0-9]*).html /RunCMS/modules/news/index.php?storytopic=$1
RewriteRule ^news/ /RunCMS/modules/news/ [NC,R=301,L]

Back to Top

How to integrate a page in my site?

At the begin of your document just tpye the follwing code:

<?php
include("mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");

global $xoopsTheme, $xoopsconfig, $xoopsOption,$HTTP_POST_VARS,$HTTP_GET_VARS;
$xoopsOption['show_rblock'] =1; 

opentable($width='100%');
?>

Then comes your site's content.

At the end of your site just type the following code:

<?php closetable();

include(XOOPS_ROOT_PATH."/footer.php");
?>

 

Back to Top

Can I use Xoops-modules while I'm running RunCMS?

If you've an exoops/xoops site you may notice that  some xoops modules work and some dont...there is no warning between any modules...just some work and some dont...So you may be wondering if there's something to  edit to make the xoops modules to work on exoops.
The fact is that 
it's depending  from every module individually - some modules would be work, but usually - should not.
Their are DIFFERENT sibling systems, but have one parent - XOOPS (take a look at 
History of RunCMS )
Modules from XOOS2 usually need special adaptation for RunCMS,and this task must be solved with rather experienced PHP programmers.


Back to Top

RunCms Copyright © 2002 - 2008
- Free Opensource CMS System - 
- Click here to visit our mainsite! -