Banavoz

Software and development

Browsing Posts tagged Drupal

The multisite functionality of Drupal is what I like very much about that system. I run several separate sites as single Drupal multisite configuration. As far as one may know, drupal multisite functionality is based on separation of databases and files belonging to each site whereas core drupal files, modules and themes may be uploaded [...]

Recently I have moved some of my sites to the Hostmonster hosting. My sites are all built on Drupal, which is very much usable in multisite setup (single drupal folder, multiple sites). As of hostmonster, there are some points that I understood just after I had registered my account with them. I will briefly describe [...]

Recently I have been trying to duplicate Drupal’s database using MySQL queries. To copy MySQL table, it is enough to execute the following queries: CREATE TABLE table_new LIKE table_old; INSERT INTO table_new SELECT * FROM table_old; These queries will preserve original table structure and indexes. Everything looks OK until you try to copy Drupal’s “users” [...]