1
AlexSolo
What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 15:51

  • AlexSolo

  • Not too shy to talk

  • Posts: 145

  • Since: 2006/3/8 1


Have built a site for my son's swim team and converting the site to Xoops. So, right now the site exists as static pages with XOOPS as just a folder inside the site "www.site.com/xoops/html/". Did this so original site would not be disturbed. We are in the process of moving to XOOPS permanently. Can I drag everything out of the Xoops's html folder and over-write existing site? Will I break the XOOPS site? Or should I just use a redirect script in the original Index page?

2
Northern
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 16:03

  • Northern

  • Just can't stay away

  • Posts: 420

  • Since: 2004/12/26


you can move your site from "www.site.com/xoops/html/"

to "www.site.com/html/" with little to no problem, just make sure you tell the mainfile.php where you placed all the sites content.

3
AlexSolo
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 16:13

  • AlexSolo

  • Not too shy to talk

  • Posts: 145

  • Since: 2006/3/8 1


I was hoping to move it to "www.site.com/index.php. Is this possible?

4
wizanda
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 17:33

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Yes of course....in fact looks far better being in the root folder....move it first...then just edit mainfile.php to the correct settings and it moves the site....

Oh and as for the original site, depends on what sort of files remain in your root folder...i.e..an index.html will load before the index.php of Xoops.....

Make sure there are no files that could be muddled by a browser and you can have files and folders sitting in Xoops....as long as main XOOPS files are there....

5
Northern
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 17:59

  • Northern

  • Just can't stay away

  • Posts: 420

  • Since: 2004/12/26


As wizanda stted yes.

you can see HERE and HEREbolth these sites are XOOPS and bolth are in the root files.

6
carnuke
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 19:02

  • carnuke

  • Home away from home

  • Posts: 1955

  • Since: 2003/11/5


ONE IMPORTANT POINT! If you have made any URLs withhttp://domain.com/sub_folder/etc in a custom block or hacks in templates you MUST edit the database to show the new paths ie:http://domain.com/etc Now save the database and replace this with the existing. If you dont do this these paths will not be correct.
http://houseofstrauss.co.uk Resource for alternative health and holistic lifestyle
search xoops

7
AlexSolo
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 19:16

  • AlexSolo

  • Not too shy to talk

  • Posts: 145

  • Since: 2006/3/8 1


That's what I thought. I've used smartsections and multimenu to build my pages and links and I believe they ALL saved the pages created in the database ashttp://www.site.com/xoops/html/module/smartscetion.....etc. All my links will have to be changed.
Which seems hugely time consuming for me to adjust in the database. Maybe not?
Maybe easier just to put a redirect in the header of the main index page and leave it at that. Not being paid for all this work.

8
wizanda
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/22 20:09

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


In Multimenu it can have short url...so as to be:

modules/something/index.php

That then won't need changing so much...and will auto configure...

9
mactoeknee
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/27 6:28

  • mactoeknee

  • Just popping in

  • Posts: 75

  • Since: 2005/2/26


Quote:

AlexSolo wrote:
...
Maybe easier just to put a redirect in the header of the main index page and leave it at that. Not being paid for all this work.


You're probably right. For future reference, if you do more site conversions, I have converted a number of sites from old static HTML to Xoops, and I do the development right in the main (default) html folder, and no one ever notices until I bring the site live. You just set the site to "closed" except for your webmaster login, and that's only so if someone happens to stumble on www.yoursite.com/index.php-- since index.html takes precedence for visitors to the root folder of the site (www.yoursite.com/), no one really ever would find your site under development, and if they did, they could not register/login and view anything, since the site is closed.

The ONLY possible problem with this is if the html site happens to use a folder called "images" in the root directory. I avoid that by doing a global search and replace on the html files and change that folder to ~images or _images or graphics.

In any case, the only little headache with doing it this way is that clicking the "home" link on your XOOPS site during the dev always brings you back to the html homepage, but I often add a hidden "index.php" link to get me quickly back.

As things are getting wrapped up, I identify any of the html files in the site which are commonly found with search engines and create (but do not yet upload) custom redirects with those exact .html names which redirects to the corresponding new module/page on the dev site, including one for index.html which meta refreshes instantly to index.php.

As soon as the XOOPS site is ready and tested and "opened", I just upload all the new custom redirect html pages to overwrite what is there and "viola!", your site is live, and anyone coming from a search engine to mysite.com/businessdirectory.html is instantly redirected to the new mysite.com/modules/mxdirectory/ for example.

You could also just delete the index.html, and anyone coming to the root directory of the domain would then go directly to your XOOPS site's index.php, but just in case anyone gets a link to the index.html file from a search engine or a linking site, or has mysite.com/index.html in their bookmarks/favorites, I think it's a good idea to have the redirect, but others' may have a different way to deal with this.

In any case, doing it as above completely avoids the problem you were facing above.

Good luck! T

EDIT-- I researched this more and found that refresh metatags have been the source of a lot of abuse, so search engines actually disregard them. Editing the .htaccess file in the root folder is actually a better solution. I just did it on one of my sites, it took 10 minutes, and then I deleted all the old html files. The syntax in the .htaccess file is:
Redirect 301 /bizlist.html http://www.yoursite.com/modules/mxdirectory/


or

Redirect 301 /index.html http://www.yoursite.com/index.php


Great explanation at:http://www.stevenhargrove.com/redirect-web-pages/

10
carnuke
Re: What will be affected if I move the site out of the Xoops folder?
  • 2006/12/27 9:36

  • carnuke

  • Home away from home

  • Posts: 1955

  • Since: 2003/11/5


Don't bother with redirects, they are tricky with search engines and a messy way to do things. The issue with changing your site URL in the database should not be a problem, providing you have a decent Text editor

Simply open the previously saved database and do a 'find & Replace' to change your URL No replace this changed version over the old DB.

Dont attempt this in windows notepad as your DB will probably be too large for it to open.
http://houseofstrauss.co.uk Resource for alternative health and holistic lifestyle
search xoops

Login

Who's Online

239 user(s) are online (160 user(s) are browsing Support Forums)


Members: 0


Guests: 239


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits