Having problems installing Drupal? See the Installation Guide for more information.

Migrating from Local Host. All Links broken except home!!!

Hi everyone!

I am putting my first "real" drupal site online. But... I've run into a snag.

After migrating the database and files to a live server... .All of the links on the site are broken except for the homepage.

I've flipped through forums and have gotten the impression that it might have something to do with .htacces file .... Maybe needing some adjustment in terms of the rewrite base. But I couldn't get it to work.

Error 330

Hi,
I get Error 330 (net::ERR_CONTENT_DECODING_FAILED) on PHP 5.3 when installing.
What can I do? I've tried on PHP 5.2 but it's the same
Thanks

drush site install from git clone becomes 7.3-dev when it should be 7.2

I have just made a site install from a git clone checked 7.2 out but when I did the install the version is 7.3-dev?

Here is how i did it:

Clone the git repository
git clone http://git.drupal.org/project/drupal.git site

List tags
git tag

Choose the version, in this case Drupal 7.2
git checkout 7.2

Branch the core and track this branch
git checkout -b drupal7core --track origin/7.x

Branch contribs
git checkout -b sitecontrib

Branch personal
git checkout -b sitepersonal

Switch to contrib branch
git checkout sitecontrib

Create the new installation profile, by copy and rename the standard profile under /site/profiles/standard to /site/profiles/site
Here is how they could look:

/site/profiles/site/site.profile


/site/profiles/site/site.install
<?php

/**
 * Implements hook_install().
 *
 * Perform actions to set up the site for this profile.
 */
function site_install() {
  // Add text formats.
  include_once DRUPAL_ROOT . '/profiles/standard/standard.install' ;
  standard_install();
  
  // Change enable and change default theme
  theme_enable(array('sky' ));
  variable_get('theme_default' , 'sky' );
  
}

/site/profiles/site/site.info
name = Site
description = Install with commonly used features pre-configured.

; core
core = 7.x
dependencies[] = block
dependencies[] = color
dependencies[] = comment

Splitting services accross two (or more) sites

Hi folks!

I'm trying to find a way to optimize my Drupal site. I want to set things up so that my critical applications (CiviCRM, Calendar) reside on my main server (a dedicated VPS host), and my non-critical apps (forums, photo galleries, etc.) reside on a secondary server (on a shared host).

Is there a way to do this in D7 in a way that will be transparent to users?

Thanks!

Question about converting

My boss Ravee Patel said that installing drupal can be tough, and its better just to use another method. Is this true.
Also, I started readying Drupal for dummies... Hope i can get experience soon : )

Moving Drupal 6.2 / OpenAtrium to New Server - Clean URL Not Working / Image Links Broken

I am hoping for some help please!!

I am trying to move an existing OpenAtrium installation from a basic installation serving multiple sites / groups to a secure installation that can stand up to a penetration and application test by a 3rd party security company and can run multiple sites with independent databases sharing the same base code.

Pages

Subscribe with RSS Subscribe to RSS - Installing Drupal