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

Removal of link into the main menu after a node updating

Hi.

I have a link into the main menu corresponding to a node (when I inform the alias name, Drupal convert automatically to node/43).

But, when I update the node, the link are deleted!

How to avert this?

Thanks for your help.

I specify that check the checkbox "Provide a menu link" into the menu settings of the node or uncheck it don't change anything.

Can any body please suggest how to perform simple insert,edit,update,search and delete operation by createing a custom module.

I am new to drupal and this is my first cms . I am trying to do insert display edit update and delete operation by creating a custom module and in this process insert and display operation have done but while doing update and delete operation i didnot proceed further.Below is my code that displays the data by fetching from table named form_test . Can any body please suggest how to perform update and delete operation on these data.This is my show.module and i want perform update and delete with in this module.
code....

<?php
function show_menu() {
$items['show'] = array(
'title' => 'show',
'page callback' => 'drupal_get_form',
'page arguments' => array('show_form'),
'access callback' => TRUE,
);
return $items;
}
function show_form($form,&$form_state)
{
$table = 'form_test';
$data = db_select($table,'D')
->fields('D')
->execute();

$form['foo_fieldset'] = array(
'#prefix' => '

',
'#suffix' => '

',
'#action' => 'test/delete.php',
'#method' => 'POST',
'#tree' => TRUE,
);
$form['foo_fieldset']['header'] = array(
'#markup' => '
Name Age Email Salary Option

',
);
$res=NULL;
for($i=0;$i<$res = $data->fetchAssoc();$i++) {

Installation (Quick Start)

Hello,

I am new to Drupal and not very tech savy...I used to be with cloudaccess (joomla!) and they had a plan for 19.99 for the hosting and so forth, so I would'nt have to worry about servers,etc. I was wondering does Drupal offer the same.

I just want to simply log in online from any computer to edit/make changes to my site. Please if u can help me, as this matter is very time sensitive...

Multiple Content Types

Hi

About to embark on building a massive site run on Drupal. Site is already alive in static form. I've learned everything there is to know so have this one question that I can't find answer anywhere else:

The site will begin with 10 content types but the 5 year plan calls for up to 60 content types and possibly over 100 after that. Will this slow the site down? Can Drupal handle this many content types?

How to implement dynamic pages like those in TripAdvisor

I'm new to drupal and I want to build a travel review website which is pretty much similar to tripadvisor.com using this CMS. I want to generate a webpage for each city, hotel, attraction... which contains reviews on that place, displays related info (nearby hotels/attractions for example), show ads related to that place. In general the page would contain all information specific to the place. Could you please advise how I can achieve this?

From Joomla to Drupal

Now I'm using Joomla in my web site. Is it possible transferring my articles from joomla to drupal?

Pages

Subscribe with RSS Subscribe to RSS - Before you start