www.las-palmas-24.com

post released sites here made with phpwcms
Post Reply
torquemada
Posts: 24
Joined: Thu 20. Jul 2006, 12:44
Location: Las Palmas de Gran Canaria
Contact:

www.las-palmas-24.com

Post by torquemada »

http://www.Las-Palmas-24.com: this huge travel page is a relaunch of the former "laspalmas24.com" project and still under "eternal" development. 3 language editions seperated by URL forwarding are running on the same installation: http://www.gran-canaria-reviews.com (english) and http://www.gran-canaria-surf.com (spanish).

This phpwcms installation has nearly about 1000 pages and is generally perfoming very well. The only bigger problems we have is the ordering of the structure (structure tree) and article selection in articlelist within hundreds of posible articles. Also consequent content seperation for Google spider is until now a problem.
Maybe we will split the 3 versions in full installations because of some problems with order & handling and SEO/Google related aspects.

Thx specially to OLI for this great and flexible CMS, also to Breitsch for the Google-Maps Plug-In which we are testing actually. Further also thx to Flip-Flop and other "quality members", which make this Forum very helpfull.
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: www.las-palmas-24.com

Post by juergen »

La isla bonita :)

Why don't you let all domains inside your install ?

Just change: in conf.inc.php:

Code: Select all

$phpwcms['site'] = 'http://'.$_SERVER['SERVER_NAME'].'/';
and this small snippet as dom-check.php in frontend_init:

Code: Select all

<?php
// compare against current domain and redirect to correct if neccessary
if(isset($LEVEL_ID[1])) {
  //check active Domain
  if($LEVEL_ID[1] == 1 && strpos(PHPWCMS_URL, 'mydomain1.com') === false) {
    headerRedirect('http://www.mydomain1.com/index.php'.returnGlobalGET_QueryString());
  }
  if($LEVEL_ID[1] == 2 && strpos(PHPWCMS_URL, 'mydomain2.com') === false) {
    headerRedirect('http://www.mydomain2.com/index.php'.returnGlobalGET_QueryString());
  }
}
?>
And check for IDs to languages ...

This comes from Oliver ... btw.
Post Reply