What is this Warning while uploading Modules?

Everytime I upload a template or module into D7 this error displays briefly ... though the process seems to finish properly & the package was uploaded & installed.

Warning: move_uploaded_file(): open_basedir restriction in effect. File(/data/temp/phplrbTUg) is not within the allowed path(s): (/data/in/s/sas/www:/usr/local/lib/php:/data/etc/php:/data/gadgets/data:/data/gadgets/cache:/usr/local/bin) in file_save_upload() (line 1526 of /data/in/s/sas/www/sz-drupal/includes/file.inc).

hook_node_view Error

Hi All,
I'm developing a site for a theater company that I'm involved in and one of the features is to display a list of actors, staff, crew, ect on a page for each show (custom node type). I've created a small system where an admin on the site can associate a member (drupal user) to a specific show (drupal node). I'm running into an error displaying only one of the involvement groups. Each database entry contains the category of involvement (cast, crew ect), a description of the position, the show id (node id), and the uid of the user. In the hook I run a db_select and in the foreach I run through each of the positions. If anyone can point out the error that is causing the Cast table to not display I would be indebted. Drupal is an awesome platform and I plan on build many sites on it in the future.

Here is the code of the hook
<?php
function shows_node_view($node, $view_mode) {
if ($view_mode == 'full' && $node->type == 'show') {
$nid = is_object($node) ? $node->nid : $node;

$query = db_select('production_involve', 'p');
$query
->join('users', 'u', 'p.uid = u.uid');
$query
->fields('p', array('uid', 'sid', 'involve_cat', 'involve_desc'))
->fields('u', array('uid', 'name'))
->condition('sid', $nid);

$results = $query->execute();

foreach ($results as $r) {

Blocks a little messed up after update to 7.2

I updated from Drupal 7.0 to 7.2 and also Pathauto to 7.x-1.0-rc2 and Token to 7.x-1.0-beta2, now for some reason the blocks I have on the right side of http://diamondksales.com have way too much space on the right side to where they pushing over into the main content area on several pages such as http://diamondksales.com/show-inventory.php - any ideas? I am using theme Bartik 7.2

Remove dc:creator from RSS Feed in Drupal 7

Does anyone have an updated method for removing the dc:creator from an RSS feed? Specifically, the built-in feeds for taxonomy terms? I'm having a problem with Views not returning content for Taxonomy terms so I need something that works with Drupal 7 core's handling of taxonomy RSS. All examples I can find use nodeapi which seems to not exist in D7.

How to get rid of all those useless divs?

Hey all,

Since a few weeks I've installed Drupal and I'm trying to make a website with a totally custom lay-out. Until now this went well, ignoring the fact that Drupal builds in thousands of useless divs. I figered my way out, but now I'm totally stuck. I have used CMS made simple before, but I heard with Drupal the site could also be built from core. My question is, where is that option? How do I prevent nested divs like this:

Advertise 7.x-2.x fails on new install of D7.2

Assistance with D7 and the Advertise module.

I did a clean install of Drupal 7.2 today. Everything went clean.
I added numerous modules and again, no issues to speak of.
I added the Advertise modules without errors.

PHP 5.3
MySQL 5.0.86
Apache 2.2.13
FreeBSD 7.3-Release-p2

However, when I attempt to use the Advertise module to create an ad type, I get the following...

The ad type does get inserted into MySQL
Listing ad types in the module in D7 results in an empty list and more errors.

I'm not sure where to even begin hunting down the cause.

Searching forms, support, bug lists, etc for the terms ad_type_title (module that fails), 6782 (the line number), etc. returns nothing.

Has anybody encountered issues installing Advertise with D7? Any idea where/how to resolve these?

Thanks! Errors follow

Details
Type php
Date

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x