Themes

When loading and using the intial themes. Are the pictures copywrited? can we use them? or do we have to change them? where can I find something disclosing the ability to use the themes current display pictures?

Somebody let me know. Thanks!!

Moved per forum guidelines by VM

User Portals, Image Gallery, Blogs, Wiki and Forum Integration

After reading the "Before you start" article, I am definitely pumped about the possibilities Drupal offers.

The web site I run right now uses MyBB, MediaWiki and hand-coded pages instead of a cms. I am planning a major upgrade to the site with the goal being the integration of the forum, the wiki, and the main site. The site has a lot of image content, so Image Gallery functionality is important. I've been looking at Acquia Drupal, and will soon be installing that.

Admin page : Not Authorized

I recently installed Drupal 7.x on my server. Everything was setup and working fine. I had to move the server from one location to another which required an IP change and a default gateway change. After changing those, I cannot login through http://localhost:8082/admin. I can however login using http://localhost:8082/?q=user. Does anyone know a fix for this? I don't mind logging in this way but was wondering if there was a quick, easy fix for it. Thanks for all the help.

Lightbox or modal window API

Anyone know whether this would be theoretically possible? It kills me that each lightbox module needs to be integrated separately with other modules... I realize that there's popup API and modal frame API, but these don't seem to be what I had in mind.

Anyhow, I've been looking to get into module development, and designing this API module seems like it might be a good start :)

Any thoughts? Anyone with inside knowledge know whether this is feasible? I'll update this thread as I do more research later, but input would still be great!

Rock on,
Pat

Auto Ping

I would like to send pings to some websites which I define before. I want to do this automaticly whenever I publish my node. I will use same websites for all nodes.

Which modules should I use?

Authentication in Drupal 7 from Android application

Hi all.

My name is Cesar and I'm working in my final degree projecte. Well, I'm developing an android application and Drupal 7 website, and I have to do the connection between them.

First, I have tried to do user authentication in Android, with REST, and it seems to work, but always in Drupal 7 website, have the same problem :

warning access denied 07/22/2010 - 13:46 api/login Anonymous (not verified)

I think the problem is not the Android app, because the parameters arrive well :

http://domain.com/api/login?User=Cesar&Pass=cesar (user and pass are fake)

I have tried to get those parameters with $_POST var in a module, doing something like this :

<?php

/**
* Implementation of hook_menu
*/
function the_api_login_menu() {
$items = array();
$access = array('View published content');

$items['api/login'] = array(
'title' => t('Log in'),
'page callback' => 'the_api_login_login',
'access arguments' => $access,
'type' => MENU_CALLBACK,
);

return $items;
}

function the_api_login_login() {

$array[0] = $_POST["User"];
$array[1] = $_POST["Pass"];

watchdog("the_api_login", '

'.print_r($_POST, true).'

');

//user_autenticate nos devuelve la id dl user, o falso.
$conection = user_autenticate($array[0],$array[1]);
//if ($conection)drupal_session_inicialize();

}

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x