Posted: Fri 23. Dec 2005, 23:59
2.2 released: http://www.fckeditor.net/
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
DeXXus wrote:If your "config.inc.php" is like this:fbatista wrote:My Site running with rewrite-URL ON .
Example: http://ww2.estg.ipleiria.pt/~fbatista/p ... 0.1.0.html.with file .htaccess in DIR phpWCMSCode: Select all
$phpwcms["rewrite_url"] = 1; $phpwcms["wysiwyg_editor"] = 2 ;Code: Select all
php_flag magic_quotes_gpc Off php_flag register_globals Off RewriteEngine On RewriteBase /~fbatista/phpwcms RewriteRule ^([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.html$ /~fbatista/phpwcms/index.php?id=$1,$2,$3,$4,$5,$6 RewriteRule ^(.+)\.html$ /~fbatista/phpwcms/index.php?$1Shouldn't your entries be like this?Code: Select all
// site values $phpwcms["site"] = "http://ww2.estg.ipleiria.pt/~fbatista/"; // paths $phpwcms["root"] = "phpwcms";
Without:/~fbatistaCode: Select all
RewriteBase /phpwcms RewriteRule ^([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.html$ /phpwcms/index.php?id=$1,$2,$3,$4,$5,$6 RewriteRule ^(.+)\.html$ /phpwcms/index.php?$1