Is Drupal a viable solution for my website? Please review What is Drupal before posting.

Do we have a module as same as photobucket

hi all

I am looking for a module that can help member upload file and get a link to post into Drupal editor - It is same photobucket or some of another image services.

Tks in advance.

Multisite vs. Standalone

I am in the planning stages of a new project, and would like some community advice/opinions.

The basic concept is nothing new:
- Single set of functionality (identical module code) shared between hundreds, if not thousands, of websites.
- Sites will have separate content & users
- Sites will have unique designs

I should mention that the sites will be fairly basic in terms of "Drupal" functionality:
- 5-6 content types
- blogs
- images, videos, other media
- a few users

I'm estimating that over a year, each site will generate upwards of 300 nodes - quite a small amount.

As I see it, I have two options:

1: separate Drupal codebase & database for each site; each site will be a 'checkout' of the same SVN repository, so each one will be easily updatable; will have to figure something out for database updates; update hooks may not always be possible/convenient;

2: multisite installation featuring all module code in the shared 'sites/all/modules' folder, and a site-specific theme in 'sites/sitename.com/themes'.

With multisites I can have a separate database for each site, but distributing updates this way will be quite painful. Alternatively, I can share all tables (between the sites) with the exceptions of node- & user-related ones, but this could be a headache (been there!).

How to do this with Drupal

I'm a PHP programmer, but have never used Drupal before. I know that Drupal can do what I need it to, but I need to know how much work a few things will be:

1. Forums - Drupal has a pre-made forums module, correct?
2. User logins - We will need user logins separate from the CMS administrator logins. We will also need to charge people for user accounts via recurrent credit card billing. Is there an add-on module already written for something like this? Or will I need to write a module from scratch for that?

Thank you for your help!

Generating data feeds from a shopping cart

Is there a way to generate data feeds from the shopping cart (my site runs ubercart 5.x.1.7) to be (if possible automatically) submitted to shopping engines (like shopzilla, pricegrabber, google merchant center) ?. Is there any module that helps to do this?. Would really appreciate any direction.

Thanks.

New to Drupal

Hello everyone,

I am new to Drupal, but I need to build website with Drupal! I installed drupal 6.14 (using Fantastico delux software)

But I dont know how to proceed further.....!!!! and I have a question like whether PHP and MySQL are mandatory for using Drupal?

Please help me about what should I do to go ahead with this..

Thank you.

[Resolved] Problem module, function preprocess() with blocks

Resolved: http://drupal.org/node/743082

Hello,

I created a module that displays 4 blocks with a single node_load ().

I use the function mymodule_preprocess() to load the node in my 4 blocks.
The problem is that this function works all the time, should it only works when I'm in a node of type "A".

How to achieve this?

The complete module:


<?php
// $Id$

/**
* Permissions du module
* @return array Tableau de permissions valides pour le module helloworld
*/
function modele_2r_perm() {
return array('access modele_2r content');
} // function mon_module_perm()

/**
* Implémentation de hook_block
*/
function modele_2r_block($op = 'list', $delta = 0, $edit = array ()) {
switch($op) {
case 'list':
return array('modele_2r_presentation_block'=>array('info'=>'Modele 2R: Block Presentation'), 'modele_2r_fiche_technique_block'=>array('info'=>'Modele 2R: Block Fiche Technique'), 'modele_2r_coloris_block'=>array('info'=>'Modele 2R: Block Coloris'), 'modele_2r_galerie_photos_block'=>array('info'=>'Modele 2R: Block Galerie photos'), 'modele_2r_argus_block'=>array('info'=>'Modele 2R: Block Argus'));
case 'view': {
if ($delta=='modele_2r_presentation_block') {
return array(
'subject'=>'Presentation du modele',

Pages

Subscribe with RSS Subscribe to RSS - Before you start