[Image Upload] - Uploaded jpeg images have wrong color/contents in D7

Hello,

on my Linux machine I can see every jpeg picture properly. But uploading the images to drupal 7

/var/www/drupal7/

always results in red, blue, green stripes or complete black pictures or nothing at all. So, the PHP transformation of the source image file did not work properly. I tried *.png, *.gif, *.jpg files to upload. Neither of them worked. I have also made a "chmod -R 777" to

/var/www/drupal7/sites/default/files

I also changed the theme to the default one. This did not help too.

I have the following components installed:

install.php shows white page

Hi all, I thought I would try out Drupal (I'm coming from Joomla) so downloaded v7.2, extracted and FTP'd it to my website. when I run domain/install.php, Drupal shows a blank page. I have looked at the page source and it shows nothing.

I know I'm being thick, I've looked on the internet for help but am a it stumped. My system:

Ubuntu headless 10.04.1
Apache 2.2.14
MySQL 5.1.41
PHP 5.3.2
All files on 755 and ownered correctly

Ticketing/Bug-Module on Drupal

Hi there,

I hope I'm in the right branch for asking this question. I was wondering if there were any reliable bug-tracking-modules for Drupal 7. Usually we use either Mantis or Redmine. For one of our new websites I'd like to have a fully integrated solution. What's the bug-tracking solution on drupal.org - is it open source and already stable for D7? (Google just gave me the project-module, which currently has no version for D7)

Regards,
Stephan

Drupal 7.2 without APC faster than Drupal 7.0 with APC?

Hello!

Is it only me or it's true that Drupal 7.2 without APC is as fast if not faster than Drupal 7.0 with APC?

Some benchmarking that I did on my sites show this. Am I missing something? Or is it so?

Where to store big data hash, needed for module rarely

Здравствуйте.
Greets.

I'm writting module that uses Flex in admin page. I need to store big amount of settings and rules (one assoc array) for Flex swf object to initialize. So these data NOT needed anywhere except only ONE page. I've read official docs on creating module, here at drupal.org and but not found answer on my simple question.

* If use variable_get/set - the data will be loaded EVERY TIME drupal is started. But these data will be needed only once in 2000 page loads. Not very logical)

Creating a new minimal field

I'm trying to implement a field for a flattr button. It's a really trivial field which takes no input, and thus requires neither a scheme or validation. After looking at the field_example module, I get the impression that this code below should work.

The field shows up as it should, and I can attach it to a bundle, but where I expect the to show up, I get only the fields title, and no actual output what so ever. Looking back at the field_example module, it looks to me like that's just how it outputs data. What am I missing?

function flattr_field_info() {
return array(
'flattr_field' => array(
'label' => t('Field for a flattr button'),
'description' => t('Allows adding flattr buttons to content.'),
'default_widget' => 'flattr_field',
'default_formatter' => 'flattr_button',
),
);
}

function flattr_field_widget_info() {
return array(
'flattr_field' => array(
'label' => t('Flattr button'),
'field types' => array('flattr_field'),
),
);
}

function flattr_field_formatter_info() {
return array (
// This formatter displays the flattr button
'flattr_button' => array(
'label' => t('Flattr button'),
'field types' => array('flattr_field'),
),
);
}

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x