[SOLVED] Upgrading from 1.6.3

Help with getting the CMS CORE package up and running. This does not include 3rd party modules, PHP scripts, anything downloaded via module manager or from any external source.
stevenryals
Forum Members
Forum Members
Posts: 26
Joined: Wed Apr 17, 2013 6:59 pm

Re: Upgrading from 1.6.3 (still some css & addressing issue

Post by stevenryals »

pointed the nameserver to the new location..
looking good..

only one issue I can find! that's a great start..


url rewriting isn't working properly.. a bunch of broken links
it's using the ...index.php?contentid=12... style urls..

my htaccess:

Code: Select all

Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
</IfModule>
I also tried this:

Code: Select all

Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]

Any ideas?
stevenryals
Forum Members
Forum Members
Posts: 26
Joined: Wed Apr 17, 2013 6:59 pm

Re: [SOLVED] Upgrading from 1.6.3

Post by stevenryals »

added mod_rewrite to my config file..

all working now..

Reallyl excited this is done.. Big thanks to both of you for all of your help!! MUCH APPRECIATED!
Locked

Return to “[locked] Installation, Setup and Upgrade”