From larry at garfieldtech.com Sat Nov 1 09:54:02 2008 From: larry at garfieldtech.com (Larry Garfield) Date: Sat, 1 Nov 2008 04:54:02 -0500 Subject: [support] Drupal SQL function and DB Access In-Reply-To: <49098683.1050101@ziobudda.net> References: <4908EACE.6090405@ziobudda.net> <200810300046.23076.larry@garfieldtech.com> <49098683.1050101@ziobudda.net> Message-ID: <200811010454.02559.larry@garfieldtech.com> On Thursday 30 October 2008 5:03:47 am Davide Michel 'ZioBudda' Morelli wrote: > Larry Garfield ha scritto: > > On Wednesday 29 October 2008 5:59:26 pm Davide Michel 'ZioBudda' Morelli > > > > wrote: > >> Hi, In a client site I need to connect to a DB MS Access via Drupal. > >> > >> Is this possibile ? How can I set the db and credentials ? > >> > >> M. > > > > Drupal currently does not support MS Access, and I don't believe it would > > be at all feasible to do so in Drupal 6. > > A moment. I don't want to install Drupal 6 on a MS Acess. I need only to > connect to it. > I need to exec some query. > > M. Your best bet at that point is to bypass Drupal's DB layer entirely. Drupal is still PHP, so if you can connect to Access via PHP then you can connect to it from Drupal the exact same way. Good luck connecting to Access via PHP. :-) ODBC is probably your best bet, and if you can make it work I suggest using the PDO-ODBC driver rather than the nightmare that is the legacy ext/odbc driver. Be prepared for a lot of hassle either way, though. I suggest the php-general mailing list, #PHP IRC channel, or other common PHP support channels for figuring out how to talk to Access from PHP. -- Larry Garfield larry at garfieldtech.com From ml.dcailli at free.fr Sun Nov 2 01:15:57 2008 From: ml.dcailli at free.fr (Daniel Caillibaud) Date: Sun, 2 Nov 2008 02:15:57 +0100 Subject: [support] changing online/offline mode via db or settings.php doesn't work Message-ID: <20081102021557.00f87d93@free.fr> Hello, On a drupal 6.6 multisite installation, I can't change the online status with - changing the site_offline value (`s:1:"1";` or `s:1:"0";`) in the variable table - adding $conf['site_offline'] = 's:1:"0";'; (or $conf['site_offline'] = 's:1:"1";';) in my settings.php and I don't understand why! When I change the status by the "normal" way (admin/settings/site-maintenance), the only change in the variable table are (by diff on 2 dumps): before (online) INSERT INTO `dev_variable` VALUES ('site_offline','s:1:\"1\";'); INSERT INTO `dev_variable` VALUES ('cache_flush','i:1225586663;'); after (offline) INSERT INTO `dev_variable` VALUES ('site_offline','s:1:\"0\";'); INSERT INTO `dev_variable` VALUES ('cache_flush','i:1225587127;'); Any idea ? PS: - I'm sure I'm changing the right table (when I change the status with admin/settings/site-maintenance, I see the value change) - I'm sure I'm changing the right settings.php (I made a syntax error to test) -- Daniel From mike at mikeyp.net Sun Nov 2 03:18:18 2008 From: mike at mikeyp.net (Michael Prasuhn) Date: Sat, 1 Nov 2008 20:18:18 -0700 Subject: [support] changing online/offline mode via db or settings.php doesn't work In-Reply-To: <20081102021557.00f87d93@free.fr> References: <20081102021557.00f87d93@free.fr> Message-ID: In settings.php the value you are looking for is $conf['site_offline'] = '1'; 's:1:"1";' is a serialized value used to store PHP variables in a database column. It is basically short hand for, "a string whose length is 1 character(s), and contains the character 1." If you change this in the database, you'll also want to delete the cached variables array from the cache table. To do this simply delete the row where CID = 'variables.' For example, run: DELETE FROM cache WHERE cid = "variables"; Drupal will rebuild this array and cache it again the next time a variable is requested. Hope this helps. -Mike On Nov 1, 2008, at 6:15 PM, Daniel Caillibaud wrote: > Hello, > > On a drupal 6.6 multisite installation, I can't change the online > status with > - changing the site_offline value (`s:1:"1";` or `s:1:"0";`) in the > variable table > - adding $conf['site_offline'] = 's:1:"0";'; (or > $conf['site_offline'] = 's:1:"1";';) in my settings.php > and I don't understand why! > > When I change the status by the "normal" way (admin/settings/site- > maintenance), the only change in the variable table are (by > diff on 2 dumps): > before (online) > INSERT INTO `dev_variable` VALUES ('site_offline','s:1:\"1\";'); > INSERT INTO `dev_variable` VALUES ('cache_flush','i:1225586663;'); > after (offline) > INSERT INTO `dev_variable` VALUES ('site_offline','s:1:\"0\";'); > INSERT INTO `dev_variable` VALUES ('cache_flush','i:1225587127;'); > > Any idea ? > > PS: > - I'm sure I'm changing the right table (when I change the status > with admin/settings/site-maintenance, I see the value change) > - I'm sure I'm changing the right settings.php (I made a syntax > error to test) > > -- > Daniel > -- > [ Drupal support list | http://lists.drupal.org/ ] __________________ Michael Prasuhn mike at mikeyp.net http://mikeyp.net From ml.dcailli at free.fr Sun Nov 2 15:15:11 2008 From: ml.dcailli at free.fr (Daniel Caillibaud) Date: Sun, 2 Nov 2008 16:15:11 +0100 Subject: [support] changing online/offline mode via db or settings.php doesn't work In-Reply-To: References: <20081102021557.00f87d93@free.fr> Message-ID: <20081102161511.094f5c9b@free.fr> Le 01/11/08 ? 20:18, Michael Prasuhn a ?crit : > In settings.php the value you are looking for is > > $conf['site_offline'] = '1'; > > 's:1:"1";' is a serialized value used to store PHP variables in a > database column. It is basically short hand for, "a string whose > length is 1 character(s), and contains the character 1." Thanks, but it's not enough, because cache I guess. > If you change this in the database, you'll also want to delete the > cached variables array from the cache table. To do this simply delete > the row where CID = 'variables.' For example, run: > > DELETE FROM cache WHERE cid = "variables"; > > Drupal will rebuild this array and cache it again the next time a > variable is requested. > > Hope this helps. Yep, this helps, but I need UPDATE variable SET value='s:1:"1";' WHERE name='site_offline'; TRUNCATE TABLE cache; TRUNCATE TABLE cache_content; TRUNCATE TABLE cache_page; to really change the site status Thanks -- Daniel From bharanikumariyerphp at gmail.com Sun Nov 2 16:36:24 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Sun, 2 Nov 2008 22:06:24 +0530 Subject: [support] Reservation Message-ID: <2240033d0811020836i6d61c07wd816fa4536c9552c@mail.gmail.com> Hi Friends Refer some reservation modules, Refer other then this http://drupal.org/project/reservation module, Is there any reservation drupal site, please refer , -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081102/d5a246a2/attachment.htm From mike at mikeyp.net Sun Nov 2 16:55:23 2008 From: mike at mikeyp.net (Michael Prasuhn) Date: Sun, 2 Nov 2008 08:55:23 -0800 Subject: [support] changing online/offline mode via db or settings.php doesn't work In-Reply-To: <20081102161511.094f5c9b@free.fr> References: <20081102021557.00f87d93@free.fr> <20081102161511.094f5c9b@free.fr> Message-ID: <43292247-8C62-4F4B-9C84-2E406AFAA07C@mikeyp.net> On Nov 2, 2008, at 7:15 AM, Daniel Caillibaud wrote: > Le 01/11/08 ? 20:18, Michael Prasuhn a ?crit : > >> In settings.php the value you are looking for is >> >> $conf['site_offline'] = '1'; >> >> 's:1:"1";' is a serialized value used to store PHP variables in a >> database column. It is basically short hand for, "a string whose >> length is 1 character(s), and contains the character 1." > > Thanks, but it's not enough, because cache I guess. I assume you have page caching turned on, and that is what you are referring to. Just to be clear, the $conf values supplied from setttings.php are *never* cached between page requests. -Mike __________________ Michael Prasuhn mike at mikeyp.net http://mikeyp.net From ml.dcailli at free.fr Sun Nov 2 17:42:48 2008 From: ml.dcailli at free.fr (Daniel Caillibaud) Date: Sun, 2 Nov 2008 18:42:48 +0100 Subject: [support] changing online/offline mode via db or settings.php doesn't work In-Reply-To: <43292247-8C62-4F4B-9C84-2E406AFAA07C@mikeyp.net> References: <20081102021557.00f87d93@free.fr> <20081102161511.094f5c9b@free.fr> <43292247-8C62-4F4B-9C84-2E406AFAA07C@mikeyp.net> Message-ID: <20081102184248.6d8d8cd8@free.fr> Le 02/11/08 ? 08:55, Michael Prasuhn a ?crit : > >> $conf['site_offline'] = '1'; > >> > >> 's:1:"1";' is a serialized value used to store PHP variables in a > >> database column. It is basically short hand for, "a string whose > >> length is 1 character(s), and contains the character 1." > > > > Thanks, but it's not enough, because cache I guess. > > I assume you have page caching turned on, and that is what you are > referring to. Just to be clear, the $conf values supplied from > setttings.php are *never* cached between page requests. What I did : - site is online, I'm not loggued - I write $conf['site_offline'] = '1'; at the end of my setttings.php => site is still online on homepage (even with flushing browser cache), but is offline on another page not displayed before - conf['site_offline'] = '0'; - site is still offline until I ask for another page (node/xxx not displayed before) if I do (directly in mysql, not in php code) TRUNCATE TABLE cache_page; just after changing $conf['site_offline'] in settings.php (and before asking any page), it works fine, so I guess that online/offline pages are cached, so just changing $conf doesn't change anything for web client, until caches are cleared. Pb is that drupal_flush_all_caches() function isn't yet definded in settings.php, so just changing something in settings.php can't toggle the site online/offline. It's not a big pb, I will write a little mysql script to put all drupal websites online/offline, I just thought changing settings was enough. Thanks for help anyway (I learnt something about string storage in variable table). -- Daniel L'avenir, c'est du pass? en pr?paration. Pierre Dac From bharanikumariyerphp at gmail.com Mon Nov 3 07:05:26 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Mon, 3 Nov 2008 12:35:26 +0530 Subject: [support] get next nid Message-ID: <2240033d0811022305j5252ce12uf46d751dea9f757a@mail.gmail.com> function formexample_nameform() { $form['first_name'] = array( '#title' => t('First Name'), '#type' => 'textfield', '#description' => t(''), ); $form['annotate']['nid'] = array( '#type' => 'value', '#value' => $node->nid ); $form['last_name'] = array( '#title' => t('Description'), '#type' => 'textfield', '#description' => t(''), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('submit') ); return $form; } function formexample_nameform_submit($form_id, $form_values) { global $user; print $nid = $form_values['annotate']; print $note = $form_values['first_name']; $description = $form_values['last_name']; /*db_query("DELETE FROM {contactus} WHERE uid = %d and nid = %d", $user->uid, $nid);*/ db_query("INSERT INTO {contactus} (uid, nid, name,description, timestamp) VALUES (%d, %d,'%s','%s', %d)", $user->uid, $nid,$note,$description, time()); drupal_set_message(t('Your contactus was saved.')); } How to get the next nid, -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/f93f933a/attachment.htm From bharanikumariyerphp at gmail.com Mon Nov 3 07:49:20 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Mon, 3 Nov 2008 13:19:20 +0530 Subject: [support] need to display radio as horizontal Message-ID: <2240033d0811022349g3ed0fa29gf6f59b776e883443@mail.gmail.com> This is the code, function reservation_form(){ $form['option_city'] = array( '#type' => 'radios', '#title' => t('City'), '#description' => t('Select a method for deleting annotations.'), '#options' => array( t('City'), t('Address'), ), '#default_value' => variable_get('option_city', 0) // default to Never ); return $form; } display the radio button as vertically, But i want to display horizontally what i do -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/642f2a0b/attachment-0001.htm From bharanikumariyerphp at gmail.com Mon Nov 3 08:44:26 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Mon, 3 Nov 2008 14:14:26 +0530 Subject: [support] call another form in the radio onclick Message-ID: <2240033d0811030044pb8c8263ic90b38a9fbfa504f@mail.gmail.com> This is my code $form['option_city'] = array( '#type' => 'radios', '#title' => t('City'), '#description' => t('Reservation'), '#options' => array( t('City'), t('Address'), ), '#default_value' => variable_get('option_city', 0) // default to Never ); When i select " City " Display the Cityform When i select " Address " Display the AddressForm How to write the code for this situation -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/c4849ab0/attachment.htm From mailinglists at oxalto.co.uk Mon Nov 3 11:22:40 2008 From: mailinglists at oxalto.co.uk (Tom King) Date: Mon, 3 Nov 2008 11:22:40 +0000 Subject: [support] 6.6 Block Visibility Issue Message-ID: <203a86cf0811030322j51957b8g95f7763c8c1e124e@mail.gmail.com> Hi All, First post to this list - need some help! after upgrading to 6.6 I seem to have an issue where my block visibility settings won't update for certain blocks: So I'm using this in the "Show only on these pages" part on the block settings : research/regions/africa/afran research/regions/africa/afran/* When I go to the URL though, research/regions/africa/afran doesn't show, but all the sub pages, i.e research/regions/africa/afran/* do - any ideas? Has the syntax changed or something? this has been working happily for a year before! Thanks! T -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/b59aca3d/attachment.htm From sivaji2009 at gmail.com Mon Nov 3 13:46:55 2008 From: sivaji2009 at gmail.com (sivaji j.g) Date: Mon, 3 Nov 2008 08:46:55 -0500 Subject: [support] 6.6 Block Visibility Issue In-Reply-To: <203a86cf0811030322j51957b8g95f7763c8c1e124e@mail.gmail.com> References: <203a86cf0811030322j51957b8g95f7763c8c1e124e@mail.gmail.com> Message-ID: > after upgrading to 6.6 I seem to have an issue where my block visibility > settings won't update for certain blocks: clear your cache tables and browser cache. > > > So I'm using this in the "Show only on these pages" part on the block > settings : > > research/regions/africa/afran > research/regions/africa/afran/* > > When I go to the URL though, research/regions/africa/afran doesn't show, What do you get when you go to research/regions/africa/afran "page not found error ", blank page or something else ? > but all the sub pages, i.e research/regions/africa/afran/* do - any ideas? > > Has the syntax changed or something? this has been working happily for a > year before! -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/e10e4f57/attachment.htm From mailinglists at oxalto.co.uk Mon Nov 3 16:28:59 2008 From: mailinglists at oxalto.co.uk (Tom King) Date: Mon, 3 Nov 2008 16:28:59 +0000 Subject: [support] 6.6 Block Visibility Issue In-Reply-To: References: <203a86cf0811030322j51957b8g95f7763c8c1e124e@mail.gmail.com> Message-ID: <203a86cf0811030828t59e0f61esb69656a92a9bfaec@mail.gmail.com> Thanks for the tips - found a solution: it was a 3rd party module causing mayhem. thankfully it wasn't one in use, so have removed it and all is good. Ta T 2008/11/3 sivaji j.g > > > >> after upgrading to 6.6 I seem to have an issue where my block visibility >> settings won't update for certain blocks: > > > clear your cache tables and browser cache. > >> >> >> So I'm using this in the "Show only on these pages" part on the block >> settings : >> >> research/regions/africa/afran >> research/regions/africa/afran/* >> >> When I go to the URL though, research/regions/africa/afran doesn't show, > > > What do you get when you go to research/regions/africa/afran "page not > found error ", blank page or something else ? > > >> but all the sub pages, i.e research/regions/africa/afran/* do - any ideas? >> >> Has the syntax changed or something? this has been working happily for a >> year before! > > > -- > Thanks a lot > ----------------------------------------- > http://ubuntuslave.blogspot.com/ > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/df607816/attachment.htm From shai at content2zero.com Mon Nov 3 16:44:59 2008 From: shai at content2zero.com (Shai Gluskin) Date: Mon, 3 Nov 2008 11:44:59 -0500 Subject: [support] 6.6 Block Visibility Issue In-Reply-To: <203a86cf0811030828t59e0f61esb69656a92a9bfaec@mail.gmail.com> References: <203a86cf0811030322j51957b8g95f7763c8c1e124e@mail.gmail.com> <203a86cf0811030828t59e0f61esb69656a92a9bfaec@mail.gmail.com> Message-ID: <9f68efb70811030844k6bdfb742mbd92a03b0f9a6014@mail.gmail.com> Tom, Do report back which module it is. That will help others out who might end up in the same situation. Shai On Mon, Nov 3, 2008 at 11:28 AM, Tom King wrote: > Thanks for the tips - found a solution: it was a 3rd party module causing > mayhem. thankfully it wasn't one in use, so have removed it and all is good. > Ta > T > > 2008/11/3 sivaji j.g > >> >> >> >>> after upgrading to 6.6 I seem to have an issue where my block visibility >>> settings won't update for certain blocks: >> >> >> clear your cache tables and browser cache. >> >>> >>> >>> So I'm using this in the "Show only on these pages" part on the block >>> settings : >>> >>> research/regions/africa/afran >>> research/regions/africa/afran/* >>> >>> When I go to the URL though, research/regions/africa/afran doesn't show, >> >> >> What do you get when you go to research/regions/africa/afran "page not >> found error ", blank page or something else ? >> >> >>> but all the sub pages, i.e research/regions/africa/afran/* do - any >>> ideas? >>> >>> Has the syntax changed or something? this has been working happily for a >>> year before! >> >> >> -- >> Thanks a lot >> ----------------------------------------- >> http://ubuntuslave.blogspot.com/ >> >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/f5615270/attachment.htm From bharanikumariyerphp at gmail.com Mon Nov 3 17:39:47 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Mon, 3 Nov 2008 23:09:47 +0530 Subject: [support] call form on the onclick of the radio Message-ID: <2240033d0811030939w41c26bbax286e17e4ddbb1710@mail.gmail.com> Hi How to call the another form ,on the onclickof radio button -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081103/37ad8ea9/attachment.htm From jwt at onjapan.net Mon Nov 3 20:08:46 2008 From: jwt at onjapan.net (Jim Tittsler) Date: Tue, 4 Nov 2008 09:08:46 +1300 Subject: [support] need to display radio as horizontal In-Reply-To: <2240033d0811022349g3ed0fa29gf6f59b776e883443@mail.gmail.com> References: <2240033d0811022349g3ed0fa29gf6f59b776e883443@mail.gmail.com> Message-ID: <7EEB5E1F-AED2-4BF0-B87B-D168F087C5D0@onjapan.net> On Nov 3, 2008, at 20:49, bharani kumar wrote: > This is the code, > > function reservation_form(){ > > $form['option_city'] = array( > '#type' => 'radios', > [...] > display the radio button as vertically, > > But i want to display horizontally You can use CSS to make them display horizontally: .form-radios .form-item { float: left; width: 20%; } .form-item label.option { display: inline; clear: left; float: left; } From bharanikumariyerphp at gmail.com Tue Nov 4 01:58:43 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Tue, 4 Nov 2008 07:28:43 +0530 Subject: [support] need to display radio as horizontal In-Reply-To: <7EEB5E1F-AED2-4BF0-B87B-D168F087C5D0@onjapan.net> References: <2240033d0811022349g3ed0fa29gf6f59b776e883443@mail.gmail.com> <7EEB5E1F-AED2-4BF0-B87B-D168F087C5D0@onjapan.net> Message-ID: <2240033d0811031758n620fe8a2scae05355ec0a3049@mail.gmail.com> When i select the city radio option , need to display the cityForm When i select the address radio option , need to display the addressForm any guess On Tue, Nov 4, 2008 at 1:38 AM, Jim Tittsler wrote: > On Nov 3, 2008, at 20:49, bharani kumar wrote: > > > This is the code, > > > > function reservation_form(){ > > > > $form['option_city'] = array( > > '#type' => 'radios', > > [...] > > display the radio button as vertically, > > > > But i want to display horizontally > > You can use CSS to make them display horizontally: > > .form-radios .form-item { > float: left; > width: 20%; > } > > .form-item label.option { > display: inline; > clear: left; > float: left; > } > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081104/2b8275e5/attachment.htm From enboig at gmail.com Tue Nov 4 11:44:59 2008 From: enboig at gmail.com (=?ISO-8859-1?Q?Llu=EDs?=) Date: Tue, 4 Nov 2008 12:44:59 +0100 Subject: [support] multisite: make one development site not visible Message-ID: <45a29f450811040344n1334d30eld714e77d03d88892@mail.gmail.com> Usually when I upload a development site, I just modify the htaccess file to make it unavailable to other users; but now I amb using a multisite scheme where production sites and development sites are mixed. How can I block a concrete site? thanks -- *La vida ?s com una moneda, la pots gastar en el que vulguis per? nom?s una vegada. *La felicitat ha de ser compatible, compartible i cooperativa. *Envellim quan els records superen les il?lusions. *Als llocs desconeguts nom?s s'hi arriba per camins desconeguts. *Abans d'imprimir aquest missatge, pensa en el medi ambient. From earnie at users.sourceforge.net Tue Nov 4 14:09:56 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Tue, 04 Nov 2008 09:09:56 -0500 Subject: [support] multisite: make one development site not visible In-Reply-To: <45a29f450811040344n1334d30eld714e77d03d88892@mail.gmail.com> References: <45a29f450811040344n1334d30eld714e77d03d88892@mail.gmail.com> Message-ID: <20081104090956.kwf1rwnxjts84kgg@mail.progw.org> Quoting Llu?s : > Usually when I upload a development site, I just modify the htaccess > file to make it unavailable to other users; but now I amb using a > multisite scheme where production sites and development sites are > mixed. How can I block a concrete site? > That's what admin/user/rules is for. Earnie -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From me at saurocesaretti.com Tue Nov 4 14:18:40 2008 From: me at saurocesaretti.com (Sauro Cesaretti) Date: Tue, 04 Nov 2008 15:18:40 +0100 Subject: [support] problems with category module Message-ID: <491059C0.6000501@saurocesaretti.com> Hi all, I'd like to ask some clarification about the module category. I have installed that module in drupal 5.7 and after some days I discovered a conflit with the simplenews module so I decided to disable them both. I was able to remove simplenews using the normal unisntall link in modules section but I was not able to remove the category module. Could you suggest me something for that? Thank you very much in advance best regards, Sauro From killshot91 at comcast.net Tue Nov 4 22:28:22 2008 From: killshot91 at comcast.net (Steve Edwards) Date: Tue, 04 Nov 2008 14:28:22 -0800 Subject: [support] Menus Won't Display Properly Message-ID: <4910CC86.4050407@comcast.net> I've been fighting with this for a couple weeks now with no resolution, so I'm hoping someone can shed some light on this for me. I tried using the menu tabs capability in Views with no luck, so I'm trying to accomplish the same thing in a module, still with no luck, and I don't have much hair left to pull out... What I want to do is create a page with three tabbed menu items. The text will be from a Page node, and the three tabs will be views. There are three roles - regular, associate, and affiliate - that need to have access. Regular and Associate can see all items, and Affiliate role can only see what has been flagged as being visible to the Affiliate role. There are three categories - Basic Information, Best Practices, and Technology. I've created six views accordingly. What I'm trying to do is create two menu items: one for Regular/Associate, and one for Affiliate, with the same intro text. Each will have three tabs, but the views will be different Here is my hook_menu: function mymodule_menu($may_cache) { $items = array(); if ($may_cache) { $items[] = array( 'path' => 'resource-center/reg-assoc', 'title' => t('Resource Center - Regular'), 'description' => t('Resource center for regular and associate members'), 'callback' => 'resource_center_base_page', 'access' => user_access('regular'), 'type' => MENU_NORMAL_ITEM, ); $items[] = array( 'path' => 'resource-center/reg-assoc/basic', 'title' => t('Basic Information'), 'description' => t('Basic Information'), 'callback' => 'resource_center_basic', 'callback argument' => 'resources_reg_assoc_basic', 'access' => user_access('regular'), 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[] = array( 'path' => 'resource-center/reg-assoc/best-practices', 'title' => t('Best Practices'), 'description' => t('Best Practices'), 'callback' => 'resource_center_best', 'callback argument' => 'resources_reg_assoc_best', 'access' => user_access('regular'), 'type' => MENU_LOCAL_TASK, ); $items[] = array( 'path' => 'resource-center/reg-assoc/technology', 'title' => t('Technology'), 'description' => t('Technology'), 'callback' => 'resource_center_technology', 'callback argument' => 'resources_reg_assoc_technology', 'access' => user_access('regular'), 'type' => MENU_LOCAL_TASK, ); $items[] = array( 'path' => 'resource-center/affiliate', 'title' => t('Resource Center - Affiliate'), 'description' => t('Resource center for affiliate members'), 'callback' => 'resource_center_base_page', 'access' => user_access('affiliate'), 'type' => MENU_NORMAL_ITEM, ); $items[] = array( 'path' => 'resource-center/affiliate/basic', 'title' => t('Basic Information'), 'description' => t('Basic Information'), 'callback' => 'resource_center_basic', 'callback argument' => 'resources_affiliate_basic', 'access' => user_access('affiliate'), 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[] = array( 'path' => 'resource-center/affiliate/best-practices', 'title' => t('Best Practices'), 'description' => t('Best Practices'), 'callback' => 'resource_center_best_practices', 'callback argument' => 'resources_affiliate_best', 'access' => user_access('affiliate'), 'type' => MENU_LOCAL_TASK, ); $items[] = array( 'path' => 'resource-center/affiliate/technology', 'title' => t('Technology'), 'description' => t('Technology'), 'callback' => 'resource_center_technology', 'callback argument' => 'resources_affiliate_technology', 'access' => user_access('affiliate'), 'type' => MENU_LOCAL_TASK, ); } return $items; } The URLs for the views match the paths for the MENU_LOCAL_TASK items. Here is the function to call the page (as referred to in the menu callback: function resource_center_base_page() { $output = ''; $base_node = node_load(84); $display = node_view($base_node); $output = $display; return $output; } and then the functions to call the views: function resource_center_basic($view_name) { $view = views_get_view($view_name); print views_build_view('embed', $view, array(), false, false); } function resource_center_best_practices($view_name) { $view = views_get_view($view_name); print views_build_view('embed', $view, array(), false, false); } function resource_center_technology($view_name) { $view = views_get_view($view_name); print views_build_view('embed', $view, array(), false, false); } After all that, what's happening is that the menu items are only available to my admin user (the first one created). When I go to resource-center/reg-assoc, I get my page and the tabs, but when I go to resource-center/affiliate, I just get the page with no tabs. When I log in as a regular role, I don't see the menu items at all, and if I go to resource-center/reg-assoc, I get Access Denied. Am I doing something wrong, or is this a bug in the menu system. Thanks. Steve -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081104/7ac8a265/attachment-0001.htm From mike at mikeyp.net Tue Nov 4 23:01:49 2008 From: mike at mikeyp.net (Michael Prasuhn) Date: Tue, 4 Nov 2008 15:01:49 -0800 Subject: [support] Menus Won't Display Properly In-Reply-To: <4910CC86.4050407@comcast.net> References: <4910CC86.4050407@comcast.net> Message-ID: <32E43678-9F36-4BCB-9D8F-3C3A32A51583@mikeyp.net> It looks like you are not defining your MENU_DEFAULT_LOCAL_TASK correctly. Creating a page Y with X tabs requires X+1 entries in hook_menu(). See this example from node.module: $items[] = array( 'path' => 'admin/content/types', 'title' => t('Content types'), 'description' => t('Manage posts by content type, including default status, front page promotion, etc.'), 'callback' => 'node_overview_types', 'access' => user_access('administer content types'), ); $items[] = array( 'path' => 'admin/content/types/list', 'title' => t('List'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items[] = array( 'path' => 'admin/content/types/add', 'title' => t('Add content type'), 'callback' => 'drupal_get_form', 'callback arguments' => array('node_type_form'), 'type' => MENU_LOCAL_TASK, ); In this case, the MENU_DEFAULT_LOCAL_TASK is actually just to define the tab, which is the same as 'admin/content/types'. So basically it looks if you change your 'resource-center/reg-assoc/ basic' and 'resource-center/affiliate/basic' items to MENU_LOCAL_TASK, and create an item such as 'resource-center/reg-assoc/view' and only give it a title "view" or some such, a weight (usually -10), and the path 'resource-center/reg-assoc/view' and type MENU_DEFAULT_LOCAL_TASK. I think that's what you're trying to do, let me know if that works. -Mike On Nov 4, 2008, at 2:28 PM, Steve Edwards wrote: > I've been fighting with this for a couple weeks now with no > resolution, so I'm hoping someone can shed some light on this for > me. I tried using the menu tabs capability in Views with no luck, > so I'm trying to accomplish the same thing in a module, still with > no luck, and I don't have much hair left to pull out... > > What I want to do is create a page with three tabbed menu items. > The text will be from a Page node, and the three tabs will be > views. There are three roles - regular, associate, and affiliate - > that need to have access. Regular and Associate can see all items, > and Affiliate role can only see what has been flagged as being > visible to the Affiliate role. There are three categories - Basic > Information, Best Practices, and Technology. I've created six views > accordingly. What I'm trying to do is create two menu items: one > for Regular/Associate, and one for Affiliate, with the same intro > text. Each will have three tabs, but the views will be different > Here is my hook_menu: > > function mymodule_menu($may_cache) { > $items = array(); > > if ($may_cache) { > $items[] = array( > 'path' => 'resource-center/reg-assoc', > 'title' => t('Resource Center - Regular'), > 'description' => t('Resource center for regular and associate > members'), > 'callback' => 'resource_center_base_page', > 'access' => user_access('regular'), > 'type' => MENU_NORMAL_ITEM, > ); > > $items[] = array( > 'path' => 'resource-center/reg-assoc/basic', > 'title' => t('Basic Information'), > 'description' => t('Basic Information'), > 'callback' => 'resource_center_basic', > 'callback argument' => 'resources_reg_assoc_basic', > 'access' => user_access('regular'), > 'type' => MENU_DEFAULT_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/reg-assoc/best-practices', > 'title' => t('Best Practices'), > 'description' => t('Best Practices'), > 'callback' => 'resource_center_best', > 'callback argument' => 'resources_reg_assoc_best', > 'access' => user_access('regular'), > 'type' => MENU_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/reg-assoc/technology', > 'title' => t('Technology'), > 'description' => t('Technology'), > 'callback' => 'resource_center_technology', > 'callback argument' => 'resources_reg_assoc_technology', > 'access' => user_access('regular'), > 'type' => MENU_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/affiliate', > 'title' => t('Resource Center - Affiliate'), > 'description' => t('Resource center for affiliate members'), > 'callback' => 'resource_center_base_page', > 'access' => user_access('affiliate'), > 'type' => MENU_NORMAL_ITEM, > ); > $items[] = array( > 'path' => 'resource-center/affiliate/basic', > 'title' => t('Basic Information'), > 'description' => t('Basic Information'), > 'callback' => 'resource_center_basic', > 'callback argument' => 'resources_affiliate_basic', > 'access' => user_access('affiliate'), > 'type' => MENU_DEFAULT_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/affiliate/best-practices', > 'title' => t('Best Practices'), > 'description' => t('Best Practices'), > 'callback' => 'resource_center_best_practices', > 'callback argument' => 'resources_affiliate_best', > 'access' => user_access('affiliate'), > 'type' => MENU_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/affiliate/technology', > 'title' => t('Technology'), > 'description' => t('Technology'), > 'callback' => 'resource_center_technology', > 'callback argument' => 'resources_affiliate_technology', > 'access' => user_access('affiliate'), > 'type' => MENU_LOCAL_TASK, > ); > } > return $items; > } > > The URLs for the views match the paths for the MENU_LOCAL_TASK items. > > Here is the function to call the page (as referred to in the menu > callback: > > function resource_center_base_page() { > $output = ''; > > $base_node = node_load(84); > $display = node_view($base_node); > > $output = $display; > > return $output; > } > > and then the functions to call the views: > > function resource_center_basic($view_name) { > $view = views_get_view($view_name); > print views_build_view('embed', $view, array(), false, false); > } > > function resource_center_best_practices($view_name) { > > $view = views_get_view($view_name); > print views_build_view('embed', $view, array(), false, false); > } > > function resource_center_technology($view_name) { > > $view = views_get_view($view_name); > print views_build_view('embed', $view, array(), false, false); > } > > After all that, what's happening is that the menu items are only > available to my admin user (the first one created). When I go to > resource-center/reg-assoc, I get my page and the tabs, but when I go > to resource-center/affiliate, I just get the page with no tabs. > When I log in as a regular role, I don't see the menu items at all, > and if I go to resource-center/reg-assoc, I get Access Denied. Am I > doing something wrong, or is this a bug in the menu system. > > Thanks. > > Steve > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] __________________ Michael Prasuhn mike at mikeyp.net http://mikeyp.net From killshot91 at comcast.net Tue Nov 4 23:26:08 2008 From: killshot91 at comcast.net (Steve Edwards) Date: Tue, 04 Nov 2008 15:26:08 -0800 Subject: [support] Menus Won't Display Properly In-Reply-To: <32E43678-9F36-4BCB-9D8F-3C3A32A51583@mikeyp.net> References: <4910CC86.4050407@comcast.net> <32E43678-9F36-4BCB-9D8F-3C3A32A51583@mikeyp.net> Message-ID: <4910DA10.4030904@comcast.net> No, not really. All that did was add another tab on at resource-center/reg-assoc.. I still get no tabs at all at resource-center/affiliate. Steve Michael Prasuhn wrote: > It looks like you are not defining your MENU_DEFAULT_LOCAL_TASK > correctly. Creating a page Y with X tabs requires X+1 entries in > hook_menu(). > > See this example from node.module: > > $items[] = array( > 'path' => 'admin/content/types', > 'title' => t('Content types'), > 'description' => t('Manage posts by content type, including default > status, front page promotion, etc.'), > 'callback' => 'node_overview_types', > 'access' => user_access('administer content types'), > ); > $items[] = array( > 'path' => 'admin/content/types/list', > 'title' => t('List'), > 'type' => MENU_DEFAULT_LOCAL_TASK, > 'weight' => -10, > ); > $items[] = array( > 'path' => 'admin/content/types/add', > 'title' => t('Add content type'), > 'callback' => 'drupal_get_form', > 'callback arguments' => array('node_type_form'), > 'type' => MENU_LOCAL_TASK, > ); > > In this case, the MENU_DEFAULT_LOCAL_TASK is actually just to define > the tab, which is the same as 'admin/content/types'. > > So basically it looks if you change your 'resource-center/reg-assoc/ > basic' and 'resource-center/affiliate/basic' items to MENU_LOCAL_TASK, > and create an item such as 'resource-center/reg-assoc/view' and only > give it a title "view" or some such, a weight (usually -10), and the > path 'resource-center/reg-assoc/view' and type MENU_DEFAULT_LOCAL_TASK. > > I think that's what you're trying to do, let me know if that works. > > -Mike > > > > On Nov 4, 2008, at 2:28 PM, Steve Edwards wrote: > > >> I've been fighting with this for a couple weeks now with no >> resolution, so I'm hoping someone can shed some light on this for >> me. I tried using the menu tabs capability in Views with no luck, >> so I'm trying to accomplish the same thing in a module, still with >> no luck, and I don't have much hair left to pull out... >> >> What I want to do is create a page with three tabbed menu items. >> The text will be from a Page node, and the three tabs will be >> views. There are three roles - regular, associate, and affiliate - >> that need to have access. Regular and Associate can see all items, >> and Affiliate role can only see what has been flagged as being >> visible to the Affiliate role. There are three categories - Basic >> Information, Best Practices, and Technology. I've created six views >> accordingly. What I'm trying to do is create two menu items: one >> for Regular/Associate, and one for Affiliate, with the same intro >> text. Each will have three tabs, but the views will be different >> Here is my hook_menu: >> >> function mymodule_menu($may_cache) { >> $items = array(); >> >> if ($may_cache) { >> $items[] = array( >> 'path' => 'resource-center/reg-assoc', >> 'title' => t('Resource Center - Regular'), >> 'description' => t('Resource center for regular and associate >> members'), >> 'callback' => 'resource_center_base_page', >> 'access' => user_access('regular'), >> 'type' => MENU_NORMAL_ITEM, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/reg-assoc/basic', >> 'title' => t('Basic Information'), >> 'description' => t('Basic Information'), >> 'callback' => 'resource_center_basic', >> 'callback argument' => 'resources_reg_assoc_basic', >> 'access' => user_access('regular'), >> 'type' => MENU_DEFAULT_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/reg-assoc/best-practices', >> 'title' => t('Best Practices'), >> 'description' => t('Best Practices'), >> 'callback' => 'resource_center_best', >> 'callback argument' => 'resources_reg_assoc_best', >> 'access' => user_access('regular'), >> 'type' => MENU_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/reg-assoc/technology', >> 'title' => t('Technology'), >> 'description' => t('Technology'), >> 'callback' => 'resource_center_technology', >> 'callback argument' => 'resources_reg_assoc_technology', >> 'access' => user_access('regular'), >> 'type' => MENU_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/affiliate', >> 'title' => t('Resource Center - Affiliate'), >> 'description' => t('Resource center for affiliate members'), >> 'callback' => 'resource_center_base_page', >> 'access' => user_access('affiliate'), >> 'type' => MENU_NORMAL_ITEM, >> ); >> $items[] = array( >> 'path' => 'resource-center/affiliate/basic', >> 'title' => t('Basic Information'), >> 'description' => t('Basic Information'), >> 'callback' => 'resource_center_basic', >> 'callback argument' => 'resources_affiliate_basic', >> 'access' => user_access('affiliate'), >> 'type' => MENU_DEFAULT_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/affiliate/best-practices', >> 'title' => t('Best Practices'), >> 'description' => t('Best Practices'), >> 'callback' => 'resource_center_best_practices', >> 'callback argument' => 'resources_affiliate_best', >> 'access' => user_access('affiliate'), >> 'type' => MENU_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/affiliate/technology', >> 'title' => t('Technology'), >> 'description' => t('Technology'), >> 'callback' => 'resource_center_technology', >> 'callback argument' => 'resources_affiliate_technology', >> 'access' => user_access('affiliate'), >> 'type' => MENU_LOCAL_TASK, >> ); >> } >> return $items; >> } >> >> The URLs for the views match the paths for the MENU_LOCAL_TASK items. >> >> Here is the function to call the page (as referred to in the menu >> callback: >> >> function resource_center_base_page() { >> $output = ''; >> >> $base_node = node_load(84); >> $display = node_view($base_node); >> >> $output = $display; >> >> return $output; >> } >> >> and then the functions to call the views: >> >> function resource_center_basic($view_name) { >> $view = views_get_view($view_name); >> print views_build_view('embed', $view, array(), false, false); >> } >> >> function resource_center_best_practices($view_name) { >> >> $view = views_get_view($view_name); >> print views_build_view('embed', $view, array(), false, false); >> } >> >> function resource_center_technology($view_name) { >> >> $view = views_get_view($view_name); >> print views_build_view('embed', $view, array(), false, false); >> } >> >> After all that, what's happening is that the menu items are only >> available to my admin user (the first one created). When I go to >> resource-center/reg-assoc, I get my page and the tabs, but when I go >> to resource-center/affiliate, I just get the page with no tabs. >> When I log in as a regular role, I don't see the menu items at all, >> and if I go to resource-center/reg-assoc, I get Access Denied. Am I >> doing something wrong, or is this a bug in the menu system. >> >> Thanks. >> >> Steve >> >> >> >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > __________________ > Michael Prasuhn > mike at mikeyp.net > http://mikeyp.net > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081104/2389f4d6/attachment.htm From multiply at multiply.com Wed Nov 5 16:42:27 2008 From: multiply at multiply.com ( Carlos Rivero (via Multiply) ) Date: Wed, 05 Nov 2008 11:42:27 -0500 Subject: [support] Let's connect at Multiply Message-ID: <200811051643.mA5GhKaE015969@px526-fe.Multiply.com> Check out my Multiply site I set up a Multiply site with my pictures, videos and blog and I want to add you as my friend so you can see it. First, you need to join Multiply! Once you join, you can also create your own site and share anything you want, with anyone you want. Here's the link: http://multiply.com/si/BNRq0TdvmFxwPSutz0q3pw Thanks, Carlos Stop e-mails, view our privacy policy, or report abuse: http://multiply.com/bl/BNRq0TdvmFxwPSutz0q3pw We haven't added your email address to any lists, nor will we share it with anyone at any time. Copyright 2008 Multiply Inc. 6001 Park of Commerce, Boca Raton, FL 33487, USA From multiply at multiply.com Wed Nov 5 16:42:27 2008 From: multiply at multiply.com ( Carlos Rivero (via Multiply) ) Date: Wed, 05 Nov 2008 11:42:27 -0500 Subject: [support] An invitation to Multiply.com Message-ID: <200811051643.mA5Gh2N5001217@px545-fe.Multiply.com> Check out my Multiply site I set up a Multiply site with my pictures, videos and blog and I want to add you as my friend so you can see it. First, you need to join Multiply! Once you join, you can also create your own site and share anything you want, with anyone you want. Here's the link: http://multiply.com/si/BQVsaftPSxtn576GYTB7lA Thanks, Carlos Stop e-mails, view our privacy policy, or report abuse: http://multiply.com/bl/BQVsaftPSxtn576GYTB7lA We haven't added your email address to any lists, nor will we share it with anyone at any time. Copyright 2008 Multiply Inc. 6001 Park of Commerce, Boca Raton, FL 33487, USA From bharanikumariyerphp at gmail.com Wed Nov 5 17:00:40 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Wed, 5 Nov 2008 22:30:40 +0530 Subject: [support] form not come into theme Message-ID: <2240033d0811050900k40632ca2m8351ba344442077d@mail.gmail.com> Hi Friends Am preparing the hotel search , I did like when select the radio1 then form1 will display if selected the radio2 then form 2 will display, Here is the code module and js code module code below t('Reservation'), 'path' => 'node/reservation', 'callback' => 'reservation_page', 'access' => user_access('access content') ); return $content; } /** * called when user goes to example.com/?q=formexample */ function reservation_page() { $output = t('Search By'); if(isset($_REQUEST['hdnSubmit'])==0){ echo "HDN value is 0"; //return the HTML generated form the $form data structure. $output .= drupal_get_form( 'reservation_form'); $output .= drupal_get_form( 'address_form'); //$output .= drupal_get_form( 'formAddress'); } else{ echo "HDN value is 1"; $output .= drupal_get_form('formAddress'); $output .= drupal_get_form('address_form'); } return $output; } function reservation_form(){ $form['city'] = array( '#id' =>'testcity', '#title' => t('Where'), '#type' => 'radios', '#description' => t(''), '#options' => array(t('City'),t('Address')), '#default_value' => variable_get('city', 0), '#required' => TRUE, '#attributes' => array('onclick' => "javascript:callform(this.value)"), ); $form['txtWhere'] = array( '#title' => t('Where'), '#type' => 'textfield', '#description' => t(''), '#required' => TRUE, ); $form['txtChkIn'] = array( '#title' => t('Check-In'), '#type' => 'textfield', '#description' => t(''), '#attributes' => array('class' => 'jscalendar'), '#jscalendar_ifFormat' => '%Y-%m-%d %H:%M', '#jscalendar_showsTime' => 'true', ); $form['txtChkOut'] = array( '#title' => t('Check-Out'), '#type' => 'textfield', '#description' => t(''), '#attributes' => array('class' => 'jscalendar'), '#jscalendar_ifFormat' => '%Y-%m-%d %H:%M', '#jscalendar_showsTime' => 'true', ); $form['guest'] = array( '#type' => 'select', '#title' => t('Guests'), '#options' => array( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', ), '#default_value' => '1', '#description' => t(''), '#required' => TRUE ); $form['rooms'] = array( '#type' => 'select', '#title' => t('Rooms'), '#options' => array( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', ), '#default_value' => '1', '#description' => t(''), '#required' => TRUE ); $form['submit'] = array( '#type' => 'submit', '#value' => t('submit') ); return $form; } function address_form(){ echo ""; print ""; } function formAddress(){ $form['address'] = array( '#id' =>'testcity', '#title' => t('Where'), '#type' => 'radios', '#description' => t(''), '#options' => array(t('City'),t('Address')), '#default_value' => variable_get('address', 1), '#required' => TRUE, '#attributes' => array('onclick' => "javascript:callform(this.value)"), ); $form['txtAddress'] = array( '#title' => t('Address'), '#type' => 'textfield', '#description' => t(''), '#required' => TRUE, ); $form['txtCity'] = array( '#title' => t('City'), '#type' => 'textfield', '#description' => t(''), '#required' => TRUE, ); $form['txtPostalcode'] = array( '#title' => t('Postal Code'), '#type' => 'textfield', '#description' => t(''), ); $form['txtNickname'] = array( '#title' => t('Nickname'), '#type' => 'textfield', '#description' => t(''), ); $form['txtChkIn'] = array( '#title' => t('Check-In'), '#type' => 'textfield', '#description' => t(''), '#attributes' => array('class' => 'jscalendar'), '#jscalendar_ifFormat' => '%Y-%m-%d %H:%M', '#jscalendar_showsTime' => 'true', ); $form['txtChkOut'] = array( '#title' => t('Check-Out'), '#type' => 'textfield', '#description' => t(''), '#attributes' => array('class' => 'jscalendar'), '#jscalendar_ifFormat' => '%Y-%m-%d %H:%M', '#jscalendar_showsTime' => 'true', ); $form['guest'] = array( '#type' => 'select', '#title' => t('Guests'), '#options' => array( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', ), '#default_value' => '1', '#description' => t(''), '#required' => TRUE ); $form['rooms'] = array( '#type' => 'select', '#title' => t('Rooms'), '#options' => array( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', ), '#default_value' => '1', '#description' => t(''), '#required' => TRUE ); $form['submit'] = array( '#type' => 'submit', '#value' => t('submit') ); $form['hdnSubmit'] = array( '#type' => 'hidden', '#value' => '0' ); return $form; } JS code below // JavaScript Document function callform(str){ if(str==0){ document.getElementById('divform1').style.display = 'none'; document.getElementById('divform2').style.display = 'none'; document.getElementById('reservation-form').style.display = 'block'; } else{ document.getElementById('divform1').style.display = 'none'; document.getElementById('divform2').style.display = 'block'; document.getElementById('reservation-form').style.display = 'none'; document.getElementById('formAddress').style.display = 'block'; } } Here my problem is, When i select the city option then city search form will displayed inside theme, But i click the address option then formAddress form will displaying above of the theme, Any idea how to bring inside theme, -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081105/d5d36cd8/attachment-0001.htm From donald at fane.com Wed Nov 5 17:19:05 2008 From: donald at fane.com (Don Pickerel) Date: Wed, 5 Nov 2008 12:19:05 -0500 Subject: [support] map controls missing In-Reply-To: <2240033d0811050900k40632ca2m8351ba344442077d@mail.gmail.com> References: <2240033d0811050900k40632ca2m8351ba344442077d@mail.gmail.com> Message-ID: <1D4D43DE80C544FAA0E4AEDC4A4E00DC@fane1> I have just installed Drupal 6.5 and gmap-6.x-1.0-rc2. I've used the gmap macro build to build a map and added the gmap type to input formats. Everything works on the page except I can't get map controls and I can't get it to default to terrain (physical) type. Any suggestions? http://www.alaskatourist.net/alaska-map -Don- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081105/922de2e3/attachment.htm From michel at ziobudda.net Thu Nov 6 09:34:03 2008 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Thu, 06 Nov 2008 10:34:03 +0100 Subject: [support] Views 2.x document. Where ? Message-ID: <4912BA0B.4040900@ziobudda.net> Hi all, where I can find some usefull docs about the new Views 2.x version ? I need to print this/these docs so the online help that I can find in the views'project page is not usable (for me). Tnx in advance. M. -- Michel 'ZioBudda' Morelli michel at ziobudda.net Consulenza sistemistica in ambito OpenSource. Sviluppo applicazioni web dinamiche (LAMP+Ajax) Telefono: 0200619074 Telefono Cell: +39-3939890025 -- Fax: +39-0291390660 http://www.ziobudda.net ICQ: 58351764 http://www.ziobuddalabs.it Skype: zio_budda http://www.ziodrupal.net MSN: michel at ziobuddalabs.it JABBER: michel at ziobuddalabs.it From shyamala at netlinkindia.com Thu Nov 6 10:12:00 2008 From: shyamala at netlinkindia.com (Shyamala Rajaram) Date: Thu, 6 Nov 2008 15:42:00 +0530 Subject: [support] Views 2.x document. Where ? In-Reply-To: <4912BA0B.4040900@ziobudda.net> Message-ID: <20081106145840.4A36EA6136@hemlock.osuosl.org> Views 2.x module developer API, http://drupal.org/node/235062 Views 2.x Tutorials, http://drupal.org/node/322506 I haven't tried this link but sounds interesting: http://www.topnotchthemes.com/blog/080727/drupal-6-screencasts-views-2-cck-2 -panels-2 Shyamala -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Davide Michel 'ZioBudda' Morelli Sent: Thursday, November 06, 2008 3:04 PM To: support at drupal.org Subject: [support] Views 2.x document. Where ? Hi all, where I can find some usefull docs about the new Views 2.x version ? I need to print this/these docs so the online help that I can find in the views'project page is not usable (for me). Tnx in advance. M. -- Michel 'ZioBudda' Morelli michel at ziobudda.net Consulenza sistemistica in ambito OpenSource. Sviluppo applicazioni web dinamiche (LAMP+Ajax) Telefono: 0200619074 Telefono Cell: +39-3939890025 -- Fax: +39-0291390660 http://www.ziobudda.net ICQ: 58351764 http://www.ziobuddalabs.it Skype: zio_budda http://www.ziodrupal.net MSN: michel at ziobuddalabs.it JABBER: michel at ziobuddalabs.it -- [ Drupal support list | http://lists.drupal.org/ ] From ryan at etrafficsolutions.com Thu Nov 6 17:29:44 2008 From: ryan at etrafficsolutions.com (Ryan Thomson) Date: Thu, 06 Nov 2008 09:29:44 -0800 Subject: [support] Views 2.x document. Where ? In-Reply-To: <4912BA0B.4040900@ziobudda.net> References: <4912BA0B.4040900@ziobudda.net> Message-ID: <49132988.7040804@etrafficsolutions.com> You might also want to install the 'Advanced Help' module, it GREATLY extends the admin area help section for using Views Ry Davide Michel 'ZioBudda' Morelli wrote: > Hi all, where I can find some usefull docs about the new Views 2.x > version ? I need to print this/these docs so the online help that I can > find in the views'project page is not usable (for me). > > Tnx in advance. > > M. > > From mike at mikeyp.net Thu Nov 6 18:17:37 2008 From: mike at mikeyp.net (Michael Prasuhn) Date: Thu, 6 Nov 2008 10:17:37 -0800 Subject: [support] Views 2.x document. Where ? In-Reply-To: <4912BA0B.4040900@ziobudda.net> References: <4912BA0B.4040900@ziobudda.net> Message-ID: <79B78121-A406-4A84-AE64-16DA2A957FB7@mikeyp.net> Hrm, I looked at the view project page (http://drupal.org/project/ views) and found the following links: Views 2 Help (basically an on the internet version of the advanced help): http://views-help.doc.logrus.com/ Views 2 API docs: http://views.doc.logrus.com/ If that's not what you are looking for, it probably doesn't exist. -Mike On Nov 6, 2008, at 1:34 AM, Davide Michel 'ZioBudda' Morelli wrote: > Hi all, where I can find some usefull docs about the new Views 2.x > version ? I need to print this/these docs so the online help that I > can > find in the views'project page is not usable (for me). > > Tnx in advance. > > M. > > -- > Michel 'ZioBudda' Morelli michel at ziobudda.net > Consulenza sistemistica in ambito OpenSource. > Sviluppo applicazioni web dinamiche (LAMP+Ajax) > Telefono: 0200619074 > Telefono Cell: +39-3939890025 -- Fax: +39-0291390660 > > http://www.ziobudda.net ICQ: 58351764 > http://www.ziobuddalabs.it Skype: zio_budda > http://www.ziodrupal.net MSN: michel at ziobuddalabs.it > JABBER: michel at ziobuddalabs.it > > -- > [ Drupal support list | http://lists.drupal.org/ ] __________________ Michael Prasuhn mike at mikeyp.net http://mikeyp.net From bharanikumariyerphp at gmail.com Fri Nov 7 05:32:59 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Fri, 7 Nov 2008 11:02:59 +0530 Subject: [support] Hotel Search module Message-ID: <2240033d0811062132r77b110a3sef11cb6fe00b85bb@mail.gmail.com> Hi Friends Is there any hotel search module in drupal (Like Check-In,Check-Out,City Fields) For example this is the reference site like http://www.kayak.com/hotels -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081107/d594486e/attachment.htm From simone.dalmaso at juvox.it Fri Nov 7 09:16:35 2008 From: simone.dalmaso at juvox.it (Simone Dal Maso) Date: Fri, 7 Nov 2008 10:16:35 +0100 Subject: [support] how to add an edit field into a node? Message-ID: <012a01c940b9$8887d320$06000a0a@csa> Hi, do you know how to add a simple edit field into a node? CCk is great, but it works for "type of content". Now, I explain better: I have a simple page that is a presentation of my mailing list, and in this page I copied the html code for enabling subscribing/unsubscribing procedure. The mailing list is provided by dadamail, not drupal. It works well, but there is not antispam control, because the captcha module doesn't see any form inside the page, and, from the captcha perspective, it's true, since the html code is a block provided by dadamail, not a form of drupal. So, I'd like to add a single edit field, where the user put his name, captcha sees a sort of form and start working properly. Well, the editfield is simply unuseful, but I need it for enabling captcha. Thanks for your help. -- Simone Dal Maso. Tutti i miei progetti: Spazioausili: consultazione, ricerca e commenti sugli ausili informatici per non vedenti: http://www.spazioausili.net homepage sviluppo comunita' NVDA: www.nvda.it Visita il mio blog! http://simodm.blogspot.com homepage progetto musicale: www.juvox.it From bharanikumariyerphp at gmail.com Fri Nov 7 12:59:35 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Fri, 7 Nov 2008 18:29:35 +0530 Subject: [support] how to use ajax form submit Message-ID: <2240033d0811070459t18603c37t1e2721020248ef8f@mail.gmail.com> Hi How to use ajax form submit, -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081107/2777587c/attachment-0001.htm From bharanikumariyerphp at gmail.com Fri Nov 7 16:24:24 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Fri, 7 Nov 2008 21:54:24 +0530 Subject: [support] Submiting form using ajax Message-ID: <2240033d0811070824u3061171cp58fc32aa0544a9fb@mail.gmail.com> Hi member I crated the form , which contains some text fields and option button, I want to submit the form using ajax submit, Can one guide me, how do submit the form using ajax,(without page reload),, $form['city'] = array( '#id' =>'testcity', '#title' => t('Where'), '#type' => 'radios', '#description' => t(''), '#options' => array(t('City'),t('Address')), '#default_value' => variable_get('city', 0), '#required' => TRUE, '#attributes' => array('onclick' => "javascript:callform(this.value)"), ); $form['txtWhere'] = array( '#title' => t('Where'), '#type' => 'textfield', '#description' => t(''), '#required' => TRUE, ); $form['txtChkIn'] = array( '#title' => t('Check-In'), '#type' => 'textfield', '#description' => t(''), '#attributes' => array('class' => 'jscalendar'), '#jscalendar_ifFormat' => '%Y-%m-%d %H:%M', '#jscalendar_showsTime' => 'true', ); $form['txtChkOut'] = array( '#title' => t('Check-Out'), '#type' => 'textfield', '#description' => t(''), '#attributes' => array('class' => 'jscalendar'), '#jscalendar_ifFormat' => '%Y-%m-%d %H:%M', '#jscalendar_showsTime' => 'true', ); $form['guest'] = array( '#type' => 'select', '#title' => t('Guests'), '#options' => array( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', ), '#default_value' => '1', '#description' => t(''), '#required' => TRUE ); $form['rooms'] = array( '#type' => 'select', '#title' => t('Rooms'), '#options' => array( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', ), '#default_value' => '1', '#description' => t(''), '#required' => TRUE ); $form['submit'] = array( '#type' => 'submit', '#value' => t('submit') ); return $form; -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081107/fd0f2465/attachment.htm From georgedamonkey at gmail.com Fri Nov 7 20:13:17 2008 From: georgedamonkey at gmail.com (Jody Cleveland) Date: Fri, 7 Nov 2008 14:13:17 -0600 Subject: [support] Different theme based on screen resolution? Message-ID: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> Hello, I looked through the modules and didn't see anything... Is there a module or some other way to display a different theme based on a users screen resolution? - jody From bharanikumariyerphp at gmail.com Sat Nov 8 04:47:00 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Sat, 8 Nov 2008 10:17:00 +0530 Subject: [support] Different theme based on screen resolution? In-Reply-To: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> References: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> Message-ID: <2240033d0811072047x5be8a4d5hf14371fa4a1b5a6c@mail.gmail.com> Is really very good question, On Sat, Nov 8, 2008 at 1:43 AM, Jody Cleveland wrote: > Hello, > > I looked through the modules and didn't see anything... Is there a > module or some other way to display a different theme based on a users > screen resolution? > > - jody > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081108/99d76faa/attachment.htm From sivaji2009 at gmail.com Sat Nov 8 08:07:57 2008 From: sivaji2009 at gmail.com (sivaji j.g) Date: Sat, 8 Nov 2008 13:37:57 +0530 Subject: [support] Different theme based on screen resolution? In-Reply-To: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> References: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> Message-ID: to display a different theme based on a users > screen resolution? I think you can do this with java script Now you know the resolution of user, just call the required theme. Module is not required for this . -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081108/f4bd7c5f/attachment-0001.htm From bharanikumariyerphp at gmail.com Sat Nov 8 08:28:42 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Sat, 8 Nov 2008 13:58:42 +0530 Subject: [support] Different theme based on screen resolution? In-Reply-To: References: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> Message-ID: <2240033d0811080028x1cb51eb5se4e7625d66a2536e@mail.gmail.com> Sorry if i understood wrongly, Actually question is different theme based on resolution , not an size Thanks On Sat, Nov 8, 2008 at 1:37 PM, sivaji j.g wrote: > > > to display a different theme based on a users >> screen resolution? > > > I think you can do this with java script > > > > Now you know the resolution of user, just call the required theme. Module > is not required for this . > > > -- > Thanks a lot > ----------------------------------------- > http://ubuntuslave.blogspot.com/ > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081108/5b88df63/attachment.htm From florent.jousseaume at makina-corpus.com Sat Nov 8 13:11:53 2008 From: florent.jousseaume at makina-corpus.com (Florent JOUSSEAUME) Date: Sat, 08 Nov 2008 14:11:53 +0100 Subject: [support] Different theme based on screen resolution? In-Reply-To: <2240033d0811080028x1cb51eb5se4e7625d66a2536e@mail.gmail.com> References: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> <2240033d0811080028x1cb51eb5se4e7625d66a2536e@mail.gmail.com> Message-ID: <49159019.7020009@makina-corpus.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The resolution depends on your browser's size. You can be with a resolution of 1280x1024 but your browser with a size of 800x600. bharani kumar a ?crit : > Sorry if i understood wrongly, > > Actually question is different theme based on resolution , not an size > > Thanks > > > > > > On Sat, Nov 8, 2008 at 1:37 PM, sivaji j.g > wrote: > > > > to display a different theme based on a users > screen resolution? > > > I think you can do this with java script > > > > Now you know the resolution of user, just call the required > theme. Module is not required for this . > > > -- > Thanks a lot > ----------------------------------------- > http://ubuntuslave.blogspot.com/ > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > > > > > -- > ?????? ?????? > ???? ?????? > > Regards > B.S.Bharanikumar > > POST YOUR OPINION > http://bharanikumariyer.hyperphp.com/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkkVkBMACgkQ3nayFuuvNJOyTACggBt8lZGqx/FPPbiHkpd8kRZW UN4AoJJeXPJ+vpszBL58BRr5DFnFdVkZ =xate -----END PGP SIGNATURE----- From sfreach at gmail.com Sat Nov 8 16:36:33 2008 From: sfreach at gmail.com (Seth Freach) Date: Sat, 08 Nov 2008 11:36:33 -0500 Subject: [support] Different theme based on screen resolution? In-Reply-To: <49159019.7020009@makina-corpus.com> References: <09A66476-A4D7-49FC-9DB4-91B9D390B4CD@gmail.com> <2240033d0811080028x1cb51eb5se4e7625d66a2536e@mail.gmail.com> <49159019.7020009@makina-corpus.com> Message-ID: <4915C011.6000505@gmail.com> The fundamental problem is that the theme selection must be done at PHP runtime on the web server, while any JavaScript used to determine resolution (or view port size) will run well after this stage at the client. With a strait forward approach of PHP running on the server to deliver a webpage, there is no way for the PHP to know the screen resolution at runtime. But, it is possible if you take a two stage approach, I don't know of any theme that actually does this though (but that's not to say that there aren't any). Stage 1 is the initial page request. The PHP runs and serves JS to the client. When that JS runs, it can determine the screen resolution and use the values for the request of the second stage. Stage 2 is the JS requesting that same page again, but with the resolution values as part of the request. A snippet could roughly look like this: location.href = $page + '&screenx=' + screen.width + '&screeny=' + screen.height; ENDJS; exit; } ?> Keep in mind though that if you are turning each request into two requests you could run into performance issues. Better to store the resolution values in $user['session']. -Seth Florent JOUSSEAUME wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > The resolution depends on your browser's size. You can be with a > resolution of 1280x1024 but your browser with a size of 800x600. > > bharani kumar a ?crit : > >> Sorry if i understood wrongly, >> >> Actually question is different theme based on resolution , not an size >> >> Thanks >> >> >> >> >> >> On Sat, Nov 8, 2008 at 1:37 PM, sivaji j.g > > wrote: >> >> >> >> to display a different theme based on a users >> screen resolution? >> >> >> I think you can do this with java script >> >> >> >> Now you know the resolution of user, just call the required >> theme. Module is not required for this . >> >> >> -- >> Thanks a lot >> ----------------------------------------- >> http://ubuntuslave.blogspot.com/ >> >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> >> >> >> -- >> ?????? ?????? >> ???? ?????? >> >> Regards >> B.S.Bharanikumar >> >> POST YOUR OPINION >> http://bharanikumariyer.hyperphp.com/ >> > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.9 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iEYEARECAAYFAkkVkBMACgkQ3nayFuuvNJOyTACggBt8lZGqx/FPPbiHkpd8kRZW > UN4AoJJeXPJ+vpszBL58BRr5DFnFdVkZ > =xate > -----END PGP SIGNATURE----- > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081108/9af19d4f/attachment.htm From shai at content2zero.com Sun Nov 9 21:31:36 2008 From: shai at content2zero.com (Shai Gluskin) Date: Sun, 9 Nov 2008 16:31:36 -0500 Subject: [support] Changes Not Saved When Updating /admin/user/access Message-ID: <9f68efb70811091331n1b5d031fsbd11cca1bd4aa158@mail.gmail.com> Hi Folks, I'm running Drupal 5.12 on an install running PHP 5 and MySQL 5. I don't have any node access modules installed. Problem: When I'm at example.com/admin/user/access and I make changes (checking or unchecking permissions), upon submit --- nothing happens. Permissions remain as they were before. The Drupal-set-message for this page, "Your changes have been saved" -- does *not* appear. Drupal doesn't report any errors. Note that other operations at the install such as adding/editing/deleting nodes as well as changing configuration stettings for other modules -- are all working (or I should say, I haven't found others that are having problems affecting the db. What I've done so far: * clear all caches * rebuild node permissions * "repair" and "optimize" all tables in the DB * restart MySQL on the server None of those did anything. I'm stumped, any ideas? In the meantime, I've figured out how to change permissions directly in the db by editing the "perm" field in the "permission" table. There is 1 row for each role. You just add (or remove) the name of the permission separated by a comma. Is there anything I need to worry about setting permissions this way? Thanks, Shai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081109/2d64ffb1/attachment.htm From michel at ziobudda.net Mon Nov 10 07:59:19 2008 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Mon, 10 Nov 2008 08:59:19 +0100 Subject: [support] Views 2.x document. Where ? In-Reply-To: <79B78121-A406-4A84-AE64-16DA2A957FB7@mikeyp.net> References: <4912BA0B.4040900@ziobudda.net> <79B78121-A406-4A84-AE64-16DA2A957FB7@mikeyp.net> Message-ID: <4917E9D7.50606@ziobudda.net> Michael Prasuhn ha scritto: > Hrm, I looked at the view project page (http://drupal.org/project/ > views) and found the following links: > > Views 2 Help (basically an on the internet version of the advanced > help): http://views-help.doc.logrus.com/ > > Views 2 API docs: http://views.doc.logrus.com/ > > If that's not what you are looking for, it probably doesn't exist. > Argh,, i didn't see it. Tnx to all for the links. M. -- Michel 'ZioBudda' Morelli michel at ziobudda.net Consulenza sistemistica in ambito OpenSource. Sviluppo applicazioni web dinamiche (LAMP+Ajax) Telefono: 0200619074 Telefono Cell: +39-3939890025 -- Fax: +39-0291390660 http://www.ziobudda.net ICQ: 58351764 http://www.ziobuddalabs.it Skype: zio_budda http://www.ziodrupal.net MSN: michel at ziobuddalabs.it JABBER: michel at ziobuddalabs.it From michel at ziobudda.net Mon Nov 10 08:04:03 2008 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Mon, 10 Nov 2008 09:04:03 +0100 Subject: [support] how to add an edit field into a node? In-Reply-To: <012a01c940b9$8887d320$06000a0a@csa> References: <012a01c940b9$8887d320$06000a0a@csa> Message-ID: <4917EAF3.8020101@ziobudda.net> Simone Dal Maso ha scritto: > Hi, > do you know how to add a simple edit field into a node? > CCk is great, but it works for "type of content". > Now, I explain better: > I have a simple page that is a presentation of my mailing list, and in this page I copied the html code for enabling subscribing/unsubscribing procedure. The mailing list is provided by dadamail, not drupal. > > It works well, but there is not antispam control, because the captcha module doesn't see any form inside the page, and, from the captcha perspective, it's true, since the html code is a block provided by dadamail, not a form of drupal. > So, I'd like to add a single edit field, where the user put his name, captcha sees a sort of form and start working properly. > Well, the editfield is simply unuseful, but I need it for enabling captcha. > Create a Module that add the "input" field only for that form. Search FORM API in the documentation. The function is *_form_alter(). M. -- Michel 'ZioBudda' Morelli michel at ziobudda.net Consulenza sistemistica in ambito OpenSource. Sviluppo applicazioni web dinamiche (LAMP+Ajax) Telefono: 0200619074 Telefono Cell: +39-3939890025 -- Fax: +39-0291390660 http://www.ziobudda.net ICQ: 58351764 http://www.ziobuddalabs.it Skype: zio_budda http://www.ziodrupal.net MSN: michel at ziobuddalabs.it JABBER: michel at ziobuddalabs.it From beerlao75 at gmail.com Mon Nov 10 09:44:43 2008 From: beerlao75 at gmail.com (beerlao) Date: Mon, 10 Nov 2008 10:44:43 +0100 Subject: [support] Postings mixed up when using url alias Message-ID: <4918028B.4060900@gmail.com> Dear all, I am facing a weird problem with my Drupal installation. I am using the following revisions: * Drupal 6.6 * Path 6.6 * Token 6.x-1.11 * Token actions 6.x-1.11 * Views 6.x-2.1 * Pathauto 6.x-2.x-dev (I used the non-dev version before and had the same problem; I suspected pathauto, so I took the dev-version). All database updates are done. I am using the pathauto module to go with speaking URLs, which is working out of the box. Now while most of my postings are displayed perfectly, when I access them using their alias (e.g. /content/this-is-the-header-of-the-posting, generated by pathauto), some of the postings get mixed up. They show up with the right heading and meta information but the body (no teaser) is taken from another posting. Weird enough, this problem does not occur if I am logged in. So the same posting is displayed with the correct body, when I am logged in and is displayed with the wrong body, when I access it as guest. The problem doesn't show up if I access the posting via it's real Url (e.g. /node/9). I can solve it for a short period of time if I change the url alias. Unfortunately, after a while the problem reoccurs. I did use normal caching, but even cleaning the cache tables manually and turning off caching didn't do the trick. To debug this, I started mysqld with logging enabled and checked the log. There were only references to the right posting, and no reference to the posting where the wrong body was pulled from. The database tables seem correct and the entries in url_alias are also correct. I can't see any relation between the original posting and the one where the body comes from. Do you have any idea what to check to track this down? Thanks in advance, beerlao From earnie at users.sourceforge.net Mon Nov 10 13:18:54 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Mon, 10 Nov 2008 08:18:54 -0500 Subject: [support] Changes Not Saved When Updating /admin/user/access In-Reply-To: <9f68efb70811091331n1b5d031fsbd11cca1bd4aa158@mail.gmail.com> References: <9f68efb70811091331n1b5d031fsbd11cca1bd4aa158@mail.gmail.com> Message-ID: <20081110081854.df6idyx0azkgc0k4@mail.progw.org> Quoting Shai Gluskin : > > I'm stumped, any ideas? > Check the apache logs, especially the mod_security ones. Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From nicolast at logis.com.mx Mon Nov 10 18:24:58 2008 From: nicolast at logis.com.mx (Nicolas Tostin) Date: Mon, 10 Nov 2008 12:24:58 -0600 Subject: [support] How to use a different template to display a node in a block ? Message-ID: <011901c94361$a49078b0$b400a8c0@Nikko> Hi everybody, I have users profiles built with CCK (using content_profile), on their profile page, there's all CCK fields available and I'd like to have a block with this profile but less information available to display as an "about the author" block in the content created by this user. What is the way of doing this ? If I use node_view in my custom php block it will output the full profile with all fields. Reading through the developper handbook and profile.module, I will have to implement hook_theme and template_preprocess_hook to register my new template.tpl.php is it correct ? So I can write something like that function my_module_theme() { return array( 'my_module_block' => array( 'arguments' => array('node' => NULL), 'template' => 'my_module-block', ) } function template_preprocess_my_module_block(&$variables) { //set my theme variables there } There I can discover them by making a print_r($variables['node']) ? Reading through CCK 2.0 announcement http://drupal.org/node/329969, I saw a $FIELD_NAME_rendered variable, will it be available there ? And I end by creating the file my_module-block.tpl.php and I activate my new born module. Once activated, I can put this code in a php block to view the result: $node = node_load(nid); echo theme('my_module_block', $node, TRUE); Is it the best way to do this ? Have I forgotten steps ? Is there a comprehensive tutorial which will clarify my thoughts are they are pretty fuzzy at this time. Thank you very much. Nicolas From shai at content2zero.com Mon Nov 10 19:54:49 2008 From: shai at content2zero.com (Shai Gluskin) Date: Mon, 10 Nov 2008 14:54:49 -0500 Subject: [support] Changes Not Saved When Updating /admin/user/access In-Reply-To: <20081110081854.df6idyx0azkgc0k4@mail.progw.org> References: <9f68efb70811091331n1b5d031fsbd11cca1bd4aa158@mail.gmail.com> <20081110081854.df6idyx0azkgc0k4@mail.progw.org> Message-ID: <9f68efb70811101154n32f5065am4ddefac5b184b9d3@mail.gmail.com> Earnie, Thanks... Logs aren't spewing anything... Any more diagnostic ideas? Shai On Mon, Nov 10, 2008 at 8:18 AM, Earnie Boyd wrote: > Quoting Shai Gluskin : > > > > > I'm stumped, any ideas? > > > > Check the apache logs, especially the mod_security ones. > > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081110/88735c45/attachment.htm From johnny.xiao at Q1Labs.com Mon Nov 10 21:05:45 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Mon, 10 Nov 2008 17:05:45 -0400 Subject: [support] logging using lynx browser Message-ID: I am trying to log in my site using lynx text-based browser in some occasion. But it seems like not working for me. It stays at login page even my credentials are correct. I tried logging to drupal.org, it is working fine. I am wondering if there are any settings I need to configure. Because it is working fine on Drupal 5 based websites. I am currently on Drupal 6.6. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081110/8f5f3e92/attachment.htm From johnny.xiao at Q1Labs.com Mon Nov 10 20:57:15 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Mon, 10 Nov 2008 16:57:15 -0400 Subject: [support] Can't log in using lynx browser Message-ID: I am trying to log in my site using lynx text-based browser in some occasion. But it seems like not working for me. It stays at login page even my credentials are correct. I tried logging to drupal.org, it is working fine. I am wondering if there are any settings I need to configure. Because it is working fine on Drupal 5 based websites. I am currently on Drupal 6.6. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081110/0a67a6db/attachment.htm From drothstein at gmail.com Tue Nov 11 00:17:58 2008 From: drothstein at gmail.com (David Rothstein) Date: Mon, 10 Nov 2008 19:17:58 -0500 Subject: [support] Menus Won't Display Properly In-Reply-To: <4910DA10.4030904@comcast.net> References: <4910CC86.4050407@comcast.net> <32E43678-9F36-4BCB-9D8F-3C3A32A51583@mikeyp.net> <4910DA10.4030904@comcast.net> Message-ID: <27ad04850811101617x21c502b0ge96e787dfc75c3e1@mail.gmail.com> Belated reply, but maybe this will still be helpful. I noticed that you are using code like: ... 'access' => user_access('regular'), ... as the access parameter for your menu items. The user_access() function takes a permission as input. So in order for this code to work correctly, you would need to have a permission called "regular" defined on your site, and you would then have had to assign this permission to the appropriate user roles. Did you do either of those things? If not, that would explain why regular users cannot access your menu items. The reason I ask is that permission names normally would be phrased more along the lines of "access regular menu items" rather than the single word "regular"... so it looks to me like maybe you are sending the name of your role into the user_access() function? If so, that won't work. As for why you see different behavior for resource-center/reg-assoc and resource-center/affiliate when logged in as the admin user, that I'm not immediately sure about. Hope this helps, David Rothstein On Tue, Nov 4, 2008 at 6:26 PM, Steve Edwards wrote: > No, not really. All that did was add another tab on at > resource-center/reg-assoc.. I still get no tabs at all at > resource-center/affiliate. > > Steve > > Michael Prasuhn wrote: > > It looks like you are not defining your MENU_DEFAULT_LOCAL_TASK > correctly. Creating a page Y with X tabs requires X+1 entries in > hook_menu(). > > See this example from node.module: > > $items[] = array( > 'path' => 'admin/content/types', > 'title' => t('Content types'), > 'description' => t('Manage posts by content type, including default > status, front page promotion, etc.'), > 'callback' => 'node_overview_types', > 'access' => user_access('administer content types'), > ); > $items[] = array( > 'path' => 'admin/content/types/list', > 'title' => t('List'), > 'type' => MENU_DEFAULT_LOCAL_TASK, > 'weight' => -10, > ); > $items[] = array( > 'path' => 'admin/content/types/add', > 'title' => t('Add content type'), > 'callback' => 'drupal_get_form', > 'callback arguments' => array('node_type_form'), > 'type' => MENU_LOCAL_TASK, > ); > > In this case, the MENU_DEFAULT_LOCAL_TASK is actually just to define > the tab, which is the same as 'admin/content/types'. > > So basically it looks if you change your 'resource-center/reg-assoc/ > basic' and 'resource-center/affiliate/basic' items to MENU_LOCAL_TASK, > and create an item such as 'resource-center/reg-assoc/view' and only > give it a title "view" or some such, a weight (usually -10), and the > path 'resource-center/reg-assoc/view' and type MENU_DEFAULT_LOCAL_TASK. > > I think that's what you're trying to do, let me know if that works. > > -Mike > > > > On Nov 4, 2008, at 2:28 PM, Steve Edwards wrote: > > > > I've been fighting with this for a couple weeks now with no > resolution, so I'm hoping someone can shed some light on this for > me. I tried using the menu tabs capability in Views with no luck, > so I'm trying to accomplish the same thing in a module, still with > no luck, and I don't have much hair left to pull out... > > What I want to do is create a page with three tabbed menu items. > The text will be from a Page node, and the three tabs will be > views. There are three roles - regular, associate, and affiliate - > that need to have access. Regular and Associate can see all items, > and Affiliate role can only see what has been flagged as being > visible to the Affiliate role. There are three categories - Basic > Information, Best Practices, and Technology. I've created six views > accordingly. What I'm trying to do is create two menu items: one > for Regular/Associate, and one for Affiliate, with the same intro > text. Each will have three tabs, but the views will be different > Here is my hook_menu: > > function mymodule_menu($may_cache) { > $items = array(); > > if ($may_cache) { > $items[] = array( > 'path' => 'resource-center/reg-assoc', > 'title' => t('Resource Center - Regular'), > 'description' => t('Resource center for regular and associate > members'), > 'callback' => 'resource_center_base_page', > 'access' => user_access('regular'), > 'type' => MENU_NORMAL_ITEM, > ); > > $items[] = array( > 'path' => 'resource-center/reg-assoc/basic', > 'title' => t('Basic Information'), > 'description' => t('Basic Information'), > 'callback' => 'resource_center_basic', > 'callback argument' => 'resources_reg_assoc_basic', > 'access' => user_access('regular'), > 'type' => MENU_DEFAULT_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/reg-assoc/best-practices', > 'title' => t('Best Practices'), > 'description' => t('Best Practices'), > 'callback' => 'resource_center_best', > 'callback argument' => 'resources_reg_assoc_best', > 'access' => user_access('regular'), > 'type' => MENU_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/reg-assoc/technology', > 'title' => t('Technology'), > 'description' => t('Technology'), > 'callback' => 'resource_center_technology', > 'callback argument' => 'resources_reg_assoc_technology', > 'access' => user_access('regular'), > 'type' => MENU_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/affiliate', > 'title' => t('Resource Center - Affiliate'), > 'description' => t('Resource center for affiliate members'), > 'callback' => 'resource_center_base_page', > 'access' => user_access('affiliate'), > 'type' => MENU_NORMAL_ITEM, > ); > $items[] = array( > 'path' => 'resource-center/affiliate/basic', > 'title' => t('Basic Information'), > 'description' => t('Basic Information'), > 'callback' => 'resource_center_basic', > 'callback argument' => 'resources_affiliate_basic', > 'access' => user_access('affiliate'), > 'type' => MENU_DEFAULT_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/affiliate/best-practices', > 'title' => t('Best Practices'), > 'description' => t('Best Practices'), > 'callback' => 'resource_center_best_practices', > 'callback argument' => 'resources_affiliate_best', > 'access' => user_access('affiliate'), > 'type' => MENU_LOCAL_TASK, > ); > > $items[] = array( > 'path' => 'resource-center/affiliate/technology', > 'title' => t('Technology'), > 'description' => t('Technology'), > 'callback' => 'resource_center_technology', > 'callback argument' => 'resources_affiliate_technology', > 'access' => user_access('affiliate'), > 'type' => MENU_LOCAL_TASK, > ); > } > return $items; > } > > The URLs for the views match the paths for the MENU_LOCAL_TASK items. > > Here is the function to call the page (as referred to in the menu > callback: > > function resource_center_base_page() { > $output = ''; > > $base_node = node_load(84); > $display = node_view($base_node); > > $output = $display; > > return $output; > } > > and then the functions to call the views: > > function resource_center_basic($view_name) { > $view = views_get_view($view_name); > print views_build_view('embed', $view, array(), false, false); > } > > function resource_center_best_practices($view_name) { > > $view = views_get_view($view_name); > print views_build_view('embed', $view, array(), false, false); > } > > function resource_center_technology($view_name) { > > $view = views_get_view($view_name); > print views_build_view('embed', $view, array(), false, false); > } > > After all that, what's happening is that the menu items are only > available to my admin user (the first one created). When I go to > resource-center/reg-assoc, I get my page and the tabs, but when I go > to resource-center/affiliate, I just get the page with no tabs. > When I log in as a regular role, I don't see the menu items at all, > and if I go to resource-center/reg-assoc, I get Access Denied. Am I > doing something wrong, or is this a bug in the menu system. > > Thanks. > > Steve > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > > > __________________ > Michael Prasuhn > mike at mikeyp.net > http://mikeyp.net > > > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From killshot91 at comcast.net Tue Nov 11 00:25:22 2008 From: killshot91 at comcast.net (Steve Edwards) Date: Mon, 10 Nov 2008 16:25:22 -0800 Subject: [support] Menus Won't Display Properly In-Reply-To: <27ad04850811101617x21c502b0ge96e787dfc75c3e1@mail.gmail.com> References: <4910CC86.4050407@comcast.net> <32E43678-9F36-4BCB-9D8F-3C3A32A51583@mikeyp.net> <4910DA10.4030904@comcast.net> <27ad04850811101617x21c502b0ge96e787dfc75c3e1@mail.gmail.com> Message-ID: <4918D0F2.3010101@comcast.net> D'oh! That's it. I was passing in a role name instead of a permission. I'll try it the right way and see if that works. Thanks. Steve David Rothstein wrote: > Belated reply, but maybe this will still be helpful. I noticed that > you are using code like: > ... > 'access' => user_access('regular'), > ... > as the access parameter for your menu items. The user_access() > function takes a permission as input. So in order for this code to > work correctly, you would need to have a permission called "regular" > defined on your site, and you would then have had to assign this > permission to the appropriate user roles. Did you do either of those > things? If not, that would explain why regular users cannot access > your menu items. > > The reason I ask is that permission names normally would be phrased > more along the lines of "access regular menu items" rather than the > single word "regular"... so it looks to me like maybe you are sending > the name of your role into the user_access() function? If so, that > won't work. > > As for why you see different behavior for resource-center/reg-assoc > and resource-center/affiliate when logged in as the admin user, that > I'm not immediately sure about. > > Hope this helps, > David Rothstein > > > On Tue, Nov 4, 2008 at 6:26 PM, Steve Edwards wrote: > >> No, not really. All that did was add another tab on at >> resource-center/reg-assoc.. I still get no tabs at all at >> resource-center/affiliate. >> >> Steve >> >> Michael Prasuhn wrote: >> >> It looks like you are not defining your MENU_DEFAULT_LOCAL_TASK >> correctly. Creating a page Y with X tabs requires X+1 entries in >> hook_menu(). >> >> See this example from node.module: >> >> $items[] = array( >> 'path' => 'admin/content/types', >> 'title' => t('Content types'), >> 'description' => t('Manage posts by content type, including default >> status, front page promotion, etc.'), >> 'callback' => 'node_overview_types', >> 'access' => user_access('administer content types'), >> ); >> $items[] = array( >> 'path' => 'admin/content/types/list', >> 'title' => t('List'), >> 'type' => MENU_DEFAULT_LOCAL_TASK, >> 'weight' => -10, >> ); >> $items[] = array( >> 'path' => 'admin/content/types/add', >> 'title' => t('Add content type'), >> 'callback' => 'drupal_get_form', >> 'callback arguments' => array('node_type_form'), >> 'type' => MENU_LOCAL_TASK, >> ); >> >> In this case, the MENU_DEFAULT_LOCAL_TASK is actually just to define >> the tab, which is the same as 'admin/content/types'. >> >> So basically it looks if you change your 'resource-center/reg-assoc/ >> basic' and 'resource-center/affiliate/basic' items to MENU_LOCAL_TASK, >> and create an item such as 'resource-center/reg-assoc/view' and only >> give it a title "view" or some such, a weight (usually -10), and the >> path 'resource-center/reg-assoc/view' and type MENU_DEFAULT_LOCAL_TASK. >> >> I think that's what you're trying to do, let me know if that works. >> >> -Mike >> >> >> >> On Nov 4, 2008, at 2:28 PM, Steve Edwards wrote: >> >> >> >> I've been fighting with this for a couple weeks now with no >> resolution, so I'm hoping someone can shed some light on this for >> me. I tried using the menu tabs capability in Views with no luck, >> so I'm trying to accomplish the same thing in a module, still with >> no luck, and I don't have much hair left to pull out... >> >> What I want to do is create a page with three tabbed menu items. >> The text will be from a Page node, and the three tabs will be >> views. There are three roles - regular, associate, and affiliate - >> that need to have access. Regular and Associate can see all items, >> and Affiliate role can only see what has been flagged as being >> visible to the Affiliate role. There are three categories - Basic >> Information, Best Practices, and Technology. I've created six views >> accordingly. What I'm trying to do is create two menu items: one >> for Regular/Associate, and one for Affiliate, with the same intro >> text. Each will have three tabs, but the views will be different >> Here is my hook_menu: >> >> function mymodule_menu($may_cache) { >> $items = array(); >> >> if ($may_cache) { >> $items[] = array( >> 'path' => 'resource-center/reg-assoc', >> 'title' => t('Resource Center - Regular'), >> 'description' => t('Resource center for regular and associate >> members'), >> 'callback' => 'resource_center_base_page', >> 'access' => user_access('regular'), >> 'type' => MENU_NORMAL_ITEM, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/reg-assoc/basic', >> 'title' => t('Basic Information'), >> 'description' => t('Basic Information'), >> 'callback' => 'resource_center_basic', >> 'callback argument' => 'resources_reg_assoc_basic', >> 'access' => user_access('regular'), >> 'type' => MENU_DEFAULT_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/reg-assoc/best-practices', >> 'title' => t('Best Practices'), >> 'description' => t('Best Practices'), >> 'callback' => 'resource_center_best', >> 'callback argument' => 'resources_reg_assoc_best', >> 'access' => user_access('regular'), >> 'type' => MENU_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/reg-assoc/technology', >> 'title' => t('Technology'), >> 'description' => t('Technology'), >> 'callback' => 'resource_center_technology', >> 'callback argument' => 'resources_reg_assoc_technology', >> 'access' => user_access('regular'), >> 'type' => MENU_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/affiliate', >> 'title' => t('Resource Center - Affiliate'), >> 'description' => t('Resource center for affiliate members'), >> 'callback' => 'resource_center_base_page', >> 'access' => user_access('affiliate'), >> 'type' => MENU_NORMAL_ITEM, >> ); >> $items[] = array( >> 'path' => 'resource-center/affiliate/basic', >> 'title' => t('Basic Information'), >> 'description' => t('Basic Information'), >> 'callback' => 'resource_center_basic', >> 'callback argument' => 'resources_affiliate_basic', >> 'access' => user_access('affiliate'), >> 'type' => MENU_DEFAULT_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/affiliate/best-practices', >> 'title' => t('Best Practices'), >> 'description' => t('Best Practices'), >> 'callback' => 'resource_center_best_practices', >> 'callback argument' => 'resources_affiliate_best', >> 'access' => user_access('affiliate'), >> 'type' => MENU_LOCAL_TASK, >> ); >> >> $items[] = array( >> 'path' => 'resource-center/affiliate/technology', >> 'title' => t('Technology'), >> 'description' => t('Technology'), >> 'callback' => 'resource_center_technology', >> 'callback argument' => 'resources_affiliate_technology', >> 'access' => user_access('affiliate'), >> 'type' => MENU_LOCAL_TASK, >> ); >> } >> return $items; >> } >> >> The URLs for the views match the paths for the MENU_LOCAL_TASK items. >> >> Here is the function to call the page (as referred to in the menu >> callback: >> >> function resource_center_base_page() { >> $output = ''; >> >> $base_node = node_load(84); >> $display = node_view($base_node); >> >> $output = $display; >> >> return $output; >> } >> >> and then the functions to call the views: >> >> function resource_center_basic($view_name) { >> $view = views_get_view($view_name); >> print views_build_view('embed', $view, array(), false, false); >> } >> >> function resource_center_best_practices($view_name) { >> >> $view = views_get_view($view_name); >> print views_build_view('embed', $view, array(), false, false); >> } >> >> function resource_center_technology($view_name) { >> >> $view = views_get_view($view_name); >> print views_build_view('embed', $view, array(), false, false); >> } >> >> After all that, what's happening is that the menu items are only >> available to my admin user (the first one created). When I go to >> resource-center/reg-assoc, I get my page and the tabs, but when I go >> to resource-center/affiliate, I just get the page with no tabs. >> When I log in as a regular role, I don't see the menu items at all, >> and if I go to resource-center/reg-assoc, I get Access Denied. Am I >> doing something wrong, or is this a bug in the menu system. >> >> Thanks. >> >> Steve >> >> >> >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> >> __________________ >> Michael Prasuhn >> mike at mikeyp.net >> http://mikeyp.net >> >> >> >> >> >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081110/41e92b84/attachment.htm From fredthejonester at gmail.com Tue Nov 11 08:26:04 2008 From: fredthejonester at gmail.com (Fred Jones) Date: Tue, 11 Nov 2008 10:26:04 +0200 Subject: [support] IMCE in D6 Message-ID: <177c0a10811110026u6202f259jb2d1864ae3c2456f@mail.gmail.com> I installed latest TinyMCE and IMCE for Drupal 6 but IMCE seems not to be working yet--when I press the Image button in TinyMCE there is no upload ability. I tried this: http://drupal.org/node/241753#comment-792305 But it didn't help. Any other ideas? I am using an unaltered LightFantastic theme from d.o. Thanks From florent.jousseaume at makina-corpus.com Tue Nov 11 09:13:14 2008 From: florent.jousseaume at makina-corpus.com (Florent JOUSSEAUME) Date: Tue, 11 Nov 2008 10:13:14 +0100 Subject: [support] IMCE in D6 In-Reply-To: <177c0a10811110026u6202f259jb2d1864ae3c2456f@mail.gmail.com> References: <177c0a10811110026u6202f259jb2d1864ae3c2456f@mail.gmail.com> Message-ID: <49194CAA.20704@makina-corpus.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, When you add this snippet in your template, you need to clear your cache in the performance page. I had the same problem, but with a clean cache, it works well :-) Florent, Fred Jones a ?crit : > I installed latest TinyMCE and IMCE for Drupal 6 but IMCE seems not to > be working yet--when I press the Image button in TinyMCE there is no > upload ability. I tried this: > > http://drupal.org/node/241753#comment-792305 > > But it didn't help. Any other ideas? I am using an unaltered > LightFantastic theme from d.o. > > Thanks -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkkZTKUACgkQ3nayFuuvNJMdbwCgrMhaa0u+1uA+WmGDNad6ZQaE PlIAoKpyJmw3u9u50M3inc6OwWqAs5+3 =YmmT -----END PGP SIGNATURE----- From fredthejonester at gmail.com Tue Nov 11 09:22:30 2008 From: fredthejonester at gmail.com (Fred Jones) Date: Tue, 11 Nov 2008 11:22:30 +0200 Subject: [support] IMCE in D6 In-Reply-To: <49194CAA.20704@makina-corpus.com> References: <177c0a10811110026u6202f259jb2d1864ae3c2456f@mail.gmail.com> <49194CAA.20704@makina-corpus.com> Message-ID: <177c0a10811110122td4a6ab9u18898687c004d0af@mail.gmail.com> > When you add this snippet in your template, you need to clear your > cache in the performance page. I had the same problem, but with a > clean cache, it works well :-) That may have been it. Not sure actually b/c my cache was turned off, but now I see that the little icon next to "Image URL" works. Could be it's so small I never even saw it before!. I myself don't use TinyMCE, but the clients need it. :) Anyhow, thank you for your help--it works now! :) Fred From Robin.Clarke at networkrail.co.uk Tue Nov 11 12:51:42 2008 From: Robin.Clarke at networkrail.co.uk (Clarke Robin) Date: Tue, 11 Nov 2008 12:51:42 -0000 Subject: [support] Changes Not Saved When Updating /admin/user/access References: <9f68efb70811091331n1b5d031fsbd11cca1bd4aa158@mail.gmail.com> Message-ID: <0CF90D6CE50B98468B96FECD3CEFE7C9D6FCE1@sr1mm02.corp.UKrail.net> The function user_admin_perm_submit() in user.module does not seem too complex (at least in v5.10). Maybe you could add a few calls to drupal_set_message() to debug 1) if the function is even being called and 2) what lines are actually executed and 3) that each step results/returns in what you would expect it to? ________________________________ From: support-bounces at drupal.org on behalf of Shai Gluskin Sent: Sun 09/11/2008 21:31 To: support at drupal.org Subject: [support] Changes Not Saved When Updating /admin/user/access Hi Folks, I'm running Drupal 5.12 on an install running PHP 5 and MySQL 5. I don't have any node access modules installed. Problem: When I'm at example.com/admin/user/access and I make changes (checking or unchecking permissions), upon submit --- nothing happens. Permissions remain as they were before. The Drupal-set-message for this page, "Your changes have been saved" -- does not appear. Drupal doesn't report any errors. Note that other operations at the install such as adding/editing/deleting nodes as well as changing configuration stettings for other modules -- are all working (or I should say, I haven't found others that are having problems affecting the db. What I've done so far: * clear all caches * rebuild node permissions * "repair" and "optimize" all tables in the DB * restart MySQL on the server None of those did anything. I'm stumped, any ideas? In the meantime, I've figured out how to change permissions directly in the db by editing the "perm" field in the "permission" table. There is 1 row for each role. You just add (or remove) the name of the permission separated by a comma. Is there anything I need to worry about setting permissions this way? Thanks, Shai **************************************************************************************************************************************************************** The content of this email (and any attachment) is confidential. It may also be legally privileged or otherwise protected from disclosure. This email should not be used by anyone who is not an original intended recipient, nor may it be copied or disclosed to anyone who is not an original intended recipient. If you have received this email by mistake please notify us by emailing the sender, and then delete the email and any copies from your system. Liability cannot be accepted for statements made which are clearly the senders own and not made on behalf of Network Rail. Network Rail Infrastructure Limited registered in England and Wales No. 2904587, registered office Kings Place, 90 York Way London N1 9AG **************************************************************************************************************************************************************** -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/ms-tnef Size: 4569 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20081111/c460cf1d/attachment-0001.bin From earnie at users.sourceforge.net Tue Nov 11 14:13:51 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Tue, 11 Nov 2008 09:13:51 -0500 Subject: [support] Changes Not Saved When Updating /admin/user/access In-Reply-To: <9f68efb70811101154n32f5065am4ddefac5b184b9d3@mail.gmail.com> References: <9f68efb70811091331n1b5d031fsbd11cca1bd4aa158@mail.gmail.com> <20081110081854.df6idyx0azkgc0k4@mail.progw.org> <9f68efb70811101154n32f5065am4ddefac5b184b9d3@mail.gmail.com> Message-ID: <20081111091351.ualu7tvevk8448kg@mail.progw.org> Quoting Shai Gluskin : > Earnie, > > Thanks... > > Logs aren't spewing anything... > > Any more diagnostic ideas? > admin/logs/watchdog Does the watchdog log so any errors? Try a temporary setting in .htaccess of ``php_value display_errors 1''. Beyond that I'm out of ideas. Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From bharanikumariyerphp at gmail.com Tue Nov 11 15:04:04 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Tue, 11 Nov 2008 20:34:04 +0530 Subject: [support] contact grabber Message-ID: <2240033d0811110704m757b2f7v90f25a6c7900b53f@mail.gmail.com> Hi Friends please refer some contact grabber module for drupal D5 -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081111/9ed44dd3/attachment.htm From sivaji2009 at gmail.com Tue Nov 11 18:06:34 2008 From: sivaji2009 at gmail.com (sivaji j.g) Date: Tue, 11 Nov 2008 23:36:34 +0530 Subject: [support] contact grabber In-Reply-To: <2240033d0811110704m757b2f7v90f25a6c7900b53f@mail.gmail.com> References: <2240033d0811110704m757b2f7v90f25a6c7900b53f@mail.gmail.com> Message-ID: Friends please refer some contact grabber module for drupal D5 http://drupal.org/project/contact_importer -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081111/1e5a4fa6/attachment.htm From sivaji2009 at gmail.com Tue Nov 11 18:56:08 2008 From: sivaji2009 at gmail.com (sivaji j.g) Date: Wed, 12 Nov 2008 00:26:08 +0530 Subject: [support] logging using lynx browser In-Reply-To: References: Message-ID: On Tue, Nov 11, 2008 at 2:35 AM, Johnny Xiao wrote: > I am trying to log in my site using lynx text-based browser in some > occasion. > This is web 2.0, why you are still using lynx browser ? Use Firefox or something. I tried Lynx browser, its really crap to use lynx wit D6. -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081112/8e64df81/attachment.htm From rohanasmith at gmail.com Tue Nov 11 21:50:46 2008 From: rohanasmith at gmail.com (Rohan Smith) Date: Tue, 11 Nov 2008 16:50:46 -0500 Subject: [support] User approval emails - to many admins Message-ID: <44659aeb0811111350m26904267n3a58dfdf8238c4b0@mail.gmail.com> How do I allow the user approval emails to be sent to multiple admins? currently it is sent to user/1 's email (I think) or can it be set to multiple addresses? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081111/bcfb57af/attachment.htm From lev at vpac.org Tue Nov 11 22:15:32 2008 From: lev at vpac.org (Lev Lafayette) Date: Wed, 12 Nov 2008 09:15:32 +1100 (EST) Subject: [support] logging using lynx browser In-Reply-To: <1002857591.2334321226441466223.JavaMail.root@mail.vpac.org> Message-ID: <1801260928.2334391226441732537.JavaMail.root@mail.vpac.org> ----- "sivaji j.g" wrote: > On Tue, Nov 11, 2008 at 2:35 AM, Johnny Xiao < johnny.xiao at q1labs.com > > wrote: > > I am trying to log in my site using lynx text-based browser in some > > occasion. > > This is web 2.0, why you are still using lynx browser ? > Use Firefox or something. I tried Lynx browser, its really crap to use > lynx wit D6. It is perfectly reasonably that a person uses a text-based browser to access the web. People who work on servers do it all the time; and some people do it out of choice. I can also confirm the error; however it does seem to work with Links. -- Lev Lafayette (03) 9925 4909 Systems Administrator Victorian Partnership for Advanced Computing 110 Victoria St Carlton South, 3053 From drupal at lourdas.name Tue Nov 11 22:26:14 2008 From: drupal at lourdas.name (Vasileios Lourdas) Date: Wed, 12 Nov 2008 00:26:14 +0200 Subject: [support] Drupal 6 page/block cache Message-ID: <200811120026.14592.drupal@lourdas.name> Hi, I'm using the latest Drupal 6 stable and I have two blocks displaying news aggregated using RSS from two other sites. My performance settings are set as below: Page cache: Normal, Minimum cache lifetime: 30 mins, Page compression: Enabled Block cache: Enabled Bandwidth optimizations: Optimize CSS files: enabled and Optimize Javascript files: enabled I noticed that anonymous users (who see the benefits of page caching) rarely see new/updated content. For example, today I visited the site and it displayed the RSS news from a week (and more) ago! It's also a policy after I add a new page, anonymous users still after days see the old front page (I promote all content in the front page). Why does this thing happen? What are the benefits of using cache if there's not a reliable way to invalidate the cache and display new content for anonymous users? What am I missing here? Right now, it seems to me that disabling cache is the best way to go for my case. Even after force reloading, Firefox still displays the old content. If I delete the cache, then it's ok. Thanks. -- # Vasileios Lourdas, # Informatics Engineer, Thessaloniki (Greece) # http://www.lourdas.name From skessler at denverdataman.com Tue Nov 11 23:04:46 2008 From: skessler at denverdataman.com (Steve Kessler) Date: Tue, 11 Nov 2008 16:04:46 -0700 Subject: [support] User approval emails - to many admins In-Reply-To: <44659aeb0811111350m26904267n3a58dfdf8238c4b0@mail.gmail.com> References: <44659aeb0811111350m26904267n3a58dfdf8238c4b0@mail.gmail.com> Message-ID: <031f01c94451$e4946520$adbd2f60$@com> I am not sure there is a way with Druple but I have done it using mail forwarding. Hope this helps. Thanks, Steve Steve Kessler Denver DataMan 303-587-4428 Sign up for the Denver DataMan Free eNewsletter From: Rohan Smith [mailto:rohanasmith at gmail.com] Sent: Tuesday, November 11, 2008 2:51 PM To: support at drupal.org Subject: [support] User approval emails - to many admins How do I allow the user approval emails to be sent to multiple admins? currently it is sent to user/1 's email (I think) or can it be set to multiple addresses? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081111/54f2210a/attachment-0001.htm From bharanikumariyerphp at gmail.com Wed Nov 12 05:06:38 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Wed, 12 Nov 2008 10:36:38 +0530 Subject: [support] throughing error in contact Importer Message-ID: <2240033d0811112106w355d6072kef7bd1472328f6a9@mail.gmail.com> Hi I have installed the contact importer module, After i installed the lightbox2 module, Then i looked into the site configuration/contact importer, It asked ,Select the Retrieval engines:Octazen then i selected and submitted , then it throughs the error like * Octazen requires one or more library files provided by the retrieval service. These files should be placed at E:\WorkingProjects\kayakprototype\sites\all\modules\contact_importer/octazen_engine/abimporter/abi.php . * Octazen requires one or more library files provided by the retrieval service. These files should be placed at E:\WorkingProjects\kayakprototype\sites\all\modules\contact_importer/octazen_engine/abimporter/abi.php . For this Issue , what i have to do , thanks -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081112/5654674a/attachment.htm From emma.badger at chocolateteapot.net Wed Nov 12 09:29:07 2008 From: emma.badger at chocolateteapot.net (ChocolateLover) Date: Wed, 12 Nov 2008 01:29:07 -0800 (PST) Subject: [support] Taxonomy menu and Views Message-ID: <20446634.post@talk.nabble.com> I've created a new content type, categorised the content type and I have a menu that shows just the content for the category selected. For example business_category/1 shows all businesses business_category/1/5 shows all businesses within the Food category business_category/1/5/6 shows all businesses within the Restaurant category which is within the Food category I've created a view called business_directory_listings that lists businesses and set the path as business_category. The business_category URL gives me the correct view. Can anyone tell me how to associate the business_directory_listings view to the URLs that are created by the Taxonomy Menu? In other words where the URL begins with business_category. business_category/1 business_category/1/5 business_category/1/5/6 Given that I want a menu that's generated based on a set of categories and subcategories that link to associated content and that I'd like to be able to dictate how the pages look, is Views and Taxonomy Menu my solution or should I be looking elsewhere? I'm new to Drupal - about a week - so I'm using the latest versions of everything. Any help appreciated, thanks. -- View this message in context: http://www.nabble.com/Taxonomy-menu-and-Views-tp20446634p20446634.html Sent from the Drupal - Support mailing list archive at Nabble.com. From Robin.Clarke at networkrail.co.uk Wed Nov 12 09:57:49 2008 From: Robin.Clarke at networkrail.co.uk (Clarke Robin) Date: Wed, 12 Nov 2008 09:57:49 -0000 Subject: [support] User approval emails - to many admins References: <44659aeb0811111350m26904267n3a58dfdf8238c4b0@mail.gmail.com> <031f01c94451$e4946520$adbd2f60$@com> Message-ID: <0CF90D6CE50B98468B96FECD3CEFE7C9D6FCEB@sr1mm02.corp.UKrail.net> I do the same thing as Steve. I have setup support at example.com to forward on to all four of the admits of the site. If an admin approves a user, they can email support at example.com so that the other admits know not to worry about it. If I ever start using the Contact module I would also send the message to support at example.com . If one of the admits then replies to the Contact message they CC support at example.com so that the other admits know that they do not have to worry about it. robin ________________________________ From: support-bounces at drupal.org on behalf of Steve Kessler Sent: Tue 11/11/2008 23:04 To: support at drupal.org Subject: Re: [support] User approval emails - to many admits I am not sure there is a way with Druple but I have done it using mail forwarding. Hope this helps. Thanks, Steve Steve Kessler Denver DataMan 303-587-4428 Sign up for the Denver DataMan Free eNewsletter From: Rohan Smith [mailto:rohanasmith at gmail.com] Sent: Tuesday, November 11, 2008 2:51 PM To: support at drupal.org Subject: [support] User approval emails - to many admins How do I allow the user approval emails to be sent to multiple admins? currently it is sent to user/1 's email (I think) or can it be set to multiple addresses? **************************************************************************************************************************************************************** The content of this email (and any attachment) is confidential. It may also be legally privileged or otherwise protected from disclosure. This email should not be used by anyone who is not an original intended recipient, nor may it be copied or disclosed to anyone who is not an original intended recipient. If you have received this email by mistake please notify us by emailing the sender, and then delete the email and any copies from your system. Liability cannot be accepted for statements made which are clearly the senders own and not made on behalf of Network Rail. Network Rail Infrastructure Limited registered in England and Wales No. 2904587, registered office Kings Place, 90 York Way London N1 9AG **************************************************************************************************************************************************************** -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/ms-tnef Size: 5732 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20081112/9fbb1051/attachment.bin From earnie at users.sourceforge.net Wed Nov 12 12:38:00 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Wed, 12 Nov 2008 07:38:00 -0500 Subject: [support] Drupal 6 page/block cache In-Reply-To: <200811120026.14592.drupal@lourdas.name> References: <200811120026.14592.drupal@lourdas.name> Message-ID: <20081112073800.cidgdjrfosg44woc@mail.progw.org> Quoting Vasileios Lourdas : > Hi, > > I'm using the latest Drupal 6 stable and I have two blocks displaying news > aggregated using RSS from two other sites. My performance settings are set as > below: > > Page cache: Normal, Minimum cache lifetime: 30 mins, Page > compression: Enabled > Block cache: Enabled > Bandwidth optimizations: Optimize CSS files: enabled and Optimize Javascript > files: enabled > > I noticed that anonymous users (who see the benefits of page caching) rarely > see new/updated content. For example, today I visited the site and it > displayed the RSS news from a week (and more) ago! It's also a policy after I > add a new page, anonymous users still after days see the old front page (I > promote all content in the front page). > > Why does this thing happen? What are the benefits of using cache if there's > not a reliable way to invalidate the cache and display new content for > anonymous users? What am I missing here? Right now, it seems to me that > disabling cache is the best way to go for my case. Even after force > reloading, Firefox still displays the old content. If I delete the cache, > then it's ok. > I think you want to control the sessions. As sessions expire so does the cache. There is http://drupal.org/project/session_expire but it is still in Version 5. -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From earnie at users.sourceforge.net Wed Nov 12 12:40:37 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Wed, 12 Nov 2008 07:40:37 -0500 Subject: [support] User approval emails - to many admins In-Reply-To: <44659aeb0811111350m26904267n3a58dfdf8238c4b0@mail.gmail.com> References: <44659aeb0811111350m26904267n3a58dfdf8238c4b0@mail.gmail.com> Message-ID: <20081112074037.baisgxhjbtjc4444@mail.progw.org> Quoting Rohan Smith : > How do I allow the user approval emails to be sent to multiple admins? > currently it is sent to user/1 's email (I think) > or can it be set to multiple addresses? > The Advanced User module will allow you to send mail to a list of users by role but it is still in version d5. Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From johnny.xiao at Q1Labs.com Wed Nov 12 13:37:34 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Wed, 12 Nov 2008 09:37:34 -0400 Subject: [support] logging using lynx browser In-Reply-To: <1801260928.2334391226441732537.JavaMail.root@mail.vpac.org> References: <1002857591.2334321226441466223.JavaMail.root@mail.vpac.org> <1801260928.2334391226441732537.JavaMail.root@mail.vpac.org> Message-ID: Is there solution for this? I know drupal.org can be viewed using lynx. Thanks Kewei -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Lev Lafayette Sent: Tuesday, November 11, 2008 6:16 PM To: support at drupal.org Subject: Re: [support] logging using lynx browser ----- "sivaji j.g" wrote: > On Tue, Nov 11, 2008 at 2:35 AM, Johnny Xiao < johnny.xiao at q1labs.com > > wrote: > > I am trying to log in my site using lynx text-based browser in some > > occasion. > > This is web 2.0, why you are still using lynx browser ? > Use Firefox or something. I tried Lynx browser, its really crap to use > lynx wit D6. It is perfectly reasonably that a person uses a text-based browser to access the web. People who work on servers do it all the time; and some people do it out of choice. I can also confirm the error; however it does seem to work with Links. -- Lev Lafayette (03) 9925 4909 Systems Administrator Victorian Partnership for Advanced Computing 110 Victoria St Carlton South, 3053 -- [ Drupal support list | http://lists.drupal.org/ ] From drupal at lists.tacticus.com Thu Nov 13 07:34:56 2008 From: drupal at lists.tacticus.com (Luke) Date: Thu, 13 Nov 2008 02:34:56 -0500 (EST) Subject: [support] logging using lynx browser In-Reply-To: References: Message-ID: I know many people who use lynx routinely (myself included). Blind people in text environments, and as stated, people who do a lot of server console work, often have reason to use it, as well as other such text browsers. There is another theory to consider: if D6 is accessible with lynx, then it is accessible with anything, and people with disabilities will not have problems using it in any environment. Yeah, dreams dreams dreams. Luke On Wed, 12 Nov 2008, sivaji j.g wrote: > On Tue, Nov 11, 2008 at 2:35 AM, Johnny Xiao wrote: > > > I am trying to log in my site using lynx text-based browser in some > > occasion. > > > > This is web 2.0, why you are still using lynx browser ? > Use Firefox or something. I tried Lynx browser, its really crap to use lynx > wit D6. > > > > From simone.dalmaso at juvox.it Thu Nov 13 07:46:00 2008 From: simone.dalmaso at juvox.it (Simone Dal Maso) Date: Thu, 13 Nov 2008 08:46:00 +0100 Subject: [support] logging using lynx browser References: Message-ID: <006101c94563$e0288300$06000a0a@csa> Well, I used lynx for years because until 3 4 years ago, for visual impaired was difficult to use firefox or internet explorer. Now, if things are not changed, the major problem of lynx is that was unable to manage java or javascript. Do you think that the login form use a javascript? If yes, this problem could be solved implementinga login alternative method that doesn't use javascript. Lynx supports well cookies. I imagine this is not very important for many people, but I must underline that drupal is the more accessible big cms that I have used. ----- Original Message ----- From: "Luke" To: Sent: Thursday, November 13, 2008 8:34 AM Subject: Re: [support] logging using lynx browser > I know many people who use lynx routinely (myself included). Blind people > in text environments, and as stated, people who do a lot of server console > work, often have reason to use it, as well as other such text browsers. > > There is another theory to consider: if D6 is accessible with lynx, then > it is accessible with anything, and people with disabilities will not have > problems using it in any environment. Yeah, dreams dreams dreams. > > Luke > > On Wed, 12 Nov 2008, sivaji j.g wrote: > > > On Tue, Nov 11, 2008 at 2:35 AM, Johnny Xiao wrote: > > > > > I am trying to log in my site using lynx text-based browser in some > > > occasion. > > > > > > > This is web 2.0, why you are still using lynx browser ? > > Use Firefox or something. I tried Lynx browser, its really crap to use lynx > > wit D6. > > > > > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From johnny.xiao at Q1Labs.com Thu Nov 13 13:19:47 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Thu, 13 Nov 2008 09:19:47 -0400 Subject: [support] logging using lynx browser In-Reply-To: <006101c94563$e0288300$06000a0a@csa> References: <006101c94563$e0288300$06000a0a@csa> Message-ID: The problem is that most D6 sites are not accessible with lynx, but drupal.org is driven by D6, so I am trying to get solution of fixing this problem -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Simone Dal Maso Sent: Thursday, November 13, 2008 3:46 AM To: support at drupal.org Subject: Re: [support] logging using lynx browser Well, I used lynx for years because until 3 4 years ago, for visual impaired was difficult to use firefox or internet explorer. Now, if things are not changed, the major problem of lynx is that was unable to manage java or javascript. Do you think that the login form use a javascript? If yes, this problem could be solved implementinga login alternative method that doesn't use javascript. Lynx supports well cookies. I imagine this is not very important for many people, but I must underline that drupal is the more accessible big cms that I have used. ----- Original Message ----- From: "Luke" To: Sent: Thursday, November 13, 2008 8:34 AM Subject: Re: [support] logging using lynx browser > I know many people who use lynx routinely (myself included). Blind people > in text environments, and as stated, people who do a lot of server console > work, often have reason to use it, as well as other such text browsers. > > There is another theory to consider: if D6 is accessible with lynx, then > it is accessible with anything, and people with disabilities will not have > problems using it in any environment. Yeah, dreams dreams dreams. > > Luke > > On Wed, 12 Nov 2008, sivaji j.g wrote: > > > On Tue, Nov 11, 2008 at 2:35 AM, Johnny Xiao wrote: > > > > > I am trying to log in my site using lynx text-based browser in some > > > occasion. > > > > > > > This is web 2.0, why you are still using lynx browser ? > > Use Firefox or something. I tried Lynx browser, its really crap to use lynx > > wit D6. > > > > > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- [ Drupal support list | http://lists.drupal.org/ ] From roberovsky at hotmail.com Thu Nov 13 14:11:07 2008 From: roberovsky at hotmail.com (roberovsky at hotmail.com) Date: Thu, 13 Nov 2008 09:11:07 -0500 Subject: [support] how to implement Return Material Authorization RMA ? In-Reply-To: <006101c94563$e0288300$06000a0a@csa> References: <006101c94563$e0288300$06000a0a@csa> Message-ID: Has anyone implemented any kind of Return Material Authorization RMA in ubercart or ecommerce? From gordon at heydon.com.au Thu Nov 13 22:53:32 2008 From: gordon at heydon.com.au (Gordon Heydon) Date: Fri, 14 Nov 2008 09:53:32 +1100 Subject: [support] how to implement Return Material Authorization RMA ? In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa> Message-ID: <89CEB102-CD72-40EB-ABB4-744E082D8F58@heydon.com.au> Hi, In e-Commerce there is no specific handling of this, except for the transaction canel status. But to add something like this would not be very hard at all. Gordon. On 14/11/2008, at 1:11 AM, wrote: > Has anyone implemented any kind of Return Material Authorization RMA > in > ubercart or ecommerce? > > -- > [ Drupal support list | http://lists.drupal.org/ ] From Greg at growingventuresolutions.com Thu Nov 13 23:09:12 2008 From: Greg at growingventuresolutions.com (Greg Knaddison - GVS) Date: Thu, 13 Nov 2008 16:09:12 -0700 Subject: [support] how to implement Return Material Authorization RMA ? In-Reply-To: <89CEB102-CD72-40EB-ABB4-744E082D8F58@heydon.com.au> References: <006101c94563$e0288300$06000a0a@csa> <89CEB102-CD72-40EB-ABB4-744E082D8F58@heydon.com.au> Message-ID: <3861c6770811131509h40656fa9ta5b5a2bad0c45a33@mail.gmail.com> On Thu, Nov 13, 2008 at 3:53 PM, Gordon Heydon wrote: > In e-Commerce there is no specific handling of this, except for the > transaction canel status. But to add something like this would not be > very hard at all. > It also seems like something that could be built in a custom manner for a specific site with workflow, workflow actions, and a little glue code. Regards, Greg -- Greg Knaddison Denver, CO | http://knaddison.com | 303-800-5623 Growing Venture Solutions, LLC | http://growingventuresolutions.com From michel at ziobudda.net Fri Nov 14 10:37:46 2008 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Fri, 14 Nov 2008 11:37:46 +0100 Subject: [support] Drupal 6: node-blog.tpl.php not used. Where is my error ? Message-ID: <491D54FA.6090703@ziobudda.net> Hi all. I'm creating my new themes, and this is the first time to me for Drupal 6.x theme system. In Drupal 5 for a blog's type node I created a file called node-blog.tpl.php. Which is the new name ? Because in my new drupal 6's theme node-blog.tpl.php is not used. This is my template.php file: Where is my error ? -- Michel 'ZioBudda' Morelli michel at ziobudda.net Consulenza sistemistica in ambito OpenSource. Sviluppo applicazioni web dinamiche (LAMP+Ajax) Telefono: 0200619074 Telefono Cell: +39-3939890025 -- Fax: +39-0291390660 http://www.ziobudda.net ICQ: 58351764 http://www.ziobuddalabs.it Skype: zio_budda http://www.ziodrupal.net MSN: michel at ziobuddalabs.it JABBER: michel at ziobuddalabs.it From earnie at users.sourceforge.net Fri Nov 14 13:35:40 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Fri, 14 Nov 2008 08:35:40 -0500 Subject: [support] logging using lynx browser In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa> Message-ID: <20081114083540.d5ptamf8byo8g840@mail.progw.org> Quoting Johnny Xiao : > The problem is that most D6 sites are not accessible with lynx, but > drupal.org is driven by D6, so I am trying to get solution of fixing > this problem > What proof do you have that d.o is running D6? FWIR it is D5. -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From johnny.xiao at Q1Labs.com Fri Nov 14 13:39:16 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Fri, 14 Nov 2008 09:39:16 -0400 Subject: [support] logging using lynx browser In-Reply-To: <20081114083540.d5ptamf8byo8g840@mail.progw.org> References: <006101c94563$e0288300$06000a0a@csa> <20081114083540.d5ptamf8byo8g840@mail.progw.org> Message-ID: I don't have proof of Drupal.org using D6, I was assuming it is using D6. If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I right? -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Earnie Boyd Sent: Friday, November 14, 2008 9:36 AM To: support at drupal.org Subject: Re: [support] logging using lynx browser Quoting Johnny Xiao : > The problem is that most D6 sites are not accessible with lynx, but > drupal.org is driven by D6, so I am trying to get solution of fixing > this problem > What proof do you have that d.o is running D6? FWIR it is D5. -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ -- [ Drupal support list | http://lists.drupal.org/ ] From neil at esl-lounge.com Fri Nov 14 13:46:32 2008 From: neil at esl-lounge.com (Neil Coghlan) Date: Fri, 14 Nov 2008 14:46:32 +0100 Subject: [support] logging using lynx browser References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> Message-ID: <1C1A072023EE4E098C2303AF831D6AB0@Neil> If d.o is indeed using D5, I would think "ability to work with Lynx" is about reason number 745 why that would be so. And I would think "D6 is a bug-ridden nightmare that the drupal politburo will erase from the history books in about 2010" is a far more likely reason. ;-) (please take this comment with a pinch of salt fellow drupalers...but only a tiny one) ----- Original Message ----- From: "Johnny Xiao" To: Sent: Friday, November 14, 2008 2:39 PM Subject: Re: [support] logging using lynx browser >I don't have proof of Drupal.org using D6, I was assuming it is using > D6. > > If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I > right? > > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Earnie Boyd > Sent: Friday, November 14, 2008 9:36 AM > To: support at drupal.org > Subject: Re: [support] logging using lynx browser > > Quoting Johnny Xiao : > >> The problem is that most D6 sites are not accessible with lynx, but >> drupal.org is driven by D6, so I am trying to get solution of fixing >> this problem >> > > What proof do you have that d.o is running D6? FWIR it is D5. > > -- > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- > [ Drupal support list | http://lists.drupal.org/ ] > From johnny.xiao at Q1Labs.com Fri Nov 14 13:56:03 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Fri, 14 Nov 2008 09:56:03 -0400 Subject: [support] logging using lynx browser In-Reply-To: <1C1A072023EE4E098C2303AF831D6AB0@Neil> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> Message-ID: Thank you all for replies, has anyone actually logged in a D6 site using lynx? -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Neil Coghlan Sent: Friday, November 14, 2008 9:47 AM To: support at drupal.org Subject: Re: [support] logging using lynx browser If d.o is indeed using D5, I would think "ability to work with Lynx" is about reason number 745 why that would be so. And I would think "D6 is a bug-ridden nightmare that the drupal politburo will erase from the history books in about 2010" is a far more likely reason. ;-) (please take this comment with a pinch of salt fellow drupalers...but only a tiny one) ----- Original Message ----- From: "Johnny Xiao" To: Sent: Friday, November 14, 2008 2:39 PM Subject: Re: [support] logging using lynx browser >I don't have proof of Drupal.org using D6, I was assuming it is using > D6. > > If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I > right? > > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Earnie Boyd > Sent: Friday, November 14, 2008 9:36 AM > To: support at drupal.org > Subject: Re: [support] logging using lynx browser > > Quoting Johnny Xiao : > >> The problem is that most D6 sites are not accessible with lynx, but >> drupal.org is driven by D6, so I am trying to get solution of fixing >> this problem >> > > What proof do you have that d.o is running D6? FWIR it is D5. > > -- > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- [ Drupal support list | http://lists.drupal.org/ ] From krishna at agentelinux.com.br Fri Nov 14 13:53:11 2008 From: krishna at agentelinux.com.br (Krishna Pennacchioni) Date: Fri, 14 Nov 2008 11:53:11 -0200 Subject: [support] logging using lynx browser In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa> <20081114083540.d5ptamf8byo8g840@mail.progw.org> Message-ID: <7d9de66d0811140553n213cb6bfm31d99f8acc83aa54@mail.gmail.com> Hi Johnny, Test with /usr/bin/links2 (Web browser running in both graphics and tex) by Krishna Pennacchioni 2008/11/14 Johnny Xiao > I don't have proof of Drupal.org using D6, I was assuming it is using > D6. > > If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I > right? > > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Earnie Boyd > Sent: Friday, November 14, 2008 9:36 AM > To: support at drupal.org > Subject: Re: [support] logging using lynx browser > > Quoting Johnny Xiao : > > > The problem is that most D6 sites are not accessible with lynx, but > > drupal.org is driven by D6, so I am trying to get solution of fixing > > this problem > > > > What proof do you have that d.o is running D6? FWIR it is D5. > > -- > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- Qualquer d?vida, basta avisar. Obrigado. Krishna Pennacchioni Technology & Web Systems Manager Mobile: 55-11-8133-3552 "72 milh?es de pessoas trabalham com Linux no mundo" Registered user #153992 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081114/8a3cb679/attachment.htm From mvgrootel at gmail.com Fri Nov 14 13:59:48 2008 From: mvgrootel at gmail.com (Maarten van Grootel) Date: Fri, 14 Nov 2008 14:59:48 +0100 Subject: [support] logging using lynx browser In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa> <20081114083540.d5ptamf8byo8g840@mail.progw.org> Message-ID: <9f8bbf980811140559o392bf8d9u55e99c57f67fddf3@mail.gmail.com> D.o is using d5, but is in the process of updgrading to d6 when the new design is ready. I can confirm D6 is not working under Lynx, it does work for Links (2.1), so perhaps you can use that? If you want to have D6 fixed for Lynx, create an issue on d.o.. -- Maarten On Fri, Nov 14, 2008 at 2:39 PM, Johnny Xiao wrote: > I don't have proof of Drupal.org using D6, I was assuming it is using > D6. > > If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I > right? > > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Earnie Boyd > Sent: Friday, November 14, 2008 9:36 AM > To: support at drupal.org > Subject: Re: [support] logging using lynx browser > > Quoting Johnny Xiao : > > > The problem is that most D6 sites are not accessible with lynx, but > > drupal.org is driven by D6, so I am trying to get solution of fixing > > this problem > > > > What proof do you have that d.o is running D6? FWIR it is D5. > > -- > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081114/d6792191/attachment.htm From johnny.xiao at Q1Labs.com Fri Nov 14 14:03:21 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Fri, 14 Nov 2008 10:03:21 -0400 Subject: [support] logging using lynx browser In-Reply-To: <9f8bbf980811140559o392bf8d9u55e99c57f67fddf3@mail.gmail.com> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <9f8bbf980811140559o392bf8d9u55e99c57f67fddf3@mail.gmail.com> Message-ID: Thanks Krishna & Maarten for the solution. ________________________________ From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Maarten van Grootel Sent: Friday, November 14, 2008 10:00 AM To: support at drupal.org Subject: Re: [support] logging using lynx browser D.o is using d5, but is in the process of updgrading to d6 when the new design is ready. I can confirm D6 is not working under Lynx, it does work for Links (2.1), so perhaps you can use that? If you want to have D6 fixed for Lynx, create an issue on d.o.. -- Maarten On Fri, Nov 14, 2008 at 2:39 PM, Johnny Xiao wrote: I don't have proof of Drupal.org using D6, I was assuming it is using D6. If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I right? -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Earnie Boyd Sent: Friday, November 14, 2008 9:36 AM To: support at drupal.org Subject: Re: [support] logging using lynx browser Quoting Johnny Xiao : > The problem is that most D6 sites are not accessible with lynx, but > drupal.org is driven by D6, so I am trying to get solution of fixing > this problem > What proof do you have that d.o is running D6? FWIR it is D5. -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ -- [ Drupal support list | http://lists.drupal.org/ ] -- [ Drupal support list | http://lists.drupal.org/ ] -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081114/2c0fc02c/attachment-0001.htm From brinkley.joseph at gmail.com Fri Nov 14 15:11:51 2008 From: brinkley.joseph at gmail.com (Joseph Brinkley) Date: Fri, 14 Nov 2008 10:11:51 -0500 Subject: [support] logging using lynx browser In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa> <20081114083540.d5ptamf8byo8g840@mail.progw.org> <9f8bbf980811140559o392bf8d9u55e99c57f67fddf3@mail.gmail.com> Message-ID: <179842640811140711y6233f534h4c8ac5d60de5e48e@mail.gmail.com> Sad as it is to say use a real browser. On Fri, Nov 14, 2008 at 9:03 AM, Johnny Xiao wrote: > Thanks Krishna & Maarten for the solution. > > > > ________________________________ > > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Maarten van Grootel > Sent: Friday, November 14, 2008 10:00 AM > To: support at drupal.org > Subject: Re: [support] logging using lynx browser > > > > D.o is using d5, but is in the process of updgrading to d6 when the new > design is ready. I can confirm D6 is not working under Lynx, it does work > for Links (2.1), so perhaps you can use that? > > If you want to have D6 fixed for Lynx, create an issue on d.o.. > > -- > Maarten > > On Fri, Nov 14, 2008 at 2:39 PM, Johnny Xiao wrote: > > I don't have proof of Drupal.org using D6, I was assuming it is using > D6. > > If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I > right? > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > > Behalf Of Earnie Boyd > Sent: Friday, November 14, 2008 9:36 AM > To: support at drupal.org > Subject: Re: [support] logging using lynx browser > > Quoting Johnny Xiao : > >> The problem is that most D6 sites are not accessible with lynx, but >> drupal.org is driven by D6, so I am trying to get solution of fixing >> this problem >> > > What proof do you have that d.o is running D6? FWIR it is D5. > > -- > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- > [ Drupal support list | http://lists.drupal.org/ ] > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- --Joseph Brinkley From william.darren at gmail.com Fri Nov 14 15:16:46 2008 From: william.darren at gmail.com (William Smith) Date: Fri, 14 Nov 2008 10:16:46 -0500 Subject: [support] logging using lynx browser In-Reply-To: <179842640811140711y6233f534h4c8ac5d60de5e48e@mail.gmail.com> References: <006101c94563$e0288300$06000a0a@csa> <20081114083540.d5ptamf8byo8g840@mail.progw.org> <9f8bbf980811140559o392bf8d9u55e99c57f67fddf3@mail.gmail.com> <179842640811140711y6233f534h4c8ac5d60de5e48e@mail.gmail.com> Message-ID: <74630ca20811140716k61e853c2v4c7d658cf01b803a@mail.gmail.com> It has already been pointed out many times in this discussion why there are valid reasons to use lynx or other text based browsers, and the admonishment to "use a real browser" is not a solution to any of the problems outlined. On Fri, Nov 14, 2008 at 10:11 AM, Joseph Brinkley wrote: > Sad as it is to say use a real browser. > > On Fri, Nov 14, 2008 at 9:03 AM, Johnny Xiao > wrote: > > Thanks Krishna & Maarten for the solution. > > > > > > > > ________________________________ > > > > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > > Behalf Of Maarten van Grootel > > Sent: Friday, November 14, 2008 10:00 AM > > To: support at drupal.org > > Subject: Re: [support] logging using lynx browser > > > > > > > > D.o is using d5, but is in the process of updgrading to d6 when the new > > design is ready. I can confirm D6 is not working under Lynx, it does work > > for Links (2.1), so perhaps you can use that? > > > > If you want to have D6 fixed for Lynx, create an issue on d.o.. > > > > -- > > Maarten > > > > On Fri, Nov 14, 2008 at 2:39 PM, Johnny Xiao > wrote: > > > > I don't have proof of Drupal.org using D6, I was assuming it is using > > D6. > > > > If Drupal.org is using D5, I guess D6 doesn't work with lynx well. Am I > > right? > > > > -----Original Message----- > > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > > > > Behalf Of Earnie Boyd > > Sent: Friday, November 14, 2008 9:36 AM > > To: support at drupal.org > > Subject: Re: [support] logging using lynx browser > > > > Quoting Johnny Xiao : > > > >> The problem is that most D6 sites are not accessible with lynx, but > >> drupal.org is driven by D6, so I am trying to get solution of fixing > >> this problem > >> > > > > What proof do you have that d.o is running D6? FWIR it is D5. > > > > -- > > Earnie http://r-feed.com > > Make a Drupal difference and review core patches. > > > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > > > > > > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > > > > > -- > > > --Joseph Brinkley > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081114/afe353ec/attachment.htm From mail at webthatworks.it Fri Nov 14 15:36:25 2008 From: mail at webthatworks.it (Ivan Sergio Borgonovo) Date: Fri, 14 Nov 2008 16:36:25 +0100 Subject: [support] logging using lynx browser In-Reply-To: <74630ca20811140716k61e853c2v4c7d658cf01b803a@mail.gmail.com> References: <006101c94563$e0288300$06000a0a@csa> <20081114083540.d5ptamf8byo8g840@mail.progw.org> <9f8bbf980811140559o392bf8d9u55e99c57f67fddf3@mail.gmail.com> <179842640811140711y6233f534h4c8ac5d60de5e48e@mail.gmail.com> <74630ca20811140716k61e853c2v4c7d658cf01b803a@mail.gmail.com> Message-ID: <20081114163625.3f6ff779@dawn.webthatworks.it> On Fri, 14 Nov 2008 10:16:46 -0500 "William Smith" wrote: > It has already been pointed out many times in this discussion why > there are valid reasons to use lynx or other text based browsers, > and the admonishment to "use a real browser" is not a solution to > any of the problems outlined. If it can be of any comfort a real browser as w3m has no problem with D5 and D7. I didn't have any D6 ready to test. And vi is clearly superior to emacs!! ooh BTW lynx does it too... but why bother testing with anything else when you already have an ?berbrowser like w3m ;) -- Ivan Sergio Borgonovo http://www.webthatworks.it From johnny.xiao at Q1Labs.com Fri Nov 14 16:02:53 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Fri, 14 Nov 2008 12:02:53 -0400 Subject: [support] logging using lynx browser In-Reply-To: <20081114163625.3f6ff779@dawn.webthatworks.it> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org><9f8bbf980811140559o392bf8d9u55e99c57f67fddf3@mail.gmail.com><179842640811140711y6233f534h4c8ac5d60de5e48e@mail.gmail.com><74630ca20811140716k61e853c2v4c7d658cf01b803a@mail.gmail.com> <20081114163625.3f6ff779@dawn.webthatworks.it> Message-ID: I think currently lynx doesn't with D6, people who work with server often, they use lynx regularly. -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Ivan Sergio Borgonovo Sent: Friday, November 14, 2008 11:36 AM To: support at drupal.org Subject: Re: [support] logging using lynx browser On Fri, 14 Nov 2008 10:16:46 -0500 "William Smith" wrote: > It has already been pointed out many times in this discussion why > there are valid reasons to use lynx or other text based browsers, > and the admonishment to "use a real browser" is not a solution to > any of the problems outlined. If it can be of any comfort a real browser as w3m has no problem with D5 and D7. I didn't have any D6 ready to test. And vi is clearly superior to emacs!! ooh BTW lynx does it too... but why bother testing with anything else when you already have an ?berbrowser like w3m ;) -- Ivan Sergio Borgonovo http://www.webthatworks.it -- [ Drupal support list | http://lists.drupal.org/ ] From pcollett at gmail.com Sat Nov 15 04:02:16 2008 From: pcollett at gmail.com (Paul Collett) Date: Sat, 15 Nov 2008 13:02:16 +0900 Subject: [support] sorting nodes in custom template Message-ID: <20081115040216.100889167@smtp.gmail.com> Hi, hope someone can help with this. I have created a tpl.php page in my theme to format custom content created with CCK. On the page, the content is displayed sorted by the node id (or creation date? I'm not sure which is the default). How can I sort it by using one of the CCK fields - field_start_time which is stored in the node_field table of the database? I'm guessing I need to add something to my tpl.php page to override the default sort setting. Any suggestions? I realize I could easily do this using views, but that won't work in this particular instance. Thanks, Paul From jhedstrom at opensourcery.com Tue Nov 18 01:53:33 2008 From: jhedstrom at opensourcery.com (Jonathan Hedstrom) Date: Mon, 17 Nov 2008 17:53:33 -0800 Subject: [support] logging using lynx browser In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> Message-ID: <4922201D.80806@opensourcery.com> Johnny Xiao wrote: > Thank you all for replies, has anyone actually logged in a D6 site using > lynx? I've logged into several of our recent D6 deployments using Lynx. My guess would be that there is some theme, or module, javascript firing somewhere during the login process on your site. Cheers, Jonathan -- Jonathan Hedstrom OpenSourcery http://opensourcery.com Technology for Good -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature Url : http://lists.drupal.org/pipermail/support/attachments/20081117/fb0a1d6d/attachment.pgp From bradwabbott at yahoo.com Tue Nov 18 02:01:08 2008 From: bradwabbott at yahoo.com (Brad Abbott) Date: Mon, 17 Nov 2008 18:01:08 -0800 (PST) Subject: [support] Newbie PHPTemplate / Drupal Templating Question Message-ID: <224285.35488.qm@web63404.mail.re1.yahoo.com> Drupal 6 Apache 2.2 Windows XP PHPTemplate I am trying to simply make a new template for my site which can be called by navigating to www.mysite.com/mynewtemplate. According to http://drupal.org/node/104316, if I simply make a new template in my chosen theme directory, in my case "C: Program Files\Apache\htdocs\sites\all\themes\mytheme\page-mynewtemplate.tpl.php, Drupal should serve up this new template when I navigate to www.mysite.com\mynewtemplate without any further code modifications. What am I missing? Sorry for the ignorance, but I cannot get drupal to serve up my new page template. I thought, at the very least, Drupal should serve up the original template "page.tpl.php" in my chosen theme directory. I am working from a super simple, windows based, Apache 2.2 drupal 6 installation. Is there any additional modifications that I need to make to the apache configuration file or .htaccess? I would really appreciate a hint or link to a resource that explains more. Cheers, Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081117/c20c31f1/attachment-0001.htm From cimo75 at gmail.com Tue Nov 18 13:05:17 2008 From: cimo75 at gmail.com (simone-www.io-lab.org) Date: Tue, 18 Nov 2008 13:05:17 +0000 Subject: [support] Selecting a view with a calendar D6 Message-ID: hi i am trying to use the Calendar module in Drupal 6 to select the day that will be the argument for a view. Both calendar and view should be in the same block, resulting in a top placed calendar where i can choose a day that will select among a specific content type and display a view underneath the calendar. The default Calendar view does this but will show the relative content of the content type , not the view. On the other hand i can create a view styled as a calendar which will show as a block view, but then i don t know how to get a calendar where to choose the days from. Any help appreciated Simone -- .wmv , .wma , .pps along with all proprietary Windows formats won t be accepted and/or viewed.... From peterd at neustarlab.biz Tue Nov 18 15:19:39 2008 From: peterd at neustarlab.biz (Peter Davis) Date: Tue, 18 Nov 2008 10:19:39 -0500 Subject: [support] user module and custom ldap module advice Message-ID: <646C2750-F001-4C66-B7C0-0E22357FA716@neustarlab.biz> Hi, I am trying to identify the best solution (or perhaps, the most proper solution) for incorporating the core user module and a custom ldap module. The ldap module holds all users for the system (of which drupal is only a part), and provides, via drupal, both search and view functionality. It's important to note that not all ldap users will be in the drupal user tables (tho when a user logs into drupal, an account is automatically created locally). The challenge i am facing is id rather not have 2 user view pages in place... just one. By way of example: /user/jsmith /person/jsmith both result in displaying jsmith's account (and should be identical renderings) all users will always be found under /person (which starts the user load process from ldap), but i've not found a way to trick the user module into finding accounts which are not in drupal (only in ldap), as hook_user->load is called after an attempt has been made to locate the user in the drupal user store. to add to the complexity, for various reasons, when extending the user profile from LDAP, I am storing these values via the profile module. I've considered a few scenarios: + link_alter /user/% to /person/%, where i know i'll find the user but retain access to profile extensions + menu_alter /user/% to /person (which seems not to work) + find some way of getting the user module to look in ldap first I considered bulk-loading from LDAP, but that introduces data duplication I'd like to avoid if at all possible. thanks! =peterd From johnny.xiao at Q1Labs.com Tue Nov 18 15:43:56 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Tue, 18 Nov 2008 11:43:56 -0400 Subject: [support] logging using lynx browser In-Reply-To: <4922201D.80806@opensourcery.com> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> <4922201D.80806@opensourcery.com> Message-ID: I am using greenNblack theme. When you were using lynx, did you do like this: Lynx http://yoursite.example.com -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Jonathan Hedstrom Sent: Monday, November 17, 2008 9:54 PM To: support at drupal.org Subject: Re: [support] logging using lynx browser Johnny Xiao wrote: > Thank you all for replies, has anyone actually logged in a D6 site using > lynx? I've logged into several of our recent D6 deployments using Lynx. My guess would be that there is some theme, or module, javascript firing somewhere during the login process on your site. Cheers, Jonathan -- Jonathan Hedstrom OpenSourcery http://opensourcery.com Technology for Good From jhedstrom at opensourcery.com Tue Nov 18 16:52:01 2008 From: jhedstrom at opensourcery.com (Jonathan Hedstrom) Date: Tue, 18 Nov 2008 08:52:01 -0800 Subject: [support] logging using lynx browser In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> <4922201D.80806@opensourcery.com> Message-ID: <4922F2B1.2080303@opensourcery.com> Johnny Xiao wrote: > I am using greenNblack theme. > > When you were using lynx, did you do like this: > > Lynx http://yoursite.example.com Yeah, that works for me. Have you tried going directly to http://yoursite.example.com/user to try and log in? I'm wondering if it's an issue with the user login block... Cheers, Jonathan -- Jonathan Hedstrom OpenSourcery http://opensourcery.com Technology for Good -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature Url : http://lists.drupal.org/pipermail/support/attachments/20081118/8cef2ac3/attachment.pgp From johnny.xiao at Q1Labs.com Tue Nov 18 19:05:28 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Tue, 18 Nov 2008 15:05:28 -0400 Subject: [support] logging using lynx browser In-Reply-To: <4922F2B1.2080303@opensourcery.com> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> <4922201D.80806@opensourcery.com> <4922F2B1.2080303@opensourcery.com> Message-ID: I tried using lynx http://yoursite.example.com/user, I got Alert! 403 Forbidden error -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Jonathan Hedstrom Sent: Tuesday, November 18, 2008 12:52 PM To: support at drupal.org Subject: Re: [support] logging using lynx browser Johnny Xiao wrote: > I am using greenNblack theme. > > When you were using lynx, did you do like this: > > Lynx http://yoursite.example.com Yeah, that works for me. Have you tried going directly to http://yoursite.example.com/user to try and log in? I'm wondering if it's an issue with the user login block... Cheers, Jonathan -- Jonathan Hedstrom OpenSourcery http://opensourcery.com Technology for Good From hobbes at poukram.net Tue Nov 18 20:05:37 2008 From: hobbes at poukram.net (=?UTF-8?B?UsOpbWkgTGV0b3Q=?=) Date: Tue, 18 Nov 2008 21:05:37 +0100 Subject: [support] multilingual sites with some content common to all languages in some nodes Message-ID: <49232011.3080104@poukram.net> Hello, I am evaluating drupal to create an e-commerce web site, and have experimented with e-commerce and ubercart. Both have strengths and weaknesses, but I have found a common weakness that must also happen for other sites. When using the multilingual infrastructure, drupal creates duplicate nodes to hold the different translations. This is fine and works very well, until I have fields in the nodes that must remain syncronized between the different languages. In my case, these are prices, weight,... all "non textual" products properties. I'm sure this has been a problem for other types of websites, as soon as some fields in nodes are not textual, they do not need to be translated, and become a problem when they have to be updated because they can become out of sync. Has anyone a solution or any pointer to a solution to this problem ? Thanks, -- R?mi From johnny.xiao at Q1Labs.com Thu Nov 20 15:16:35 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Thu, 20 Nov 2008 11:16:35 -0400 Subject: [support] how to turn off forum comment moderation In-Reply-To: <4922F2B1.2080303@opensourcery.com> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> <4922201D.80806@opensourcery.com> <4922F2B1.2080303@opensourcery.com> Message-ID: I like to turn off forum comment moderation, so comments can be published without approval. Currently I am using Drupal 6.6 From sales at idealcctv.co.uk Thu Nov 20 16:02:41 2008 From: sales at idealcctv.co.uk (Torben Vanselow) Date: Thu, 20 Nov 2008 16:02:41 -0000 Subject: [support] how to turn off forum comment moderation In-Reply-To: References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> <4922201D.80806@opensourcery.com> <4922F2B1.2080303@opensourcery.com> Message-ID: <005401c94b29$6c80ea20$4582be60$@co.uk> Hi there, Just change it in the permissions section. If you cannot find the permission section... there is a link to it right in the header of the modules section. You should have two boxes to tick: tick users can make comments ... just un-tick can post comments without approval or so... make sure to set the permissions for all groups (anonymous / authenticated user etc..) I hope it helps. Kind Regards, Mr. Torben C.F. Vanselow Executive Sales Manager - Ideal CCTV T: 0800 043 27 40 F: 0800 066 40 49 E: management at idealcctv.co.uk W: http://www.idealcctv.co.uk -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Johnny Xiao Sent: 20 November 2008 15:17 To: support at drupal.org Subject: [support] how to turn off forum comment moderation I like to turn off forum comment moderation, so comments can be published without approval. Currently I am using Drupal 6.6 -- [ Drupal support list | http://lists.drupal.org/ ] From daniel.carrera at zmsl.com Thu Nov 20 17:15:40 2008 From: daniel.carrera at zmsl.com (Daniel Carrera) Date: Thu, 20 Nov 2008 12:45:40 -0430 Subject: [support] Wiki? Message-ID: <49259B3C.3000007@zmsl.com> Hello all, I want my Drupal site to have a wiki-type section where anyone can edit. I don't want to make the standard "page" module editable by all, because I also want users to have private pages that only they can edit. So I was thinking of installing another module that is similar to the page module and simply set the permissions that anyone can edit any node made with that other module. That's why I call it "wiki". But I don't really care about the wiki syntax as such. I looked through the modules page, but I didn't see anything. Btw, I have Drupal 5. Thanks for the help. Cheers, Daniel. From pkim at reachlocal.com Thu Nov 20 17:18:10 2008 From: pkim at reachlocal.com (Paul Kim) Date: Thu, 20 Nov 2008 09:18:10 -0800 Subject: [support] Wiki? In-Reply-To: <49259B3C.3000007@zmsl.com> References: <49259B3C.3000007@zmsl.com> Message-ID: <49259BD2.2010002@reachlocal.com> You don't need another module. Just create another content type called "wiki". Then, set the appropriate permissions on that content type so anyone can edit it. Daniel Carrera wrote: > Hello all, > > I want my Drupal site to have a wiki-type section where anyone can edit. > I don't want to make the standard "page" module editable by all, because > I also want users to have private pages that only they can edit. So I > was thinking of installing another module that is similar to the page > module and simply set the permissions that anyone can edit any node made > with that other module. That's why I call it "wiki". But I don't really > care about the wiki syntax as such. > > > I looked through the modules page, but I didn't see anything. > > Btw, I have Drupal 5. > > Thanks for the help. > > Cheers, > Daniel. > From earnie at users.sourceforge.net Thu Nov 20 17:24:25 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Thu, 20 Nov 2008 12:24:25 -0500 Subject: [support] Wiki? In-Reply-To: <49259B3C.3000007@zmsl.com> References: <49259B3C.3000007@zmsl.com> Message-ID: <20081120122425.fphc8499p7yss8cg@mail.progw.org> Quoting Daniel Carrera : > Hello all, > > I want my Drupal site to have a wiki-type section where anyone can edit. > I don't want to make the standard "page" module editable by all, because > I also want users to have private pages that only they can edit. So I > was thinking of installing another module that is similar to the page > module and simply set the permissions that anyone can edit any node made > with that other module. That's why I call it "wiki". But I don't really > care about the wiki syntax as such. > > > I looked through the modules page, but I didn't see anything. > > Btw, I have Drupal 5. > See http://groups.drupal.org/wiki and http://drupal.org/project/wikitools -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From daniel.carrera at zmsl.com Thu Nov 20 17:28:55 2008 From: daniel.carrera at zmsl.com (Daniel Carrera) Date: Thu, 20 Nov 2008 12:58:55 -0430 Subject: [support] Wiki? In-Reply-To: <49259BD2.2010002@reachlocal.com> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> Message-ID: <49259E57.1070300@zmsl.com> I didn't know you could do that. How do I do it? Paul Kim wrote: > You don't need another module. Just create another content type called > "wiki". Then, set the appropriate permissions on that content type so > anyone can edit it. > > Daniel Carrera wrote: >> Hello all, >> >> I want my Drupal site to have a wiki-type section where anyone can edit. >> I don't want to make the standard "page" module editable by all, because >> I also want users to have private pages that only they can edit. So I >> was thinking of installing another module that is similar to the page >> module and simply set the permissions that anyone can edit any node made >> with that other module. That's why I call it "wiki". But I don't really >> care about the wiki syntax as such. >> >> >> I looked through the modules page, but I didn't see anything. >> >> Btw, I have Drupal 5. >> >> Thanks for the help. >> >> Cheers, >> Daniel. >> > From johnny.xiao at Q1Labs.com Thu Nov 20 17:36:36 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Thu, 20 Nov 2008 13:36:36 -0400 Subject: [support] how to turn off forum comment moderation In-Reply-To: <005401c94b29$6c80ea20$4582be60$@co.uk> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> <4922201D.80806@opensourcery.com> <4922F2B1.2080303@opensourcery.com> <005401c94b29$6c80ea20$4582be60$@co.uk> Message-ID: Thank you Toben, it helped. -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Torben Vanselow Sent: Thursday, November 20, 2008 12:03 PM To: support at drupal.org Subject: Re: [support] how to turn off forum comment moderation Hi there, Just change it in the permissions section. If you cannot find the permission section... there is a link to it right in the header of the modules section. You should have two boxes to tick: tick users can make comments ... just un-tick can post comments without approval or so... make sure to set the permissions for all groups (anonymous / authenticated user etc..) I hope it helps. Kind Regards, Mr. Torben C.F. Vanselow Executive Sales Manager - Ideal CCTV T: 0800 043 27 40 F: 0800 066 40 49 E: management at idealcctv.co.uk W: http://www.idealcctv.co.uk -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Johnny Xiao Sent: 20 November 2008 15:17 To: support at drupal.org Subject: [support] how to turn off forum comment moderation I like to turn off forum comment moderation, so comments can be published without approval. Currently I am using Drupal 6.6 -- [ Drupal support list | http://lists.drupal.org/ ] -- [ Drupal support list | http://lists.drupal.org/ ] From greg at t2media.com Thu Nov 20 17:38:19 2008 From: greg at t2media.com (Greg Holsclaw) Date: Thu, 20 Nov 2008 09:38:19 -0800 Subject: [support] Wiki? In-Reply-To: <49259E57.1070300@zmsl.com> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> Message-ID: <000e01c94b36$c742c9d0$55c85d70$@com> There are numerous user permissions per content type: create page content edit own page content edit page content The downside is that the delete function will be available to anyone you give the 'edit page content' permission to. So be aware. -Greg -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Daniel Carrera Sent: Thursday, November 20, 2008 9:29 AM To: support at drupal.org Subject: Re: [support] Wiki? I didn't know you could do that. How do I do it? Paul Kim wrote: > You don't need another module. Just create another content type called > "wiki". Then, set the appropriate permissions on that content type so > anyone can edit it. > > Daniel Carrera wrote: >> Hello all, >> >> I want my Drupal site to have a wiki-type section where anyone can edit. >> I don't want to make the standard "page" module editable by all, because >> I also want users to have private pages that only they can edit. So I >> was thinking of installing another module that is similar to the page >> module and simply set the permissions that anyone can edit any node made >> with that other module. That's why I call it "wiki". But I don't really >> care about the wiki syntax as such. >> >> >> I looked through the modules page, but I didn't see anything. >> >> Btw, I have Drupal 5. >> >> Thanks for the help. >> >> Cheers, >> Daniel. >> > -- [ Drupal support list | http://lists.drupal.org/ ] From bill at funnymonkey.com Thu Nov 20 19:01:38 2008 From: bill at funnymonkey.com (Bill Fitzgerald) Date: Thu, 20 Nov 2008 11:01:38 -0800 Subject: [support] Wiki? In-Reply-To: <000e01c94b36$c742c9d0$55c85d70$@com> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <000e01c94b36$c742c9d0$55c85d70$@com> Message-ID: <4925B412.2020101@funnymonkey.com> In D6, the "delete" right is separated out, which eliminates this issue. Greg Holsclaw wrote: > There are numerous user permissions per content type: > > create page content > edit own page content > edit page content > > The downside is that the delete function will be available to anyone you > give the 'edit page content' permission to. So be aware. > > -Greg > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Daniel Carrera > Sent: Thursday, November 20, 2008 9:29 AM > To: support at drupal.org > Subject: Re: [support] Wiki? > > I didn't know you could do that. How do I do it? > > Paul Kim wrote: > >> You don't need another module. Just create another content type called >> "wiki". Then, set the appropriate permissions on that content type so >> anyone can edit it. >> >> Daniel Carrera wrote: >> >>> Hello all, >>> >>> I want my Drupal site to have a wiki-type section where anyone can edit. >>> I don't want to make the standard "page" module editable by all, because >>> I also want users to have private pages that only they can edit. So I >>> was thinking of installing another module that is similar to the page >>> module and simply set the permissions that anyone can edit any node made >>> with that other module. That's why I call it "wiki". But I don't really >>> care about the wiki syntax as such. >>> >>> >>> I looked through the modules page, but I didn't see anything. >>> >>> Btw, I have Drupal 5. >>> >>> Thanks for the help. >>> >>> Cheers, >>> Daniel. >>> >>> > > -- Bill Fitzgerald http://funnymonkey.com FunnyMonkey -- Tools for Teachers ph. 503 897 7160 From forums at ipwa.net Thu Nov 20 19:46:02 2008 From: forums at ipwa.net (Nicolas Borda) Date: Thu, 20 Nov 2008 19:46:02 +0000 Subject: [support] Wiki? In-Reply-To: <49259E57.1070300@zmsl.com> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> Message-ID: On 20 Nov 2008, at 17:28, Daniel Carrera wrote: > I didn't know you could do that. How do I do it? You need CCK: http://drupal.org/project/cck http://drupal.org/node/101723 HTH, Nicolas > -- http://nic.ipwa.net/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081120/e89e3897/attachment.htm From earnie at users.sourceforge.net Thu Nov 20 21:01:35 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Thu, 20 Nov 2008 16:01:35 -0500 Subject: [support] Wiki? In-Reply-To: References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> Message-ID: <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> Quoting Nicolas Borda : > > On 20 Nov 2008, at 17:28, Daniel Carrera wrote: > >> I didn't know you could do that. How do I do it? > > You need CCK: http://drupal.org/project/cck > > http://drupal.org/node/101723 Not to create a wiki. -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From forums at ipwa.net Thu Nov 20 21:39:22 2008 From: forums at ipwa.net (Nicolas Borda) Date: Thu, 20 Nov 2008 21:39:22 +0000 Subject: [support] Wiki? In-Reply-To: <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> Message-ID: <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> On 20 Nov 2008, at 21:01, Earnie Boyd wrote: > Quoting Nicolas Borda : > >> You need CCK: http://drupal.org/project/cck >> >> http://drupal.org/node/101723 > > Not to create a wiki. Of course not, but you do to create a new content type, unless you do it with a custom module, and I think that's not the best route for a beginner ;) This is the question I was answering: >> On 20 Nov 2008, at 17:28, Daniel Carrera wrote: >>> I didn't know you could do that. How do I do it? >>> >>> Paul Kim wrote: >>>> You don't need another module. Just create another content type >>>> called >>>> "wiki". Then, set the appropriate permissions on that content >>>> type so >>>> anyone can edit it. Nicolas Borda -- http://nic.ipwa.net/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081120/2864a7b9/attachment.htm From jhedstrom at opensourcery.com Thu Nov 20 21:53:30 2008 From: jhedstrom at opensourcery.com (Jonathan Hedstrom) Date: Thu, 20 Nov 2008 13:53:30 -0800 Subject: [support] Wiki? In-Reply-To: <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> Message-ID: <4925DC5A.9020208@opensourcery.com> Nicolas Borda wrote: > > On 20 Nov 2008, at 21:01, Earnie Boyd wrote: > >> Quoting Nicolas Borda >: >> >>> You need CCK: http://drupal.org/project/cck >>> >>> http://drupal.org/node/101723 >> >> Not to create a wiki. > > Of course not, but you do to create a new content type, unless you do > it with a custom module, and I think that's not the best route for a > beginner ;) This is the question I was answering: Drupal core can create new content types, they just consist of a body and a title. Cheers, Jonathan -- Jonathan Hedstrom OpenSourcery http://opensourcery.com Technology for Good -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature Url : http://lists.drupal.org/pipermail/support/attachments/20081120/77680149/attachment.pgp From mike at mikeyp.net Thu Nov 20 22:00:25 2008 From: mike at mikeyp.net (Michael Prasuhn) Date: Thu, 20 Nov 2008 14:00:25 -0800 Subject: [support] Wiki? In-Reply-To: <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> Message-ID: On Nov 20, 2008, at 1:39 PM, Nicolas Borda wrote: > On 20 Nov 2008, at 21:01, Earnie Boyd wrote: > >> Quoting Nicolas Borda : >> >>> You need CCK: http://drupal.org/project/cck >>> >>> http://drupal.org/node/101723 >> >> Not to create a wiki. > > Of course not, but you do to create a new content type, unless you > do it with a custom module, and I think that's not the best route > for a beginner ;) This is the question I was answering: As of Drupal 5 and later CCK is NOT required to create new content types. This functionality is included with Drupal core. __________________ Michael Prasuhn mike at mikeyp.net http://mikeyp.net From tonyc at boldfish.co.uk Thu Nov 20 22:48:53 2008 From: tonyc at boldfish.co.uk (Tony Crockford) Date: Thu, 20 Nov 2008 22:48:53 +0000 Subject: [support] Wiki? In-Reply-To: References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> Message-ID: I used a book content type to recreate a wiki here: http://www.workalone.co.uk/wiki and some of the ideas here: http://cwgordon.com/how-to-create-a-wiki-with-drupal I also worked out the way to get Geshi and Pear Wiki filters playing nicely: http://www.workalone.co.uk/node/129 I still want to mess a bit with the book structure, but as it stands it's wiki like. (for authenticated users) From daniel.carrera at zmsl.com Thu Nov 20 22:58:50 2008 From: daniel.carrera at zmsl.com (Daniel Carrera) Date: Thu, 20 Nov 2008 18:28:50 -0430 Subject: [support] Wiki? In-Reply-To: References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> Message-ID: <4925EBAA.5070507@zmsl.com> Michael Prasuhn wrote: > As of Drupal 5 and later CCK is NOT required to create new content > types. This functionality is included with Drupal core. Could you show me how to do it? Creating a new content type seems like the perfect solution for me. I just don't know how. Thanks. Daniel. From daniel.carrera at zmsl.com Thu Nov 20 22:59:15 2008 From: daniel.carrera at zmsl.com (Daniel Carrera) Date: Thu, 20 Nov 2008 18:29:15 -0430 Subject: [support] Wiki? In-Reply-To: <000e01c94b36$c742c9d0$55c85d70$@com> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <000e01c94b36$c742c9d0$55c85d70$@com> Message-ID: <4925EBC3.3050400@zmsl.com> Greg Holsclaw wrote: > There are numerous user permissions per content type: > > create page content > edit own page content > edit page content > > The downside is that the delete function will be available to anyone you > give the 'edit page content' permission to. So be aware. Certainly, that's why I want to separate them. I want "public" pages that anyone can edit (and hence, delete) and owner-only pages that only the owner and a small group of trusted individuals can edit (and delete). Paul's suggestion of making a new content type that is just like "page" sounds perfect for my situation. I just need to learn how to make a new content type. Daniel. From pkim at reachlocal.com Thu Nov 20 23:00:41 2008 From: pkim at reachlocal.com (Paul Kim) Date: Thu, 20 Nov 2008 15:00:41 -0800 Subject: [support] Wiki? In-Reply-To: <4925EBAA.5070507@zmsl.com> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> <4925EBAA.5070507@zmsl.com> Message-ID: <4925EC19.5040305@reachlocal.com> Daniel Carrera wrote: > Michael Prasuhn wrote: > >> As of Drupal 5 and later CCK is NOT required to create new content >> types. This functionality is included with Drupal core. >> > > Could you show me how to do it? Creating a new content type seems like > the perfect solution for me. I just don't know how. Thanks. > > Daniel. > Just go to Adminster -> Content Management -> Content Types Then click on "Add Content Type" in the secondary tabs. From tyfong919 at gmail.com Thu Nov 20 23:10:46 2008 From: tyfong919 at gmail.com (tim fong) Date: Thu, 20 Nov 2008 15:10:46 -0800 Subject: [support] Getting to the base URL Message-ID: Hello, I'm pretty new to this, so, this may be a dumb question. I cannot get to the index.php page to finish my install. I am trying to install Drupal 6.6 on RHEL 4. I have Apache 2.2, PHP 4.3.9 and MYSQL 5. I have verified that Apache, PHP and MYSQL are all running. index.php is in: /var/www/html/drupal I am trying to set up Drupal to run on my intranet. Once I go to http://localhost/drupal/index.php , I see this error in my browser: Forbidden You don't have permission to access /drupal/index.php on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request. Any ideas? I've verified that that the directory is owned by the same user that is running the webserver. Thanks, Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081120/d6663ed0/attachment-0001.htm From forums at ipwa.net Thu Nov 20 23:42:05 2008 From: forums at ipwa.net (Nicolas Borda) Date: Thu, 20 Nov 2008 23:42:05 +0000 Subject: [support] Wiki? In-Reply-To: References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> Message-ID: <0355A25F-03CC-4BD6-9CDA-1BAC109880F4@ipwa.net> On 20 Nov 2008, at 22:00, Michael Prasuhn wrote: > As of Drupal 5 and later CCK is NOT required to create new content > types. This functionality is included with Drupal core. I didn't know because I've never had the need to create a content type with just a body and title, and I tend to replace the body with my own text field, it makes it easier for me when printing fields in my node template. So, I take back what I said. Cheers, -- http://nic.ipwa.net/ http://drupal.org/user/130909 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081120/c9935b0b/attachment.htm From daniel.carrera at zmsl.com Thu Nov 20 23:59:38 2008 From: daniel.carrera at zmsl.com (Daniel Carrera) Date: Thu, 20 Nov 2008 19:29:38 -0430 Subject: [support] Wiki? In-Reply-To: <4925EC19.5040305@reachlocal.com> References: <49259B3C.3000007@zmsl.com> <49259BD2.2010002@reachlocal.com> <49259E57.1070300@zmsl.com> <20081120160135.vmfar6iokdw8wg4s@mail.progw.org> <02179471-A3F6-44C8-A31F-693785D39052@ipwa.net> <4925EBAA.5070507@zmsl.com> <4925EC19.5040305@reachlocal.com> Message-ID: <4925F9EA.1090901@zmsl.com> Paul Kim wrote: >> Could you show me how to do it? Creating a new content type seems like >> the perfect solution for me. I just don't know how. Thanks. >> >> Daniel. >> > Just go to Adminster -> Content Management -> Content Types > > Then click on "Add Content Type" in the secondary tabs. Thanks! Wow, that was easy. Cheers, Daniel. From derek at dgtlife.com Fri Nov 21 01:50:39 2008 From: derek at dgtlife.com (Derek Gransaull) Date: Thu, 20 Nov 2008 20:50:39 -0500 Subject: [support] Getting to the base URL In-Reply-To: References: Message-ID: <492613EF.7030809@dgtlife.com> Tim: Check the permissions on the drupal folder in the path that you've installed it. If it's not owned by the apache2 (www-data) user then it should be. I use Ubuntu, and apache2 runs as www-data. I'm not sure what it runs as on RHEL. On my intranet server I've changed the permissions to be myuser:www-data, i.e. I own the file, and so does the www-data group. I selectively enable write permissions for the group, when doing installs and such. Let me know if this helps. BTW: Why RHEL vs Fedora? Derek Gransaull DGTLife, LLC tim fong wrote: > Hello, > > I'm pretty new to this, so, this may be a dumb question. > I cannot get to the index.php page to finish my install. > > I am trying to install Drupal 6.6 on RHEL 4. I have Apache 2.2, PHP > 4.3.9 and MYSQL 5. I have verified that Apache, PHP and MYSQL are all > running. > > index.php is in: > /var/www/html/drupal > > I am trying to set up Drupal to run on my intranet. Once I go to > http://localhost/drupal/index.php , I see this error in my browser: > > Forbidden > You don't have permission to access /drupal/index.php on this server. > Additionally, a 403 Forbidden error was encountered while trying > to use an ErrorDocument to handle the request. > > Any ideas? I've verified that that the directory is owned by the same > user that is running the webserver. > > > Thanks, > Tim > > From derek at dgtlife.com Fri Nov 21 01:54:01 2008 From: derek at dgtlife.com (Derek Gransaull) Date: Thu, 20 Nov 2008 20:54:01 -0500 Subject: [support] Getting to the base URL In-Reply-To: <492613EF.7030809@dgtlife.com> References: <492613EF.7030809@dgtlife.com> Message-ID: <492614B9.1020703@dgtlife.com> Oops...sorry didn't read your last line.... Derek Gransaull wrote: > Tim: > > Check the permissions on the drupal folder in the path that you've > installed it. If it's not owned by the apache2 (www-data) user then it > should be. I use Ubuntu, and apache2 runs as www-data. I'm not sure what > it runs as on RHEL. On my intranet server I've changed the permissions > to be myuser:www-data, i.e. I own the file, and so does the www-data > group. I selectively enable write permissions for the group, when doing > installs and such. Let me know if this helps. > > BTW: Why RHEL vs Fedora? > > Derek Gransaull > DGTLife, LLC > > tim fong wrote: > >> Hello, >> >> I'm pretty new to this, so, this may be a dumb question. >> I cannot get to the index.php page to finish my install. >> >> I am trying to install Drupal 6.6 on RHEL 4. I have Apache 2.2, PHP >> 4.3.9 and MYSQL 5. I have verified that Apache, PHP and MYSQL are all >> running. >> >> index.php is in: >> /var/www/html/drupal >> >> I am trying to set up Drupal to run on my intranet. Once I go to >> http://localhost/drupal/index.php , I see this error in my browser: >> >> Forbidden >> You don't have permission to access /drupal/index.php on this server. >> Additionally, a 403 Forbidden error was encountered while trying >> to use an ErrorDocument to handle the request. >> >> Any ideas? I've verified that that the directory is owned by the same >> user that is running the webserver. >> >> >> Thanks, >> Tim >> >> >> > > From derek at dgtlife.com Fri Nov 21 02:01:20 2008 From: derek at dgtlife.com (Derek Gransaull) Date: Thu, 20 Nov 2008 21:01:20 -0500 Subject: [support] Getting to the base URL In-Reply-To: References: Message-ID: <49261670.1080106@dgtlife.com> Tim: Could you confirm that in addition to the /drupal directory being owned by the apache user and that the files in the /drupal/ tree are also owned by that user? What are the permissions that you've set? Have you been able to access other .html files in your /var/www/ tree? Derek Gransaull tim fong wrote: > Hello, > > I'm pretty new to this, so, this may be a dumb question. > I cannot get to the index.php page to finish my install. > > I am trying to install Drupal 6.6 on RHEL 4. I have Apache 2.2, PHP > 4.3.9 and MYSQL 5. I have verified that Apache, PHP and MYSQL are all > running. > > index.php is in: > /var/www/html/drupal > > I am trying to set up Drupal to run on my intranet. Once I go to > http://localhost/drupal/index.php , I see this error in my browser: > > Forbidden > You don't have permission to access /drupal/index.php on this server. > Additionally, a 403 Forbidden error was encountered while trying > to use an ErrorDocument to handle the request. > > Any ideas? I've verified that that the directory is owned by the same > user that is running the webserver. > > > Thanks, > Tim > > From genevieve.romier at urec.cnrs.fr Fri Nov 21 08:34:58 2008 From: genevieve.romier at urec.cnrs.fr (Genevieve Romier) Date: Fri, 21 Nov 2008 09:34:58 +0100 Subject: [support] Getting to the base URL In-Reply-To: <49261670.1080106@dgtlife.com> References: <49261670.1080106@dgtlife.com> Message-ID: <492672B2.1080201@urec.cnrs.fr> Hello, You may also verify that the selinux context allows your "normal" directory to be used by httpd : before setting correctly the context # ls -Z -d the_directory_you_want_to_use/ drwxrwxr-x my_user my_user user_u:object_r:user_home_t the_directory_you_want_to_use how to change the context # chcon -R -t httpd_user_content_t the_directory_you_want_to_use/ after: # ls -Z the_directory_you_want_to_use -rw-r--r-- my_user my_user user_u:object_r:httpd_user_content_t index.htm -rw-r--r-- my_user my_user user_u:object_r:httpd_sys_content_t index.html -rw-r--r-- my_user my_user user_u:object_r:httpd_sys_content_t index.php -rw-r--r-- my_user my_user user_u:object_r:httpd_sys_content_t index.phpo Best regards, Genevi?ve Romier CNRS UREC www.projet-plume.org Derek Gransaull wrote: > Tim: > > Could you confirm that in addition to the /drupal directory being owned > by the apache user and that the files in the /drupal/ tree are also > owned by that user? > > What are the permissions that you've set? > > Have you been able to access other .html files in your /var/www/ tree? > > Derek Gransaull > > tim fong wrote: >> Hello, >> >> I'm pretty new to this, so, this may be a dumb question. >> I cannot get to the index.php page to finish my install. >> >> I am trying to install Drupal 6.6 on RHEL 4. I have Apache 2.2, PHP >> 4.3.9 and MYSQL 5. I have verified that Apache, PHP and MYSQL are all >> running. >> >> index.php is in: >> /var/www/html/drupal >> >> I am trying to set up Drupal to run on my intranet. Once I go to >> http://localhost/drupal/index.php , I see this error in my browser: >> >> Forbidden >> You don't have permission to access /drupal/index.php on this server. >> Additionally, a 403 Forbidden error was encountered while trying >> to use an ErrorDocument to handle the request. >> >> Any ideas? I've verified that that the directory is owned by the same >> user that is running the webserver. >> >> >> Thanks, >> Tim >> >> -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 4063 bytes Desc: S/MIME Cryptographic Signature Url : http://lists.drupal.org/pipermail/support/attachments/20081121/cc808f6c/attachment-0001.bin From sivaji2009 at gmail.com Fri Nov 21 09:51:07 2008 From: sivaji2009 at gmail.com (sivaji j.g) Date: Fri, 21 Nov 2008 15:21:07 +0530 Subject: [support] Getting to the base URL In-Reply-To: References: Message-ID: > Forbidden > You don't have permission to access /drupal/index.php on this server. > Additionally, a 403 Forbidden error was encountered while trying to use an > ErrorDocument to handle the request. > > Any ideas? I've verified that that the directory is owned by the same user > that is running the webserver. > sudo chmod -R 755 /var/www/html/drupal -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081121/f9d519b9/attachment.htm From amont at 5net.hu Fri Nov 21 12:32:11 2008 From: amont at 5net.hu (=?ISO-8859-2?Q?=C1mon_Tam=E1s?=) Date: Fri, 21 Nov 2008 13:32:11 +0100 Subject: [support] Problem with Content Taxonomy Fields Message-ID: <4926AA4B.4050900@5net.hu> Hello, I have the following problem width Content Taxonomy Field cck module. I added this - with autocomplet - to a content type, but when I give some words to the node, after I can not see this in the taxonomy page (/taxonomy/term/tid). What I made wrong? ?mon Tam?s Sitefejleszt? ?s programoz? -- 5NET Informatikai Kft. 1062 Budapest, Aradi utca 38. A 3/11 telefon: (1) 461-0205 | fax: (1) 461-0206 e-mail: amont at 5net.hu | web: http://www.5net.hu From tyfong919 at gmail.com Sat Nov 22 00:34:52 2008 From: tyfong919 at gmail.com (tim fong) Date: Fri, 21 Nov 2008 16:34:52 -0800 Subject: [support] Getting to the Base URL Message-ID: Derek, Thanks. I checked again-- the /drupal directory is owned by apache, the same user that is running the httpd process. Permissions for /drupal are drwxr-xr-x Permissions for index.php are: -rw-r--r-- I can access other .html files in /var/www. Verified that I can access a test html page. Also, I have verified that I can access a .php test page. Genevive: Thanks, I have cerified that the permissions are as specified in your email. Best, Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081121/eedf3e70/attachment.htm From derek at dgtlife.com Sat Nov 22 01:01:59 2008 From: derek at dgtlife.com (Derek Gransaull) Date: Fri, 21 Nov 2008 20:01:59 -0500 Subject: [support] Getting to the Base URL In-Reply-To: References: Message-ID: <49275A07.7080301@dgtlife.com> Tim: Could you try a couple of things: 1. Copy the generic apache2 index.html (or whichever test html page you say you were able to access) file into the drupal directory. Make sure you chown it to apache:apache and then see if you can browse to it with the explicit URL ".../drupal/index.html". 2. Did you create an apache2 virtual host for your drupal site? Could you post the relevant config snippet you're using for that? Regards, Derek tim fong wrote: > Derek, > > Thanks. I checked again-- the /drupal directory is owned by apache, > the same user that is running the httpd process. > > Permissions for /drupal are drwxr-xr-x > Permissions for index.php are: -rw-r--r-- > > I can access other .html files in /var/www. Verified that I can access > a test html page. Also, I have verified that I can access a .php test > page. > > Genevive: > Thanks, I have cerified that the permissions are as specified in your > email. > > Best, > Tim From mail at jaipandya.com Sun Nov 23 06:49:16 2008 From: mail at jaipandya.com (Jai) Date: Sun, 23 Nov 2008 12:19:16 +0530 Subject: [support] College Website Migrating to Drupal Message-ID: <1456fc8b0811222249i226dfb74sae0ee48ae98e05e0@mail.gmail.com> Hi, I am in process of transforming my college's website from old dead static page site to drupal powered website. These are the features I am thinking to implement. 1. Each student of the college could have his own homepage on college's domain. As if http://collegedomain/studentpages/studentname. The student should have control on that page only. Under his homepage tree, he should be able to create hierarchy of content. i.e. child nodes under his home page. 2. Lecturers and other staff of the college should also have their home page under the their department's category where they could upload their Resume etc. Now while showing a listing of computer science faculty members, that list could be fetched dynamically from the content provided by them on their pages. 3. In the same way, each society of the college should have their home page. It will be having same capabilities as user pages. e.g. their home pages and ability to create other nodes as child of the home page. 4. There should be a group page for each society. Only the members of that society ( e.g. members of the tech club in our college) should be able to subscribe to that group. They could discuss their issues on the group forum. 5. I would like to fetch content dynamically from pages named Latest News and Upcoming Events to two different blocks on the front page. The block which is containing latest news will have 5 news stories, then each news story title should feature a small image along with it. 6. Different permissions will be defined for students, lecturers, community, library admin and management accounts. I would like to know about the modules needed for these tasks or other resources which will be helpful here. Right now, I am experimenting with CCK and Views and they look to be quite important for implementation of some of the tasks. Thanks, -Jai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081123/443ff720/attachment.htm From shyamala at netlinkindia.com Sun Nov 23 12:14:33 2008 From: shyamala at netlinkindia.com (Shyamala Rajaram) Date: Sun, 23 Nov 2008 17:44:33 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <1456fc8b0811222249i226dfb74sae0ee48ae98e05e0@mail.gmail.com> Message-ID: <20081123121347.AC884D9FD4@silver.osuosl.org> Hi, The below modules should help. Organic Groups: http://drupal.org/project/og Enable users to create and manage their own 'groups'. Each group can have subscribers, and maintains a group home page where subscribers communicate amongst themselves. They do so by posting the usual node types: blog, story, page, etc. A block is shown on the group home page which facilitates these posts. The block also provides summary information about the group. Groups may be selective or not. Selective groups require approval in order to become a member, or even invitation -only groups. There are lots of preferences to configure groups as you need. Groups get their own theme, language, taxonomy, and so on. Integrates well and depends upon Views module Views: http://drupal.org/project/views This tool is essentially a smart query builder that, given enough information, can build the proper query, execute it, and display the results. It has four modes, plus a special mode, and provides an impressive amount of functionality from these modes. and CCK: http://drupal.org/project/cck CCK, will help us create custom node types. Shyamala Netlink Technologies Limited http://shyamala-drupal.blogspot.com/ _____ From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Jai Sent: Sunday, November 23, 2008 12:19 PM To: support at drupal.org Subject: [support] College Website Migrating to Drupal Hi, I am in process of transforming my college's website from old dead static page site to drupal powered website. These are the features I am thinking to implement. 1. Each student of the college could have his own homepage on college's domain. As if http://collegedomain/studentpages/studentname. The student should have control on that page only. Under his homepage tree, he should be able to create hierarchy of content. i.e. child nodes under his home page. 2. Lecturers and other staff of the college should also have their home page under the their department's category where they could upload their Resume etc. Now while showing a listing of computer science faculty members, that list could be fetched dynamically from the content provided by them on their pages. 3. In the same way, each society of the college should have their home page. It will be having same capabilities as user pages. e.g. their home pages and ability to create other nodes as child of the home page. 4. There should be a group page for each society. Only the members of that society ( e.g. members of the tech club in our college) should be able to subscribe to that group. They could discuss their issues on the group forum. 5. I would like to fetch content dynamically from pages named Latest News and Upcoming Events to two different blocks on the front page. The block which is containing latest news will have 5 news stories, then each news story title should feature a small image along with it. 6. Different permissions will be defined for students, lecturers, community, library admin and management accounts. I would like to know about the modules needed for these tasks or other resources which will be helpful here. Right now, I am experimenting with CCK and Views and they look to be quite important for implementation of some of the tasks. Thanks, -Jai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081123/172f0a1b/attachment-0001.htm From mail at jaipandya.com Sun Nov 23 13:17:15 2008 From: mail at jaipandya.com (Jai) Date: Sun, 23 Nov 2008 18:47:15 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <20081123121347.AC884D9FD4@silver.osuosl.org> References: <1456fc8b0811222249i226dfb74sae0ee48ae98e05e0@mail.gmail.com> <20081123121347.AC884D9FD4@silver.osuosl.org> Message-ID: <1456fc8b0811230517p57a7851bx6fb3c058651cd4c2@mail.gmail.com> Thanks Shyamala... Right now I am giving time to the learning curve required by the Views module. Views and CCK look like essential for any web portal with Drupal. According to the knowledge I have, I can figure out that I can easily fetch 5 top stories from the news and events content types. Organic Groups module looks awesome from managing groups along with permissions. Now what I am really looking here is a kind of module that helps me in creation of hierarchical content for each user. e.g. a user creates four content nodes, then each node could have 3 child nodes each. That node could be of any type. Say Video, Gallery Pages, Class Notes, Resume etc. Permissions over each such content created by user is very important. As for example a student should not be able to edit the content created by other student or a society-head of the college. Also I am looking for a way there so that I could list each user's space with a URL like "http://collegedomain/studentpages/studentname". -Jai 2008/11/23 Shyamala Rajaram > Hi, > > The below modules should help. > > Organic Groups: *http://drupal.org/project/og* > > *Enable users to create and manage their own 'groups'. Each group can have > subscribers, and maintains a group home page where subscribers communicate > amongst themselves. They do so by posting the usual node types: blog, story, > page, etc. A block is shown on the group home page which facilitates these > posts. The block also provides summary information about the group.* > > *Groups may be selective or not. Selective groups require approval in > order to become a member, or even invitation -only groups. There are lots of > preferences to configure groups as you need.* > > *Groups get their own theme, language, taxonomy, and so on. Integrates > well and depends upon Views module* > > Views: *http://drupal.org/project/views* > > *This tool is essentially a smart query builder that, given enough > information, can build the proper query, execute it, and display the > results. It has four modes, plus a special mode, and provides an impressive > amount of functionality from these modes.* > > and CCK: http://drupal.org/project/cck > > *CCK, will help us create custom node types.* > > Shyamala > > Netlink Technologies Limited > > http://shyamala-drupal.blogspot.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081123/6b26886c/attachment.htm From forums at ipwa.net Sun Nov 23 13:29:16 2008 From: forums at ipwa.net (Nicolas Borda) Date: Sun, 23 Nov 2008 13:29:16 +0000 Subject: [support] College Website Migrating to Drupal In-Reply-To: <1456fc8b0811230517p57a7851bx6fb3c058651cd4c2@mail.gmail.com> References: <1456fc8b0811222249i226dfb74sae0ee48ae98e05e0@mail.gmail.com> <20081123121347.AC884D9FD4@silver.osuosl.org> <1456fc8b0811230517p57a7851bx6fb3c058651cd4c2@mail.gmail.com> Message-ID: <686148DC-584A-4CB6-A6CF-3E9D57EF1BDD@ipwa.net> On 23 Nov 2008, at 13:17, Jai wrote: > Also I am looking for a way there so that I could list each user's > space with a URL like "http://collegedomain/studentpages/studentname". I would use pathauto for that: http://drupal.org/project/pathauto Another module that might help you out is: http://drupal.org/project/me -- Nicolas Borda http://nic.ipwa.net/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081123/8fde360f/attachment.htm From shai at content2zero.com Sun Nov 23 14:31:51 2008 From: shai at content2zero.com (Shai Gluskin) Date: Sun, 23 Nov 2008 09:31:51 -0500 Subject: [support] College Website Migrating to Drupal In-Reply-To: <686148DC-584A-4CB6-A6CF-3E9D57EF1BDD@ipwa.net> References: <1456fc8b0811222249i226dfb74sae0ee48ae98e05e0@mail.gmail.com> <20081123121347.AC884D9FD4@silver.osuosl.org> <1456fc8b0811230517p57a7851bx6fb3c058651cd4c2@mail.gmail.com> <686148DC-584A-4CB6-A6CF-3E9D57EF1BDD@ipwa.net> Message-ID: <9f68efb70811230631l52c0e809u3aa8a190b5ffee2e@mail.gmail.com> Jai, Good luck -- you are getting great advice here. If taken on quite a big/complex project, especially if you don't have a lot of Drupal experience. Given how complex the project is, I'd recommend developing a plan for functionality roll-out in such a way that you you can launch without the use of Organic Groups. I'm not criticizing OG. Bu it adds significant complexity to the site -- demanding signfificant learning curve for admins and users alike. It would be better, in my opinion, if both you and your users could have more experience with the new site before adding OG. Maybe it is an absolute requirement --- but if not, I think you'll have better luck (and more fun!) adding complexity over time instead of up front. best, Shai Content2zero On Sun, Nov 23, 2008 at 8:29 AM, Nicolas Borda wrote: > > On 23 Nov 2008, at 13:17, Jai wrote: > > Also I am looking for a way there so that I could list each user's space > with a URL like "http://collegedomain/studentpages/studentname". > > > I would use pathauto for that: http://drupal.org/project/pathauto > > Another module that might help you out is: > http://drupal.org/project/me > > -- > > Nicolas Borda > > http://nic.ipwa.net/ > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081123/8a5e58ef/attachment.htm From shyamala at netlinkindia.com Sun Nov 23 16:16:22 2008 From: shyamala at netlinkindia.com (Shyamala Rajaram) Date: Sun, 23 Nov 2008 21:46:22 +0530 Subject: [support] [SPAM] Re: College Website Migrating to Drupal In-Reply-To: <1456fc8b0811230517p57a7851bx6fb3c058651cd4c2@mail.gmail.com> Message-ID: <20081123161535.CFA0010991E@whitealder.osuosl.org> Try the node reference module for hierarchical content. Giving user s permissions to edit own content could be configured through access control. Shyamala _____ From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Jai Sent: Sunday, November 23, 2008 6:47 PM To: support at drupal.org Subject: [SPAM] Re: [support] College Website Migrating to Drupal Thanks Shyamala... Right now I am giving time to the learning curve required by the Views module. Views and CCK look like essential for any web portal with Drupal. According to the knowledge I have, I can figure out that I can easily fetch 5 top stories from the news and events content types. Organic Groups module looks awesome from managing groups along with permissions. Now what I am really looking here is a kind of module that helps me in creation of hierarchical content for each user. e.g. a user creates four content nodes, then each node could have 3 child nodes each. That node could be of any type. Say Video, Gallery Pages, Class Notes, Resume etc. Permissions over each such content created by user is very important. As for example a student should not be able to edit the content created by other student or a society-head of the college. Also I am looking for a way there so that I could list each user's space with a URL like "http://collegedomain/studentpages/studentname". -Jai 2008/11/23 Shyamala Rajaram Hi, The below modules should help. Organic Groups: http://drupal.org/project/og Enable users to create and manage their own 'groups'. Each group can have subscribers, and maintains a group home page where subscribers communicate amongst themselves. They do so by posting the usual node types: blog, story, page, etc. A block is shown on the group home page which facilitates these posts. The block also provides summary information about the group. Groups may be selective or not. Selective groups require approval in order to become a member, or even invitation -only groups. There are lots of preferences to configure groups as you need. Groups get their own theme, language, taxonomy, and so on. Integrates well and depends upon Views module Views: http://drupal.org/project/views This tool is essentially a smart query builder that, given enough information, can build the proper query, execute it, and display the results. It has four modes, plus a special mode, and provides an impressive amount of functionality from these modes. and CCK: http://drupal.org/project/cck CCK, will help us create custom node types. Shyamala Netlink Technologies Limited http://shyamala-drupal.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081123/7092daad/attachment-0001.htm From cjones at partialflow.com Mon Nov 24 14:38:07 2008 From: cjones at partialflow.com (Christopher M. Jones) Date: Mon, 24 Nov 2008 09:38:07 -0500 Subject: [support] theme more link in view panel Message-ID: <492ABC4F.9020003@partialflow.com> I've got a panel node displaying a view. In the panel content configuration I set the option to display a "more" link to the view. I need to theme this link so that I says something other than "more", but I'm not sure which theme override function, if any, I should use. Is this link generated by views? So I should be able to theme the views "more" link? Or is it generated by panels, and I should looking for a panels theme override? This is somewhat urgent, so all help is appreciated. From johnny.xiao at Q1Labs.com Mon Nov 24 18:38:51 2008 From: johnny.xiao at Q1Labs.com (Johnny Xiao) Date: Mon, 24 Nov 2008 14:38:51 -0400 Subject: [support] comment_upload module is not working under drupal 6.x In-Reply-To: <005401c94b29$6c80ea20$4582be60$@co.uk> References: <006101c94563$e0288300$06000a0a@csa><20081114083540.d5ptamf8byo8g840@mail.progw.org> <1C1A072023EE4E098C2303AF831D6AB0@Neil> <4922201D.80806@opensourcery.com> <4922F2B1.2080303@opensourcery.com> <005401c94b29$6c80ea20$4582be60$@co.uk> Message-ID: I enabled module and configured permission, I still don't see ability of upload attachment when I post comments. there is not link on Navigation panel indicating comment upload, and I get page not found error when I manually typeed "comment_upload/js" in url. Can anyone give me hints? Many thanks From mail at jaipandya.com Mon Nov 24 18:05:19 2008 From: mail at jaipandya.com (Jai) Date: Mon, 24 Nov 2008 23:35:19 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <9f68efb70811230631l52c0e809u3aa8a190b5ffee2e@mail.gmail.com> References: <1456fc8b0811222249i226dfb74sae0ee48ae98e05e0@mail.gmail.com> <20081123121347.AC884D9FD4@silver.osuosl.org> <1456fc8b0811230517p57a7851bx6fb3c058651cd4c2@mail.gmail.com> <686148DC-584A-4CB6-A6CF-3E9D57EF1BDD@ipwa.net> <9f68efb70811230631l52c0e809u3aa8a190b5ffee2e@mail.gmail.com> Message-ID: <1456fc8b0811241005n38907e94yc224db6ae97208de@mail.gmail.com> Thanks Shai, I'm taking your suggestion seriously and firstly giving time to the basic structure. I am using Druapl 6 here. The most difficult task I am finding here is selecting some module of your use out of the great pool of them. I visited some case studies provided by some college/universities for their drupal implementation and found them quite inspiring. I liked the idea of distributions in drupal, as the great variety of modules available can lead the extensibility of drupal to any point. I was wondering, if some work has been done for education distribution also? -Jai 2008/11/23 Shai Gluskin > Jai, > > Good luck -- you are getting great advice here. If taken on quite a > big/complex project, especially if you don't have a lot of Drupal > experience. > > Given how complex the project is, I'd recommend developing a plan for > functionality roll-out in such a way that you you can launch without the use > of Organic Groups. I'm not criticizing OG. Bu it adds significant complexity > to the site -- demanding signfificant learning curve for admins and users > alike. > > It would be better, in my opinion, if both you and your users could have > more experience with the new site before adding OG. Maybe it is an absolute > requirement --- but if not, I think you'll have better luck (and more fun!) > adding complexity over time instead of up front. > > best, > > Shai > Content2zero -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081124/8e7cf583/attachment.htm From bill at funnymonkey.com Mon Nov 24 19:27:02 2008 From: bill at funnymonkey.com (Bill Fitzgerald) Date: Mon, 24 Nov 2008 11:27:02 -0800 Subject: [support] College Website Migrating to Drupal In-Reply-To: <1456fc8b0811241005n38907e94yc224db6ae97208de@mail.gmail.com> References: <1456fc8b0811222249i226dfb74sae0ee48ae98e05e0@mail.gmail.com> <20081123121347.AC884D9FD4@silver.osuosl.org> <1456fc8b0811230517p57a7851bx6fb3c058651cd4c2@mail.gmail.com> <686148DC-584A-4CB6-A6CF-3E9D57EF1BDD@ipwa.net> <9f68efb70811230631l52c0e809u3aa8a190b5ffee2e@mail.gmail.com> <1456fc8b0811241005n38907e94yc224db6ae97208de@mail.gmail.com> Message-ID: <492B0006.5050909@funnymonkey.com> Hello, Jai, Have you joined the Drupal in Education group over at g.d.o? http://groups.drupal.org/drupal-education -- lot's of good folks there working on similar issues. Also, we put out a distribution geared toward maintaining a social learning space, but it is in need of an overhaul (both to update it to D6 and to radically rework the functionality). This will be happening over the next few months, but in any case it's more for a class/collaborative space than a public-facing web site. // Shameless plug alert! I also wrote a book on using Drupal in Education designed for people new to Drupal. It's coming out on November 28th, and goes over some module selection, and also using CCK, Views, and Organic Groups (among other things). For more info on the book, see http://www.packtpub.com/drupal-for-education-and-e-learning/book -- from this page you can also get to the table of contents for more specifics. // end shameless plug Cheers, Bill Jai wrote: > Thanks Shai, > > I'm taking your suggestion seriously and firstly giving time to the basic > structure. I am using Druapl 6 here. The most difficult task I am finding > here is selecting some module of your use out of the great pool of them. I > visited some case studies provided by some college/universities for their > drupal implementation and found them quite inspiring. > > I liked the idea of distributions in drupal, as the great variety of modules > available can lead the extensibility of drupal to any point. I was > wondering, if some work has been done for education distribution also? > > -Jai > > 2008/11/23 Shai Gluskin > > >> Jai, >> >> Good luck -- you are getting great advice here. If taken on quite a >> big/complex project, especially if you don't have a lot of Drupal >> experience. >> >> Given how complex the project is, I'd recommend developing a plan for >> functionality roll-out in such a way that you you can launch without the use >> of Organic Groups. I'm not criticizing OG. Bu it adds significant complexity >> to the site -- demanding signfificant learning curve for admins and users >> alike. >> >> It would be better, in my opinion, if both you and your users could have >> more experience with the new site before adding OG. Maybe it is an absolute >> requirement --- but if not, I think you'll have better luck (and more fun!) >> adding complexity over time instead of up front. >> >> best, >> >> Shai >> Content2zero >> > > -- Bill Fitzgerald http://funnymonkey.com FunnyMonkey -- Tools for Teachers ph. 503 897 7160 From jhedstrom at opensourcery.com Tue Nov 25 00:37:04 2008 From: jhedstrom at opensourcery.com (Jonathan Hedstrom) Date: Mon, 24 Nov 2008 16:37:04 -0800 Subject: [support] theme more link in view panel In-Reply-To: <492ABC4F.9020003@partialflow.com> References: <492ABC4F.9020003@partialflow.com> Message-ID: <492B48B0.6060807@opensourcery.com> Christopher M. Jones wrote: > I've got a panel node displaying a view. In the panel content > configuration I set the option to display a "more" link to the view. I > need to theme this link so that I says something other than "more", but > I'm not sure which theme override function, if any, I should use. Is > this link generated by views? So I should be able to theme the views > "more" link? Or is it generated by panels, and I should looking for a > panels theme override? > > This is somewhat urgent, so all help is appreciated. > You should be able to create a file in your theme directory called "views-more.tpl.php". See the file {views directory}/theme/views-more.tpl.php for guidance on what variables are available. If you're using D6, you'll have to clear your cache after adding the template file to your theme directory. Cheers, Jonathan -- Jonathan Hedstrom OpenSourcery http://opensourcery.com Technology for Good -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature Url : http://lists.drupal.org/pipermail/support/attachments/20081124/aa076595/attachment.pgp From shyamala at netlinkindia.com Tue Nov 25 04:06:41 2008 From: shyamala at netlinkindia.com (Shyamala Rajaram) Date: Tue, 25 Nov 2008 09:36:41 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <492B0006.5050909@funnymonkey.com> Message-ID: <20081125040554.860C0A6371@hemlock.osuosl.org> I love this article: http://www.funnymonkey.com/drupaled-latest Yes, DrupalEd is a neat collection of modules for education, preconfigured with certain roles and predefined CCKs. Do let me know if you need any support, we are working on similar solutions. My feeling is with the current level of support available in Drupal, having the site up is a breeze, Theming will be the tough part, go in for some exiting theme with minimal modification. Are you from Chennai? We can then meet up at one of the Drupal meets. Shyamala -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Bill Fitzgerald Sent: Tuesday, November 25, 2008 12:57 AM To: support at drupal.org Subject: Re: [support] College Website Migrating to Drupal Hello, Jai, Have you joined the Drupal in Education group over at g.d.o? http://groups.drupal.org/drupal-education -- lot's of good folks there working on similar issues. Also, we put out a distribution geared toward maintaining a social learning space, but it is in need of an overhaul (both to update it to D6 and to radically rework the functionality). This will be happening over the next few months, but in any case it's more for a class/collaborative space than a public-facing web site. // Shameless plug alert! I also wrote a book on using Drupal in Education designed for people new to Drupal. It's coming out on November 28th, and goes over some module selection, and also using CCK, Views, and Organic Groups (among other things). For more info on the book, see http://www.packtpub.com/drupal-for-education-and-e-learning/book -- from this page you can also get to the table of contents for more specifics. // end shameless plug Cheers, Bill Jai wrote: > Thanks Shai, > > I'm taking your suggestion seriously and firstly giving time to the basic > structure. I am using Druapl 6 here. The most difficult task I am finding > here is selecting some module of your use out of the great pool of them. I > visited some case studies provided by some college/universities for their > drupal implementation and found them quite inspiring. > > I liked the idea of distributions in drupal, as the great variety of modules > available can lead the extensibility of drupal to any point. I was > wondering, if some work has been done for education distribution also? > > -Jai > > 2008/11/23 Shai Gluskin > > >> Jai, >> >> Good luck -- you are getting great advice here. If taken on quite a >> big/complex project, especially if you don't have a lot of Drupal >> experience. >> >> Given how complex the project is, I'd recommend developing a plan for >> functionality roll-out in such a way that you you can launch without the use >> of Organic Groups. I'm not criticizing OG. Bu it adds significant complexity >> to the site -- demanding signfificant learning curve for admins and users >> alike. >> >> It would be better, in my opinion, if both you and your users could have >> more experience with the new site before adding OG. Maybe it is an absolute >> requirement --- but if not, I think you'll have better luck (and more fun!) >> adding complexity over time instead of up front. >> >> best, >> >> Shai >> Content2zero >> > > -- Bill Fitzgerald http://funnymonkey.com FunnyMonkey -- Tools for Teachers ph. 503 897 7160 -- [ Drupal support list | http://lists.drupal.org/ ] From shyamala at netlinkindia.com Tue Nov 25 05:15:35 2008 From: shyamala at netlinkindia.com (Shyamala Rajaram) Date: Tue, 25 Nov 2008 10:45:35 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <20081125040554.860C0A6371@hemlock.osuosl.org> Message-ID: <20081125051448.E05D6A6361@hemlock.osuosl.org> Hi Jai, Just listed all the modules and must read articles in my blog. Checkout: http://shyamala-drupal.blogspot.com/ Shyamala -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Shyamala Rajaram Sent: Tuesday, November 25, 2008 9:37 AM To: support at drupal.org Subject: Re: [support] College Website Migrating to Drupal I love this article: http://www.funnymonkey.com/drupaled-latest Yes, DrupalEd is a neat collection of modules for education, preconfigured with certain roles and predefined CCKs. Do let me know if you need any support, we are working on similar solutions. My feeling is with the current level of support available in Drupal, having the site up is a breeze, Theming will be the tough part, go in for some exiting theme with minimal modification. Are you from Chennai? We can then meet up at one of the Drupal meets. Shyamala -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Bill Fitzgerald Sent: Tuesday, November 25, 2008 12:57 AM To: support at drupal.org Subject: Re: [support] College Website Migrating to Drupal Hello, Jai, Have you joined the Drupal in Education group over at g.d.o? http://groups.drupal.org/drupal-education -- lot's of good folks there working on similar issues. Also, we put out a distribution geared toward maintaining a social learning space, but it is in need of an overhaul (both to update it to D6 and to radically rework the functionality). This will be happening over the next few months, but in any case it's more for a class/collaborative space than a public-facing web site. // Shameless plug alert! I also wrote a book on using Drupal in Education designed for people new to Drupal. It's coming out on November 28th, and goes over some module selection, and also using CCK, Views, and Organic Groups (among other things). For more info on the book, see http://www.packtpub.com/drupal-for-education-and-e-learning/book -- from this page you can also get to the table of contents for more specifics. // end shameless plug Cheers, Bill Jai wrote: > Thanks Shai, > > I'm taking your suggestion seriously and firstly giving time to the basic > structure. I am using Druapl 6 here. The most difficult task I am finding > here is selecting some module of your use out of the great pool of them. I > visited some case studies provided by some college/universities for their > drupal implementation and found them quite inspiring. > > I liked the idea of distributions in drupal, as the great variety of modules > available can lead the extensibility of drupal to any point. I was > wondering, if some work has been done for education distribution also? > > -Jai > > 2008/11/23 Shai Gluskin > > >> Jai, >> >> Good luck -- you are getting great advice here. If taken on quite a >> big/complex project, especially if you don't have a lot of Drupal >> experience. >> >> Given how complex the project is, I'd recommend developing a plan for >> functionality roll-out in such a way that you you can launch without the use >> of Organic Groups. I'm not criticizing OG. Bu it adds significant complexity >> to the site -- demanding signfificant learning curve for admins and users >> alike. >> >> It would be better, in my opinion, if both you and your users could have >> more experience with the new site before adding OG. Maybe it is an absolute >> requirement --- but if not, I think you'll have better luck (and more fun!) >> adding complexity over time instead of up front. >> >> best, >> >> Shai >> Content2zero >> > > -- Bill Fitzgerald http://funnymonkey.com FunnyMonkey -- Tools for Teachers ph. 503 897 7160 -- [ Drupal support list | http://lists.drupal.org/ ] -- [ Drupal support list | http://lists.drupal.org/ ] From michel at ziobudda.net Tue Nov 25 10:26:01 2008 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Tue, 25 Nov 2008 11:26:01 +0100 Subject: [support] [D6] Permission on view an type of content Message-ID: <492BD2B9.1070900@ziobudda.net> Hi all. In the user's permission page there is the possibility to set the permission for create, edit and delete an content type. But how can I set the permission to see it ? Only one of user's rule can see one of my content type. How can I do this ? Tnx. -- Michel 'ZioBudda' Morelli michel at ziobudda.net Consulenza sistemistica in ambito OpenSource. Sviluppo applicazioni web dinamiche (LAMP+Ajax) Telefono: 0200619074 Telefono Cell: +39-3939890025 -- Fax: +39-0291390660 http://www.ziobudda.net ICQ: 58351764 http://www.ziobuddalabs.it Skype: zio_budda http://www.ziodrupal.net MSN: michel at ziobuddalabs.it JABBER: michel at ziobuddalabs.it From das74 at wbic.cam.ac.uk Tue Nov 25 12:30:03 2008 From: das74 at wbic.cam.ac.uk (David Sharpe) Date: Tue, 25 Nov 2008 12:30:03 +0000 Subject: [support] Newbie: Creating & managing lists Message-ID: <492BEFCB.3040804@wbic.cam.ac.uk> Dear Drupalers, I am looking for a suitable way to manage, filter & present a table of data (a list manager of some kind?). Can anyone recommend a module to give me this? Thanks, Dave From simone.dalmaso at juvox.it Tue Nov 25 13:21:20 2008 From: simone.dalmaso at juvox.it (Simone Dal Maso) Date: Tue, 25 Nov 2008 14:21:20 +0100 Subject: [support] Newbie: Creating & managing lists References: <492BEFCB.3040804@wbic.cam.ac.uk> Message-ID: <005b01c94f00$b5a73bc0$06000a0a@csa> I think you must install 2 modules: cck. views. With cck you can create and arrange your data, with views you can filter and show them whatever you want. Bye. ----- Original Message ----- From: "David Sharpe" To: Sent: Tuesday, November 25, 2008 1:30 PM Subject: [support] Newbie: Creating & managing lists > Dear Drupalers, > > I am looking for a suitable way to manage, filter & present a table of > data (a list manager of some kind?). Can anyone recommend a module to > give me this? > > Thanks, > Dave > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From shai at content2zero.com Tue Nov 25 13:52:09 2008 From: shai at content2zero.com (Shai Gluskin) Date: Tue, 25 Nov 2008 08:52:09 -0500 Subject: [support] Newbie: Creating & managing lists In-Reply-To: <005b01c94f00$b5a73bc0$06000a0a@csa> References: <492BEFCB.3040804@wbic.cam.ac.uk> <005b01c94f00$b5a73bc0$06000a0a@csa> Message-ID: <9f68efb70811250552t212a00d1h6de922554602e8fe@mail.gmail.com> David, After you get settled with the basics of Views and CCK, it's possible you'll also need the Views Bulk Operations module, which adds huge functionality for operating on multiple records at the same time. http://drupal.org/project/views_bulk_operations But if you are new to all this, definitely get settled with Views and CCK before adding Views Bulk Operations. best, Shai On Tue, Nov 25, 2008 at 8:21 AM, Simone Dal Maso wrote: > > I think you must install 2 modules: > cck. > views. > With cck you can create and arrange your data, with views you can filter and show them whatever you want. > Bye. > > ----- Original Message ----- > From: "David Sharpe" > To: > Sent: Tuesday, November 25, 2008 1:30 PM > Subject: [support] Newbie: Creating & managing lists > > > > Dear Drupalers, > > > > I am looking for a suitable way to manage, filter & present a table of > > data (a list manager of some kind?). Can anyone recommend a module to > > give me this? > > > > Thanks, > > Dave > > > > > > > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > > -- > [ Drupal support list | http://lists.drupal.org/ ] From das74 at wbic.cam.ac.uk Tue Nov 25 14:01:57 2008 From: das74 at wbic.cam.ac.uk (David Sharpe) Date: Tue, 25 Nov 2008 14:01:57 +0000 Subject: [support] Newbie: Creating & managing lists In-Reply-To: <9f68efb70811250552t212a00d1h6de922554602e8fe@mail.gmail.com> References: <492BEFCB.3040804@wbic.cam.ac.uk> <005b01c94f00$b5a73bc0$06000a0a@csa> <9f68efb70811250552t212a00d1h6de922554602e8fe@mail.gmail.com> Message-ID: <492C0555.5000708@wbic.cam.ac.uk> Thanks for the advice, Views & CCK installed - seems to do all I need and more. Shai Gluskin wrote: > David, > > After you get settled with the basics of Views and CCK, it's possible > you'll also need the Views Bulk Operations module, which adds huge > functionality for operating on multiple records at the same time. > > http://drupal.org/project/views_bulk_operations > > But if you are new to all this, definitely get settled with Views and > CCK before adding Views Bulk Operations. > > best, > > Shai > > On Tue, Nov 25, 2008 at 8:21 AM, Simone Dal Maso > wrote: > >> I think you must install 2 modules: >> cck. >> views. >> With cck you can create and arrange your data, with views you can filter and show them whatever you want. >> Bye. >> >> ----- Original Message ----- >> From: "David Sharpe" >> To: >> Sent: Tuesday, November 25, 2008 1:30 PM >> Subject: [support] Newbie: Creating & managing lists >> >> >> >>> Dear Drupalers, >>> >>> I am looking for a suitable way to manage, filter & present a table of >>> data (a list manager of some kind?). Can anyone recommend a module to >>> give me this? >>> >>> Thanks, >>> Dave >>> >>> >>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >>> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> -- David Sharpe Assistant Network Manager Acting Telephone Liaison Officer Wolfson Brain Imaging Centre ================================================================ Wolfson Brain Imaging Centre | Tel: (direct) 01223 762128 University of Cambridge | Tel: (reception) 01223 331823 Box 65, Addenbrooke's Hospital | Fax: 01223 331826 Hills Road, Cambridge, CB2 0QQ | Email:david.sharpe at wbic.cam.ac.uk http://www.wbic.cam.ac.uk | ================================================================ From amont at 5net.hu Tue Nov 25 14:18:22 2008 From: amont at 5net.hu (=?ISO-8859-2?Q?=C1mon_Tam=E1s?=) Date: Tue, 25 Nov 2008 15:18:22 +0100 Subject: [support] Problem with Content Taxonomy Fields In-Reply-To: <4926AA4B.4050900@5net.hu> References: <4926AA4B.4050900@5net.hu> Message-ID: <492C092E.30902@5net.hu> ?mon Tam?s ?rta: > Hello, > > I have the following problem width Content Taxonomy Field cck module. I > added this - with autocomplet - to a content type, but when I give some > words to the node, after I can not see this in the taxonomy page > (/taxonomy/term/tid). > > What I made wrong? I forget to check a checkbox :) ?mon Tam?s Sitefejleszt? ?s programoz? -- 5NET Informatikai Kft. 1062 Budapest, Aradi utca 38. A 3/11 telefon: (1) 461-0205 | fax: (1) 461-0206 e-mail: amont at 5net.hu | web: http://www.5net.hu From bharanikumariyerphp at gmail.com Tue Nov 25 17:16:53 2008 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Tue, 25 Nov 2008 22:46:53 +0530 Subject: [support] Set global variable OFF Message-ID: <2240033d0811250916g7531e6fcy11db22b4832b2db8@mail.gmail.com> Hi How to set the global variable OFF in setting.php What tried is below ini_set("register_globals",0) also tried like this ini_set('register_global',FALSE), But no good result,output is fail, Any clue -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081125/8115c589/attachment.htm From marc at cultmovieforums.com Tue Nov 25 19:13:14 2008 From: marc at cultmovieforums.com (Marc Morris) Date: Tue, 25 Nov 2008 19:13:14 +0000 Subject: [support] Removing headers from blocks? Message-ID: I've tried typing "" in block title but it's not removing the headers. Any other suggestions? I'm on Drupal 5. Marc Morris Cult Movie Forums http://www.cultmovieforums.com/ From forums at ipwa.net Tue Nov 25 19:25:06 2008 From: forums at ipwa.net (Nicolas Borda) Date: Tue, 25 Nov 2008 19:25:06 +0000 Subject: [support] Removing headers from blocks? In-Reply-To: References: Message-ID: On 25 Nov 2008, at 19:13, Marc Morris wrote: > > I've tried typing "" in block title but it's not removing the > headers. > > Any other suggestions? > > I'm on Drupal 5. Is it a block created by a module? A quick temporary fix would be CSS, something like .block h2 {display:none} or .block h2 {text-indent: -9999px} HTH -- Nicolas Borda http://nic.ipwa.net/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081125/e11129c1/attachment-0001.htm From marc at cultmovieforums.com Tue Nov 25 19:28:32 2008 From: marc at cultmovieforums.com (Marc Morris) Date: Tue, 25 Nov 2008 19:28:32 +0000 Subject: [support] Removing headers from blocks? In-Reply-To: References: Message-ID: <0D4A1EAB-FAEC-420B-801E-A4A6C92FA999@cultmovieforums.com> Thansk for the feedback. The blocks are the standard drupal blocks - I'm not sure if a module is involved. How would I apply css to all the blocks? On 25 Nov 2008, at 19:25, Nicolas Borda wrote: > > On 25 Nov 2008, at 19:13, Marc Morris wrote: > >> >> I've tried typing "" in block title but it's not removing the >> headers. >> >> Any other suggestions? >> >> I'm on Drupal 5. > > Is it a block created by a module? A quick temporary fix would be CSS, > something like .block h2 {display:none} or .block h2 {text-indent: > -9999px} > > HTH > > -- > > Nicolas Borda > http://nic.ipwa.net/ > > > -- > [ Drupal support list | http://lists.drupal.org/ ] Marc Morris Cult Movie Forums http://www.cultmovieforums.com/ From earnie at users.sourceforge.net Tue Nov 25 20:52:10 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Tue, 25 Nov 2008 15:52:10 -0500 Subject: [support] Removing headers from blocks? In-Reply-To: References: Message-ID: <20081125155210.3vr12o1nwcg04gog@mail.progw.org> Quoting Marc Morris : > > I've tried typing "" in block title but it's not removing the > headers. > > Any other suggestions? > > I'm on Drupal 5. > IIRC you need to empty the cache tables. -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From earnie at users.sourceforge.net Tue Nov 25 20:57:35 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Tue, 25 Nov 2008 15:57:35 -0500 Subject: [support] Set global variable OFF In-Reply-To: <2240033d0811250916g7531e6fcy11db22b4832b2db8@mail.gmail.com> References: <2240033d0811250916g7531e6fcy11db22b4832b2db8@mail.gmail.com> Message-ID: <20081125155735.ui1jks5d68z9csgc@mail.progw.org> Quoting bharani kumar : > Hi > > How to set the global variable OFF in setting.php > > What tried is below > > ini_set("register_globals",0) > > also tried like this ini_set('register_global',FALSE), > > But no good result,output is fail, > > Any clue > http://php.net/manual/en/ini.core.php#ini.register-globals -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From mail at jaipandya.com Tue Nov 25 22:52:41 2008 From: mail at jaipandya.com (Jai) Date: Wed, 26 Nov 2008 04:22:41 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <20081125051448.E05D6A6361@hemlock.osuosl.org> References: <20081125040554.860C0A6371@hemlock.osuosl.org> <20081125051448.E05D6A6361@hemlock.osuosl.org> Message-ID: <1456fc8b0811251452h72a6ed11haac669b22e7ebf2b@mail.gmail.com> Bill, Thanks for the link to drupal-education group. Now, I am also a member of it. I found it very informative and some of the group posts instantly solved my confusions. Also, here I am more concerned about a public facing website using drupal with the facilities I listed in my first mail. For the collaborative/learning environment I find moodle to be a good out-of-the-box solution. I was searching for the ways so that moodle and drupal could be integrated in some way. Shyamala, I visited your blog page, a very useful post over there. Well, I am not from Chennai, but still keeping in touch with local drupal communities could be a great idea. Just to mention on the theming part, I am thinking about keeping Zen or something else as my base theme or modifying it according to my needs. I just gone through the theming guide for drupal 6 (though I got confused at some points, but still it gave me an initial pace to build up a theme! What else did I want... :) ) -Jai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081126/bd798071/attachment.htm From hershelsr at gmail.com Wed Nov 26 06:00:46 2008 From: hershelsr at gmail.com (Hershel Robinson) Date: Wed, 26 Nov 2008 08:00:46 +0200 Subject: [support] Cache Broken Drupal 5.12 Site In-Reply-To: <492C5698.6060707@galleryrobinson.com> References: <492C5698.6060707@galleryrobinson.com> Message-ID: <492CE60E.4040709@gmail.com> I posted on d.o here: http://drupal.org/node/338952 about a serious problem that has come up on a Drupal 5.12 site which I work on. No has yet had any response to my post there, so I wanted to ask here also. I will not repeat the text of my post, as it's not short. If anyone could take a look at that post and share any thoughts, whether here or there, I would appreciate it. Thank you, Hershel -- Gallery Robinson Web Development Specialists http://galleryrobinson.com/ From sivaji2009 at gmail.com Wed Nov 26 09:45:05 2008 From: sivaji2009 at gmail.com (sivaji j.g) Date: Wed, 26 Nov 2008 15:15:05 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <1456fc8b0811251452h72a6ed11haac669b22e7ebf2b@mail.gmail.com> References: <20081125040554.860C0A6371@hemlock.osuosl.org> <20081125051448.E05D6A6361@hemlock.osuosl.org> <1456fc8b0811251452h72a6ed11haac669b22e7ebf2b@mail.gmail.com> Message-ID: > > I find moodle to be a good out-of-the-box solution. I was searching for > the ways so that moodle and drupal could be integrated in some way. > lol, i dont think that other CMS will be as flexible as drupal :P. -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081126/46fb779f/attachment.htm From das74 at wbic.cam.ac.uk Wed Nov 26 11:18:26 2008 From: das74 at wbic.cam.ac.uk (David Sharpe) Date: Wed, 26 Nov 2008 11:18:26 +0000 Subject: [support] Newbie: The case of the vanishing menu Message-ID: <492D3082.8030408@wbic.cam.ac.uk> I have a page which does not, and which I don't want to appear on the primary menu. I link to this page through an embedded view. BUT this page does not show the menu either (I can see why this is the correct behaviour, as it has no relationship to any other page as far as it knows) - and I want it to show the menu on all pages. So how do I make the primary menu show on this page, without making the page show on the primary menu :-) Thanks, Dave From victorkane at gmail.com Wed Nov 26 11:20:26 2008 From: victorkane at gmail.com (Victor Kane) Date: Wed, 26 Nov 2008 09:20:26 -0200 Subject: [support] Newbie: The case of the vanishing menu In-Reply-To: <492D3082.8030408@wbic.cam.ac.uk> References: <492D3082.8030408@wbic.cam.ac.uk> Message-ID: Since all pages have the primary menu appear by default, and no page is on the primary menu unless you put it there, it is hard to understand your situation, perhaps clarify? Victor Kane http://awebfactory.com.ar On Wed, Nov 26, 2008 at 9:18 AM, David Sharpe wrote: > I have a page which does not, and which I don't want to appear on the > primary menu. I link to this page through an embedded view. > BUT this page does not show the menu either (I can see why this is the > correct behaviour, as it has no relationship to any other page as far as > it knows) - and I want it to show the menu on all pages. > > So how do I make the primary menu show on this page, without making the > page show on the primary menu :-) > > Thanks, > Dave > -- > [ Drupal support list | http://lists.drupal.org/ ] > From das74 at wbic.cam.ac.uk Wed Nov 26 15:03:33 2008 From: das74 at wbic.cam.ac.uk (David Sharpe) Date: Wed, 26 Nov 2008 15:03:33 +0000 Subject: [support] Newbie: The case of the vanishing menu In-Reply-To: References: <492D3082.8030408@wbic.cam.ac.uk> Message-ID: <492D6545.9050604@wbic.cam.ac.uk> Ok its not a page, I lied. Its a content-type I created. But I can't see any setting in the properties of the content-type that would manage its display or non-display of the primary menu? Thanks, Dave Victor Kane wrote: > Since all pages have the primary menu appear by default, and no page > is on the primary menu unless you put it there, it is hard to > understand your situation, perhaps clarify? > > Victor Kane > http://awebfactory.com.ar > > On Wed, Nov 26, 2008 at 9:18 AM, David Sharpe wrote: > >> I have a page which does not, and which I don't want to appear on the >> primary menu. I link to this page through an embedded view. >> BUT this page does not show the menu either (I can see why this is the >> correct behaviour, as it has no relationship to any other page as far as >> it knows) - and I want it to show the menu on all pages. >> >> So how do I make the primary menu show on this page, without making the >> page show on the primary menu :-) >> >> Thanks, >> Dave >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> -- David Sharpe Assistant Network Manager Acting Telephone Liaison Officer Wolfson Brain Imaging Centre ================================================================ Wolfson Brain Imaging Centre | Tel: (direct) 01223 762128 University of Cambridge | Tel: (reception) 01223 331823 Box 65, Addenbrooke's Hospital | Fax: 01223 331826 Hills Road, Cambridge, CB2 0QQ | Email:david.sharpe at wbic.cam.ac.uk http://www.wbic.cam.ac.uk | ================================================================ From cjones at partialflow.com Wed Nov 26 15:07:18 2008 From: cjones at partialflow.com (Christopher M. Jones) Date: Wed, 26 Nov 2008 10:07:18 -0500 Subject: [support] theme more link in view panel In-Reply-To: <492B48B0.6060807@opensourcery.com> References: <492ABC4F.9020003@partialflow.com> <492B48B0.6060807@opensourcery.com> Message-ID: <492D6626.5000901@partialflow.com> Thanks for the help. I found that method when searching for the solution, but my views directory does not have that file. I'm using views under D5. Should have said that the first time. So there is an exposed function, theme_views_more(), which I put into my template.php file. It properly themes the 'more' link in block views, but panels still have the old "more" link text. Changing the panel view from embedded to block had no effect. It looks to me that this 'more' link is provided by panels, and not by views. So my override doesn't affect it and I need to be looking at panels for the answer, not views. Thanks again. If anyone has any further light to shed, it is very much appreciated. Jonathan Hedstrom wrote: > > Christopher M. Jones wrote: >> I've got a panel node displaying a view. In the panel content >> configuration I set the option to display a "more" link to the view. I >> need to theme this link so that I says something other than "more", but >> I'm not sure which theme override function, if any, I should use. Is >> this link generated by views? So I should be able to theme the views >> "more" link? Or is it generated by panels, and I should looking for a >> panels theme override? >> >> This is somewhat urgent, so all help is appreciated. >> > > You should be able to create a file in your theme directory called > "views-more.tpl.php". See the file {views > directory}/theme/views-more.tpl.php for guidance on what variables are > available. If you're using D6, you'll have to clear your cache after > adding the template file to your theme directory. > > Cheers, > > Jonathan > > From cxjohnson at gmail.com Wed Nov 26 15:10:37 2008 From: cxjohnson at gmail.com (Chris Johnson) Date: Wed, 26 Nov 2008 09:10:37 -0600 Subject: [support] College Website Migrating to Drupal In-Reply-To: References: <20081125040554.860C0A6371@hemlock.osuosl.org> <20081125051448.E05D6A6361@hemlock.osuosl.org> <1456fc8b0811251452h72a6ed11haac669b22e7ebf2b@mail.gmail.com> Message-ID: <9ea8d6030811260710k7196e018me808a14699e254c0@mail.gmail.com> It depends on what you want to do. Moodle is not a "content management system" (CMS), if one can consider Drupal to be that. Moodle is a "course management system" (unfortunately, the same 3 initials CMS). Moodle handles courses, assignments, grading, etc. Moodle does have some more generic features, but Drupal is far more flexible. So if you want a content management system, Drupal is the obvious choice. If you want a system that has some more specific educational capabilities, but has some very simple forum and blog features, Moodle might work for you. I'm working on a bunch of Moodle / Drupal integration stuff right now. We have clients who want to use both together. It's all built on D6, and should be in the drupal.org CVS repository in the next month or two. On the other hand, one could develop the necessary additional features supported by Moodle right in Drupal. That just hasn't been done yet. ..chris On Wed, Nov 26, 2008 at 3:45 AM, sivaji j.g wrote: >> I find moodle to be a good out-of-the-box solution. I was searching for >> the ways so that moodle and drupal could be integrated in some way. > > lol, i dont think that other CMS will be as flexible as drupal :P. > > > > -- > Thanks a lot > ----------------------------------------- > http://ubuntuslave.blogspot.com/ > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From victorkane at gmail.com Wed Nov 26 15:11:49 2008 From: victorkane at gmail.com (Victor Kane) Date: Wed, 26 Nov 2008 13:11:49 -0200 Subject: [support] Newbie: The case of the vanishing menu In-Reply-To: <492D6545.9050604@wbic.cam.ac.uk> References: <492D3082.8030408@wbic.cam.ac.uk> <492D6545.9050604@wbic.cam.ac.uk> Message-ID: I think we need to get a few concepts straight. A content-type is not content (i.e. node/123, a story), but rather a form, it defines a reusable set of fields, like a page or a story, which can be used to create content. Let's suppose you create three pages by going to Administer > Add content > page three times, and you create three distinct pages, perhaps suitable for section pages (Sports, World, Politics). Once they are created, you can go to Administer > Site building > Menus (or via the menu section of the edit form itself) and you can assign their paths (node/124, node/125, node/126) to the primary menu by adding them as menu items. Then, when you click these menu items on the primary menu you go to those pages. But there is nothing intrinsic in the content type that makes it appear on a menu since it is not a piece of content. What you need to do if you have created a content type is create a few instances (nodes) and assign those to the primary menu. Victor Kane http://awebfactory.com.ar On Wed, Nov 26, 2008 at 1:03 PM, David Sharpe wrote: > Ok its not a page, I lied. Its a content-type I created. But I can't > see any setting in the properties of the content-type that would manage > its display or non-display of the primary menu? > > Thanks, > Dave > > Victor Kane wrote: >> Since all pages have the primary menu appear by default, and no page >> is on the primary menu unless you put it there, it is hard to >> understand your situation, perhaps clarify? >> >> Victor Kane >> http://awebfactory.com.ar >> >> On Wed, Nov 26, 2008 at 9:18 AM, David Sharpe wrote: >> >>> I have a page which does not, and which I don't want to appear on the >>> primary menu. I link to this page through an embedded view. >>> BUT this page does not show the menu either (I can see why this is the >>> correct behaviour, as it has no relationship to any other page as far as >>> it knows) - and I want it to show the menu on all pages. >>> >>> So how do I make the primary menu show on this page, without making the >>> page show on the primary menu :-) >>> >>> Thanks, >>> Dave >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >>> > > > -- > David Sharpe > Assistant Network Manager > Acting Telephone Liaison Officer > Wolfson Brain Imaging Centre > > ================================================================ > Wolfson Brain Imaging Centre | Tel: (direct) 01223 762128 > University of Cambridge | Tel: (reception) 01223 331823 > Box 65, Addenbrooke's Hospital | Fax: 01223 331826 > Hills Road, Cambridge, CB2 0QQ | Email:david.sharpe at wbic.cam.ac.uk > http://www.wbic.cam.ac.uk | > ================================================================ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From shyamala at netlinkindia.com Wed Nov 26 15:29:48 2008 From: shyamala at netlinkindia.com (Shyamala Rajaram) Date: Wed, 26 Nov 2008 20:59:48 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <9ea8d6030811260710k7196e018me808a14699e254c0@mail.gmail.com> Message-ID: <20081126152904.4EAFA10A370@whitealder.osuosl.org> Totally agree. Nothing can beat the flexibility of Drupal. We too have integrated Drupal and Moodle, Used Drupal for all the content and business rules and ecom, Moodle for rendering SCORM courses and the brilliant Quiz engine. Shyamala -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Chris Johnson Sent: Wednesday, November 26, 2008 8:41 PM To: support at drupal.org Subject: Re: [support] College Website Migrating to Drupal It depends on what you want to do. Moodle is not a "content management system" (CMS), if one can consider Drupal to be that. Moodle is a "course management system" (unfortunately, the same 3 initials CMS). Moodle handles courses, assignments, grading, etc. Moodle does have some more generic features, but Drupal is far more flexible. So if you want a content management system, Drupal is the obvious choice. If you want a system that has some more specific educational capabilities, but has some very simple forum and blog features, Moodle might work for you. I'm working on a bunch of Moodle / Drupal integration stuff right now. We have clients who want to use both together. It's all built on D6, and should be in the drupal.org CVS repository in the next month or two. On the other hand, one could develop the necessary additional features supported by Moodle right in Drupal. That just hasn't been done yet. ..chris On Wed, Nov 26, 2008 at 3:45 AM, sivaji j.g wrote: >> I find moodle to be a good out-of-the-box solution. I was searching for >> the ways so that moodle and drupal could be integrated in some way. > > lol, i dont think that other CMS will be as flexible as drupal :P. > > > > -- > Thanks a lot > ----------------------------------------- > http://ubuntuslave.blogspot.com/ > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- [ Drupal support list | http://lists.drupal.org/ ] From cjones at partialflow.com Wed Nov 26 16:53:57 2008 From: cjones at partialflow.com (Christopher M. Jones) Date: Wed, 26 Nov 2008 11:53:57 -0500 Subject: [support] [SOLVED] Re: theme more link in view panel In-Reply-To: <492B48B0.6060807@opensourcery.com> References: <492ABC4F.9020003@partialflow.com> <492B48B0.6060807@opensourcery.com> Message-ID: <492D7F25.7090207@partialflow.com> Thanks for the help. I just needed to look more closely at panels. Changing from embedded to block, and **disabling the more link in panels** allowed views to place it's themed more link in there. Jonathan Hedstrom wrote: > > Christopher M. Jones wrote: >> I've got a panel node displaying a view. In the panel content >> configuration I set the option to display a "more" link to the view. I >> need to theme this link so that I says something other than "more", but >> I'm not sure which theme override function, if any, I should use. Is >> this link generated by views? So I should be able to theme the views >> "more" link? Or is it generated by panels, and I should looking for a >> panels theme override? >> >> This is somewhat urgent, so all help is appreciated. >> > > You should be able to create a file in your theme directory called > "views-more.tpl.php". See the file {views > directory}/theme/views-more.tpl.php for guidance on what variables are > available. If you're using D6, you'll have to clear your cache after > adding the template file to your theme directory. > > Cheers, > > Jonathan > > From mail at jaipandya.com Thu Nov 27 01:18:05 2008 From: mail at jaipandya.com (Jai) Date: Thu, 27 Nov 2008 06:48:05 +0530 Subject: [support] College Website Migrating to Drupal In-Reply-To: <20081126152904.4EAFA10A370@whitealder.osuosl.org> References: <9ea8d6030811260710k7196e018me808a14699e254c0@mail.gmail.com> <20081126152904.4EAFA10A370@whitealder.osuosl.org> Message-ID: <1456fc8b0811261718x28abfb34md446be2702e708d9@mail.gmail.com> Even I completely agree with you people. I don't have anything like Drupal Vs. Moodle. While one is a completely generic solution and provides a tool box and basic building material for making something, Moodle is a specific solution to Learning Management Task ONLY. Definitely I don't have any doubts in the capabilities of Drupal over here. It must be possible to implement everything we can do using Moodle (And I am a big fan of Drupal for not being a system geared towards a specific work, that's why I am here ! ), but that needs work-arounds. Where Moodle already presents itself as an out-of-the-box solution for specifically Learning Management Tasks. I am not talking about making an informative website for the college using Moodle. It's just the Learning Management part of it, where teachers can assign student with some work, different kinds of evaluation schemes, quizes etc. and similarly students can join some courses, discuss upon some topics. submit assignments given to them etc. That's the only reason I am thinking about a solution where Drupal and Moodle are integrated, having a student sign in only once to get authenticated on both the systems, where I could have Moodle as an LMS and Drupal for all other functional requirements. -Jai 2008/11/26 Shyamala Rajaram > > Totally agree. Nothing can beat the flexibility of Drupal. We too have > integrated Drupal and Moodle, Used Drupal for all the content and business > rules and ecom, Moodle for rendering SCORM courses and the brilliant Quiz > engine. > > Shyamala > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Chris Johnson > Sent: Wednesday, November 26, 2008 8:41 PM > To: support at drupal.org > Subject: Re: [support] College Website Migrating to Drupal > > It depends on what you want to do. Moodle is not a "content > management system" (CMS), if one can consider Drupal to be that. > Moodle is a "course management system" (unfortunately, the same 3 > initials CMS). Moodle handles courses, assignments, grading, etc. > Moodle does have some more generic features, but Drupal is far more > flexible. > > So if you want a content management system, Drupal is the obvious > choice. If you want a system that has some more specific educational > capabilities, but has some very simple forum and blog features, Moodle > might work for you. > > I'm working on a bunch of Moodle / Drupal integration stuff right now. > We have clients who want to use both together. It's all built on D6, > and should be in the drupal.org CVS repository in the next month or > two. > > On the other hand, one could develop the necessary additional features > supported by Moodle right in Drupal. That just hasn't been done yet. > > ..chris > > On Wed, Nov 26, 2008 at 3:45 AM, sivaji j.g wrote: > >> I find moodle to be a good out-of-the-box solution. I was searching for > >> the ways so that moodle and drupal could be integrated in some way. > > > > lol, i dont think that other CMS will be as flexible as drupal :P. > > > > > > > > -- > > Thanks a lot > > ----------------------------------------- > > http://ubuntuslave.blogspot.com/ > > > > > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > > -- > [ Drupal support list | http://lists.drupal.org/ ] From bsisok at gmail.com Thu Nov 27 20:12:45 2008 From: bsisok at gmail.com (Bob Salsburg) Date: Thu, 27 Nov 2008 15:12:45 -0500 Subject: [support] Swapping down Drupal versions/Hiding RSS Message-ID: Hi Drupal folks. I am a web developer versed in the "old" methods, i.e. HTML, CSS, ASP and ASP.net. I declared myself free of the M$FT stuff when I no longer had to do it and set about making life simpler with Open Source. I discovered Drupal when working up a site for my church, the idea being that individuals - even ordinarily inept ones - could do there owne updates. My Drupal history is brief, about a month. I currently have a quasi-live Drupal 6 site, but I have been working with a Druppal 5.12 site on an XXAMP installation on my laptop. I would like to take the live site to 5.12 and later go to 6.6 or whatever version is current; it just feels better now. I have backed up the database through PHPMyAdmin and would like to get advice on what to do next. Would I just remove the installation by folders or some other way? Once that is done, I assume just a new install of 5.12. The database has some users. I'd rather not start from scratch, but I could if necessary. If PHP andMySQL versions are key to this, I'll locate them. Also, I have a question about the RSS link. THough I have disabled it, it still shows up on both 5.12 and 6.6 sites. And, while I'm at it, I want to hide the "submitted by", etc messages. I'm wondering if there is a certain content type that needs to be used. \ Bob -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081127/7deb4b55/attachment-0001.htm From justin.gruenberg at gmail.com Thu Nov 27 20:27:30 2008 From: justin.gruenberg at gmail.com (Justin Gruenberg) Date: Thu, 27 Nov 2008 14:27:30 -0600 Subject: [support] Newbie PHPTemplate / Drupal Templating Question In-Reply-To: <224285.35488.qm@web63404.mail.re1.yahoo.com> References: <224285.35488.qm@web63404.mail.re1.yahoo.com> Message-ID: <96cd751f0811271227v65e7086esbb95f2eea67b08e@mail.gmail.com> That is not how it works. A template themes content that drupal drupal has in its database. If you want a page with more or less static content, create a node of type page in drupal and then theme page.tpl.php. Using the devel module can give you a good idea of what files to change to modify the look of your site. On 11/17/08, Brad Abbott wrote: > Drupal 6 > Apache 2.2 > Windows XP > PHPTemplate > > > I am trying to simply make a new template for my site which can be called by > navigating to www.mysite.com/mynewtemplate. According to > http://drupal.org/node/104316, if I simply make a new template in my chosen > theme directory, in my case "C: Program > Files\Apache\htdocs\sites\all\themes\mytheme\page-mynewtemplate.tpl.php, > Drupal should serve up this new template when I navigate to > www.mysite.com\mynewtemplate without any further code modifications. What > am I missing? Sorry for the ignorance, but I cannot get drupal to serve up > my new page template. I thought, at the very least, Drupal should serve up > the original template "page.tpl.php" in my chosen theme directory. I am > working from a super simple, windows based, Apache 2.2 drupal 6 > installation. Is there any additional modifications that I need to make to > the apache configuration file or .htaccess? I would really appreciate a > hint or link to a resource that explains more. > > Cheers, > > Brad > -- Sent from my mobile device From victorkane at gmail.com Thu Nov 27 20:30:12 2008 From: victorkane at gmail.com (Victor Kane) Date: Thu, 27 Nov 2008 18:30:12 -0200 Subject: [support] Swapping down Drupal versions/Hiding RSS In-Reply-To: References: Message-ID: On Thu, Nov 27, 2008 at 6:12 PM, Bob Salsburg wrote: > Hi Drupal folks. I am a web developer versed in the "old" methods, i.e. > HTML, CSS, ASP and ASP.net. I declared myself free of the M$FT stuff when I > no longer had to do it and set about making life simpler with Open Source. I > discovered Drupal when working up a site for my church, the idea being that > individuals - even ordinarily inept ones - could do there owne updates. > > My Drupal history is brief, about a month. I currently have a quasi-live > Drupal 6 site, but I have been working with a Druppal 5.12 site on an XXAMP > installation on my laptop. > Assuming you want to take the Drupal 5.x site you have on your laptop, and copy it to the live site, the procedure would be. 1. On your current live site (Drupal 6.x), dump the database and zip the entire file structure and download both files to a safe location. 2. Delete everything, there is no simple, straightforward way to export and import users or anything else in Drupal unless you would like to write a script in PHP, then you could be in luck big time (lots of snippets on drupal.org). 3. On your laptop 5.x install, dump the database and tar (or zip) the file structure and move everything to your live site and unpack the file system and restore the database file to the database server. 4. You should be all set to go. This is the basic approach, there exist more sophisticated ways of doing it that might make life easier (like just using CVS to check out and update (switch) the Drupal version from the command line). The RSS link is actually a block (Syndicate) you can simply disable in Administer > Site building > Blocks. To remove the "submitted by" cruft, go to Administer > Site building > Themes, and select the general configuration, and there you will see a checkbox for each content type, you can deselect the submitted by to appear or not on a content type by content type basis. Again, this is in the general settings, not the settings for any one particular theme. Victor Kane http://awebfactory.com.ar > I would like to take the live site to 5.12 and later go to 6.6 or whatever > version is current; it just feels better now. I have backed up the database > through PHPMyAdmin and would like to get advice on what to do next. Would I > just remove the installation by folders or some other way? Once that is > done, I assume just a new install of 5.12. The database has some users. I'd > rather not start from scratch, but I could if necessary. If PHP andMySQL > versions are key to this, I'll locate them. > > Also, I have a question about the RSS link. THough I have disabled it, it > still shows up on both 5.12 and 6.6 sites. > > And, while I'm at it, I want to hide the "submitted by", etc messages. I'm > wondering if there is a certain content type that needs to be used. > \ > Bob > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From bsisok at gmail.com Fri Nov 28 04:33:24 2008 From: bsisok at gmail.com (Bob Salsburg) Date: Thu, 27 Nov 2008 23:33:24 -0500 Subject: [support] Swapping down Drupal versions/Hiding RSS In-Reply-To: References: Message-ID: On Thu, Nov 27, 2008 at 3:30 PM, Victor Kane wrote: > > The RSS link is actually a block (Syndicate) you can simply disable in > Administer > Site building > Blocks. > > > To remove the "submitted by" cruft, go to Administer > Site building > > Themes, and select the general configuration, and there you will see a > checkbox for each content type, you can deselect the submitted by to > appear or not on a content type by content type basis. Again, this is > in the general settings, not the settings for any one particular > theme. I'll be studying the switchout procedure on the 6.6 -> 5.12 server. Thanks for the reply. Sorry Victor; the Syndicate block is disable in the Global settings of 5.12. I think it was in the 6.6. installation too. That's what was so confusing. Here's the way it looks. A person with no Auth account browses the site. The RSS icon appears. Admin browses the site, logs in and RSS icon appears. If he clicks Read More, the page expands to full content and the icon is gone. Same for an Auth user. This is counter to the expected functionality. To me Disabled means Disabled. There must be some other configuration. The Aggregator is also off, by default if I am not mistaken. Recall too that I wanted the Submitted line removed. That worked once site was reloaded. Refresh didn't do it. I would also like to have the page expand to full content when opened. Users would not see the Read More link at all. I may need to do this on a page basis. Can't locate that setting at this time. Any wisdom on this issue? Bob -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081127/d2afcb82/attachment.htm From victorkane at gmail.com Fri Nov 28 08:55:53 2008 From: victorkane at gmail.com (Victor Kane) Date: Fri, 28 Nov 2008 06:55:53 -0200 Subject: [support] Swapping down Drupal versions/Hiding RSS In-Reply-To: References: Message-ID: On Fri, Nov 28, 2008 at 2:33 AM, Bob Salsburg wrote: > On Thu, Nov 27, 2008 at 3:30 PM, Victor Kane wrote: >> >> The RSS link is actually a block (Syndicate) you can simply disable in >> Administer > Site building > Blocks. >> >> >> To remove the "submitted by" cruft, go to Administer > Site building > >> Themes, and select the general configuration, and there you will see a >> checkbox for each content type, you can deselect the submitted by to >> appear or not on a content type by content type basis. Again, this is >> in the general settings, not the settings for any one particular >> theme. > > I'll be studying the switchout procedure on the 6.6 -> 5.12 server. Thanks > for the reply. > > Sorry Victor; the Syndicate block is disable in the Global settings of 5.12. > I think it was in the 6.6. installation too. That's what was so confusing. > Here's the way it looks. > The block is probably disabled in Global settings, but enabled in the settings for the theme you are using. > A person with no Auth account browses the site. The RSS icon appears. > Admin browses the site, logs in and RSS icon appears. If he clicks Read > More, the page expands to full content and the icon is gone. > Same for an Auth user. > > This is counter to the expected functionality. To me Disabled means > Disabled. There must be some other configuration. The Aggregator is also > off, by default if I am not mistaken. > > Recall too that I wanted the Submitted line removed. That worked once site > was reloaded. Refresh didn't do it. > > I would also like to have the page expand to full content when opened. Users > would not see the Read More link at all. I may need to do this on a page > basis. Can't locate that setting at this time. Any wisdom on this issue? > > Bob > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From hershelsr at gmail.com Fri Nov 28 09:24:55 2008 From: hershelsr at gmail.com (Hershel Robinson) Date: Fri, 28 Nov 2008 11:24:55 +0200 Subject: [support] Swapping down Drupal versions/Hiding RSS In-Reply-To: References: Message-ID: <492FB8E7.6010004@gmail.com> >> Sorry Victor; the Syndicate block is disable in the Global settings of 5.12. >> I think it was in the 6.6. installation too. That's what was so confusing. >> Here's the way it looks. >> > > The block is probably disabled in Global settings, but enabled in the > settings for the theme you are using. There are also themes which have an RSS link hard-coded, so you *may* need to look in page.tpl.php to see if that is the case with your theme. Let us know what IS your theme and we can look. Hershel From bsisok at gmail.com Fri Nov 28 12:47:58 2008 From: bsisok at gmail.com (Bob Salsburg) Date: Fri, 28 Nov 2008 07:47:58 -0500 Subject: [support] Swapping down Drupal versions/Hiding RSS In-Reply-To: <492FB8E7.6010004@gmail.com> References: <492FB8E7.6010004@gmail.com> Message-ID: Theme is Marvin. Simplified for troubleshooting. On Fri, Nov 28, 2008 at 4:24 AM, Hershel Robinson wrote: > There are also themes which have an RSS link hard-coded, so you *may* > need to look in page.tpl.php to see if that is the case with your theme. > Let us know what IS your theme and we can look. > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081128/465f8e73/attachment.htm From earnie at users.sourceforge.net Fri Nov 28 15:43:52 2008 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Fri, 28 Nov 2008 10:43:52 -0500 Subject: [support] College Website Migrating to Drupal In-Reply-To: <1456fc8b0811251452h72a6ed11haac669b22e7ebf2b@mail.gmail.com> References: <20081125040554.860C0A6371@hemlock.osuosl.org> <20081125051448.E05D6A6361@hemlock.osuosl.org> <1456fc8b0811251452h72a6ed11haac669b22e7ebf2b@mail.gmail.com> Message-ID: <20081128104352.5roabzebebk00ccc@mail.progw.org> Quoting Jai : > Bill, > Thanks for the link to drupal-education group. Now, I am also a member of > it. I found it very informative and some of the group posts instantly solved > my confusions. Also, here I am more concerned about a public facing website > using drupal with the facilities I listed in my first mail. For the > collaborative/learning environment I find moodle to be a good out-of-the-box > solution. I was searching for the ways so that moodle and drupal could be > integrated in some way. > Jai, I don't have the reference link in front of me that Bill gave you but wanted to point you to http://elearning.psu.edu/drupalineducation/moodle as a good reference. -- Earnie http://r-feed.com Make a Drupal difference and review core patches. -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ From skessler at denverdataman.com Sun Nov 30 00:45:40 2008 From: skessler at denverdataman.com (Steve Kessler) Date: Sat, 29 Nov 2008 17:45:40 -0700 Subject: [support] Upgrade Dilemma Message-ID: <01ab01c95284$f8a2cf70$e9e86e50$@com> Hey All, I have a D5 site that is a bit of a mess because I have just been adding things as I go for over a year and I tried to upgrade it to D6 and I have gotten many errors including I could not get CCK to install at all, even following the instructions on the CCK page. I am OK with installing a new Druapl site (actually more than OK with this) and then moving my content over. I am just not sure how I would go about moving the content over. So if anyone has an idea on strategy for how to do this or a solution to moving content - including CCK content over the new site I would appreciate it. Thanks, Steve Steve Kessler Denver DataMan 303-587-4428 Sign up for the Denver DataMan Free eNewsletter -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081129/2866a019/attachment-0001.htm From shai at content2zero.com Sun Nov 30 05:06:02 2008 From: shai at content2zero.com (Shai Gluskin) Date: Sun, 30 Nov 2008 00:06:02 -0500 Subject: [support] Upgrade Dilemma In-Reply-To: <01ab01c95284$f8a2cf70$e9e86e50$@com> References: <01ab01c95284$f8a2cf70$e9e86e50$@com> Message-ID: <9f68efb70811292106x468bc6d8r528566516913b05b@mail.gmail.com> Steve, Moving data is hassle. I"d pursue trouble shooting your upgrade process and trying again on the upgrade. Were all of your modules updated to their most recent versions before you attempted the upgrade? Did you follow all the best practices like turning all contrib modules off before upgrading? Shai On Sat, Nov 29, 2008 at 7:45 PM, Steve Kessler wrote: > Hey All, > > > > I have a D5 site that is a bit of a mess because I have just been adding > things as I go for over a year and I tried to upgrade it to D6 and I have > gotten many errors including I could not get CCK to install at all, even > following the instructions on the CCK page. I am OK with installing a new > Druapl site (actually more than OK with this) and then moving my content > over. I am just not sure how I would go about moving the content over. So > if anyone has an idea on strategy for how to do this or a solution to moving > content - including CCK content over the new site I would appreciate it. > > > > Thanks, > > Steve > > > > > > Steve Kessler > > *Denver DataMan * > > 303-587-4428 > > Sign up for the Denver DataMan Free eNewsletter > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20081130/3436644a/attachment.htm From Greg at growingventuresolutions.com Sun Nov 30 19:24:38 2008 From: Greg at growingventuresolutions.com (Greg Knaddison) Date: Sun, 30 Nov 2008 12:24:38 -0700 Subject: [support] Upgrade Dilemma In-Reply-To: <9f68efb70811292106x468bc6d8r528566516913b05b@mail.gmail.com> References: <01ab01c95284$f8a2cf70$e9e86e50$@com> <9f68efb70811292106x468bc6d8r528566516913b05b@mail.gmail.com> Message-ID: <3861c6770811301124w7d6154ccp8f9ad142eef964de@mail.gmail.com> On Sat, Nov 29, 2008 at 10:06 PM, Shai Gluskin wrote: > Were all of your modules updated to their most recent versions before you > attempted the upgrade? Did you follow all the best practices like turning > all contrib modules off before upgrading? I definitely agree about latest versions prior to ugprading - good call there. And I know that it's documented (often) as a best practice to disable all the contribs but I find that my upgrades work better if I leave modules enabled. Upgrades with dozens of contribs are a very personal experience, though, so people should try out both ways (on test site of course...). Regards, Greg -- Greg Knaddison http://knaddison.com | 303-800-5623 | http://growingventuresolutions.com From bill at funnymonkey.com Sun Nov 30 20:14:59 2008 From: bill at funnymonkey.com (Bill Fitzgerald) Date: Sun, 30 Nov 2008 12:14:59 -0800 Subject: [support] Upgrade Dilemma In-Reply-To: <3861c6770811301124w7d6154ccp8f9ad142eef964de@mail.gmail.com> References: <01ab01c95284$f8a2cf70$e9e86e50$@com> <9f68efb70811292106x468bc6d8r528566516913b05b@mail.gmail.com> <3861c6770811301124w7d6154ccp8f9ad142eef964de@mail.gmail.com> Message-ID: <4932F443.6000700@funnymonkey.com> Some excellent advice here, particularly regarding: 1. Get the latest 5-x versions of the modules before moving to 6; 2. Experimenting with disabling vs leaving contrib modules live (and my preference is leaving contrib enabled); I would add that you should probably move to a core theme as well, and make sure that your block visibility settings are adjusted correctly -- particularly if you are using a customized theme that will also need to be upgraded. Cheers, Bill Greg Knaddison wrote: > On Sat, Nov 29, 2008 at 10:06 PM, Shai Gluskin wrote: > >> Were all of your modules updated to their most recent versions before you >> attempted the upgrade? Did you follow all the best practices like turning >> all contrib modules off before upgrading? >> > > I definitely agree about latest versions prior to ugprading - good call there. > > And I know that it's documented (often) as a best practice to disable > all the contribs but I find that my upgrades work better if I leave > modules enabled. > > Upgrades with dozens of contribs are a very personal experience, > though, so people should try out both ways (on test site of > course...). > > Regards, > Greg > > -- Bill Fitzgerald http://funnymonkey.com FunnyMonkey -- Tools for Teachers ph. 503 897 7160