Can't view File selection after moving to new server
Posted: Thu Feb 25, 2010 10:05 pm
I moved my CMS made simple site from the development server to the live server and since doing this I can't view the File Selection pop up window. The error is get occurs when I select some text, click on edit/insert link, then click on the browse button at Link URL. The next pop up is CMS Made Simple File Selection but it is returning Not Found. After I do this a few times the browse icon disappears altogether.
I first thought I must have lost some files in transferring the sites, but I've checked through these and uploaded again and everything appears to be there. The only difference between my development server (where it was working) and the live server is I didn't have the htaccess file on the development server. So I'm thinking something in the htaccess is causing the page to direct somewhere else.
I've pasted the htaccess below:
Options +FollowSymLinks
RewriteEngine on
DirectoryIndex index.php
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URL} !index\.php [nc]
RewriteRule ^(.+)$ index.php?page=$1 [nc,L,QSA]
I can't find any other queries with a similar problem, but did read something similar occurring with languages - however this is not my problem...I'm stumped!
I first thought I must have lost some files in transferring the sites, but I've checked through these and uploaded again and everything appears to be there. The only difference between my development server (where it was working) and the live server is I didn't have the htaccess file on the development server. So I'm thinking something in the htaccess is causing the page to direct somewhere else.
I've pasted the htaccess below:
Options +FollowSymLinks
RewriteEngine on
DirectoryIndex index.php
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URL} !index\.php [nc]
RewriteRule ^(.+)$ index.php?page=$1 [nc,L,QSA]
I can't find any other queries with a similar problem, but did read something similar occurring with languages - however this is not my problem...I'm stumped!