The Joomla! Forum ™





Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 32 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: Sat Sep 30, 2006 6:03 am 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
Well, I've finished it... Right now, it's just a really rough hack, but I eventually plan on writing an administrative component for it and offering J! as a package.  Here's how to do it... Create a subdomain or domain alias that has the docroot pointing to the main J! installation.

create a file sites.php in the root of J! containing the following :
Code:
<?php
defined('_VALID_MOS') or die('No Access');
$sites_name['main_domain']='configuration.php';
$sites_name['second_domain']='config_domain.php';
$sites_name['third_domain']='third_domain.php';
?>


make a copy of configuration.php, and rename it to each of the sites config (config_domain.php).  Then edit config_domain.php to reflect the settings of the domain ($mosConfig_live_site = 'domain'; and $mosConfig_dbprefix = 'newprefix_'; and $mosConfig_site_name = "New Site Name";)

index.php and index2.php - find require('configuration.php'); and replace with
Code:
require_once ( 'sites.php' );
$conf_igure = $sites_name[$_SERVER['SERVER_NAME']];
require_once( $conf_igure );


/administrator/index.php index2.php and index3.php find require('../configuration.php'); and replace with
Code:
require_once ( '../sites.php' );
$conf_igure = $sites_name[$_SERVER['SERVER_NAME']];
require_once( '../' . $conf_igure );


/administrator/components/com_config/admin.config.php - find $fname = $mosConfig_absolute_path . '/configuration.php'; and replace with
Code:
global $conf_igure;
$fname = $mos_Config_absolute_path . '/' . $conf_igure;


/administrator/includes/auth.php - Find include 'configuration.php'; and replace with
Code:
global $conf_igure;
include ( $conf_igure );


/components/com_sef/sef.php and /includes/sef.php find include ( 'configuration.php' ); and replace with
Code:
global $conf_igure;
include ( $conf_igure );


That's all it takes to create multiple sites on J! as long as it uses independant databases...  Now, if you want to share some common tables, you can do this...

/includes/database.php - Find

/includes/database.php - find the line $literal .= str_replace( $prefix , $this->_table_prefix , substr...; and replace with
Code:
$common_tables = array('#__banner'=>'jos_banner',
'#__bannerclient'=>'jos_bannerclient',
'#__bannerfinish'=>'jos_bannerfinish',
'#__components'=>'jos_components',
'#__comprofiler'=>'jos_comprofiler',
'#__comprofiler_fields'=>'jos_comprofiler_fields',
'#__comprofiler_field_values'=>'jos_comprofiler_field_values',
'#__comprofiler_lists'=>'jos_comprofiler_lists',
'#__comprofiler_members'=>'jos_comprofiler_members',
'#__comprofiler_plugin'=>'jos_comprofiler_plugin',
'#__comprofiler_tabs'=>'jos_comprofiler_tabs',
'#__comprofiler_userreports'=>'jos_comprofiler_userreports',
'#__comprofiler_views'=>'jos_comprofiler_views',
'#__contact_details'=>'jos_contact_details',
'#__core_acl_aro'=>'jos_core_acl_aro',
'#__core_acl_aro_groups'=>'jos_core_acl_aro_groups',
'#__core_acl_aro_sections'=>'jos_core_acl_aro_sections',
'#__core_acl_groups_aro_map'=>'jos_core_acl_groups_aro_map',
'#__groups'=>'jos_groups',
'#__mambots'=>'jos_mambots',
'#__messages'=>'jos_messages',
'#__messages_cfg'=>'jos_messages_cfg',
'#__modules'=>'jos_modules',
'#__templates_menu'=>'jos_templates_menu',
'#__template_positions'=>'jos_template_positions',
'#__users'=>'jos_users',
'#__usertypes'=>'jos_usertypes',
$search = array_keys($common_tables);
$replace = array_values($common_tables);
array_push($search,$prefix);
array_push($replace,$this->_table_prefix);
$literal .= str_replace( $search , $replace , substr( $sql, $startPos, $j - $startPos ) );

This will create multiple sites, with seperate content, templates, and polls, and such, but with a common user base, and a common place to upload components (installing a component/module/mambot/template/etc)... The set of tables included above include Community Builder...

There are other files that can be modified to help appearances, but this list is all it takes to get a working site (I have 2 running currently)...

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Last edited by ircmaxell on Thu Jul 12, 2007 7:35 pm, edited 1 time in total.

Top
 Profile  
 
PostPosted: Fri Oct 27, 2006 2:49 pm 
Joomla! Intern
Joomla! Intern

Joined: Sat Nov 26, 2005 2:59 am
Posts: 80
Can this solution run mutiple sites on the same file structure? In otherwords, can I use just one basic install for all include files, module files, and component files?  Or do I have to install them again?

I'd like to have the same database (except content) and same file structure (except for configuration.php, /com_content/content.html.php, and template) Thanks

_________________
http://www.naturalencyclopedia.com
http://realestate.thecommunityforums.com


Top
 Profile  
 
PostPosted: Fri Oct 27, 2006 6:07 pm 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
Well, you can install any component you'd like.  If you want each site to use it, then install it on the main site, and copy it's tables into the common tables section...

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Sat Nov 18, 2006 1:02 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Nov 18, 2006 12:58 am
Posts: 3
ircmaxell wrote:
Well, you can install any component you'd like.  If you want each site to use it, then install it on the main site, and copy it's tables into the common tables section...



Hi ircmaxell,  thank you for your great hack!!  I got my two sites running as well. But for "artbanner" and "event_list" components, they didn't hook up... for CB, if I registered an account on "satellite site", it didn't pass to the main database. And I always got "session expired" problem if I logged into both backend at the same time...

Any ideas?? Thanks!!


Last edited by woohoohoo on Sat Nov 18, 2006 1:05 am, edited 1 time in total.

Top
 Profile  
 
PostPosted: Sat Nov 18, 2006 1:18 am 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
What tables do you have shared?

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Sat Nov 18, 2006 1:39 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Nov 18, 2006 12:58 am
Posts: 3
ircmaxell wrote:
What tables do you have shared?


Quote:
$common_tables = array('#__artbannersplus'=>'jos_artbannersplus',
'#__artbannersplus_categories'=>'jos_artbannersplus_categories',
'#__artbannersplus_clients'=>'jos_artbannersplus_clients',
'#__comprofiler'=>'jos_comprofiler',
'#__comprofiler_fields'=>'jos_comprofiler_fields',
'#__comprofiler_field_values'=>'jos_comprofiler_field_values',
'#__comprofiler_lists'=>'jos_comprofiler_lists',
'#__comprofiler_members'=>'jos_comprofiler_members',
'#__comprofiler_plugin'=>'jos_comprofiler_plugin',
'#__comprofiler_plug_profilegallery'=>'jos_comprofiler_plug_profilegallery',
'#__comprofiler_tabs'=>'jos_comprofiler_tabs',
'#__comprofiler_userreports'=>'jos_comprofiler_userreports',
'#__comprofiler_views'=>'jos_comprofiler_views',
'#__eventlist_categories'=>'jos_eventlist_categories',
'#__eventlist_dates'=>'jos_eventlist_dates',
'#__eventlist_locate'=>'jos_eventlist_locate',
'#__eventlist_register'=>'jos_eventlist_register',
'#__eventlist_settings'=>'jos_eventlist_settings',
'#__eventlist_settings_jfish'=>'jos_eventlist_settings_jfish',
'#__events_registrations'=>'jos_events_registrations',
'#__events_registration_fields'=>'jos_events_registration_fields',
'#__events_registration_fields_options'=>'jos_events_registration_fields_options',
'#__events_registration_fields_values'=>'jos_events_registration_fields_values',
'#__events_sessions'=>'jos_events_sessions',
'#__events_venues'=>'jos_events_venues',
'#__users'=>'jos_users',
'#__usertypes'=>'jos_usertypes',
//'#__banner'=>'jos_banner',
//'#__bannerclient'=>'jos_bannerclient',
//'#__bannerfinish'=>'jos_bannerfinish',
'#__components'=>'jos_components',
//'#__comprofiler'=>'jos_comprofiler',
//'#__comprofiler_fields'=>'jos_comprofiler_fields',
//'#__comprofiler_field_values'=>'jos_comprofiler_field_values',
//'#__comprofiler_lists'=>'jos_comprofiler_lists',
//'#__comprofiler_members'=>'jos_comprofiler_members',
//'#__comprofiler_plugin'=>'jos_comprofiler_plugin',
//'#__comprofiler_tabs'=>'jos_comprofiler_tabs',
//'#__comprofiler_userreports'=>'jos_comprofiler_userreports',
//'#__comprofiler_views'=>'jos_comprofiler_views',
//'#__contact_details'=>'jos_contact_details',
'#__core_acl_aro'=>'jos_core_acl_aro',
'#__core_acl_aro_groups'=>'jos_core_acl_aro_groups',
'#__core_acl_aro_sections'=>'jos_core_acl_aro_sections',
'#__core_acl_groups_aro_map'=>'jos_core_acl_groups_aro_map',
'#__groups'=>'jos_groups',
'#__mambots'=>'jos_mambots',
'#__messages'=>'jos_messages',
'#__messages_cfg'=>'jos_messages_cfg');
//'#__modules'=>'jos_modules',
//'#__templates_menu'=>'jos_templates_menu',
//'#__template_positions'=>'jos_template_positions',
//'#__users'=>'jos_users',
//'#__usertypes'=>'jos_usertypes');
$search = array_keys($common_tables);
$replace = array_values($common_tables);
array_push($search,$prefix);
array_push($replace,$this->_table_prefix);
$literal .= str_replace( $search , $replace , substr( $sql, $startPos, $j - $startPos ) );




Top
 Profile  
 
PostPosted: Sat Nov 18, 2006 1:44 am 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
Well, for one, you may need jos_sessions...

Also, some other components like the menus to be the same because of the id's... just play around with it (I don't know those components)...

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Sat Nov 18, 2006 3:11 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Nov 18, 2006 12:58 am
Posts: 3
ircmaxell wrote:
Well, for one, you may need jos_sessions...

Also, some other components like the menus to be the same because of the id's... just play around with it (I don't know those components)...


Thanks!  Can I ask how did u solve the registration problem? Like if the user register account on "satellite site", how to pass the info to the main site database?  replacing all the #_users to jos_users(supposing the main site is Jos_ )?


Top
 Profile  
 
PostPosted: Sat Nov 18, 2006 11:28 am 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
It worked fine for me...  One registration across all sites....

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Mon Jan 01, 2007 11:00 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Fri Dec 29, 2006 6:05 pm
Posts: 2
this hack looks great, I was just wondering if it is useful just to make different sites share the same modules? like a forum shared between 4 sites?


Top
 Profile  
 
PostPosted: Mon May 07, 2007 10:24 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Mon May 07, 2007 10:20 am
Posts: 4
Hello, we are interested to develop a 'Website Builder' using Joomla.  I think this component could help but only thing is that we would like the customers to have their own access to the admin panel.  So basically, each site with a different admin panel.  Does this work like that?  Is there any other component which could help us in this?  Thanks in advance.


Top
 Profile  
 
PostPosted: Mon May 07, 2007 11:14 am 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
I had looked into that, and tried about a year ago.  It would require SO many modifications, that it's wouldn't be worth it in the least.

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Mon May 07, 2007 1:44 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Mon May 07, 2007 10:20 am
Posts: 4
ircmaxell, thanks a lot for your prompt reply.  Would think of something else.


Top
 Profile  
 
PostPosted: Sun Jul 08, 2007 12:55 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Thu Oct 19, 2006 5:59 am
Posts: 14
this hack seems to look like exactly what i am looking for.
my website is currently getting cluttered and i am thinking of new divisions of the site. so seperate joomla installs would solve the problem.
was looking for a way to share user registrations...sessions... logins...  from what i read this is the ideal solution.

anyone still using this method? any fallouts? is there a better solution to accomplish the same?
im too lazy to set up a demo site, so will try it late tonight when there is no traffic.

for the satellite sites i understand i need to make a new db for each site... what structure should it have? i need to copy existing tables into the new db?

ircmaxell: I am a happy user of your page_cache component :-)


Top
 Profile  
 
PostPosted: Sun Jul 08, 2007 7:46 pm 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
Actually, you don't need different databases (just different table prefixes)...

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Thu Jul 12, 2007 5:01 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Thu Oct 19, 2006 5:59 am
Posts: 14
hmm... maybe a lil offtopic, not J! related ... but im trying to fine an easy way of copying the existing tables into new ones..
like copy jos_tablename to satelite1_tabelname  ... is there a simple mysql command to do that?

i found this
Code:
CREATE TABLE MyEmployee SELECT * FROM Employee


but it only copies the data, not the indexes.

can phpmyadmin do it? then ill need to install one...


Top
 Profile  
 
PostPosted: Thu Jul 12, 2007 5:15 pm 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
Well, you could export all data, then open the file in notepad and do a string replace between "jos_" and "satelite1_"

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Thu Jul 12, 2007 7:16 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Thu Oct 19, 2006 5:59 am
Posts: 14
Found a bug!!!
ircmaxell wrote:

/administrator/index.php index2.php and index3.php find require('../configuration.php'); and replace with
Code:
require_once ( 'sites.php' );
$conf_igure = $sites_name[$_SERVER['SERVER_NAME']];
require_once( '../' . $conf_igure );



It should actually be :-
Code:
require_once ( ../'sites.php' );
$conf_igure = $sites_name[$_SERVER['SERVER_NAME']];
require_once( '../' . $conf_igure );

...as sites.php is in the root j! folder and not in the admin folder :-)


Top
 Profile  
 
PostPosted: Thu Jul 12, 2007 7:35 pm 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
You have a point...

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Thu Jul 12, 2007 8:33 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Thu Oct 19, 2006 5:59 am
Posts: 14
i think i have changed everything as per first post, and added the sessions table as a shared table. after stupidly overwriting the php.ini with an old one... APC ran into problems... fixed them... now back to joomla - multi sites...
my setup is as follows

joomla 1.0.11
using your page cache component but is dissabled for the time being.

facing following issues :-

1) Sessions are not carried over. loging in in main site doesnt log me into the satellite and vice versa.
2) Frontend of satelite site shows same page title as main site, however in admin pages it shows title of the satelite site.
3) This is wierd - since before the port, i copied all tables from main site into satellite. now on satellite, i unpublish a frontpage content item, effect, content vanished from satellite, however on main site it gets removed from the frontpage but is still seen in latest articles. backend of main site doesnt show any change. i think i have messed up somewhere?
4) on satelite site, in the administration if i change any global setting and do apply, it says configuration updated, but it remains the same.

nothing in error.log, ive turned on all error reporting.. no errors.

the session part is not too serious.. as we may not use user access for the satellite site at the moment (with page_cache enabled and no1 loged in its gonna be a kickass fast subdomain).

points 2 and 3 indicate there may be need for some more change in some joomla file.

FYI my sites.php looks like this :-
Code:
<?php
defined('_VALID_MOS') or die('No Access');
$sites_name['www.domain.com']='configuration.php';
$sites_name['subdomain.domain.com']='configuration.travel.php';

?>


and if it matters.. im using opensef


Top
 Profile  
 
PostPosted: Thu Jul 12, 2007 8:38 pm 
User avatar
Joomla! Ace
Joomla! Ace

Joined: Thu Nov 10, 2005 3:10 am
Posts: 1926
Location: New Jersey, USA
Well the sessions won't carry over (they are dependant on the site name).  For #2, this should not happen... did you manually change the site name in configuration.site2.php?  For #3, what tables do you have shared?  For #4, I have a feeling it's loading the default configuration.php (instead of the site specific one)... Check to make sure that the correct file is in $conf_igure...

_________________
Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST

http://moovum.com/ - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur...
http://www.joomlaperformance.com For All Your Joomla Performance Needs


Top
 Profile  
 
PostPosted: Thu Jul 12, 2007 9:37 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Thu Oct 19, 2006 5:59 am
Posts: 14
hi,

thanks a lot for taking time to help me out.

sessions - doesnt matter
#2 : Yes, i did change this manually in the satellite's config file. but even in the global configuration it shows the correct site name
#4 : for the backend, i added echo $conf_igure in the of the admin template, it shows the correct filename. <br />for the frontend, in joomla.php i  put the $conf_igure in the title... on both sites it shows the correct $conf_igure (only after doing global $conf_igure;  first)<br /><br />#3 shared tables<br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">                        $common_tables = array('#__banner'=>'jos_banner',<br />'#__bannerclient'=>'jos_bannerclient',<br />'#__bannerfinish'=>'jos_bannerfinish',<br />'#__components'=>'jos_components',<br />'#__comprofiler'=>'jos_comprofiler',<br />'#__comprofiler_fields'=>'jos_comprofiler_fields',<br />'#__comprofiler_field_values'=>'jos_comprofiler_field_values',<br />'#__comprofiler_lists'=>'jos_comprofiler_lists',<br />'#__comprofiler_members'=>'jos_comprofiler_members',<br />'#__comprofiler_plugin'=>'jos_comprofiler_plugin',<br />'#__comprofiler_tabs'=>'jos_comprofiler_tabs',<br />'#__comprofiler_userreports'=>'jos_comprofiler_userreports',<br />'#__comprofiler_views'=>'jos_comprofiler_views',<br />'#__contact_details'=>'jos_contact_details',<br />'#__core_acl_aro'=>'jos_core_acl_aro',<br />'#__core_acl_aro_groups'=>'jos_core_acl_aro_groups',<br />'#__core_acl_aro_sections'=>'jos_core_acl_aro_sections',<br />'#__core_acl_groups_aro_map'=>'jos_core_acl_groups_aro_map',<br />'#__groups'=>'jos_groups',<br />'#__mambots'=>'jos_mambots',<br />'#__messages'=>'jos_messages',<br />'#__messages_cfg'=>'jos_messages_cfg',<br />'#__modules'=>'jos_modules',<br />'#__templates_menu'=>'jos_templates_menu',<br />'#__template_positions'=>'jos_template_positions',<br />'#__users'=>'jos_users',<br />'#__sessions'=>'jos_sessions',<br />'#__usertypes'=>'jos_usertypes');<br />$search = array_keys($common_tables);<br />$replace = array_values($common_tables);<br />array_push($search,$prefix);<br />array_push($replace,$this->_table_prefix);<br />$literal .= str_replace( $search , $replace , substr( $sql, $startPos, $j - $startPos ) );</div></div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row2"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=66796&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row1"> <td align="center" valign="middle"> <a name="p901111"></a> <a href="./memberlist.php?mode=viewprofile&u=66796&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">thaindian</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p901111">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=901111&sid=1dd4b42dcc3c30d559312641bd03f07c#p901111"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Fri Jul 13, 2007 1:23 pm </div></td> </tr> </table> </td> </tr> <tr class="row1"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td class="postdetails">Joomla! Apprentice</td> </tr> <tr> <td><img src="./images/ranks/apprentice.png" alt="Joomla! Apprentice" title="Joomla! Apprentice" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Thu Oct 19, 2006 5:59 am<br /><b>Posts:</b> 14 </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">and also in the admin part of the satellite site on /administrator/index2.php?option=com_admin&task=sysinfo<br /><br />it is showing the configuration file  of the main site.</div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row1"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=66796&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row2"> <td align="center" valign="middle"> <a name="p901124"></a> <a href="./memberlist.php?mode=viewprofile&u=11402&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">ircmaxell</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p901124">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=901124&sid=1dd4b42dcc3c30d559312641bd03f07c#p901124"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Fri Jul 13, 2007 1:31 pm </div></td> </tr> </table> </td> </tr> <tr class="row2"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td><a href="./memberlist.php?mode=viewprofile&u=11402&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./download/file.php?avatar=11402_1208713444.jpg" width="64" height="80" alt="User avatar" /></a></td> </tr> <tr> <td class="postdetails">Joomla! Ace</td> </tr> <tr> <td><img src="./images/ranks/ace.png" alt="Joomla! Ace" title="Joomla! Ace" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Thu Nov 10, 2005 3:10 am<br /><b>Posts:</b> 1926<br /><b>Location:</b> New Jersey, USA </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">I'm not sure... I had this working a long time ago... I havn't used it since I posted it (didn't have the need anymore)...</div> <div class="postbody"><br />_________________<br />Anthony Ferrara - Core Team - Development Coordinator - Bug Squad - JSST<br /><br /><a href="http://moovum.com" class="postlink">http://moovum.com/</a> - The Bird is in the air! Get Mollom Anti-Spam on your Joomla! website with Moovur... <br /><a href="http://www.joomlaperformance.com" class="postlink">http://www.joomlaperformance.com</a> For All Your Joomla Performance Needs</div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row2"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=11402&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row1"> <td align="center" valign="middle"> <a name="p948088"></a> <a href="./memberlist.php?mode=viewprofile&u=40987&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">briging gap</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p948088">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=948088&sid=1dd4b42dcc3c30d559312641bd03f07c#p948088"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Tue Aug 14, 2007 7:22 pm </div></td> </tr> </table> </td> </tr> <tr class="row1"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td><a href="./memberlist.php?mode=viewprofile&u=40987&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="http://www.sbsonline.co.uk/images/stories/people/nigeloffice.jpg" width="65" height="65" alt="User avatar" /></a></td> </tr> <tr> <td class="postdetails">Joomla! Enthusiast</td> </tr> <tr> <td><img src="./images/ranks/enthusiast.png" alt="Joomla! Enthusiast" title="Joomla! Enthusiast" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Tue Jun 13, 2006 4:25 pm<br /><b>Posts:</b> 111<br /><b>Location:</b> Coventry - UK </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">Having read through all of this post i'm a litle confused (it's been a long day)  when you say point the doc rooot at the main J installation, do you mean redirect<br /><br />Main install in www/subsite1 (subsite1.domain.com)<br />sub site on subsite2.domain.com with url redirection to subsite1.domain.com <br /><br />Also in the index.php file where exactly do I need to change the code (j1.13)<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">// checks for configuration file, if none found loads installation page<br />if (!file_exists( 'configuration.php' ) || filesize( 'configuration.php' ) < 10) {<br />   $self = rtrim( dirname( $_SERVER['PHP_SELF'] ), '/\\' ) . '/';<br />   header("Location: http://" . $_SERVER['HTTP_HOST'] . $self . "installation/index.php" );<br />   exit();<br />}<br /><br />require( 'globals.php' );<br />require_once( 'configuration.php' );<br /><br />// SSL check - $http_host returns <live site url>:<port number if it is 443><br />$http_host = explode(':', $_SERVER['HTTP_HOST'] );<br />if( (!empty( $_SERVER['HTTPS'] ) && strtolower( $_SERVER['HTTPS'] ) != 'off' || isset( $http_host[1] ) && $http_host[1] == 443) && substr( $mosConfig_live_site, 0, 8 ) != 'https://' ) {<br />   $mosConfig_live_site = 'https://'.substr( $mosConfig_live_site, 7 );<br />}<br /><br />require_once( 'includes/joomla.php' );</div><br /><br />Another question which I think I know teh eanser to is do I have to install joomla in the new subdomain or not (think the answer is not<br /><br />Help appreciated<br /><br />Nigel</div> <div class="postbody"><br />_________________<br />Joomla Based community Website - <!-- m --><a class="postlink" href="http://www.business4brunch.com">http://www.business4brunch.com</a><!-- m --></div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row1"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=40987&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row2"> <td align="center" valign="middle"> <a name="p1455062"></a> <a href="./memberlist.php?mode=viewprofile&u=234042&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">hamzahali</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p1455062">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=1455062&sid=1dd4b42dcc3c30d559312641bd03f07c#p1455062"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Mon Oct 20, 2008 11:47 pm </div></td> </tr> </table> </td> </tr> <tr class="row2"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td class="postdetails">Joomla! Apprentice</td> </tr> <tr> <td><img src="./images/ranks/apprentice.png" alt="Joomla! Apprentice" title="Joomla! Apprentice" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Fri Sep 12, 2008 11:51 pm<br /><b>Posts:</b> 5 </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">I wanted to change the name of jos_content to jos_apps?<br />Is it possible ircmaxell ?<br />Please help.<br />I have wasted 2 days on this.</div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row2"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=234042&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row1"> <td align="center" valign="middle"> <a name="p1515048"></a> <a href="./memberlist.php?mode=viewprofile&u=228605&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">agbert</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p1515048">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=1515048&sid=1dd4b42dcc3c30d559312641bd03f07c#p1515048"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Sat Dec 13, 2008 12:06 am </div></td> </tr> </table> </td> </tr> <tr class="row1"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td><a href="./memberlist.php?mode=viewprofile&u=228605&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./download/file.php?avatar=228605_1229126740.png" width="76" height="80" alt="User avatar" /></a></td> </tr> <tr> <td class="postdetails">Joomla! Fledgling</td> </tr> <tr> <td><img src="./images/ranks/fledgling.png" alt="Joomla! Fledgling" title="Joomla! Fledgling" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Mon Aug 25, 2008 5:25 am<br /><b>Posts:</b> 1<br /><b>Location:</b> Folsom, CA </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">Does this hack work for 1.5?<br /><br />Just checking, and am about to dive in and try ;-)</div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row1"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=228605&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row2"> <td align="center" valign="middle"> <a name="p1556908"></a> <a href="./memberlist.php?mode=viewprofile&u=269041&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">tianrurieza</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p1556908">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=1556908&sid=1dd4b42dcc3c30d559312641bd03f07c#p1556908"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Wed Jan 21, 2009 4:37 am </div></td> </tr> </table> </td> </tr> <tr class="row2"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td class="postdetails">Joomla! Apprentice</td> </tr> <tr> <td><img src="./images/ranks/apprentice.png" alt="Joomla! Apprentice" title="Joomla! Apprentice" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Wed Jan 21, 2009 2:19 am<br /><b>Posts:</b> 5 </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">mmmh . well . do you have all sample files . i really want to follow this , but i'm still confused . <img src="./images/smilies/icon_sad.gif" alt=":(" title="Sad" /></div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row2"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=269041&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row1"> <td align="center" valign="middle"> <a name="p1558846"></a> <a href="./memberlist.php?mode=viewprofile&u=119587&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">webbyhull</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p1558846">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=1558846&sid=1dd4b42dcc3c30d559312641bd03f07c#p1558846"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Thu Jan 22, 2009 2:10 pm </div></td> </tr> </table> </td> </tr> <tr class="row1"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td class="postdetails">Joomla! Apprentice</td> </tr> <tr> <td><img src="./images/ranks/apprentice.png" alt="Joomla! Apprentice" title="Joomla! Apprentice" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Mon Jun 04, 2007 2:29 pm<br /><b>Posts:</b> 25 </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">hi there<br /><br />will this work with joomla 1.5 ?</div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row1"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=119587&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table class="tablebg" width="100%" cellspacing="1"> <tr class="row2"> <td align="center" valign="middle"> <a name="p1589353"></a> <a href="./memberlist.php?mode=viewprofile&u=277198&sid=1dd4b42dcc3c30d559312641bd03f07c"><b class="postauthor">sprinteroz</b></a> </td> <td width="100%" height="25"> <table width="100%" cellspacing="0"> <tr> <td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> <a href="#p1589353">Re: Multiple Sites - Sharing Several common tables</a></div><div style="float: right;"><a href="./viewtopic.php?p=1589353&sid=1dd4b42dcc3c30d559312641bd03f07c#p1589353"><img src="./styles/joomla09/imageset/icon_post_target.gif" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Tue Feb 17, 2009 2:15 pm </div></td> </tr> </table> </td> </tr> <tr class="row2"> <td valign="top" class="profile"> <table cellspacing="4" align="center" width="150"> <tr> <td class="postdetails">Joomla! Apprentice</td> </tr> <tr> <td><img src="./images/ranks/apprentice.png" alt="Joomla! Apprentice" title="Joomla! Apprentice" /></td> </tr> </table> <span class="postdetails"> <br /><b>Joined:</b> Sat Feb 14, 2009 2:11 am<br /><b>Posts:</b> 6 </span> </td> <td valign="top"> <table width="100%" cellspacing="5"> <tr> <td> <div class="postbody">Hi after reading a lot on the net its hard to tell is the stuff you are reading is for J! 1.0 or J! 1.5<br /><br />I come across this post and seen all the questions about if this is for 1.5 I believe it would not be as the original post date was 2006 <em>(but 1.5 might have been out back then)</em>. Also note i'm only new to joomla about 2 weeks and I have built 2 templates into 1 template manually but found i need to have more User modules as joomla 1.5 only gos up to user9 and i also need to find a hack to make a 2nd left module and a 2nd right module and banner 2 module as if i add the normal modules names (<strong>left right</strong>)to the 2nd template it just clones the top as it reading left and right module and not left2 and right2 module.<br /><br />But once I found this post it got me thinking, I have been going about this all the wrong way i'm trying to use this template like the old html and php template and joomla just dose not work like this unless you know how to hack the core or make modules and i'm no where near that good at coding but i'm learning and i'm also starting to like the code structure and beginning to understand it alot more. <br /><br />Well to save all the hair pulling I looked around for a few hours on search engines looking for a module that will do this, and wow yes I finally found one that should let you do this function in 1.5 but it costs.<br /><br />Hope this helps you out.<br /><br />Joomla Multi Sites<br />Ps. EDIT oops forgot to place the link. <!-- m --><a class="postlink" href="http://extensions.joomla.org/extensions/core-enhancements/multiple-sites/5550/details">http://extensions.joomla.org/extensions ... 50/details</a><!-- m --><br /><br /> here is a link to the documents if you want to read more on it.<br /><br />Joomla Multi Sites Documents<br /><!-- m --><a class="postlink" href="http://www.jms2win.com/documentation">http://www.jms2win.com/documentation</a><!-- m --></div> <br clear="all" /><br /> <table width="100%" cellspacing="0"> <tr valign="middle"> <td class="gensmall" align="right"> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr class="row2"> <td class="profile"><strong><a href="#wrapheader">Top</a></strong></td> <td><div class="gensmall" style="float: left;">  <a href="./memberlist.php?mode=viewprofile&u=277198&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/icon_user_profile.gif" width="72" height="20" alt="Profile" title="Profile" /></a>  </div> <div class="gensmall" style="float: right;">  </div></td> </tr> <tr> <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> </tr> </table> <table width="100%" cellspacing="1" class="tablebg"> <tr align="center"> <td class="cat"><form name="viewtopic" method="post" action="./viewtopic.php?f=178&t=99639&sid=1dd4b42dcc3c30d559312641bd03f07c"><span class="gensmall">Display posts from previous:</span> <select name="st" id="st"><option value="0" selected="selected">All posts</option><option value="1">1 day</option><option value="7">7 days</option><option value="14">2 weeks</option><option value="30">1 month</option><option value="90">3 months</option><option value="180">6 months</option><option value="365">1 year</option></select> <span class="gensmall">Sort by</span> <select name="sk" id="sk"><option value="a">Author</option><option value="t" selected="selected">Post time</option><option value="s">Subject</option></select> <select name="sd" id="sd"><option value="a" selected="selected">Ascending</option><option value="d">Descending</option></select> <input class="btnlite" type="submit" value="Go" name="sort" /></form></td> </tr> </table> <table width="100%" cellspacing="1"> <tr> <td align="left" valign="middle" nowrap="nowrap"> <a href="./posting.php?mode=post&f=178&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/button_topic_locked.gif" width="88" height="25" alt="Forum locked" title="Forum locked" /></a> <a href="./posting.php?mode=reply&f=178&t=99639&sid=1dd4b42dcc3c30d559312641bd03f07c"><img src="./styles/joomla09/imageset/en/button_topic_locked.gif" width="88" height="25" alt="This topic is locked, you cannot edit posts or make further replies." title="This topic is locked, you cannot edit posts or make further replies." /></a> </td> <td class="nav" valign="middle" nowrap="nowrap"> Page <strong>1</strong> of <strong>2</strong><br /></td> <td class="gensmall" nowrap="nowrap"> [ 32 posts ] </td> <td class="gensmall" width="100%" align="right" nowrap="nowrap"><b><a href="#" onclick="jumpto(); return false;" title="Click to jump to page…">Go to page</a> <strong>1</strong><span class="page-sep">, </span><a href="./viewtopic.php?f=178&t=99639&sid=1dd4b42dcc3c30d559312641bd03f07c&start=30">2</a>  <a href="./viewtopic.php?f=178&t=99639&sid=1dd4b42dcc3c30d559312641bd03f07c&start=30">Next</a></b></td> </tr> </table> </div> <div id="pagefooter"></div> <br clear="all" /> <div style="margin:0 auto;padding: 15px 0 5px 0;width:468px;border:0;"> <script type="text/javascript"> GA_googleFillSlot("Joomla_Forum_Footer"); </script> </div> <br clear="all" /> <table class="tablebg" width="100%" cellspacing="1" cellpadding="0" style="margin-top: 5px;"> <tr> <td class="row1"> <p class="breadcrumbs"><a href="./index.php?sid=1dd4b42dcc3c30d559312641bd03f07c">Board index</a> » <a href="./viewforum.php?f=508&sid=1dd4b42dcc3c30d559312641bd03f07c">Joomla! Official Sites & Infrastructure</a> » <a href="./viewforum.php?f=7&sid=1dd4b42dcc3c30d559312641bd03f07c">Sites & Infrastructure - Feedback/Information</a> » <a href="./viewforum.php?f=229&sid=1dd4b42dcc3c30d559312641bd03f07c">Archived Boards - All boards closed</a> » <a href="./viewforum.php?f=178&sid=1dd4b42dcc3c30d559312641bd03f07c">Core Hacks and Patches</a></p> </td> </tr> </table> <br clear="all" /> <table class="tablebg" width="100%" cellspacing="1"> <tr> <td class="catwho"><h4>Who is online</h4></td> </tr> <tr> <td class="row1"><p class="gensmall">Users browsing this forum: No registered users and 2 guests</p></td> </tr> </table> <br clear="all" /> <table width="100%" cellspacing="1"> <tr> <td width="40%" valign="top" nowrap="nowrap" align="left"></td> <td align="right" valign="top" nowrap="nowrap"><span class="gensmall">You <strong>cannot</strong> post new topics in this forum<br />You <strong>cannot</strong> reply to topics in this forum<br />You <strong>cannot</strong> edit your posts in this forum<br />You <strong>cannot</strong> delete your posts in this forum<br />You <strong>cannot</strong> post attachments in this forum<br /></span></td> </tr> </table> <br clear="all" /> <table width="100%" cellspacing="0"> <tr> <td></td> <td align="right"> <form method="post" name="jumpbox" action="./viewforum.php?sid=1dd4b42dcc3c30d559312641bd03f07c" onsubmit="if(document.jumpbox.f.value == -1){return false;}"> <table cellspacing="0" cellpadding="0" border="0"> <tr> <td nowrap="nowrap"><span class="gensmall">Jump to:</span> <select name="f" onchange="if(this.options[this.selectedIndex].value != -1){ document.forms['jumpbox'].submit() }"> <option value="-1">Select a forum</option> <option value="-1">------------------</option> <option value="504">Joomla! Announcements</option> <option value="8">   Announcements</option> <option value="9">      Announcements Discussions</option> <option value="614">Joomla! 2.5 - Ask Support Questions Here</option> <option value="615">   General Questions/New to Joomla! 2.5</option> <option value="622">   Installation Joomla! 2.5</option> <option value="623">      Joomla! 2.5 on IIS webserver</option> <option value="624">   Administration Joomla! 2.5</option> <option value="673">      Access Control List (ACL) in Joomla! 2.5</option> <option value="625">   Migrating and Upgrading to Joomla! 2.5</option> <option value="621">   Security in Joomla! 2.5</option> <option value="620">   Extensions for Joomla! 2.5</option> <option value="626">      Components - Joomla! 2.5</option> <option value="627">      Modules - Joomla! 2.5</option> <option value="628">      Plugins - Joomla! 2.5</option> <option value="619">   Templates for Joomla! 2.5</option> <option value="629">      Template overrides in Joomla! 2.5</option> <option value="674">      Default template: Atomic in Joomla! 2.5</option> <option value="675">      Default template: Beez 5 in Joomla! 2.5</option> <option value="676">      Default template: Beez 20 in Joomla! 2.5</option> <option value="677">      Default template: Rhuk Milkyway in Joomla! 2.5</option> <option value="678">      Default Admin templates in Joomla! 2.5</option> <option value="680">      Templates for Mobile Devices in Joomla! 2.5</option> <option value="618">   Search Engine Optimization (Joomla! SEO) in Joomla! 2.5</option> <option value="617">   Language - Joomla! 2.5</option> <option value="616">   Performance - Joomla! 2.5</option> <option value="705">Joomla! 3.x - Ask Support Questions Here</option> <option value="706">   General Questions/New to Joomla! 3.x</option> <option value="707">   Installation Joomla! 3.x</option> <option value="717">      Joomla! 3.x on IIS webserver</option> <option value="708">   Administration Joomla! 3.x</option> <option value="719">      Access Control List (ACL) in Joomla! 3.x</option> <option value="710">   Migrating and Upgrading to Joomla! 3.x</option> <option value="714">   Security in Joomla! 3.x</option> <option value="715">   Extensions for Joomla! 3.x</option> <option value="721">      Components - Joomla! 3.x</option> <option value="723">      Plugins - Joomla! 3.x</option> <option value="724">         Modules - Joomla! 3.x</option> <option value="713">   Templates for Joomla! 3.x</option> <option value="718">      Template overrides in Joomla! 3.x</option> <option value="726">      Default template: Beez3 in Joomla! 3.x</option> <option value="725">      Default template: Protostar in Joomla! 3.x</option> <option value="720">      Default Admin templates in Joomla! 3.x</option> <option value="722">      Templates for Mobile Devices in Joomla! 3.x</option> <option value="712">   Search Engine Optimization (Joomla! SEO) in Joomla! 3.x</option> <option value="711">   Language - Joomla! 3.x</option> <option value="709">   Performance - Joomla! 3.x</option> <option value="513">Joomla! Older Version Support</option> <option value="506">   Joomla! 1.5</option> <option value="428">      General Questions/New to Joomla! 1.5</option> <option value="429">      Installation 1.5</option> <option value="543">         Joomla! 1.5 on IIS webserver</option> <option value="431">      Administration 1.5</option> <option value="430">      Migrating and Upgrading to Joomla! 1.5</option> <option value="432">      Security in Joomla! 1.5</option> <option value="470">      Extensions for Joomla! 1.5</option> <option value="471">         Components for Joomla! 1.5</option> <option value="472">         Modules for Joomla! 1.5</option> <option value="473">         Plugins for Joomla! 1.5</option> <option value="474">         WYSIWYG Editors for Joomla! 1.5</option> <option value="466">      Templates for Joomla! 1.5</option> <option value="469">         Template overrides for Joomla! 1.5</option> <option value="404">         Default template: BEEZ in Joomla! 1.5</option> <option value="480">         Default template: Milky Way in Joomla! 1.5</option> <option value="541">         Default Template: JA Purity in Joomla! 1.5</option> <option value="544">      Search Engine Optimization (Joomla! SEO) in Joomla! 1.5</option> <option value="485">      Language - Joomla! 1.5</option> <option value="433">      Performance - Joomla! 1.5</option> <option value="505">   Joomla! 1.0</option> <option value="35">      Installation - 1.0.x</option> <option value="36">      Upgrading - 1.0.x</option> <option value="267">      Security - 1.0.x</option> <option value="296">         3rd Party/Non Joomla! Security Issues</option> <option value="34">      Administration - 1.0.x</option> <option value="465">      Extensions - 1.0.x</option> <option value="39">         Components</option> <option value="40">         Modules</option> <option value="41">         Plugins/Mambots</option> <option value="57">         WYSIWYG Editors - 1.0.x</option> <option value="43">         Integration & Bridges - 1.0.x</option> <option value="216">            phpbb - Joomla! Integration</option> <option value="42">      Templates & CSS - 1.0.x</option> <option value="309">      Language - 1.0.x</option> <option value="123">         Joom!Fish and Multilingual Sites</option> <option value="268">      Performance - 1.0.x</option> <option value="32">      General Questions - 1.0.x</option> <option value="542">Joomla! International Language Support</option> <option value="511">   International Zone</option> <option value="243">      Albanian Forum</option> <option value="17">      Arabic Forum</option> <option value="558">         تنبيهات هامة</option> <option value="560">         الدروس</option> <option value="644">         جوملا! 1.6/1.7</option> <option value="665">            الأسئلة الشائعة</option> <option value="666">            التثبيت و الترقية</option> <option value="667">            الحماية - و تحسين السرعة والأداء</option> <option value="668">            لوحة التحكم</option> <option value="669">            الإضافات البرمجية</option> <option value="670">            تعريب جوملا! و الإضافات البرمجية</option> <option value="671">            القوالب و التصميم</option> <option value="672">            صداقة محركات البحث</option> <option value="645">            القسم العام</option> <option value="289">         1.5 !جوملا</option> <option value="549">            الأسئلة الشائعة</option> <option value="550">            التثبيت و الترقية</option> <option value="551">            الحماية - و تحسين السرعة والأداء</option> <option value="552">            لوحة التحكم</option> <option value="553">            الإضافات البرمجية</option> <option value="554">            تعريب جوملا! و الإضافات البرمجية</option> <option value="555">            القوالب و التصميم</option> <option value="556">            صداقة محركات البحث</option> <option value="557">            القسم العام</option> <option value="547">         جوملا! 1.0</option> <option value="383">            الأسئلة الشائـعة</option> <option value="311">            التثبيت</option> <option value="312">            لوحة التحكم</option> <option value="313">            الإضافات البرمجية</option> <option value="360">            الإضافات المعرّبة</option> <option value="314">            القوالب و التصميم</option> <option value="548">            الحماية - تحسين السرعة والأداء - صداقة محركات البحث</option> <option value="310">            القسم العام</option> <option value="559">         القسم العام</option> <option value="315">         !عرض موقعك بجوملا</option> <option value="316">         الأرشيف</option> <option value="568">      Azeri Forum</option> <option value="274">      Basque Forum</option> <option value="275">         Itzulpenaren inguruan</option> <option value="276">         Laguntza teknikoa</option> <option value="753">      Belarusian Forum</option> <option value="64">      Bengali Forum</option> <option value="104">      Bosnian Forum</option> <option value="494">         Joomla! 1.5</option> <option value="495">            Instalacija i prvi koraci</option> <option value="496">            Ekstenzije</option> <option value="497">            Templejti</option> <option value="498">            Moduli</option> <option value="499">            Prevodi i dokumentacija</option> <option value="601">         Joomla! 1.7 / Joomla! 1.6</option> <option value="95">      Catalan Forum</option> <option value="134">         Notícies</option> <option value="135">         Temes sobre l'administració</option> <option value="136">         Temes sobre la traducció</option> <option value="137">         Components, mòduls i joombots</option> <option value="138">         Temes de disseny</option> <option value="139">         Webs realitzades amb Joomla!</option> <option value="140">         Offtopics</option> <option value="98">      Chinese Forum</option> <option value="150">      Croatian Forum</option> <option value="16">      Danish Forum</option> <option value="115">         Meddelelser</option> <option value="595">         Joomla! 2.5 (Den anbefalede version til de fleste brugere)</option> <option value="596">            Installation, backup, opdatering og flytning - Godt igang</option> <option value="597">            Administration - Generel brug</option> <option value="598">            Komponenter, Moduler og Plugins</option> <option value="599">            Template, CSS og Design</option> <option value="600">            Nethandel, betaling m.m.</option> <option value="758">         Joomla! 3.0 (Beregnet for udviklere og early adapters)</option> <option value="757">         Ældre versioner (disse vedligeholdes ikke længere fra officiel side)</option> <option value="458">            Joomla 1.5 (Tidligere langtidssupporteret version indtil sep. 2012)</option> <option value="459">               Installation, backup, opdatering og flytning - Godt igang</option> <option value="460">               Administration - Generel brug</option> <option value="461">               Komponenter, Moduler og Plugins</option> <option value="462">               Template, CSS og Design</option> <option value="463">               Nethandel, betaling m.m.</option> <option value="456">            Joomla 1.0 (Udgået version, der blev afløst af 1.5 i 2008)</option> <option value="116">               Installation, backup, opdatering og flytning - Godt igang</option> <option value="117">               Administration - Generel brug</option> <option value="118">               Komponenter, Moduler og Mambots</option> <option value="119">               Template, CSS og Design</option> <option value="457">               Nethandel, betaling m.m.</option> <option value="120">         Oversættelser (lokalisering)</option> <option value="589">         Joomla brugergrupper i Danmark</option> <option value="593">            JUG Kolding</option> <option value="590">            JUG København</option> <option value="591">            JUG Odense</option> <option value="592">            JUG Århus</option> <option value="685">            JUG Sorø</option> <option value="299">         Kommerciel (betalt) hjælp ønskes</option> <option value="464">         SEO</option> <option value="295">         FAQ - Dokumentation og vejledninger</option> <option value="121">         Vis dit websted</option> <option value="417">            Afviste 'Vis dit websted' indlæg</option> <option value="122">         Diverse (Off topic)</option> <option value="13">      Dutch Forum</option> <option value="77">         Aankondigingen</option> <option value="78">         Algemene vragen</option> <option value="630">         Joomla! 2.5</option> <option value="631">            Installatie 2.5</option> <option value="632">            Componenten 2.5</option> <option value="633">            Modules 2.5</option> <option value="634">            Plugins 2.5</option> <option value="635">            Templates 2.5</option> <option value="351">         Joomla! 1.5</option> <option value="489">            Installatie</option> <option value="490">            Componenten</option> <option value="491">            Modules</option> <option value="492">            Plugins</option> <option value="493">            Templates</option> <option value="488">         Joomla! 1.0</option> <option value="79">            Installatie 1.0.x</option> <option value="81">            Componenten 1.0.x</option> <option value="82">            Modules 1.0.x</option> <option value="83">            Mambots 1.0.x</option> <option value="84">            Templates 1.0.x</option> <option value="80">         Vertalingen</option> <option value="85">         Offtopic</option> <option value="105">         Show jouw website</option> <option value="21">      Filipino Forum</option> <option value="101">         International Support Center</option> <option value="226">         Pinoy General Discussion & Archives</option> <option value="65">            Site Showcase</option> <option value="96">            Events</option> <option value="100">            Design Tips and Tricks</option> <option value="99">            Tsismis Zone</option> <option value="168">            Pinoy Translation Zone</option> <option value="227">            Pinoy Forum Archives</option> <option value="242">         Joomla! Philippines Local Forum www.joomla.org.ph</option> <option value="25">      Finnish Forum</option> <option value="19">      French Forum</option> <option value="530">         Les annonces!</option> <option value="158">         Le bistrot!</option> <option value="336">         L'expo!</option> <option value="655">         J! 2.5.x - L'atelier!</option> <option value="656">            2.5 - Questions générales</option> <option value="657">            2.5 - Installation, migration et mise à jour</option> <option value="658">            2.5 - Sécurité et performances</option> <option value="659">            2.5 - Extensions tierce partie</option> <option value="661">            2.5 - Templates et design</option> <option value="662">            2.5 - Développement</option> <option value="663">            2.5 - Ressources</option> <option value="745">         J! 3.x - L'atelier!</option> <option value="746">            3.x - Questions générales, nouvel utilisateur</option> <option value="747">            3.x - Installation, migration et mise à jour</option> <option value="748">            3.x - Sécurité et performances</option> <option value="749">            3.x - Extensions tierce partie</option> <option value="750">            3.x - Templates et design</option> <option value="751">            3.x - Développement</option> <option value="752">            3.x - Ressources</option> <option value="330">         J! 1.5.x - L'atelier!</option> <option value="531">            1.5 - Questions générales</option> <option value="532">            1.5 - Installation, migration et mise à jour</option> <option value="533">            1.5 - Sécurité et performances</option> <option value="534">            1.5 - Extensions tierce partie</option> <option value="535">            1.5 - Templates et design</option> <option value="536">            1.5 - Développement</option> <option value="537">            1.5 - Ressources</option> <option value="159">         J! 1.0.x - L'atelier!</option> <option value="332">            1.0 - Questions générales</option> <option value="331">            1.0 - Installation et mise à jour</option> <option value="335">            1.0 - Sécurité</option> <option value="333">            1.0 - Extensions tierce partie</option> <option value="334">            1.0 - Templates et design</option> <option value="538">            1.0 - Développement</option> <option value="160">            1.0 - Ressources</option> <option value="427">         Besoin d'un professionel ?</option> <option value="482">         Extensions Open Source pour Joomla!</option> <option value="14">      German Forum</option> <option value="66">         Ankündigungen</option> <option value="648">         Joomla! 2.5</option> <option value="649">            Allgemeine Fragen</option> <option value="650">            Installation und erste Schritte</option> <option value="651">            Komponenten, Module, Plugins</option> <option value="654">            Template, CSS und Designfragen</option> <option value="652">            Entwicklerforum</option> <option value="653">            Zeige Deine Webseite</option> <option value="759">         Joomla! 3.0</option> <option value="760">            Allgemeine Fragen</option> <option value="762">            Installation und erste Schritte</option> <option value="763">            Komponenten, Module, Plugins</option> <option value="764">            Template, CSS und Designfragen</option> <option value="765">            Entwicklerforum</option> <option value="766">            Zeige Deine Webseite</option> <option value="516">         Joomla! 1.5</option> <option value="518">            Allgemeine Fragen</option> <option value="519">            Installation und erste Schritte</option> <option value="520">            Komponenten, Module, Plugins</option> <option value="521">            Template, CSS und Designfragen</option> <option value="522">            Entwicklerforum</option> <option value="523">            Zeige Deine Webseite</option> <option value="272">         Professioneller Service</option> <option value="70">         Sonstiges (Offtopic)</option> <option value="696">         Archiv</option> <option value="517">            Joomla! 1.0</option> <option value="269">               Allgemeine Fragen 1.0.x</option> <option value="67">               Installation und erste Schritte 1.0.x</option> <option value="68">               Komponenten, Module, Mambots 1.0.x</option> <option value="69">               Template, CSS und Designfragen 1.0.x</option> <option value="270">               Entwicklerforum 1.0.x</option> <option value="271">               Zeige Deine Webseite 1.0.x</option> <option value="50">      Greek Forum</option> <option value="454">         Joomla! 1.0.x</option> <option value="455">         Joomla! 1.5.x</option> <option value="172">      Hebrew Forum</option> <option value="403">      Hungarian Forum</option> <option value="162">      Indic Languages Forum</option> <option value="53">      Indonesian Forum</option> <option value="349">         FAQ</option> <option value="221">         Bantuan</option> <option value="222">         Komponen</option> <option value="223">         Modul</option> <option value="224">         Template</option> <option value="225">         Diskusi</option> <option value="55">      Italian Forum</option> <option value="110">         Guide</option> <option value="111">         Traduzioni</option> <option value="112">         Componenti - Moduli - Plugins</option> <option value="348">         Template - Grafica</option> <option value="113">         Notizie</option> <option value="169">         Prodotti Open Source per Joomla!</option> <option value="238">         Richieste professionali</option> <option value="767">         Joomla! 3.x</option> <option value="647">         Joomla! 2.5.x</option> <option value="481">         Joomla! 1.x</option> <option value="141">      Japanese Forum</option> <option value="569">      Khmer Forum</option> <option value="683">         ពិពណ៌​ស្ថាន​បណ្ដាញ​ជុំឡា</option> <option value="684">         ជុំឡា​ខ្មែរ​មូលដ្ឋានីយកម្ម</option> <option value="358">      Latvian Forum</option> <option value="189">      Lithuanian Forum</option> <option value="361">         Joomla! 1.5</option> <option value="643">         Joomla! 1.7 / Joomla! 1.6</option> <option value="561">         Joomla! 1.0</option> <option value="421">         Vertimai ir Kalba</option> <option value="215">      Malaysian Forum</option> <option value="327">         Solved</option> <option value="191">      Maltese Forum</option> <option value="97">      Norwegian Forum</option> <option value="435">         Informasjon og annonseringer</option> <option value="436">         FAQ - Ofte spurte spørsmål</option> <option value="603">         Joomla! 2.5</option> <option value="604">            Administrasjon/installasjon</option> <option value="605">            Migrering/Oppdatering</option> <option value="606">            Template, CSS og design</option> <option value="607">            Komponenter/moduler/programutvidelser</option> <option value="608">            Sikkerhet</option> <option value="609">            Generelt</option> <option value="729">         Joomla! 3.0</option> <option value="730">            Administrasjon/installasjon</option> <option value="731">            Migrering/Oppdatering</option> <option value="732">            Template, CSS og design</option> <option value="733">            Komponenter/moduler/programutvidelser</option> <option value="734">            Sikkerhet</option> <option value="735">            Generelt</option> <option value="438">         Joomla! 1.5</option> <option value="439">            Administrasjon/installasjon</option> <option value="440">            Migrering/Oppdatering</option> <option value="441">            Template, CSS og design</option> <option value="442">            Komponenter/moduler/programutvidelser</option> <option value="443">            Sikkerhet</option> <option value="444">            Generelt</option> <option value="396">         Netthandel, betaling m.m.</option> <option value="565">            VirtueMart</option> <option value="611">            redSHOP</option> <option value="566">            Andre nettbutikkløsninger</option> <option value="567">            Generelt</option> <option value="210">         Oversettelser</option> <option value="187">         Fremvisning av sider (Show off)</option> <option value="416">            Avviste fremvisninger</option> <option value="288">         Diverse (off topic)</option> <option value="298">         Kommersiell hjelp ønskes</option> <option value="610">         Eldre versjoner av Joomla!</option> <option value="437">            Joomla! 1.0</option> <option value="184">               Administrasjon/installasjon</option> <option value="185">               Template, CSS og design</option> <option value="183">               Komponenter/moduler/mambots</option> <option value="186">               Sikkerhet</option> <option value="182">               Generelt</option> <option value="102">      Persian Forum</option> <option value="278">         قالب ها</option> <option value="279">         مدیریت</option> <option value="280">         سوالهای عمومی</option> <option value="281">         نصب</option> <option value="282">         مامبوت ها</option> <option value="283">         ماژولها</option> <option value="284">         کامپوننت ها</option> <option value="18">      Polish Forum</option> <option value="71">         Instalacja i aktualizacja</option> <option value="72">         Administracja</option> <option value="73">         Komponenty, moduły, wtyczki</option> <option value="74">         Szablony</option> <option value="232">            Paczta i Podziwiajta</option> <option value="75">         Modyfikacje i własne rozwiązania</option> <option value="76">         Tłumaczenia</option> <option value="130">         FAQ</option> <option value="131">         Tips&Tricks</option> <option value="132">         Humor</option> <option value="133">         Dokumentacja</option> <option value="239">         Profesjonalne usługi</option> <option value="23">      Portuguese Forum</option> <option value="106">         Componentes, módulos e mambots</option> <option value="107">         Programação e desenvolvimento</option> <option value="374">         Segurança</option> <option value="108">         Sites dos usuários</option> <option value="109">         Off-topic</option> <option value="163">         Tradução</option> <option value="230">         Templates</option> <option value="30">      Romanian Forum</option> <option value="148">         Traduceri</option> <option value="26">      Russian Forum</option> <option value="29">      Serbian/Montenegrin Forum</option> <option value="144">         Tehnička pitanja</option> <option value="420">         Instalacija i početnička pitanja</option> <option value="147">         Šabloni</option> <option value="173">         Prevod i dokumentacija</option> <option value="247">         Ćaskanje</option> <option value="419">         Bezbednost</option> <option value="293">         Joomla! dodaci</option> <option value="584">         Pravna pitanja</option> <option value="484">         Arhiva</option> <option value="486">         Joomla! Događaji i Zajednica</option> <option value="585">         Izlog (spisak) sajtova radjenih u Joomla! CMS-u</option> <option value="572">         Profesionalne usluge</option> <option value="402">      Slovak Forum</option> <option value="157">      Slovenian Forum</option> <option value="24">      Spanish Forum</option> <option value="602">         Joomla! 2.5</option> <option value="737">         Joomla! 3.x</option> <option value="87">         Joomla! 1.5</option> <option value="89">         Extensiones</option> <option value="91">         Plantillas (templates) y diseño</option> <option value="92">         Idioma y traducciones</option> <option value="587">         SEO para Joomla!</option> <option value="300">         Seguridad y rendimiento</option> <option value="170">         Productos de Código Abierto para Joomla!</option> <option value="582">         Servicios profesionales</option> <option value="63">      Swedish Forum</option> <option value="192">         Meddelanden</option> <option value="686">         Forum för Joomla! med långtidssupport</option> <option value="690">            Forum Joomla! 2.5</option> <option value="691">               Allmänna frågor</option> <option value="692">               Användning och administration</option> <option value="693">               Installation, backup och säkerhet</option> <option value="694">               Komponenter, moduler och plugin</option> <option value="695">               Mallar (templates) och design</option> <option value="446">            Forum Joomla! 1.5</option> <option value="447">               Allmänna frågor</option> <option value="448">               Användning och administration</option> <option value="449">               Installation, backup och säkerhet</option> <option value="450">               Komponenter, moduler och plugin</option> <option value="451">               Mallar (templates) och design</option> <option value="687">         Forum för Joomla! med standardsupport</option> <option value="736">            Forum Joomla! 3.0</option> <option value="738">               Allmänna frågor</option> <option value="739">               Användning och administration</option> <option value="740">               Installation, backup och säkerhet</option> <option value="741">               Komponenter, moduler och plugin</option> <option value="742">               Mallar (templates) och design</option> <option value="688">         Äldre versioner</option> <option value="445">            Forum Joomla! 1.0</option> <option value="212">               Allmänna frågor</option> <option value="193">               Användning och administration</option> <option value="194">               Installation, backup och säkerhet</option> <option value="195">               Komponenter, moduler och Mambots</option> <option value="196">               Mallar (templates) och design</option> <option value="636">            Forum Joomla! 1.7 / Joomla! 1.6</option> <option value="637">               Allmänna frågor</option> <option value="638">               Användning och administration</option> <option value="639">               Installation, backup och säkerhet</option> <option value="640">               Komponenter, moduler och plugin</option> <option value="641">               Mallar (templates) och design</option> <option value="285">         Översättning</option> <option value="539">         Webbplatser gjorda i Joomla</option> <option value="689">            Webbplatser J! 2.5</option> <option value="664">            Webbplatser Joomla! 1.7 / Joomla! 1.6</option> <option value="540">            Webbplatser J! 1.5</option> <option value="197">            Webbplatser J! 1.0</option> <option value="308">         Kommersiell hjälp önskas</option> <option value="213">         Diverse (off topic)</option> <option value="545">      Tamil Forum</option> <option value="15">      Thai Forum</option> <option value="385">         โชว์เว็บไซต์ของคุณที่สร้างด้วยจูมล่า</option> <option value="386">         เคล็ดลับการใช้งานส่วนต่างๆ เกี่ยวกับจ&#</option> <option value="387">         คอมโพเน้นท์ โมดูล ปลักอิน ต่างๆ ที่ติดตั</option> <option value="388">         อับเดดข่าวสารเกี่ยวกับจูมล่าลายไทย</option> <option value="51">      Turkish Forum</option> <option value="408">         Duyurular</option> <option value="409">         Dersler</option> <option value="413">         Genel Sorular</option> <option value="410">         Bileşen, Modül, Bot</option> <option value="411">         Eklenti Haberleri</option> <option value="412">         Temalar</option> <option value="340">      Urdu Forum</option> <option value="171">      Vietnamese Forum</option> <option value="214">         Gặp gỡ và giao lưu</option> <option value="203">         Joomla Tiếng Việt</option> <option value="204">         Cài đặt - Cấu hình</option> <option value="205">         Thành phần mở rộng cho Joomla!</option> <option value="754">         Hỏi đáp Joomla! 3</option> <option value="755">         Hỏi đáp Joomla! 2.5</option> <option value="207">         Hỗ trợ kỹ thuật</option> <option value="756">         Bài viết cũ</option> <option value="206">            Thiết kế Template</option> <option value="453">            Joomla! 1.5</option> <option value="151">      Welsh Forum</option> <option value="507">Other Forums</option> <option value="46">   Open Source Products for Joomla!</option> <option value="306">   Joomla! Events</option> <option value="514">   Site Showcase</option> <option value="48">   The Lounge</option> <option value="562">   Registered Joomla! User Groups</option> <option value="571">   Trending Topics</option> <option value="575">   Joomla! Ideas Forum</option> <option value="704">   Community Blog Discussions</option> <option value="681">   Help wanted in the community</option> <option value="646">Joomla! Development Forums</option> <option value="509">   Joomla! Development</option> <option value="727">      Joomla! 3.x Coding</option> <option value="642">      Joomla! 2.5 Coding</option> <option value="728">      Joomla! 3.x Bug Reporting</option> <option value="304">      Joomla! 1.5 Coding</option> <option value="579">      Joomla! 2.5 Bug Reporting</option> <option value="199">      Joomla! 1.5 Bug Reporting</option> <option value="703">      Joomla! 3 Beta Support</option> <option value="508">Joomla! Official Sites & Infrastructure</option> <option value="262">   Extensions.Joomla.org - Feedback/Information</option> <option value="563">   Resources.joomla.org - Feedback/Information</option> <option value="303">   Documentation - Feedback/Information/Suggestions</option> <option value="7">   Sites & Infrastructure - Feedback/Information</option> <option value="406">      JoomlaCode.org</option> <option value="229">      Archived Boards - All boards closed</option> <option value="142">         Design and Accessibility - Archived</option> <option value="179">         Quality and Testing - Locked and Archived</option> <option value="198">            Joomla! 1.0.x_Q&T</option> <option value="240">               Q&T 1.0.x Resolved</option> <option value="241">               Known Issues</option> <option value="264">               Superseded Issues</option> <option value="375">               Archive</option> <option value="376">                  Q&T 1.0.x Resolved - Archived</option> <option value="377">                  Known Issues - Archive</option> <option value="378">                  Superseded Issues - Archive</option> <option value="234">            Third Party Testing for Joomla! 1.5</option> <option value="235">            Q&T 1.5.x Resolved</option> <option value="350">         Joomla! 1.5 BETA</option> <option value="407">         Joomla! 1.5 BETA 2</option> <option value="1">         Reaction to the 'Letter to the community'</option> <option value="124">         Reaction to New Project Name</option> <option value="145">         Logo Competition</option> <option value="52">         Humor, Fun and Games</option> <option value="341">         Libraries</option> <option value="202">            patTemplate</option> <option value="174">         com_connector - Multi Joomla Bridge</option> <option value="294">         CiviCRM Support</option> <option value="370">            CiviCRM Installation Issues</option> <option value="414">         FAQ Archive</option> <option value="237">            FAQ Discussion Board</option> <option value="338">            3rd Party Extensions FAQ</option> <option value="337">            FAQs not moved</option> <option value="346">            3rd Party/Non Joomla! Security FAQ</option> <option value="452">         Joomla! Coding 101</option> <option value="475">            Joombie Tools of the Trade</option> <option value="476">            Joombie Coding Q/A</option> <option value="477">            Joombie Think Tank</option> <option value="478">            Joombie Developer Lab</option> <option value="152">         Joomla Forge - Archived</option> <option value="153">         Non-Profit Organizations and Joomla!</option> <option value="265">            Schools and Universities</option> <option value="266">         Bangsamoro Forum</option> <option value="479">         Joomla! 1.5 Template Contest</option> <option value="149">         SMF - Simplemachines.org Forum</option> <option value="425">         GPL Discussion</option> <option value="372">         Security Announcements - Old</option> <option value="483">         Tips & Tricks - Moving</option> <option value="236">            Submit Your Suggested Tips & Tricks to Docs.joomla.org now please.</option> <option value="397">         Google Summer of Code and GHOP</option> <option value="525">            Google Summer of Code 2008</option> <option value="526">               Proposed projects</option> <option value="528">               Student area</option> <option value="398">               Past Google Summer of Code Editions</option> <option value="487">            Google's Highly Open Participation Contest</option> <option value="390">         Documentation</option> <option value="393">            Suggestions, Modifications, and Corrections</option> <option value="394">            Archive</option> <option value="392">            1.5 Archive</option> <option value="59">               Suggestions, Modifications & Corrections</option> <option value="287">            Submit</option> <option value="391">            Feedback and Suggestions</option> <option value="353">         Applications for participation in the Development Workgroup</option> <option value="326">         Development</option> <option value="515">         1.5 Site Showcase - Archived</option> <option value="58">         1.0 x Site Showcase - Archived.</option> <option value="500">         Feature Requests - White Papers - Archived</option> <option value="501">            Under Review - Archived</option> <option value="502">            Accepted - Archived</option> <option value="503">            Not Accepted - Archived</option> <option value="38">            Wishlists and Feature Requests - Archive</option> <option value="175">               Wishlist Archives - Archived</option> <option value="588">         Spanish Forum - Archive</option> <option value="190">            Papelera</option> <option value="93">            Tutoriales</option> <option value="211">            General</option> <option value="94">            Salón de la Joomlaesfera hispanohablante</option> <option value="594">         Danish Forum - Archive</option> <option value="260">            Diskussion af Meddelelser + Sikkerhedsmeddelelser + FAQ</option> <option value="364">         Shop.Joomla.org</option> <option value="580">         Joomla! 1.6 RC Support [closed]</option> <option value="126">         Joomla! 1.0 Coding</option> <option value="178" selected="selected">         Core Hacks and Patches</option> <option value="682">         Joomla! 2.5 Beta Support</option> <option value="576">         People.joomla.org - Feedback/Information</option> <option value="701">   Templates.Joomla.org - Feedback/Information</option> <option value="573">   Joomla! Community Magazine</option> <option value="574">      Joomla! Community Magazine Editors</option> <option value="510">   Joomla! Working Groups</option> <option value="11">      Translations</option> <option value="381">      OpenSourceMatters.org</option> <option value="699">      Joomla! Marketing and PR Team</option> </select> <input class="btnlite" type="submit" value="Go" /></td> </tr> </table> </form> </td> </tr> </table> <img src="./cron.php?cron_type=queue&sid=1dd4b42dcc3c30d559312641bd03f07c" width="1" height="1" alt="cron" /> </div> <div id="wrapfooter"> <span class="copyright">Powered by <a href="http://www.phpbb.com/" target="_blank" >phpBB</a>® Forum Software © phpBB Group </span> </div> </div> <div class="clear"></div> </div> </div> <div class="clear"></div> <div id="closingWrap"><div id="closing" class="container_12 clearfix"></div></div> <div class="clear"></div> <div id="footerWrap"> <div id="footer" class="container_12 clearfix"> <div class="inside"> <div id="copy"> <ul class="menu"> <li class="item97"> <a href="http://www.joomla.org"><span>Home</span></a> </li> <li class="item110"><a href="http://www.joomla.org/about-joomla.html"><span>About</span></a> </li> <li class="item98"><a href="http://community.joomla.org"><span>Community</span></a></li><li class="item99"><a href="http://forum.joomla.org"><span>Forum</span></a> </li> <li class="item100"><a href="http://extensions.joomla.org"><span>Extensions</span></a></li><li class="item206"><a href="http://resources.joomla.org"><span>Resources</span></a> </li> <li class="item102"><a href="http://docs.joomla.org"><span>Docs</span></a></li><li class="item101"><a href="http://developer.joomla.org"><span>Developer</span></a> </li> <li class="item103"><a href="http://shop.joomla.org"><span>Shop</span></a> </li> </ul> <div class="clr"></div> </div> <div id="link"> <div id="footerInfo">©2005-2013 <a href="http://www.opensourcematters.org">Open Source Matters, Inc.</a> All rights reserved.    <a href="http://www.rochenhost.com/joomla-hosting" target="_blank">Joomla Hosting by Rochen Ltd.</a>    <a href="http://www.joomla.org/accessibility-statement.html">Accessibility Statement</a>    <a href="http://www.joomla.org/privacy-policy.html">Privacy Policy</a>    <a href="http://community.joomla.org/login.html">Log in</a> <!-- end #footerInfo --></div> <div class="clr"></div> </div> <div class="clr"></div> </div> </div> </div> <div id="debug"> </div> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write("\<script src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'>\<\/script>" ); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-544070-3"); pageTracker._setDomainName("joomla.org"); pageTracker._initData(); pageTracker._trackPageview(); </script> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-544070-18"); pageTracker._initData(); pageTracker._trackPageview(); </script> </body> </html>