Need help migrating your site to Drupal?

Image gallery within an existing module

If I want to use the books or recipe or any other module, is there a module existing which will allow me to have multiple picture uploads available, and display them in the post in an attractive fashion?

Moving application to drupal

I have a club registration web site done in PHP/msql which I want to move to drupal . What is the best way to do this. I am thinking of first creating the input form in Drupal . How do I move the old tables and make them work with drupal ?

Help needed getting site looking like i want it.

Hi i'm currently converting my website over to a Drupal system, however this is my first time at doing this and i need some help getting it looking like i want it.
Its a scouting group site which caters for all sections (beaver, cubs , scouts and genral group info) and as such stories for each section will be posted.

date conversion problem

Hi,
I'm migrating Vivvo to Drupal. I facing date related issues. Vivvo stores dates in Mysql datetime format, but Drupal store it in int format.
I changed field type (node.created) to datetime format and perform migration. And after migrating node table I reverted date filed to int format. But Drupal is not showing dates correctly
.
---
Sharique

$node->taxonomy

Hello,

I am building a website from a huge amount of files that are generated from a shell script, I have found a way to insert the generated HTML pages into drupal by using the following code:


<?
function mySave($type, $title, $body)
{

$edit = array();
$edit['type'] = $type;
// get the node type defaults
$edit['uid'] = 1;
$edit['name'] = 'mathQuestion';
$edit['promote'] = 0;
$edit['comment'] = 0;
//$edit['revision'] = ;
$edit['format'] = FILTER_HTML_ESCAPE;
$edit['status'] = 1;

$edit['title'] = $title;
$edit['body'] = $body;

$edit['date'] = format_date(time(), 'custom', 'Y-m-d H:i:s O');

node_invoke_nodeapi($edit, $type);

node_validate($edit);
if ($errors = form_get_errors()) {
print_r($errors);
}

$node = node_submit($edit);
node_save($node);
}

include_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

if($_SERVER['argc'] != 4)
{
echo "Expected 3 arguments: FileName,Question,PageNumber\n";
die();
}
$arg=$_SERVER['argv'];
$title=$arg[2] . $arg[3];

$myFile=$arg[1];

Moving Content To Drupal

Hi all,

I brought this up to DrupalDude as well but I need some help on this. Here is the email I sent him.

Pages

Subscribe with RSS Subscribe to RSS - Converting to Drupal