Drupal is up and running but how do I ...?

Panels and url question

Ok, I am playing with the panel module and have a question about URL.

I know that panels are made up of blocks and that a panel is not a node. Ok, fine. But when creating a new panel, I have to give the URL of the "path/to/page". So, if the panel is not a node, what URL do I declare?

clarification please!

newbie taxonomy and URL question

Excuse my newbie question and feel free to point me to somewhere in the handbook...

so I have set up a new drupal site with some categories and terms. I have a term called Books which has a URL like taxonomy/term/2. Is there a way to set the URL http://www.whateversite.com/books to pull up taxonomy/term/2?

thanks.

Is there a limit to the number of blocks?

We are setting up a quite ambitious multilingual Drupal site (check out at http://www2.bridge-initiative.org), and are about to finish, but encountered a problem in managing additional blocks. We have created still another multilingual block, which will have 5 language versions. I have succeeded in creating the first of those 5 blocks, but Drupal now doesn't accept anymore. Any other simple block I create replaces my previous block (takes its name, and place in the multilingual block setting).

Changing CCK title

I'd like to edit CCK so that the title pulls data from a field_first_name and field_last_name.

I searched the Drupal forums extensively and found a few questions about the same thing, but never an answer that has worked for me. I found (http://drupal.org/node/79671) but it doesnt quite work for me. When I use it instead of getting the data from field_first_name I get the text: "field_first_name".

Here is an excerpt of the content.module code:


function content_form_alter($form_id, &$form) {
// Check if we are on a node editing form for our type.
if (isset($form['#node']) && ($node = $form['#node']) && $form_id == $node->type .'_node_form') {
if ($node->type == 'content-player_profile') {

$form['title']['#type'] = 'value';
$form['title']['#value'] = 'field_first_name';

}
}
return $form;
}

/**
* Implementation of hook_nodeapi().
*
* When a revision is deleted, make sure the appropriate cache item is cleared.
*/
function content_nodeapi(&$node, $op, $teaser, $page) {
switch ($op) {
case 'delete revision':
if (content_types($node->type)) {
_content_field_invoke('delete revision', $node);
_content_field_invoke_default('delete revision', $node);
cache_clear_all('content:'. $node->nid .':'. $node->vid);
}
break;

if ($op == 'validate' && $node->type == 'content-player_profile') {

e-commerce install issue

I'm having a problem installing e-commerce module. I downloaded it unpacked it then put e-commerce folder with its contents in modules folder. After I do this I click on the modules link on my site but it doesn't load. It acts like its reloading page to show new module options but then nothing, the current page just stays there. For example say I was at settings page then clickedd modules link. It just stays at settings page. Of course when I remove e-commerce folder everything returns to normal.

Upload: problems on viewing the attached files

I have already installed Drupal 4.7.3 on Aruba hosting Linux. I had a lot of problems . I realized that they were caused by the htaccess files. To make evrything work at first I deleted the file, but later I changed it.with this one I found this one in a forum post.

#
# Apache/PHP/site settings:
#
# Protect files and directories from prying eyes:

order deny,allow
deny from all

# Set some options
###no### Options -Indexes
###no### Options +FollowSymLinks
# Customized server error messages:
ErrorDocument 404 /index.php
# Set the default handler to index.php:
###no### DirectoryIndex index.php
# Overload PHP variables:

# If you are using Apache 2, you have to use
# instead of .
php_value register_globals 0
php_value track_vars 1
php_value short_open_tag 1
php_value magic_quotes_gpc 0
php_value magic_quotes_runtime 0
php_value magic_quotes_sybase 0
php_value arg_separator.output "&"
php_value session.cache_expire 200000
php_value session.gc_maxlifetime 200000
php_value session.cookie_lifetime 200000000
php_value session.auto_start 0
php_value session.save_handler user
php_value session.cache_limiter none
php_value allow_call_time_pass_reference On

# Various rewrite rules

Pages

Subscribe with RSS Subscribe to RSS - Post installation