hi,
how can I add text areas to my menus with Drupal ?
For example see lancelmaat.nl Menu Contact... I would like to put some text to a submenu and edit it from backend.
Thanks
Hi,
I'm using Views in Drupal.
I want an exposed filter selecting the ndoes containing a specific word. But I noticed I cannot search more then one CCK field per filter.
Since I want to expose it, I want an unique text-input field for all CCK Fields: is that possible ?
At the moment I can only add a new filter for each CCK field.
Thanks
hi,
I'm running Drupal on IIS server 6.
I'm having an interesting error to upload images into my node. I get "png" is not a known file.
See image:
http://dl.dropbox.com/u/72686/pngError.png
But I've added png (default settings) to the allow image files list, and indeed you can see in the same image, that png is an allowed extension.
Thanks
Hello,
I am a programmer, trying to launch my first website.. through different helpful posts in sf and others, I setup an account with Linode and set up a slice (Debian, Apache, ..etc). I have a Drupal site under development, and like to have a test site in the Linode server as well. Now, I like to have a site setup with the following requirement.
What is the best way to setup and protect the test site along with the actual (production) site?. Is virtual host is the answer?
To protect the test site, is .htaccess authentication sufficient to prevent access from public and robots?
I also modifying the theme, database contents etc, so having two sites under one drupal installation may not be good idea . what do u suggest?
thanks in advance.
bsreekanth.
I just updated from PHP 5.1 to 5.2 and both drupal and phpMyAdmin stopped being able to save information.
I've checked the mysql user permissions - they look ok. I wrote some simple php to insert a row into a table, and it works, but if I try to do the same thing in phpMyAdmin, it just says "no change". phpMyAdmin will delete rows, select rows, but not insert or update them.
Drupal does the same thing - it will select info from the tables ok, but not insert or update (or delete).
Any ideas? I'm really starting to get desperate!
Cheers,
Marek
I just updated from PHP 5.1 to 5.2 and both drupal and phpMyAdmin stopped being able to save information.
I've checked the mysql user permissions - they look ok. I wrote some simple php to insert a row into a table, and it works, but if I try to do the same thing in phpMyAdmin, it just says "no change". phpMyAdmin will delete rows, select rows, but not insert or update them.
Drupal does the same thing - it will select info from the tables ok, but not insert or update (or delete).
Any ideas? I'm really starting to get desperate!
Cheers,
Marek
We are migrating our current intranet to Drupal 6 and there is a lot of data within the current system which can be classified into:
List data, general lists of fields. Common use is phone list of the employees phone numbers.
Document repository. Just basically a web version of a file share for documents.
I can easily get the data + meta infomation out, but how do I bulk upload the two types of data into Drupal, as uploading the hundred of thousands of items manually is just not acceptable.
Hi.
I've run into a strange problem in the GMap module for Drupal. When I display a map inside a node using a GMap macro, everything is displayed correctly (according to what I specify in the macro or leave at default), save for map markers. I'm trying to specify a map marker, but it refuses to be displayed.
My macro is the following:
[gmap zoom=17 |center=53.77420697757659,20.474138259887695
|markers=big blue::53.77420697757659,20.474138259887695]
I was unable to find any help on Drupal forums, both the official one and one local to my country.
For completeness' sake, I do not wish to use a GMap view, just add a macro in a regular node.
Hope you can help me find a solution. Thanks in advance for your replies...
We are migrating our current intranet to Drupal 6 and there is a lot of data within the current system which can be classified into:
List data, general lists of fields. Common use is phone list of the employees phone numbers.
Document repository. Just basically a web version of a file share for documents.
I can easily get the data + meta infomation out, but how do I bulk upload the two types of data into Drupal, as uploading the hundred of thousands of items manually is just not acceptable.
This is what I have typed in the footer message section from the site configuration, sight information page:
Copyright Sage 2010 | Contact Us: < a ="mailto:[email protected]" [email protected]< / a | < a="www.mysite.org/contactoptions" other contact options< / a
However, when i click on the links nothing happens. I was told all I need to do is set input format to 'Full HTML' in drupal to make that work. But it still doesn't work.
Hello,
I have a Drupal 7 with 1 field added to registration form - a List with possible values Robot / Male / Female:
# select * from field_data_field_gender;
entity_type | bundle | deleted | entity_id | revision_id | language | delta | field_gender_value
-------------+--------+---------+-----------+-------------+----------+-------+--------------------
user | user | 0 | 6 | 6 | und | 0 | Male
user | user | 0 | 5 | 5 | und | 0 | Male
user | user | 0 | 7 | 7 | und | 0 | Female
user | user | 0 | 1 | 1 | und | 0 | Male
The first value Robot is a default value - to prevent SPAM robots from registering at my site. Is there a way to cancel user registration, when a new user submits the registration web form with the default Robot value? (i.e. only Male and Female values are allowed).
I've looked at the core Trigger module, but don't see anything suitable there.
I've looked at the hook_user_presave and hook_user_insert API docs, but don't see a way there to cancel an ongoing user registration. (I was expecting to do that by returning a special value from those methods...)
Thank you!
Alex
hi,
I've hard time to make Drupal work on IIS Microsoft server. I've succesfully run Joomla on the same server so I'm pretty sure the following information are correct:
host: localhost
user: user
pass: pass
databaseName = servername_databasename
I've set the following line in settings.php file:
$db_url = 'mysql://user:password@localhost/servername_databasename';
but what I get is this:
If you are the maintainer of this site, please check your database settings in the settings.php file and ensure that your hosting provider's database server is running. For more help, see the handbook, or contact your hosting provider.
I don't get any other error message such as: database doesn't exist, user/pass wrong.. just this.
The database is running, I can access with phpmyadmin.
I've tried both "mysql" and "mysqli". The host is a private server (IIS Microsoft), the database is Mysql
The database and website files upload have also been succesfull.. so I dunno what to do to fix this issue.
thanks
Hi all,
I've created a custom menu item in my Drupal 6 website by defining it in a custom module. This is an extremely simple MENU_NORMAL_ITEM menu item. The menu item is defined as
/**
* Implementation of hook_menu().
*/
function menu_test_menu() {
$items['menu_test'] = array(
'title' => 'Menu Test',
'page callback' => 'menu_test_hello',
'access callback' => TRUE,
'type' => MENU_NORMAL_ITEM,
);
return $items;
}
Since I have clean URLs on, the path should be www.example.com/menu_test. That URL gives me a 403 error. But, if I enter www.example.com/?q=menu_test, everything works fine. Why am I getting the 403 error? The menu item is useless because it's always trying to go to the clean URL path, which should work but doesn't for some reason.
Thanks for the help!
What is the "proper" way to get the value stored in a particular field within a custom Drupal node? I've created a custom module, with a custom node, with a custom URL field. The following works:
$result = db_query("SELECT nid FROM {node} WHERE title = :title AND type = :type", array(
':title' => $title,
':type' => 'custom',
))->fetchField();
$node = node_load($result);
$url = $node->url['und']['0']['value'];
...but is there a better way, maybe using the new Field API functions?
Hi friends,
I have HostGator Baby Shared Plan . I develop Drupal site on. everything was fine at the beginning, then by the time i go further with development, site started ti work really slow. now it is not working at all. giving my sql errors like TOO many connections, etc...
I created so many blocks, pages with View. so it makes my site to so much depend on database. should not I do that? can it be the reason of my site's no working now.
appreciate helps!!!!
Hi friends,
I'm a drupal newbie...
I researched but couldnot find :/ is there any predefined variable that gives my CCK field value count?
for example; I have field_logo_sponsor and I need to display all logo items. Now I have 5 item
<?php print $node->field_logo_sponsor[0]['view'] ?>
<?php print $node->field_logo_sponsor[1]['view'] ?>
<?php print $node->field_logo_sponsor[2]['view'] ?>
<?php print $node->field_logo_sponsor[3]['view'] ?>
<?php print $node->field_logo_sponsor[4]['view'] ?>
it is stupid to use it that way :/ if there is any count variable for that, I will just create a loop for that and display them in a for or while loop
Appreciate helps! thanks a lot!
hi,
when I add the tag script to load an external javascript file, my page is not longer displayed.
There are not error in Firebug, there are not errors such as "File not found" or "Not enough permissions", the browser just displays a blank page for some reason.
<?php print $head; ?>
<?php print $styles; ?>
<?php print $scripts; ?>
<script type="text/JavaScript" src="main.js" />
If I remove the last line everything works perfectly.
The previous php lines are the standard Drupal head lines.
This is the content of my js file:
$(document).ready( function() {
alert("hello");
});
thanks
is there any way to disable the tag in the lightbox modal in drupal ?
I've just realized it loads again all javascripts and css files of my page, and it is quite annoying, since it is not even an iFrame.. it is modal version.. and I would like to re-use what I've already loaded in my page for it.
See pictures:
http://dl.dropbox.com/u/72686/lightbox1.png
http://dl.dropbox.com/u/72686/lightbox2.png
I guess this code is wrong. I should load the node differently:
" rel="lightmodal" class="LightLink" style="display:none;" title=""
thanks
I am working on a drupal 6.x module which consists of several page as defined in the .module page. The problem is that when I visit those pages as admin, I get access denied. I thought that admin (user 1) could access anything? Here the code for some of the pages:
function foobar_menu()
{
$items['admin/foobar'] = array(
'title' => 'administer foobar',
'page callback' => 'foobarpage',
);
$items['admin/foobar/baz'] = array(
'title' => 'Do baz',
'page callback' => 'drupal_get_form',
'page arguments' =>array('foobarpage'),
);
So how do I make sure that only admin can see these pages and the rest get a "page does not exists" error?
hi,
I want to customize my Drupal back-end forms.
I'm using template.php file.. i.e.
$form['menu']['#collapsed'] = true;
$form['author']['#collapsed'] = true;
$form['buttons']['#weight'] = 100;
But I was wondering from where the section names (menu, author, buttons), come from. (They are not id or classes in html code, so I guess there is an index with all names stored somewhere.
Where can I get the complete list of section names ?
Furthermore, I've added a taxonomy-super-select-checkboxes section by installing the module. How can I refer to this section, to make the field not collapsed.
thanks
Hi friends,
I'm starting my first Drupal project, pretty excited :) I have a question;
the project is a hotel directory site. at sidebar I have locations list (London, Manchester, Liverpool, etc..) and filter the hotels related on location click.
So, how should I create these cities? Should I put them manually and give links manually depending on location id? or is there any better way to create this location list and linking filtering dynamically (via cms, or custom module, etc...)
Appreciate advices!!!!
Hello there, please advice me how to organize product catalog site with such structure (this is pages which should be in site map):
- Home page
- About Us
-- Team
-- Contacts
- Products
-- Category
--- Product
---- Overview
---- Photo gallery
---- Variants
-- Category
--- Subcategory
--- Product
---- Overview
---- Photo gallery
---- Variants
I know that i can use Page nodes for general pages like About page. And i can prepare Product node with CCK with needed fields. Then i can use taxonomy vocabulary for product categories/subcategories. Is this a right way to do such functionality? Or better to use just child/parent nodes?
And how i can show subpages menu on product page? How i can organize menus? I need one menu with primary links, second menu below it, for secondary links (except Products catalog) and sidebar menu for Products catalog.
Please advice. May be this is easy questions, but i just learning Drupal (but i have experience with other CMS).
Thanks a lot.
I'm developing an Action in Drupal which is supposed to activate after saving a node, exporting content to XML (which includes data from the node that was just saved), using the "Trigger: After saving an updated post" trigger.
Unfortunately this action actually happens right before the information from the recently saved post is saved to the database. ie. when looking at the XML later, I find that the most recent change I made was not included. Saving after editing a different node will restore the previously missing data.
How can I get my action to fire after the saving process is complete?
I am using a standard Drupal install hosted on a LAMP stack.
My settings.php has the following set:
ini_set('session.gc_probability', 1);
ini_set('session.gc_divisor', 100);
ini_set('session.gc_maxlifetime', 200000);
ini_set('session.cookie_lifetime', 2000000);
my php.ini file has:
session.gc_probability = 1
session.gc_divisor = 1000
session.gc_maxlifetime = 1440
Also I have checked that the safe mode is off so that my settings.php file is able to override main php.ini variables. Also since the person can get log out at 15 minutes, it is making me wonder whether php.ini has anything to do with it anyways. I have combed through my code and it seems to work fine on my local host however on server it is having issues. Where else can i possibly check?????
hi,
I've installed Taxonomy SuperSelect module in my Drupal.
Now my customer can not only type the tag for some content types pages but also select multiple tags using checkboxes.
I've also ordered the chekboxes alphabetically. However few days ago, I noticed that he can't anymore manually type the tags.. see picture:
http://dl.dropbox.com/u/72686/multiSelect.png
Can you help me how to solve this issue ? What's the php template to edit this pages ? Unluckily I don't remember if I edited some code, since I found out after a while this bug.
thanks