From bharanikumariyerphp at gmail.com Sun Feb 1 08:07:30 2009 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Sun, 1 Feb 2009 13:37:30 +0530 Subject: [support] Remove the ul,li DISC from block Message-ID: <2240033d0902010007g338b7bb4w92d6380ca7d4c80c@mail.gmail.com> Hi How to disable the UL,LI DISC as None, in garland theme, Thanks -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyerphp.site88.net/bharanikumar/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090201/3dbe08ba/attachment.htm From victorkane at gmail.com Sun Feb 1 08:28:58 2009 From: victorkane at gmail.com (Victor Kane) Date: Sun, 1 Feb 2009 06:28:58 -0200 Subject: [support] Remove the ul,li DISC from block In-Reply-To: <2240033d0902010007g338b7bb4w92d6380ca7d4c80c@mail.gmail.com> References: <2240033d0902010007g338b7bb4w92d6380ca7d4c80c@mail.gmail.com> Message-ID: Read the seminal article "CSS Design: Taming Lists" at http://www.alistapart.com/articles/taminglists/ and become a master on the subject. You will have to add the necessary CSS to your theme (usually in style.css unless you are using the Zen theme, in which case {name-of-{theme | subtheme}.css) after making sure there exists an id or class DIV wrapping the list. If you cannot understand the CSS discussion, bone up by reading one of the O'Reilly classics on the subject, or else online, for example, at http://reference.sitepoint.com/css. You or someone in your organization must have at least a conversational knowledge of CSS to be successful in Drupal, as the passage from Drupal 5 to 6 to 7 leads towards more and more of the theming being controlled by CSS. Victor Kane http://awebfactory.com.ar 2009/2/1 bharani kumar > > Hi > > How to disable the UL,LI DISC as None, in garland theme, > > Thanks > -- > ?????? ?????? > ???? ?????? > > Regards > B.S.Bharanikumar > > POST YOUR OPINION > http://bharanikumariyerphp.site88.net/bharanikumar/ > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090201/4b96bee1/attachment.htm From madflute at anonemusic.com Sun Feb 1 09:46:07 2009 From: madflute at anonemusic.com (A-NO-NE Music) Date: Sun, 1 Feb 2009 04:46:07 -0500 Subject: [support] OG Questions Message-ID: <75029A97-1F13-40E1-B4B0-2B1C847EA814@anonemusic.com> Drupal 6.8 I am having a difficulty controlling OG Details Block. - I need to show OG Details Block shown to all the pages even the page is not OG content. - I need to control the OG Detail Block items, i.e., I don't want to show the member list link. Any help would be appreciated. -- - Hiro Hiroaki Honshuku, A-NO-NE Music, Greater Boston http://a-no-ne.com http://anonemusic.com From bharanikumariyerphp at gmail.com Sun Feb 1 16:35:23 2009 From: bharanikumariyerphp at gmail.com (bharani kumar) Date: Sun, 1 Feb 2009 22:05:23 +0530 Subject: [support] Remove the ul,li DISC from block In-Reply-To: References: <2240033d0902010007g338b7bb4w92d6380ca7d4c80c@mail.gmail.com> Message-ID: <2240033d0902010835w753aee70n3398fa32a63d2853@mail.gmail.com> thanks, other then this , On Sun, Feb 1, 2009 at 1:58 PM, Victor Kane wrote: > Read the seminal article "CSS Design: Taming Lists" at > http://www.alistapart.com/articles/taminglists/ and become a master on the > subject. > > You will have to add the necessary CSS to your theme (usually in style.css > unless you are using the Zen theme, in which case {name-of-{theme | > subtheme}.css) after making sure there exists an id or class DIV wrapping > the list. > > If you cannot understand the CSS discussion, bone up by reading one of the > O'Reilly classics on the subject, or else online, for example, at > http://reference.sitepoint.com/css. > > You or someone in your organization must have at least a conversational > knowledge of CSS to be successful in Drupal, as the passage from Drupal 5 to > 6 to 7 leads towards more and more of the theming being controlled by CSS. > > Victor Kane > http://awebfactory.com.ar > > 2009/2/1 bharani kumar > >> >> Hi >> >> How to disable the UL,LI DISC as None, in garland theme, >> >> Thanks >> -- >> ?????? ?????? >> ???? ?????? >> >> Regards >> B.S.Bharanikumar >> >> POST YOUR OPINION >> http://bharanikumariyerphp.site88.net/bharanikumar/ >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- ?????? ?????? ???? ?????? Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyerphp.site88.net/bharanikumar/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090201/cece8605/attachment-0001.htm From hans.rossel at koba.be Sun Feb 1 22:35:46 2009 From: hans.rossel at koba.be (KOBA | Hans Rossel) Date: Sun, 1 Feb 2009 23:35:46 +0100 Subject: [support] OG Questions In-Reply-To: <75029A97-1F13-40E1-B4B0-2B1C847EA814@anonemusic.com> References: <75029A97-1F13-40E1-B4B0-2B1C847EA814@anonemusic.com> Message-ID: <51a9b8330902011435n34679deduc5518315d1b537aa@mail.gmail.com> To control the OG Detail Block items: make a small module (so just a .info and .module file, give it whatever name you like, I called it modulename in the example) and put inside: The following code has some commented out code, the drupal_set_message code gives you the names of all the $links so you know which ones to remove or change, then I changed the invite link text to blablabla and removed the subscribers and manger link. /** * Implementation of hook_og_link_alter(). */ function modulename_og_links_alter(&$links, $group_node) { //drupal_set_message('
'. var_export($group_node,TRUE) .'
'); //drupal_set_message('
'. var_export($links,TRUE) .'
'); // Remove or change links from group details block. $links['invite'] = 'Blablabla'; unset ($links['subscribers']); unset ($links['manager']); //unset ($links['my_membership']); } Good luck, Hans 2009/2/1 A-NO-NE Music > Drupal 6.8 > > I am having a difficulty controlling OG Details Block. > > - I need to show OG Details Block shown to all the pages even the page > is not OG content. > - I need to control the OG Detail Block items, i.e., I don't want to > show the member list link. > > Any help would be appreciated. > > > -- > - Hiro > > Hiroaki Honshuku, A-NO-NE Music, Greater Boston > http://a-no-ne.com http://anonemusic.com > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090201/51fb8b06/attachment.htm From shai at content2zero.com Mon Feb 2 01:20:50 2009 From: shai at content2zero.com (Shai Gluskin) Date: Sun, 1 Feb 2009 20:20:50 -0500 Subject: [support] Little Bit of CSS Help Needed Message-ID: <9f68efb70902011720k52fbd51cv45e4032ccc3d9b98@mail.gmail.com> Hi Gang, Man, do I feel like a novice with CSS.... Here is the html that Drupal is spewing out. I want the two fields: field-field-body and field-field-rashi to be two columns with the right column having a colored background. Here is the html
>
>
>
>

Text in the left column goes here.

>

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis augue sed diam aliquam venenatis. Ut est justo, facilisis non, eleifend id, mattis sed, nunc. Proin sed dolor ac est semper ultricies. Vivamus faucibus massa at elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris eget eros. Aenean mattis. Maecenas sagittis, est id porta commodo, mauris nibh gravida elit, et elementum odio lacus nec erat. Nunc at dui. Proin tincidunt bibendum magna. Maecenas in ipsum sit amet tellus vehicula fermentum. Praesent tincidunt lectus quis ligula. Nullam elementum rhoncus lectus. Duis ligula. Integer porta. Donec vitae velit vel ipsum ullamcorper iaculis. Integer et tortor. Integer vel nisl.

>

Sed rhoncus tempor ipsum. Cras metus lectus, congue sit amet, gravida et, cursus at, eros. Suspendisse vitae elit ut libero dictum euismod. Maecenas egestas felis eu ipsum. Etiam diam. Nunc at lorem in massa ultrices pellentesque. Nulla aliquet tempus dolor. Ut viverra, diam sed sollicitudin euismod, pede ante posuere purus, non pretium eros nisi sit amet felis. Aliquam erat volutpat. Aenean in nunc. Pellentesque adipiscing adipiscing lacus. Sed risus. Nam rhoncus congue dolor. Donec vel purus ac purus luctus ultricies. Ut luctus, velit nec hendrerit mattis, justo risus scelerisque velit, nec varius dui eros vitae mauris. Morbi sem.

>

Vestibulum mauris erat, vehicula ac, egestas ut, porttitor id, mi. Vestibulum at sem aliquet libero ultrices vulputate. Suspendisse quis diam at velit venenatis viverra. Fusce vel nisi non lectus feugiat eleifend. Etiam tortor arcu, ullamcorper quis, consequat at, tempus vel, elit. Integer vestibulum eros ut neque. Etiam pellentesque fringilla nisi. Pellentesque pretium lacus. Mauris a nunc. Vestibulum ultricies, pede ac congue tincidunt, arcu mi ullamcorper magna, at interdum turpis lectus vel ante. Ut nec tortor. Etiam at est non lorem faucibus egestas. In adipiscing iaculis ipsum. In lobortis elementum metus. Integer sem metus, semper porttitor, sollicitudin at, consectetur id, nisl. Nullam justo tellus, tristique interdum, auctor posuere, laoreet vitae, diam. Aenean nec dolor. Proin non ligula. Aliquam lobortis, est nec accumsan tincidunt, elit lectus sollicitudin leo, aliquam sodales massa ligula id ipsum. Morbi adipiscing risus nec dolor.

> >

Donec ut ante. Etiam laoreet adipiscing massa. Ut in nisl ac magna pretium adipiscing. Aenean cursus ligula quis justo. Donec elementum, massa eleifend cursus fermentum, sapien urna interdum justo, sit amet aliquet lectus massa bibendum leo. Curabitur bibendum mollis tellus. Proin porttitor volutpat justo. Maecenas urna odio, volutpat at, tempor non, mattis a, urna. Nam et tellus rhoncus sapien facilisis varius. Proin faucibus tristique enim. Maecenas sagittis lectus ut nisi.

>

Quisque vel dui. Cras tempus. Sed adipiscing. Vivamus tristique semper pede. Etiam porta. Cras condimentum lectus. Phasellus non neque ac nisi pellentesque tempus. Aenean eleifend urna sit amet nisl. Nunc justo nunc, tristique ut, fringilla ac, lobortis rhoncus, metus. Sed molestie nunc non purus. Nam dui mauris, sagittis ut, luctus et, tincidunt sit amet, diam.

>
>
>
>
>
>
>

Text in the right column with the colored background, goes here. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis augue sed diam aliquam venenatis. Ut est justo, facilisis non, eleifend id, mattis sed, nunc. Proin sed dolor ac est semper ultricies. Vivamus faucibus massa at elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris eget eros. Aenean mattis. Maecenas sagittis, est id porta commodo, mauris nibh gravida elit, et elementum odio lacus nec erat. Nunc at dui. Proin tincidunt bibendum magna. Maecenas in ipsum sit amet tellus vehicula fermentum. Praesent tincidunt lectus quis ligula. Nullam elementum rhoncus lectus. Duis ligula. Integer porta. Donec vitae velit vel ipsum ullamcorper iaculis. Integer et tortor. Integer vel nisl.

> >

Sed rhoncus tempor ipsum. Cras metus lectus, congue sit amet, gravida et, cursus at, eros. Suspendisse vitae elit ut libero dictum euismod. Maecenas egestas felis eu ipsum. Etiam diam. Nunc at lorem in massa ultrices pellentesque. Nulla aliquet tempus dolor. Ut viverra, diam sed sollicitudin euismod, pede ante posuere purus, non pretium eros nisi sit amet felis. Aliquam erat volutpat. Aenean in nunc. Pellentesque adipiscing adipiscing lacus. Sed risus. Nam rhoncus congue dolor. Donec vel purus ac purus luctus ultricies. Ut luctus, velit nec hendrerit mattis, justo risus scelerisque velit, nec varius dui eros vitae mauris. Morbi sem.

>

Vestibulum mauris erat, vehicula ac, egestas ut, porttitor id, mi. Vestibulum at sem aliquet libero ultrices vulputate. Suspendisse quis diam at velit venenatis viverra. Fusce vel nisi non lectus feugiat eleifend. Etiam tortor arcu, ullamcorper quis, consequat at, tempus vel, elit. Integer vestibulum eros ut neque. Etiam pellentesque fringilla nisi. Pellentesque pretium lacus. Mauris a nunc. Vestibulum ultricies, pede ac congue tincidunt, arcu mi ullamcorper magna, at interdum turpis lectus vel ante. Ut nec tortor. Etiam at est non lorem faucibus egestas. In adipiscing iaculis ipsum. In lobortis elementum metus. Integer sem metus, semper porttitor, sollicitudin at, consectetur id, nisl. Nullam justo tellus, tristique interdum, auctor posuere, laoreet vitae, diam. Aenean nec dolor. Proin non ligula. Aliquam lobortis, est nec accumsan tincidunt, elit lectus sollicitudin leo, aliquam sodales massa ligula id ipsum. Morbi adipiscing risus nec dolor.

>

Donec ut ante. Etiam laoreet adipiscing massa. Ut in nisl ac magna pretium adipiscing. Aenean cursus ligula quis justo. Donec elementum, massa eleifend cursus fermentum, sapien urna interdum justo, sit amet aliquet lectus massa bibendum leo. Curabitur bibendum mollis tellus. Proin porttitor volutpat justo. Maecenas urna odio, volutpat at, tempor non, mattis a, urna. Nam et tellus rhoncus sapien facilisis varius. Proin faucibus tristique enim. Maecenas sagittis lectus ut nisi.

>

Quisque vel dui. Cras tempus. Sed adipiscing. Vivamus tristique semper pede. Etiam porta. Cras condimentum lectus. Phasellus non neque ac nisi pellentesque tempus. Aenean eleifend urna sit amet nisl. Nunc justo nunc, tristique ut, fringilla ac, lobortis rhoncus, metus. Sed molestie nunc non purus. Nam dui mauris, sagittis ut, luctus et, tincidunt sit amet, diam.

>
>
>
>
> > Here is my current attempt at the css .field-field-body div div { > width: 60%; > float: left; > padding: 0 2% 0 0; } > } > > div.content div.field-field-rashi div.field-item { > width: 35%; > float: left; > color: red; > padding: 0 0 0 2%; > background-color: #EADCC2; > } > I can tell from Firebug that the first declaration is getting applied, but not the second. So the float is working but the background color isn't. Ideally I'd like to have the two columns stay separate, no matter how much text is in either column. Do I do that with minimum-height declarations? I just find CSS mysterious sometimes. Thanks for the help. You can check out the sample node at http://fasttrackcoachacademy.com/node/9 if you want. Thanks much, Shai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090201/590ee70d/attachment.htm From cimo75 at gmail.com Mon Feb 2 03:27:21 2009 From: cimo75 at gmail.com (simone-www.io-lab.org) Date: Mon, 2 Feb 2009 03:27:21 +0000 Subject: [support] Little Bit of CSS Help Needed In-Reply-To: <9f68efb70902011720k52fbd51cv45e4032ccc3d9b98@mail.gmail.com> References: <9f68efb70902011720k52fbd51cv45e4032ccc3d9b98@mail.gmail.com> Message-ID: try: div.content .field-field-rashi .field-item { width: 35%; float: left; color: red; padding: 0 0 0 2%; background-color: #EADCC2; } On Mon, Feb 2, 2009 at 1:20 AM, Shai Gluskin wrote: > Hi Gang, > > Man, do I feel like a novice with CSS.... > > Here is the html that Drupal is spewing out. I want the two fields: > field-field-body and field-field-rashi to be two columns with the right > column having a colored background. > > Here is the html > >>
>> >>
>>
>> >>
>>

Text in the left column goes here.

>> >>

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis >> augue sed diam aliquam venenatis. Ut est justo, facilisis non, eleifend id, >> mattis sed, nunc. Proin sed dolor ac est semper ultricies. Vivamus faucibus >> massa at elit. Vestibulum ante ipsum primis in faucibus orci luctus et >> ultrices posuere cubilia Curae; Mauris eget eros. Aenean mattis. Maecenas >> sagittis, est id porta commodo, mauris nibh gravida elit, et elementum odio >> lacus nec erat. Nunc at dui. Proin tincidunt bibendum magna. Maecenas in >> ipsum sit amet tellus vehicula fermentum. Praesent tincidunt lectus quis >> ligula. Nullam elementum rhoncus lectus. Duis ligula. Integer porta. Donec >> vitae velit vel ipsum ullamcorper iaculis. Integer et tortor. Integer vel >> nisl.

>> >>

Sed rhoncus tempor ipsum. Cras metus lectus, congue sit amet, gravida >> et, cursus at, eros. Suspendisse vitae elit ut libero dictum euismod. >> Maecenas egestas felis eu ipsum. Etiam diam. Nunc at lorem in massa ultrices >> pellentesque. Nulla aliquet tempus dolor. Ut viverra, diam sed sollicitudin >> euismod, pede ante posuere purus, non pretium eros nisi sit amet felis. >> Aliquam erat volutpat. Aenean in nunc. Pellentesque adipiscing adipiscing >> lacus. Sed risus. Nam rhoncus congue dolor. Donec vel purus ac purus luctus >> ultricies. Ut luctus, velit nec hendrerit mattis, justo risus scelerisque >> velit, nec varius dui eros vitae mauris. Morbi sem.

>> >>

Vestibulum mauris erat, vehicula ac, egestas ut, porttitor id, mi. >> Vestibulum at sem aliquet libero ultrices vulputate. Suspendisse quis diam >> at velit venenatis viverra. Fusce vel nisi non lectus feugiat eleifend. >> Etiam tortor arcu, ullamcorper quis, consequat at, tempus vel, elit. Integer >> vestibulum eros ut neque. Etiam pellentesque fringilla nisi. Pellentesque >> pretium lacus. Mauris a nunc. Vestibulum ultricies, pede ac congue >> tincidunt, arcu mi ullamcorper magna, at interdum turpis lectus vel ante. Ut >> nec tortor. Etiam at est non lorem faucibus egestas. In adipiscing iaculis >> ipsum. In lobortis elementum metus. Integer sem metus, semper porttitor, >> sollicitudin at, consectetur id, nisl. Nullam justo tellus, tristique >> interdum, auctor posuere, laoreet vitae, diam. Aenean nec dolor. Proin non >> ligula. Aliquam lobortis, est nec accumsan tincidunt, elit lectus >> sollicitudin leo, aliquam sodales massa ligula id ipsum. Morbi adipiscing >> risus nec dolor.

>> >>

Donec ut ante. Etiam laoreet adipiscing massa. Ut in nisl ac magna >> pretium adipiscing. Aenean cursus ligula quis justo. Donec elementum, massa >> eleifend cursus fermentum, sapien urna interdum justo, sit amet aliquet >> lectus massa bibendum leo. Curabitur bibendum mollis tellus. Proin porttitor >> volutpat justo. Maecenas urna odio, volutpat at, tempor non, mattis a, urna. >> Nam et tellus rhoncus sapien facilisis varius. Proin faucibus tristique >> enim. Maecenas sagittis lectus ut nisi.

>> >>

Quisque vel dui. Cras tempus. Sed adipiscing. Vivamus tristique semper >> pede. Etiam porta. Cras condimentum lectus. Phasellus non neque ac nisi >> pellentesque tempus. Aenean eleifend urna sit amet nisl. Nunc justo nunc, >> tristique ut, fringilla ac, lobortis rhoncus, metus. Sed molestie nunc non >> purus. Nam dui mauris, sagittis ut, luctus et, tincidunt sit amet, diam.

>> >>
>>
>>
>>
>> >>
>>
>> >>

Text in the right column with the colored >> background, goes here. Lorem ipsum dolor sit amet, consectetur adipiscing >> elit. Curabitur quis augue sed diam aliquam venenatis. Ut est justo, >> facilisis non, eleifend id, mattis sed, nunc. Proin sed dolor ac est semper >> ultricies. Vivamus faucibus massa at elit. Vestibulum ante ipsum primis in >> faucibus orci luctus et ultrices posuere cubilia Curae; Mauris eget eros. >> Aenean mattis. Maecenas sagittis, est id porta commodo, mauris nibh gravida >> elit, et elementum odio lacus nec erat. Nunc at dui. Proin tincidunt >> bibendum magna. Maecenas in ipsum sit amet tellus vehicula fermentum. >> Praesent tincidunt lectus quis ligula. Nullam elementum rhoncus lectus. Duis >> ligula. Integer porta. Donec vitae velit vel ipsum ullamcorper iaculis. >> Integer et tortor. Integer vel nisl.

>> >>

Sed rhoncus tempor ipsum. Cras metus lectus, congue sit amet, gravida >> et, cursus at, eros. Suspendisse vitae elit ut libero dictum euismod. >> Maecenas egestas felis eu ipsum. Etiam diam. Nunc at lorem in massa ultrices >> pellentesque. Nulla aliquet tempus dolor. Ut viverra, diam sed sollicitudin >> euismod, pede ante posuere purus, non pretium eros nisi sit amet felis. >> Aliquam erat volutpat. Aenean in nunc. Pellentesque adipiscing adipiscing >> lacus. Sed risus. Nam rhoncus congue dolor. Donec vel purus ac purus luctus >> ultricies. Ut luctus, velit nec hendrerit mattis, justo risus scelerisque >> velit, nec varius dui eros vitae mauris. Morbi sem.

>> >>

Vestibulum mauris erat, vehicula ac, egestas ut, porttitor id, mi. >> Vestibulum at sem aliquet libero ultrices vulputate. Suspendisse quis diam >> at velit venenatis viverra. Fusce vel nisi non lectus feugiat eleifend. >> Etiam tortor arcu, ullamcorper quis, consequat at, tempus vel, elit. Integer >> vestibulum eros ut neque. Etiam pellentesque fringilla nisi. Pellentesque >> pretium lacus. Mauris a nunc. Vestibulum ultricies, pede ac congue >> tincidunt, arcu mi ullamcorper magna, at interdum turpis lectus vel ante. Ut >> nec tortor. Etiam at est non lorem faucibus egestas. In adipiscing iaculis >> ipsum. In lobortis elementum metus. Integer sem metus, semper porttitor, >> sollicitudin at, consectetur id, nisl. Nullam justo tellus, tristique >> interdum, auctor posuere, laoreet vitae, diam. Aenean nec dolor. Proin non >> ligula. Aliquam lobortis, est nec accumsan tincidunt, elit lectus >> sollicitudin leo, aliquam sodales massa ligula id ipsum. Morbi adipiscing >> risus nec dolor.

>> >>

Donec ut ante. Etiam laoreet adipiscing massa. Ut in nisl ac magna >> pretium adipiscing. Aenean cursus ligula quis justo. Donec elementum, massa >> eleifend cursus fermentum, sapien urna interdum justo, sit amet aliquet >> lectus massa bibendum leo. Curabitur bibendum mollis tellus. Proin porttitor >> volutpat justo. Maecenas urna odio, volutpat at, tempor non, mattis a, urna. >> Nam et tellus rhoncus sapien facilisis varius. Proin faucibus tristique >> enim. Maecenas sagittis lectus ut nisi.

>> >>

Quisque vel dui. Cras tempus. Sed adipiscing. Vivamus tristique semper >> pede. Etiam porta. Cras condimentum lectus. Phasellus non neque ac nisi >> pellentesque tempus. Aenean eleifend urna sit amet nisl. Nunc justo nunc, >> tristique ut, fringilla ac, lobortis rhoncus, metus. Sed molestie nunc non >> purus. Nam dui mauris, sagittis ut, luctus et, tincidunt sit amet, diam.

>> >>
>>
>>
>>
> > Here is my current attempt at the css > >> .field-field-body div div { >> width: 60%; >> float: left; >> padding: 0 2% 0 0; } >> } >> >> div.content div.field-field-rashi div.field-item { >> width: 35%; >> float: left; >> color: red; >> padding: 0 0 0 2%; >> background-color: #EADCC2; >> } > > I can tell from Firebug that the first declaration is getting applied, but > not the second. So the float is working but the background color isn't. > Ideally I'd like to have the two columns stay separate, no matter how much > text is in either column. Do I do that with minimum-height declarations? I > just find CSS mysterious sometimes. Thanks for the help. You can check out > the sample node at http://fasttrackcoachacademy.com/node/9 if you want. > > Thanks much, > > Shai > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- .wmv , .wma , .pps along with all proprietary Windows formats won t be accepted and/or viewed.... From net at twoedged.org Mon Feb 2 08:19:10 2009 From: net at twoedged.org (John Fletcher) Date: Mon, 2 Feb 2009 09:19:10 +0100 Subject: [support] Question regarding building a start page In-Reply-To: <20090131172700.GA12561@athlon.schoeppi.net> References: <20090131172700.GA12561@athlon.schoeppi.net> Message-ID: <002e01c9850e$f078e160$d16aa420$@org> Find the file page.tpl.php in the directory of the theme you are using. Create a copy of this file called page-front.tpl.php. Then add a few paragraphs of text to this new file, and see what happens! Fletch -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Christian Schoepplein Sent: Saturday, 31 January 2009 6:27 PM To: support at drupal.org Subject: [support] Question regarding building a start page Hi Drupalers :), I'm new to drupal and doing my first steps with the system and pages now. I use drupal 6.9 and the standard Garlant theme. I also should mension that I'm a blind computer user, but as far as I can say drupal seems to be very accessible and good to use with the special screenreader software I need to work. To build a website I created new nodes of the type article and page. Both nodes appear on the startpage of my drupal site now and I can fully access them by clicking the "Read more" link. But what I like to do is to build a start page with a static section, maybe a little wellcome text, and a dynamic section like it is presented on my start page now (some kind of news with the "Read more" links). How can this be done with drupal. I played arround with the system but I was not able to setup this kind of page :(. Is it a matter of the theme I'm using or what do I need to do to build that kind of pages? Thanks a lot for anny helpfull tips! Cheers, Christian -- Christian Schoepplein From simone.dalmaso at juvox.it Mon Feb 2 08:51:44 2009 From: simone.dalmaso at juvox.it (Simone Dal Maso) Date: Mon, 2 Feb 2009 09:51:44 +0100 Subject: [support] my users validations problem: found the cause Message-ID: <00a701c98513$7d2947e0$12c810ac@csa> Hi, finally I have found the cause of my user validation problem after registration, but solution seems quite hard. When users take the validation link and paste it into browser, the link is truncated. This is truncated by the url filter that sets the maximum lenght in 72 charachter. The problem is that if I go to administer, filter, select the main filter and then configure, I see the "72" value, I change it to 100, click save, and it returns to 72! So it seems that for some reason, I can't modify this value. So, I opened the filter module, I changed the default value to 100. I uploaded the new filter module, than I made an update.php. Now it displays 100! But, the link remains truncated to 72... Do you think other modules can prevent me to change this url lenght value? or do you know where this value is stored into the mysql table, so I change it manually? Thanks. -- 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 henning.sprang at gmail.com Mon Feb 2 09:03:01 2009 From: henning.sprang at gmail.com (Henning Sprang) Date: Mon, 2 Feb 2009 10:03:01 +0100 Subject: [support] Question regarding building a start page In-Reply-To: <002e01c9850e$f078e160$d16aa420$@org> References: <20090131172700.GA12561@athlon.schoeppi.net> <002e01c9850e$f078e160$d16aa420$@org> Message-ID: <5bb00b3f0902020103r61d53046k68b30e89adc5db45@mail.gmail.com> On Mon, Feb 2, 2009 at 9:19 AM, John Fletcher wrote: > Find the file page.tpl.php in the directory of the theme you are using. > Create a copy of this file called page-front.tpl.php. Then add a few > paragraphs of text to this new file, and see what happens! Hmm, I'd always try to modify themes as less as possible, and especially keep any content away from them. Be it only for the reason that the contents edit otherwise can be changed much easier. More important, this will not persist when the theme is changed, and there's not internationalization possible when putting contents directly into the template. I might have gotten the question wrong, so my hint is missing some bits, but still, there are ways to do these things without touching templates. The standard thing in drupal to get some type of welcome message seems to me to set the "mission" field on the site information dialog. You only have to take care that the theme you use is handling it correctly. If the theme is not supporting this, or a simple textual sentence is not enough for you, you can create a new page and define is as the frontpage (as I explained above), enter your html as you like, and if you want to get the same summary as it is on the default start page, you can add this php code: You must set input type to "php", for sure ;) Henning From net at twoedged.org Mon Feb 2 09:12:32 2009 From: net at twoedged.org (John Fletcher) Date: Mon, 2 Feb 2009 10:12:32 +0100 Subject: [support] Question regarding building a start page In-Reply-To: <5bb00b3f0902020103r61d53046k68b30e89adc5db45@mail.gmail.com> References: <20090131172700.GA12561@athlon.schoeppi.net> <002e01c9850e$f078e160$d16aa420$@org> <5bb00b3f0902020103r61d53046k68b30e89adc5db45@mail.gmail.com> Message-ID: <000601c98516$64a0bc00$2de23400$@org> > print node_page_default(); Ahh very nice, I didn't know that trick. I think your last idea is the best for this case! From simpsonetti at googlemail.com Mon Feb 2 09:14:45 2009 From: simpsonetti at googlemail.com (=?iso-8859-1?Q?Sebastian_G=F6decke?=) Date: Mon, 2 Feb 2009 10:14:45 +0100 Subject: [support] Invisimail in D6.8 Message-ID: <1516415090.20090202101445@googlemail.com> Guten Tag Support Support, Hi, i want wo use invisimail in D6.8 . I know that this is a RC, but that this Version doesn't work, ? i'm using invisimail in D5 too and this works quite good. Does anybody knows, what to do in D6 ? -- Mit freundlichen Gr??en Sebastian G?decke mailto:simpsonetti at googlemail.com From henning.sprang at gmail.com Mon Feb 2 09:17:52 2009 From: henning.sprang at gmail.com (Henning Sprang) Date: Mon, 2 Feb 2009 10:17:52 +0100 Subject: [support] Question regarding building a start page In-Reply-To: <000601c98516$64a0bc00$2de23400$@org> References: <20090131172700.GA12561@athlon.schoeppi.net> <002e01c9850e$f078e160$d16aa420$@org> <5bb00b3f0902020103r61d53046k68b30e89adc5db45@mail.gmail.com> <000601c98516$64a0bc00$2de23400$@org> Message-ID: <5bb00b3f0902020117j56a4daceva57ba25515deb62d@mail.gmail.com> On Mon, Feb 2, 2009 at 10:12 AM, John Fletcher wrote: >> print node_page_default(); > > Ahh very nice, I didn't know that trick. I think your last idea is the best > for this case! Thanks :) I don't remember when and how I found that ;) Another thing is the "frontpage" module. But as far as I see, it's not internationalization-capable... Henning -- Henning Sprang http://www.sprang.de | http://lazyb0y.blogspot.com/ From chris at schoeppi.net Mon Feb 2 10:17:21 2009 From: chris at schoeppi.net (Christian Schoepplein) Date: Mon, 2 Feb 2009 11:17:21 +0100 Subject: [support] Question regarding building a start page In-Reply-To: <5bb00b3f0902020117j56a4daceva57ba25515deb62d@mail.gmail.com> References: <20090131172700.GA12561@athlon.schoeppi.net> <002e01c9850e$f078e160$d16aa420$@org> <5bb00b3f0902020103r61d53046k68b30e89adc5db45@mail.gmail.com> <000601c98516$64a0bc00$2de23400$@org> <5bb00b3f0902020117j56a4daceva57ba25515deb62d@mail.gmail.com> Message-ID: <20090202101721.GB17908@mail.cs-x.de> Hi Henning, John and list, On Mo, Feb 02, 2009 at 10:17:52 +0100, Henning Sprang wrote: >On Mon, Feb 2, 2009 at 10:12 AM, John Fletcher wrote: >>> print node_page_default(); >> >> Ahh very nice, I didn't know that trick. I think your last idea is the best >> for this case! Thanks, very cool, I will try this. >Another thing is the "frontpage" module. But as far as I see, it's not >internationalization-capable... I've installed the module and played around with it a little bit. Maybe the module has some problems with Drupal 6 or I did something wrong, but I was only able to get a startpage for authorized users working only :(. Annonymous visitors of the page got an eror 403 or 404, the page wasn't accessible somehow. Another problem is that I still not know how to build nodes with dynamic content. I'd like to build a page with an overview of the last 10 created articles or pages and put some static text below that overview. Such a node would be a good start page for my needs but as long as it is not clear to me how to build such a node the frontpage module can't help me really, because I also have to specify a node for my frontpage or put the right content (normal text and maybe php code) into the input fields for the body of the nodes that should be presented as front page. How can nodes with dynamic content as described above be created? Do I really have to specify php code into the input field of the node bodys or is there another possibility? Or do I have to use views or something simmilar? Sorry for the beginner questions but that is one big point that it is still not clear to me. I started to read the Drupal Cookbook and hope that the understanding how drupal is working gets clearer to me then. >Henning Cheers, Schoepp From earnie at users.sourceforge.net Mon Feb 2 13:28:40 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Mon, 02 Feb 2009 08:28:40 -0500 Subject: [support] Invisimail in D6.8 In-Reply-To: <1516415090.20090202101445@googlemail.com> References: <1516415090.20090202101445@googlemail.com> Message-ID: <20090202082840.a3e7g13umpwk4k80@mail.progw.org> Quoting Sebastian G?decke : > Guten Tag Support Support, > > Hi, i want wo use invisimail in D6.8 . I know that this is a RC, but > that this Version doesn't work, ? i'm using invisimail in D5 too and > this works quite good. > Does anybody knows, what to do in D6 ? > It is best to use http://drupal.org/project/issues/invisimail/ for this type of question. -- 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 Mon Feb 2 13:39:51 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Mon, 02 Feb 2009 08:39:51 -0500 Subject: [support] my users validations problem: found the cause In-Reply-To: <00a701c98513$7d2947e0$12c810ac@csa> References: <00a701c98513$7d2947e0$12c810ac@csa> Message-ID: <20090202083951.5i2luznrjs68csc0@mail.progw.org> Quoting Simone Dal Maso : > Hi, > finally I have found the cause of my user validation problem after > registration, but solution seems quite hard. > When users take the validation link and paste it into browser, the > link is truncated. This is truncated by the url filter that sets the > maximum lenght in 72 charachter. > The problem is that if I go to administer, filter, select the main > filter and then configure, I see the "72" value, I change it to 100, > click save, and it returns to 72! So it seems that for some reason, I > can't modify this value. > So, I opened the filter module, I changed the default value to 100. I > uploaded the new filter module, than I made an update.php. > Now it displays 100! But, the link remains truncated to 72... > Do you think other modules can prevent me to change this url lenght value? > or do you know where this value is stored into the mysql table, so I > change it manually? > Thanks. > I forget, what version of Drupal are you using? The display length value is controlled by admin/settings/filters/1/configure and other input filter settings. It would seem a bug for the user mail link to be filtered to this length though since it is for the Drupal UI. -- 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 simone.dalmaso at juvox.it Mon Feb 2 14:24:36 2009 From: simone.dalmaso at juvox.it (Simone Dal Maso) Date: Mon, 2 Feb 2009 15:24:36 +0100 Subject: [support] my users validations problem: found the cause References: <00a701c98513$7d2947e0$12c810ac@csa> <20090202083951.5i2luznrjs68csc0@mail.progw.org> Message-ID: <032f01c98542$06ce7820$12c810ac@csa> Hi, ok, no bug. It is quite difficult remember what modules affect all features of drupal! Anyway, the html mail, that I installed, gave this problem. I uninstalled this module and all works well, on drupal 5.6. Unfortunately this module have no option to adjust lenght of urls, so I think using mime mail for having email in html. bye bye. ----- Original Message ----- From: "Earnie Boyd" To: Sent: Monday, February 02, 2009 2:39 PM Subject: Re: [support] my users validations problem: found the cause > Quoting Simone Dal Maso : > > > Hi, > > finally I have found the cause of my user validation problem after > > registration, but solution seems quite hard. > > When users take the validation link and paste it into browser, the > > link is truncated. This is truncated by the url filter that sets the > > maximum lenght in 72 charachter. > > The problem is that if I go to administer, filter, select the main > > filter and then configure, I see the "72" value, I change it to 100, > > click save, and it returns to 72! So it seems that for some reason, I > > can't modify this value. > > So, I opened the filter module, I changed the default value to 100. I > > uploaded the new filter module, than I made an update.php. > > Now it displays 100! But, the link remains truncated to 72... > > Do you think other modules can prevent me to change this url lenght value? > > or do you know where this value is stored into the mysql table, so I > > change it manually? > > Thanks. > > > > I forget, what version of Drupal are you using? The display length > value is controlled by admin/settings/filters/1/configure and other > input filter settings. It would seem a bug for the user mail link to > be filtered to this length though since it is for the Drupal UI. > > -- > 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 marc at cultmovieforums.com Mon Feb 2 16:50:17 2009 From: marc at cultmovieforums.com (Marc Morris) Date: Mon, 2 Feb 2009 16:50:17 +0000 Subject: [support] CCK search help needed In-Reply-To: References: <9f68efb70902011720k52fbd51cv45e4032ccc3d9b98@mail.gmail.com> Message-ID: <0E777A34-12DB-4E85-8C3B-334C95F91F65@cultmovieforums.com> I've created a content type called "movie", in which I have the following fields: Title Director Also Known As Country Year Cast Synopsis etc.. Is the a module I can install which will allow the searching of these fields, or for a title, director or combination of fields? I'm just reading through the "views" documentation, which I guess I will need to somehow combine with the search, but as yet I'm unsure how to do this. Can anybody offer any advice? Thanks! From georger at depiction.com Tue Feb 3 01:12:01 2009 From: georger at depiction.com (George Rodgers-Clark) Date: Mon, 2 Feb 2009 17:12:01 -0800 Subject: [support] Help with test server Message-ID: <3E34DF2D43A0AA47828FCCC0AC9C579B1F0996@simioserver.Simio.local> Hello All, I'm working to set up a test server in my office so I can do some serious tinkering on our company site. I'm having two problems: 1) I've got the main web folder and mysql databases copied to a virtual machine on our local net. The site shows text, links and colors obviously drawn from the CSS, but is not showing any images, nor allowing logins. Any ideas? We had the securepages module installed, but have disabled it via the mysql. 2) I'd also like to set up an SVN repository so that others on my team can work on the site and we all can track what's going on. We've found some info on the web, but could use more solid advice. This is a Drupal 5.11 setup with MySQL 5 and PHP 5 on Ubuntu Server 8.04 with Ubercart and CiviCRM. Thanks in advance, George George Rodgers-Clark http://www.depiction.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090202/a3745bb6/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 8290 bytes Desc: image001.jpg Url : http://lists.drupal.org/pipermail/support/attachments/20090202/a3745bb6/attachment.jpeg From lakbay.taodev at gmail.com Tue Feb 3 04:41:58 2009 From: lakbay.taodev at gmail.com (tata dano) Date: Tue, 3 Feb 2009 12:41:58 +0800 Subject: [support] Inquiry on imageblock... Message-ID: <4acfed4e0902022041gb0e9072qfdafb576a0f34a3f@mail.gmail.com> Hello, I am new to Drupal. For now, I want to install Gallery2 but have to enable first imageblock. Based on my search, I only found imageblock for D5..i am using D6. Any advice on how to enable it or find appropriate module for it? Thanks a million. Tata -- Linux Registered User #383849 http://kngphil.proboards58.com/ http://atats.blogspot.com/ http://sedemdbs.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090203/21a2e9fc/attachment.htm From earnie at users.sourceforge.net Tue Feb 3 14:02:17 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Tue, 03 Feb 2009 09:02:17 -0500 Subject: [support] Inquiry on imageblock... In-Reply-To: <4acfed4e0902022041gb0e9072qfdafb576a0f34a3f@mail.gmail.com> References: <4acfed4e0902022041gb0e9072qfdafb576a0f34a3f@mail.gmail.com> Message-ID: <20090203090217.r821w0aum6vc4440@mail.progw.org> Quoting tata dano : > Hello, > > I am new to Drupal. For now, I want to install Gallery2 but have to enable > first imageblock. Based on my search, I only found imageblock for D5..i am > using D6. Any advice on how to enable it or find appropriate module for it? > I have no idea but this question is better asked here http://drupal.org/project/issues/gallery2. -- 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 madflute at anonemusic.com Tue Feb 3 15:01:41 2009 From: madflute at anonemusic.com (A-NO-NE Music) Date: Tue, 3 Feb 2009 10:01:41 -0500 Subject: [support] OG Questions In-Reply-To: <51a9b8330902011435n34679deduc5518315d1b537aa@mail.gmail.com> References: <75029A97-1F13-40E1-B4B0-2B1C847EA814@anonemusic.com> <51a9b8330902011435n34679deduc5518315d1b537aa@mail.gmail.com> Message-ID: Thank you so much for your response. Since I saw this post, I opened the Drupal Dev book but this is beyond my head. I guess I need to study PHP first. The code example below, I assume I need to know all the variable names, but I couldn't figure them out from the book. When you said 'put inside', what inside? --- Hiro Hiroaki Honshuku, A-NO-NE Music, Greater Boston http://a-no-ne.com http://anonemusic.com On 09/02/01(?), at 17:35, KOBA | Hans Rossel wrote: > To control the OG Detail Block items: make a small module (so just > a .info and .module file, give it whatever name you like, I called > it modulename in the example) and put inside: > > The following code has some commented out code, the > drupal_set_message code gives you the names of all the $links so you > know which ones to remove or change, then I changed the invite link > text to blablabla and removed the subscribers and manger link. > > /** > * Implementation of hook_og_link_alter(). > */ > function modulename_og_links_alter(&$links, $group_node) { > //drupal_set_message('
'. var_export($group_node,TRUE) .'
'); > //drupal_set_message('
'. var_export($links,TRUE) .'
'); > // Remove or change links from group details block. > $links['invite'] = 'Blablabla'; > unset ($links['subscribers']); > unset ($links['manager']); > //unset ($links['my_membership']); > } > > Good luck, > > Hans > > > 2009/2/1 A-NO-NE Music > Drupal 6.8 > > I am having a difficulty controlling OG Details Block. > > - I need to show OG Details Block shown to all the pages even the page > is not OG content. > - I need to control the OG Detail Block items, i.e., I don't want to > show the member list link. > > Any help would be appreciated. > > > -- > - Hiro > > Hiroaki Honshuku, A-NO-NE Music, Greater Boston > http://a-no-ne.com http://anonemusic.com > > -- > [ Drupal support list | http://lists.drupal.org/ ] > > > > -- > Hans Rossel > KOBA Webdevelopment > Kerkstraat 228 > 9050 Gent > 09-334.52.60 > 0472-79.32.16 > www.koba.be > info at koba.be > -- > [ Drupal support list | http://lists.drupal.org/ ] -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090203/d435f861/attachment.htm From simpsonetti at googlemail.com Tue Feb 3 17:53:08 2009 From: simpsonetti at googlemail.com (=?iso-8859-1?Q?Sebastian_G=F6decke?=) Date: Tue, 3 Feb 2009 18:53:08 +0100 Subject: [support] Invisimail in D6.8 In-Reply-To: <20090202082840.a3e7g13umpwk4k80@mail.progw.org> References: <1516415090.20090202101445@googlemail.com> <20090202082840.a3e7g13umpwk4k80@mail.progw.org> Message-ID: <719815092.20090203185308@googlemail.com> Guten Tag Earnie Boyd, am Montag, 2. Februar 2009 um 14:28 schrieben Sie: > Quoting Sebastian G?decke : >> Guten Tag Support Support, >> >> Hi, i want wo use invisimail in D6.8 . I know that this is a RC, but >> that this Version doesn't work, ? i'm using invisimail in D5 too and >> this works quite good. >> Does anybody knows, what to do in D6 ? >> > It is best to use http://drupal.org/project/issues/invisimail/ for this > type of question. Okay, i did so, but answer was to use http://drupal.org/modules/spamspan Regards simpsonetti > -- > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ -- Mit freundlichen Gr??en Sebastian G?decke mailto:simpsonetti at googlemail.com From skessler at denverdataman.com Tue Feb 3 18:56:56 2009 From: skessler at denverdataman.com (Steve Kessler) Date: Tue, 3 Feb 2009 11:56:56 -0700 Subject: [support] Encrypting CCK Data Message-ID: <00bb01c98631$300197a0$9004c6e0$@com> I am trying to make a site that will hold some sensitive information that I would like to have at least minimal encryption on some of my CCK fields. Is there an easy way to encrypt CCK text fields? I would need to display the un-encrypted values when the nodes were viewed by users with the correct permissions. 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/20090203/850dba72/attachment.htm From shai at content2zero.com Tue Feb 3 19:45:13 2009 From: shai at content2zero.com (Shai Gluskin) Date: Tue, 3 Feb 2009 14:45:13 -0500 Subject: [support] HTML forms not Drupal's Forms API -- Badness Explanation Needed Message-ID: <9f68efb70902031145s6a8ed483t1168626e66044afa@mail.gmail.com> Gang, I've red-flagged for a potential client (abandoned by former Drupal developer) an event registration page on their site that uses an html form to deliver some variables to a Paypal page. Looks like the code came from a Paypal help page. I'm proposing using a combination of the signup and signup_pay modules to handle this functionality. I'd like to give the client a little more detail on why it is bad to use regular html forms in addition to "It's more stable," or "it's the Drupal way." On the "It's more stable" argument, I need some more detail on why and what are some bad things that can. Any help would be most appreciated. Thanks, Shai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090203/d642d403/attachment.htm From john.callahan at UDel.Edu Tue Feb 3 19:48:57 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Tue, 03 Feb 2009 14:48:57 -0500 Subject: [support] permission to create unpublished pages? Message-ID: <49889FA9.9040609@udel.edu> I have authenticated users being able to create the "Page" content type on my site. That's the only content type they can create. They are allowed to edit/delete their own Pages. The problem is when they create a page, they do not have "Authoring information" or "Publishing options" available on the node create/edit page. I want them to be able to create unpublished pages (when the page is eventually ready, they'll mark it as published.) To give them that ability, it seems I have to grant them the "administer nodes" permission. However, that gives them the ability to create any content type, which I do not want. Am I missing something? Is this expected behavior or is my site screwed up in some way? It seems like a simple enough task. Thanks. - John ************************************************** John Callahan Geospatial Application Developer Delaware Geological Survey, University of Delaware 227 Academy St, Newark DE 19716-7501 Tel: (302) 831-3584 Email: john.callahan at udel.edu http://www.dgs.udel.edu ************************************************** From metzlerd at evergreen.edu Tue Feb 3 19:54:17 2009 From: metzlerd at evergreen.edu (Metzler, David) Date: Tue, 3 Feb 2009 11:54:17 -0800 Subject: [support] HTML forms not Drupal's Forms API -- Badness ExplanationNeeded In-Reply-To: <9f68efb70902031145s6a8ed483t1168626e66044afa@mail.gmail.com> References: <9f68efb70902031145s6a8ed483t1168626e66044afa@mail.gmail.com> Message-ID: <52177C930FA90F4D9888B0343FDB79FB10ECB1@birch.evergreen.edu> The most compelling reason aside form being more maintainable, is that drupal forms api implements cross-site scripting vulnerability protections that may not have been taken care of in the original code. Dave ________________________________ From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Shai Gluskin Sent: Tuesday, February 03, 2009 11:45 AM To: support at drupal.org Subject: [support] HTML forms not Drupal's Forms API -- Badness ExplanationNeeded Gang, I've red-flagged for a potential client (abandoned by former Drupal developer) an event registration page on their site that uses an html form to deliver some variables to a Paypal page. Looks like the code came from a Paypal help page. I'm proposing using a combination of the signup and signup_pay modules to handle this functionality. I'd like to give the client a little more detail on why it is bad to use regular html forms in addition to "It's more stable," or "it's the Drupal way." On the "It's more stable" argument, I need some more detail on why and what are some bad things that can. Any help would be most appreciated. Thanks, Shai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090203/1d869d16/attachment-0001.htm From greg.knaddison at gmail.com Tue Feb 3 20:07:21 2009 From: greg.knaddison at gmail.com (Greg Knaddison) Date: Tue, 3 Feb 2009 13:07:21 -0700 Subject: [support] HTML forms not Drupal's Forms API -- Badness ExplanationNeeded In-Reply-To: <52177C930FA90F4D9888B0343FDB79FB10ECB1@birch.evergreen.edu> References: <9f68efb70902031145s6a8ed483t1168626e66044afa@mail.gmail.com> <52177C930FA90F4D9888B0343FDB79FB10ECB1@birch.evergreen.edu> Message-ID: <3861c6770902031207l5804c10fke3c0399299d6cdb4@mail.gmail.com> On Tue, Feb 3, 2009 at 12:54 PM, Metzler, David wrote: > The most compelling reason aside form being more maintainable, is that > drupal forms api implements cross-site scripting vulnerability protections > that may not have been taken care of in the original code. It implements Semantic Forgery protection and Cross Site Request Forgery protection. The form can still be vulnerable to a Cross Site Scripting (CSS) attack if the XSS vulnerability is on the same site, but it is safe from a "blind" XSS attack that is done across domains. The commonly stated phrase "Use Drupal's Form API for safety" only applies when the form is submitted (POSTed) back to the Drupal site. If you are posting to a third party site then it doesn't matter how the form is built on the Drupal page. Shai - I think you'll have to motivate the client to choose an implementation based on additional features provided by a signup+signup_pay combination (which, by the way, is getting lots of great attention recently from the maintainers including some great sponsored work that Derek Wright has done). Cheers, Greg -- Greg Knaddison http://knaddison.com | 303-800-5623 | http://growingventuresolutions.com From gordon at heydon.com.au Tue Feb 3 23:05:27 2009 From: gordon at heydon.com.au (Gordon Heydon) Date: Wed, 4 Feb 2009 10:05:27 +1100 Subject: [support] Encrypting CCK Data In-Reply-To: <00bb01c98631$300197a0$9004c6e0$@com> References: <00bb01c98631$300197a0$9004c6e0$@com> Message-ID: <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> HI, Because of how PHP works is is not really possible to encrypt data within the Drupal database. basically the problem is that to encrypt and decrypt the data you will need the private key, so any person who wants to find decrypt the data will most likely have full access to the private key and all the code to decrypt it. Even to the point of just calling directly the same php code to get the get the clear text. I would love to be able to do this for e-Commerce, but there is no way to keep it 100% safe. If they have access to the database, the rest is available to get the clear text version. Gordon. On 04/02/2009, at 5:56 AM, Steve Kessler wrote: > I am trying to make a site that will hold some sensitive information > that I would like to have at least minimal encryption on some of my > CCK fields. Is there an easy way to encrypt CCK text fields? I would > need to display the un-encrypted values when the nodes were viewed > by users with the correct permissions. > > Thanks, > Steve > > > Steve Kessler > Denver DataMan > 303-587-4428 > Sign up for the Denver DataMan Free eNewsletter > > -- > [ Drupal support list | http://lists.drupal.org/ ] From gordon at heydon.com.au Tue Feb 3 23:08:07 2009 From: gordon at heydon.com.au (Gordon Heydon) Date: Wed, 4 Feb 2009 10:08:07 +1100 Subject: [support] permission to create unpublished pages? In-Reply-To: <49889FA9.9040609@udel.edu> References: <49889FA9.9040609@udel.edu> Message-ID: Hi, there i not really a permission to do this. But I coud do this by using the rules or workflow_ng module to basically unpublish this node if they have a certain role. Gordon. On 04/02/2009, at 6:48 AM, John Callahan wrote: > I have authenticated users being able to create the "Page" content > type > on my site. That's the only content type they can create. They are > allowed to edit/delete their own Pages. The problem is when they > create > a page, they do not have "Authoring information" or "Publishing > options" > available on the node create/edit page. I want them to be able to > create unpublished pages (when the page is eventually ready, they'll > mark it as published.) To give them that ability, it seems I have to > grant them the "administer nodes" permission. However, that gives > them > the ability to create any content type, which I do not want. > > > Am I missing something? Is this expected behavior or is my site > screwed > up in some way? It seems like a simple enough task. Thanks. > > - John > > ************************************************** > John Callahan > Geospatial Application Developer > Delaware Geological Survey, University of Delaware > 227 Academy St, Newark DE 19716-7501 > Tel: (302) 831-3584 > Email: john.callahan at udel.edu > http://www.dgs.udel.edu > ************************************************** > > -- > [ Drupal support list | http://lists.drupal.org/ ] From lakbay.taodev at gmail.com Tue Feb 3 23:22:17 2009 From: lakbay.taodev at gmail.com (tata dano) Date: Wed, 4 Feb 2009 07:22:17 +0800 Subject: [support] Inquiry on imageblock... In-Reply-To: <20090203090217.r821w0aum6vc4440@mail.progw.org> References: <4acfed4e0902022041gb0e9072qfdafb576a0f34a3f@mail.gmail.com> <20090203090217.r821w0aum6vc4440@mail.progw.org> Message-ID: <4acfed4e0902031522y70d4e774hc1577846d5485791@mail.gmail.com> Thanks for the info. On Tue, Feb 3, 2009 at 10:02 PM, Earnie Boyd wrote: > Quoting tata dano : > > > Hello, > > > > I am new to Drupal. For now, I want to install Gallery2 but have to > enable > > first imageblock. Based on my search, I only found imageblock for D5..i > am > > using D6. Any advice on how to enable it or find appropriate module for > it? > > > > I have no idea but this question is better asked here > http://drupal.org/project/issues/gallery2. > > -- > 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/ ] > -- Linux Registered User #383849 http://kngphil.proboards58.com/ http://atats.blogspot.com/ http://sedemdbs.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090204/e947008a/attachment.htm From adame780 at gmail.com Tue Feb 3 23:26:14 2009 From: adame780 at gmail.com (Adam Ely) Date: Tue, 3 Feb 2009 15:26:14 -0800 Subject: [support] Encrypting CCK Data In-Reply-To: <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> References: <00bb01c98631$300197a0$9004c6e0$@com> <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> Message-ID: <65ee05aa0902031526n1361d819u3a767128779cc763@mail.gmail.com> Gordon is some what right but really it depends what you are trying to protect against and the acceptable level of risk. There is always risk so you have to decide what is OK. If you want to make sure the data is protected in the database at rest which will then protect it when stored in back ups, transfered to a slave and other things then you can build in encryption into the code that accesses the data. This could also protect you against some code vulnerabiilites but not all, too abstract to get into since we don't know what cold be in the code, etc.. If you want to protect from those who might have access to the code (legit or not) and thus the keys, you need to add some key management to the process. most of the solutions I have used in the past called a complied app that went out and got the key or used a third party key management solution. At any rate, might be more than what you are looking to do. Adam On Tue, Feb 3, 2009 at 3:05 PM, Gordon Heydon wrote: > HI, > > Because of how PHP works is is not really possible to encrypt data > within the Drupal database. > > basically the problem is that to encrypt and decrypt the data you will > need the private key, so any person who wants to find decrypt the data > will most likely have full access to the private key and all the code > to decrypt it. Even to the point of just calling directly the same php > code to get the get the clear text. > > I would love to be able to do this for e-Commerce, but there is no way > to keep it 100% safe. If they have access to the database, the rest is > available to get the clear text version. > > Gordon. > > On 04/02/2009, at 5:56 AM, Steve Kessler wrote: > > > I am trying to make a site that will hold some sensitive information > > that I would like to have at least minimal encryption on some of my > > CCK fields. Is there an easy way to encrypt CCK text fields? I would > > need to display the un-encrypted values when the nodes were viewed > > by users with the correct permissions. > > > > Thanks, > > Steve > > > > > > Steve Kessler > > Denver DataMan > > 303-587-4428 > > Sign up for the Denver DataMan Free eNewsletter > > > > -- > > [ 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/20090203/e104d192/attachment.htm From skessler at denverdataman.com Tue Feb 3 23:26:51 2009 From: skessler at denverdataman.com (Steve Kessler) Date: Tue, 3 Feb 2009 16:26:51 -0700 Subject: [support] Encrypting CCK Data In-Reply-To: <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> References: <00bb01c98631$300197a0$9004c6e0$@com> <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> Message-ID: <015501c98656$e4e2d470$aea87d50$@com> I am a little confused. How is this done with passwords using MD5? I would happy with MD5 encryption. I would love to understand this if I am missing something. Thanks, Steve Steve Kessler Denver DataMan 303-587-4428 Sign up for the Denver DataMan Free eNewsletter -----Original Message----- From: Gordon Heydon [mailto:gordon at heydon.com.au] Sent: Tuesday, February 03, 2009 4:05 PM To: support at drupal.org Subject: Re: [support] Encrypting CCK Data HI, Because of how PHP works is is not really possible to encrypt data within the Drupal database. basically the problem is that to encrypt and decrypt the data you will need the private key, so any person who wants to find decrypt the data will most likely have full access to the private key and all the code to decrypt it. Even to the point of just calling directly the same php code to get the get the clear text. I would love to be able to do this for e-Commerce, but there is no way to keep it 100% safe. If they have access to the database, the rest is available to get the clear text version. Gordon. On 04/02/2009, at 5:56 AM, Steve Kessler wrote: > I am trying to make a site that will hold some sensitive information > that I would like to have at least minimal encryption on some of my > CCK fields. Is there an easy way to encrypt CCK text fields? I would > need to display the un-encrypted values when the nodes were viewed > by users with the correct permissions. > > Thanks, > Steve > > > Steve Kessler > Denver DataMan > 303-587-4428 > Sign up for the Denver DataMan Free eNewsletter > > -- > [ Drupal support list | http://lists.drupal.org/ ] -- [ Drupal support list | http://lists.drupal.org/ ] From adame780 at gmail.com Tue Feb 3 23:29:23 2009 From: adame780 at gmail.com (Adam Ely) Date: Tue, 3 Feb 2009 15:29:23 -0800 Subject: [support] Encrypting CCK Data In-Reply-To: <015501c98656$e4e2d470$aea87d50$@com> References: <00bb01c98631$300197a0$9004c6e0$@com> <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> <015501c98656$e4e2d470$aea87d50$@com> Message-ID: <65ee05aa0902031529t2a3de8cex11d94d22e496613f@mail.gmail.com> MD5 is a hash, not encryption. It is one way. On Tue, Feb 3, 2009 at 3:26 PM, Steve Kessler wrote: > I am a little confused. How is this done with passwords using MD5? I would > happy with MD5 encryption. I would love to understand this if I am missing > something. > > Thanks, > Steve > > Steve Kessler > Denver DataMan > 303-587-4428 > Sign up for the Denver DataMan Free eNewsletter > > > -----Original Message----- > From: Gordon Heydon [mailto:gordon at heydon.com.au] > Sent: Tuesday, February 03, 2009 4:05 PM > To: support at drupal.org > Subject: Re: [support] Encrypting CCK Data > > HI, > > Because of how PHP works is is not really possible to encrypt data > within the Drupal database. > > basically the problem is that to encrypt and decrypt the data you will > need the private key, so any person who wants to find decrypt the data > will most likely have full access to the private key and all the code > to decrypt it. Even to the point of just calling directly the same php > code to get the get the clear text. > > I would love to be able to do this for e-Commerce, but there is no way > to keep it 100% safe. If they have access to the database, the rest is > available to get the clear text version. > > Gordon. > > On 04/02/2009, at 5:56 AM, Steve Kessler wrote: > > > I am trying to make a site that will hold some sensitive information > > that I would like to have at least minimal encryption on some of my > > CCK fields. Is there an easy way to encrypt CCK text fields? I would > > need to display the un-encrypted values when the nodes were viewed > > by users with the correct permissions. > > > > Thanks, > > Steve > > > > > > Steve Kessler > > Denver DataMan > > 303-587-4428 > > Sign up for the Denver DataMan Free eNewsletter > > > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > -- > [ 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/20090203/d28b648c/attachment-0001.htm From gordon at heydon.com.au Tue Feb 3 23:40:50 2009 From: gordon at heydon.com.au (Gordon Heydon) Date: Wed, 4 Feb 2009 10:40:50 +1100 Subject: [support] Encrypting CCK Data In-Reply-To: <015501c98656$e4e2d470$aea87d50$@com> References: <00bb01c98631$300197a0$9004c6e0$@com> <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> <015501c98656$e4e2d470$aea87d50$@com> Message-ID: <2574CC80-7197-4139-9937-F8BF9BD9FB5C@heydon.com.au> Hi, MD5 is not an encryption it is a hash., and it is only 1 way. So you can get the hash of a password, but you can't reverse that process. Gordon. On 04/02/2009, at 10:26 AM, Steve Kessler wrote: > I am a little confused. How is this done with passwords using MD5? I > would > happy with MD5 encryption. I would love to understand this if I am > missing > something. > > Thanks, > Steve > > Steve Kessler > Denver DataMan > 303-587-4428 > Sign up for the Denver DataMan Free eNewsletter > > > -----Original Message----- > From: Gordon Heydon [mailto:gordon at heydon.com.au] > Sent: Tuesday, February 03, 2009 4:05 PM > To: support at drupal.org > Subject: Re: [support] Encrypting CCK Data > > HI, > > Because of how PHP works is is not really possible to encrypt data > within the Drupal database. > > basically the problem is that to encrypt and decrypt the data you will > need the private key, so any person who wants to find decrypt the data > will most likely have full access to the private key and all the code > to decrypt it. Even to the point of just calling directly the same php > code to get the get the clear text. > > I would love to be able to do this for e-Commerce, but there is no way > to keep it 100% safe. If they have access to the database, the rest is > available to get the clear text version. > > Gordon. > > On 04/02/2009, at 5:56 AM, Steve Kessler wrote: > >> I am trying to make a site that will hold some sensitive information >> that I would like to have at least minimal encryption on some of my >> CCK fields. Is there an easy way to encrypt CCK text fields? I would >> need to display the un-encrypted values when the nodes were viewed >> by users with the correct permissions. >> >> Thanks, >> Steve >> >> >> Steve Kessler >> Denver DataMan >> 303-587-4428 >> Sign up for the Denver DataMan Free eNewsletter >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] > > -- > [ Drupal support list | http://lists.drupal.org/ ] > > -- > [ Drupal support list | http://lists.drupal.org/ ] From john.callahan at UDel.Edu Wed Feb 4 02:03:04 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Tue, 03 Feb 2009 21:03:04 -0500 Subject: [support] permission to create unpublished pages? In-Reply-To: References: <49889FA9.9040609@udel.edu> Message-ID: <4988F758.6070708@udel.edu> Thanks Gordon. Workflow or rules module is the next logical step but seems like a lot more work than it should be. If a user has the privilege to create a page, you would think they'd have the right to decide when it's published or not. Oh well... - John Gordon Heydon wrote: > Hi, > > there i not really a permission to do this. But I coud do this by > using the rules or workflow_ng module to basically unpublish this node > if they have a certain role. > > Gordon. > > On 04/02/2009, at 6:48 AM, John Callahan wrote: > > >> I have authenticated users being able to create the "Page" content >> type >> on my site. That's the only content type they can create. They are >> allowed to edit/delete their own Pages. The problem is when they >> create >> a page, they do not have "Authoring information" or "Publishing >> options" >> available on the node create/edit page. I want them to be able to >> create unpublished pages (when the page is eventually ready, they'll >> mark it as published.) To give them that ability, it seems I have to >> grant them the "administer nodes" permission. However, that gives >> them >> the ability to create any content type, which I do not want. >> >> >> Am I missing something? Is this expected behavior or is my site >> screwed >> up in some way? It seems like a simple enough task. Thanks. >> >> - John >> >> ************************************************** >> John Callahan >> Geospatial Application Developer >> Delaware Geological Survey, University of Delaware >> 227 Academy St, Newark DE 19716-7501 >> Tel: (302) 831-3584 >> Email: john.callahan at udel.edu >> http://www.dgs.udel.edu >> ************************************************** >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > From john.callahan at UDel.Edu Wed Feb 4 02:08:08 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Tue, 03 Feb 2009 21:08:08 -0500 Subject: [support] permission to create unpublished pages? In-Reply-To: <4988F758.6070708@udel.edu> References: <49889FA9.9040609@udel.edu> <4988F758.6070708@udel.edu> Message-ID: <4988F888.9060809@udel.edu> Just found this module. Looks like it will do the trick: http://drupal.org/project/publishcontent - John John Callahan wrote: > Thanks Gordon. Workflow or rules module is the next logical step but > seems like a lot more work than it should be. If a user has the > privilege to create a page, you would think they'd have the right to > decide when it's published or not. Oh well... > > - John > > > > Gordon Heydon wrote: > >> Hi, >> >> there i not really a permission to do this. But I coud do this by >> using the rules or workflow_ng module to basically unpublish this node >> if they have a certain role. >> >> Gordon. >> >> On 04/02/2009, at 6:48 AM, John Callahan wrote: >> >> >> >>> I have authenticated users being able to create the "Page" content >>> type >>> on my site. That's the only content type they can create. They are >>> allowed to edit/delete their own Pages. The problem is when they >>> create >>> a page, they do not have "Authoring information" or "Publishing >>> options" >>> available on the node create/edit page. I want them to be able to >>> create unpublished pages (when the page is eventually ready, they'll >>> mark it as published.) To give them that ability, it seems I have to >>> grant them the "administer nodes" permission. However, that gives >>> them >>> the ability to create any content type, which I do not want. >>> >>> >>> Am I missing something? Is this expected behavior or is my site >>> screwed >>> up in some way? It seems like a simple enough task. Thanks. >>> >>> - John >>> >>> ************************************************** >>> John Callahan >>> Geospatial Application Developer >>> Delaware Geological Survey, University of Delaware >>> 227 Academy St, Newark DE 19716-7501 >>> Tel: (302) 831-3584 >>> Email: john.callahan at udel.edu >>> http://www.dgs.udel.edu >>> ************************************************** >>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >>> >> >> From marolijo at yahoo.es Wed Feb 4 10:59:15 2009 From: marolijo at yahoo.es (marolijo) Date: Wed, 4 Feb 2009 10:59:15 +0000 (GMT) Subject: [support] Misities for events (Weddings) Message-ID: <95839.88472.qm@web24502.mail.ird.yahoo.com> Hi, I need to create a site where the admin should be able to create "minisites" for events (weddings) and create a user that can edit their content. The minisite should be created with a default contents (nodes) and placed inside a subdirectori (ok and alias not really a subdir...) Any idea of what to use to do that? Thank's a lot! From pavan.k.murthy at gmail.com Wed Feb 4 11:48:58 2009 From: pavan.k.murthy at gmail.com (Pavan Keshavamurthy) Date: Wed, 4 Feb 2009 17:18:58 +0530 Subject: [support] Misities for events (Weddings) In-Reply-To: <95839.88472.qm@web24502.mail.ird.yahoo.com> References: <95839.88472.qm@web24502.mail.ird.yahoo.com> Message-ID: <46b9cfab0902040348u11b772aief67ed0adc757d33@mail.gmail.com> You're probably looking for something like OG - http://drupal.org/project/og Regards _Pavan 2009/2/4 marolijo > Hi, I need to create > a site where the admin should be able to create "minisites" for events > (weddings) and create a user that can edit their content. > > The minisite should > be created with a default contents (nodes) and placed inside a subdirectori > (ok > and alias not really a subdir...) > > Any idea of what to > use to do that? > > Thank's a > lot! > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- _PK Skype: pavankeshavamurthy http://grahana.net/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090204/f9329f30/attachment.htm From marolijo at yahoo.es Wed Feb 4 12:03:14 2009 From: marolijo at yahoo.es (marolijo) Date: Wed, 4 Feb 2009 12:03:14 +0000 (GMT) Subject: [support] Misities for events (Weddings) References: <95839.88472.qm@web24502.mail.ird.yahoo.com> <46b9cfab0902040348u11b772aief67ed0adc757d33@mail.gmail.com> Message-ID: <485057.67821.qm@web24505.mail.ird.yahoo.com> I'll try it. I've found it http://drupal.org/project/multisite_manager but it's not for me. Thank's ________________________________ De: Pavan Keshavamurthy Para: support at drupal.org Enviado: mi?rcoles, 4 de febrero, 2009 12:48:58 Asunto: Re: [support] Misities for events (Weddings) You're probably looking for something like OG - http://drupal.org/project/og Regards _Pavan 2009/2/4 marolijo Hi, I need to create a site where the admin should be able to create "minisites" for events (weddings) and create a user that can edit their content. The minisite should be created with a default contents (nodes) and placed inside a subdirectori (ok and alias not really a subdir...) Any idea of what to use to do that? Thank's a lot! -- [ Drupal support list | http://lists.drupal.org/ ] -- _PK Skype: pavankeshavamurthy http://grahana.net/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090204/f4b6e1e1/attachment.htm From earnie at users.sourceforge.net Wed Feb 4 13:50:35 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Wed, 04 Feb 2009 08:50:35 -0500 Subject: [support] Encrypting CCK Data In-Reply-To: <015501c98656$e4e2d470$aea87d50$@com> References: <00bb01c98631$300197a0$9004c6e0$@com> <1324FA7D-3265-4A47-AB51-C84B4CA8B0F4@heydon.com.au> <015501c98656$e4e2d470$aea87d50$@com> Message-ID: <20090204085035.i96ov318nyec484o@mail.progw.org> Quoting Steve Kessler : > I am a little confused. How is this done with passwords using MD5? I would > happy with MD5 encryption. I would love to understand this if I am missing > something. > As others have tried to explain MD5 hashes are one directional, there is no method to allow for giving back the original string. However, every time you pass the same string to MD5 you get the same hash result. You can have a look to http://us.php.net/manual/en/book.mcrypt.php and the PEAR encryption packages at http://pear.php.net/packages.php?catpid=6&catname=Encryption&php=all. -- 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 cjones at partialflow.com Wed Feb 4 17:05:10 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Wed, 04 Feb 2009 12:05:10 -0500 Subject: [support] using panels to template system pages? Message-ID: <4989CAC6.9080008@partialflow.com> I'd like to use panels to do things like add text to the top of the /forum page, but I don't see how to add this as content into the panel. I'm guessing it can't be done, or can't be done easily. Can someone a. Tell me how to do it b. Suggest another strategy. From john.callahan at UDel.Edu Wed Feb 4 17:17:35 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Wed, 04 Feb 2009 12:17:35 -0500 Subject: [support] image gallery Message-ID: <4989CDAF.2040305@udel.edu> I know there are plenty of options for creating image galleries in drupal. I've used many of them. Like most people, I'm interested in simple, and like an increasing number of people, I'm not interested in using the image module. CCK, Views, Imagecache, etc.., is the preferred way to go. In the interest of simplicity, I do not want to give my users FTP access to my file system, and I'd rather not require them to create a new node for every image. So, does anyone have suggestions for the following: 1) users can create the image gallery on one page/node, such as through CCK Image Field or file uploads as attachments 2) the display of the gallery can be through Lightbox or something similar. Modules like Galleria and Gallerix have potential. They may work with a decent amount of CSS work and maybe some changes to the module code. I love the method described here (http://raincitystudios.com/blogs-and-pods/hubert/a-simple-ajax-image-gallery-system-drupal) using CCK/Views but I can't get Lightbox to navigate through the images. Not sure if it's possible here. - John ************************************************** John Callahan Geospatial Application Developer Delaware Geological Survey, University of Delaware 227 Academy St, Newark DE 19716-7501 Tel: (302) 831-3584 Email: john.callahan at udel.edu http://www.dgs.udel.edu ************************************************** From skessler at denverdataman.com Wed Feb 4 17:27:04 2009 From: skessler at denverdataman.com (Steve Kessler) Date: Wed, 4 Feb 2009 10:27:04 -0700 Subject: [support] using panels to template system pages? In-Reply-To: <4989CAC6.9080008@partialflow.com> References: <4989CAC6.9080008@partialflow.com> Message-ID: <02ab01c986ed$cc5edd30$651c9790$@com> To add text above the page you might want to look at just using blocks. If you have a region (or add a region) above the content region or put a block in the content region you can usually achieve this. You can then change the settings for the block to only show on specific pages. I hope this helps. -Steve Steve Kessler Denver DataMan 303-587-4428 Sign up for the Denver DataMan Free eNewsletter -----Original Message----- From: Christopher M. Jones [mailto:cjones at partialflow.com] Sent: Wednesday, February 04, 2009 10:05 AM To: support at drupal.org Subject: [support] using panels to template system pages? I'd like to use panels to do things like add text to the top of the /forum page, but I don't see how to add this as content into the panel. I'm guessing it can't be done, or can't be done easily. Can someone a. Tell me how to do it b. Suggest another strategy. -- [ Drupal support list | http://lists.drupal.org/ ] From sivaji2009 at gmail.com Wed Feb 4 18:10:50 2009 From: sivaji2009 at gmail.com (sivaji j.g) Date: Wed, 4 Feb 2009 13:10:50 -0500 Subject: [support] download web files Message-ID: Hello Friends, I am looking for a Drupal 5 module or PHP script which allows the user to download web files. I want the module to have a block with has some check box like things when i click the check box say first and third check box and give submit, it should create the zip achieve of files corresponding to first and third check box . I guess there is no such a module with this functionality, i hope you will give some valuable suggestion to write code to make it. -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090204/e49c375c/attachment.htm From bob at morsemedia.net Thu Feb 5 00:13:08 2009 From: bob at morsemedia.net (Bob Morse) Date: Wed, 04 Feb 2009 16:13:08 -0800 Subject: [support] Membership site question Message-ID: <498A2F14.3020103@morsemedia.net> This seems like it should be easy but I am scratching my head. What module or group of modules would you folks suggest for a site that allows people to join the organization. I have two instances now, one where they take online payments and one where they don't. On each one I've used civicrm. But it's such a beast. The inferface is clunky and neither organization uses the crm part. We're building a 3rd site, it's a chamber of commerce web site and don't want to use civicrm. They want to have a list of members in categories, be able to modify what shows up on the listing, make the listings searchable, allow people to join through the web site (not take payments for it but create a sign up form that calculates what they would have to pay by check or credit card). We're using version 6. We have something that works, but it took a lot more customizing things than I think it should for this kind of site. And if we're going to keep getting these kinds of jobs I like suggestions of any simpler ways. TIA! From Gar.Nelson at noaa.gov Wed Feb 4 23:34:14 2009 From: Gar.Nelson at noaa.gov (Gar Nelson) Date: Wed, 04 Feb 2009 16:34:14 -0700 Subject: [support] Linking to an external page on the same server Message-ID: <498A25F6.2020505@noaa.gov> I've got an apache/drupal problem that I'm coming up empty on for how to fix. My OS is RHEL 4, Apache is httpd-2.0.52-41.ent.2 Drupal is drupal5-5.15-1.el4.rf Drupal is working fine with Apache. My problem is that I want to run VCDDB, (http://vcddb.konni.com/) which is an external web based movie database application. I've installed it in /var/www/html/movies, and the installation process completed successfully. Drupal is installed in /var/www/html My problem is that when I go to http://my.host/movies or http://my.host/movies/ all I get is a blank screen. If I try to go to http://my.host/movies/index.php, I get a popup trying to download "index.php" rather than display "index.php". I have also installed WebCalendar (http://www.k5n.us/webcalendar.php), and that does work correctly when I go to http://my.host/calendar I suspect this is a Drupal issue, since VCDDB was running fine when I was using a manually coded html web site (rather than Drupal),but I'm not sure. If could be an Apache thing. Any ideas? Thanks in advance. Gar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090204/a1fcd2f0/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: gar_nelson.vcf Type: text/x-vcard Size: 282 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20090204/a1fcd2f0/attachment.vcf From cimo75 at gmail.com Thu Feb 5 03:02:19 2009 From: cimo75 at gmail.com (simone-www.io-lab.org) Date: Thu, 5 Feb 2009 03:02:19 +0000 Subject: [support] Linking to an external page on the same server In-Reply-To: <498A25F6.2020505@noaa.gov> References: <498A25F6.2020505@noaa.gov> Message-ID: what have you got in your .htaccess file in yoursite/movie ? On Wed, Feb 4, 2009 at 11:34 PM, Gar Nelson wrote: > I've got an apache/drupal problem that I'm coming up empty on for how to > fix. > My OS is RHEL 4, > Apache is httpd-2.0.52-41.ent.2 > Drupal is drupal5-5.15-1.el4.rf > > Drupal is working fine with Apache. My problem is that I want to run VCDDB, > (http://vcddb.konni.com/) which is an external web based movie database > application. I've installed it in /var/www/html/movies, and the installation > process completed successfully. Drupal is installed in /var/www/html > > My problem is that when I go to http://my.host/movies or > http://my.host/movies/ all I get is a blank screen. If I try to go to > http://my.host/movies/index.php, I get a popup trying to download > "index.php" rather than display "index.php". > > I have also installed WebCalendar (http://www.k5n.us/webcalendar.php), and > that does work correctly when I go to http://my.host/calendar > > I suspect this is a Drupal issue, since VCDDB was running fine when I was > using a manually coded html web site (rather than Drupal),but I'm not sure. > If could be an Apache thing. > > Any ideas? > > Thanks in advance. > Gar > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- .wmv , .wma , .pps along with all proprietary Windows formats won t be accepted and/or viewed.... From cjones at partialflow.com Thu Feb 5 04:57:08 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Wed, 04 Feb 2009 23:57:08 -0500 Subject: [support] using panels to template system pages? In-Reply-To: <02ab01c986ed$cc5edd30$651c9790$@com> References: <4989CAC6.9080008@partialflow.com> <02ab01c986ed$cc5edd30$651c9790$@com> Message-ID: <498A71A4.9060402@partialflow.com> That's plan B. Thanks much for your suggestion. I was hoping that there would be a way to do this with panels, because that would be useful in other applications. For example, I'd love to bring group forums into the group home page. Steve Kessler wrote: > To add text above the page you might want to look at just using blocks. If > you have a region (or add a region) above the content region or put a block > in the content region you can usually achieve this. You can then change the > settings for the block to only show on specific pages. > > I hope this helps. > > -Steve > > > Steve Kessler > Denver DataMan > 303-587-4428 > Sign up for the Denver DataMan Free eNewsletter > > > -----Original Message----- > From: Christopher M. Jones [mailto:cjones at partialflow.com] > Sent: Wednesday, February 04, 2009 10:05 AM > To: support at drupal.org > Subject: [support] using panels to template system pages? > > I'd like to use panels to do things like add text to the top of the > /forum page, but I don't see how to add this as content into the panel. > I'm guessing it can't be done, or can't be done easily. Can someone > > a. Tell me how to do it > > b. Suggest another strategy. From marolijo at yahoo.es Thu Feb 5 12:48:03 2009 From: marolijo at yahoo.es (marolijo at yahoo.es) Date: Thu, 5 Feb 2009 13:48:03 +0100 Subject: [support] Sent by "full name" instead of username? Message-ID: <014201c9878f$fc5a4fe0$0601a8c0@zeus> Is it possible? I imagine I should I add a full name field to the user? thank's Pol Maresma PolNetwork.com / Serveis d'Internet pol(a)polnetwork.com msn: marolijo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090205/f32f1cef/attachment-0001.htm From marc at cultmovieforums.com Thu Feb 5 13:01:01 2009 From: marc at cultmovieforums.com (Marc Morris) Date: Thu, 5 Feb 2009 13:01:01 +0000 Subject: [support] regions help required In-Reply-To: <014201c9878f$fc5a4fe0$0601a8c0@zeus> References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> Message-ID: <255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com> The site I'm setting up has split vertical regions on each page, under a main horizontal image which spans both. So far the only way I have been able to add content to each region is via blocks, positioned in bottom_left or bottom_right regions which I have created. There are numerous static pages with this set-up, and I have had to assign those blocks to display on only the specified pages. However, I really don't think this is ideal - is there a best practice way of doing this? I'm really quite stuck with this and am finding help hard to come by. example: http://www.hollywoodclassics.com/new/ From dan at karran.net Thu Feb 5 13:10:02 2009 From: dan at karran.net (Dan Karran) Date: Thu, 5 Feb 2009 13:10:02 +0000 Subject: [support] Sent by "full name" instead of username? In-Reply-To: <014201c9878f$fc5a4fe0$0601a8c0@zeus> References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> Message-ID: <37d514850902050510v170183dbv3e050cc397d8ecec@mail.gmail.com> 2009/2/5 : > Is it possible? > I imagine I should I add a full name field to the user? To do that you should override the theme_user function. There is an example at http://programmingbulls.com/how-display-fullname-drupal-instead-username-using showing how to use some profile_name_last and profile_name_first fields in the profile to replace the username with those two fields. Hope that helps. Cheers, Dan -- Dan Karran dan at karran.net www.dankarran.com From marc at cultmovieforums.com Thu Feb 5 13:11:47 2009 From: marc at cultmovieforums.com (Marc Morris) Date: Thu, 5 Feb 2009 13:11:47 +0000 Subject: [support] CCK + Categories? In-Reply-To: <498A71A4.9060402@partialflow.com> References: <4989CAC6.9080008@partialflow.com> <02ab01c986ed$cc5edd30$651c9790$@com> <498A71A4.9060402@partialflow.com> Message-ID: <46756B7D-B5DC-405A-BF54-065EF5CC45CE@cultmovieforums.com> Can somebody advise how I can run a conversion from one set of (important) CCK fields into categories which would allow a user to search on movie nodes in groups? I have tried to set up categories but I don't see how I tie them in with CCK nodes. Basically I've set up a new content type using CCK ("Movie") with numerous fields. There are over 5,000 nodes containing "movie" data. Some of these fields have keywords which I need to link to and search, but I am unsure how to do this. I also need to add an advanced search function to search the "movie' cck but again I can only find the standard search block. This search function would allow the selection of a "type" and then user input of the search required in relation to the selected search criteria. Can anybody help me with this? From marolijo at yahoo.es Thu Feb 5 13:20:00 2009 From: marolijo at yahoo.es (marolijo at yahoo.es) Date: Thu, 5 Feb 2009 14:20:00 +0100 Subject: [support] Sent by "full name" instead of username? In-Reply-To: <37d514850902050510v170183dbv3e050cc397d8ecec@mail.gmail.com> References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> <37d514850902050510v170183dbv3e050cc397d8ecec@mail.gmail.com> Message-ID: <02e701c98794$7334f5d0$0601a8c0@zeus> Thank's! it works! See you -----Mensaje original----- De: support-bounces at drupal.org [mailto:support-bounces at drupal.org] En nombre de Dan Karran Enviado el: jueves, 05 de febrero de 2009 14:10 Para: support at drupal.org Asunto: Re: [support] Sent by "full name" instead of username? 2009/2/5 : > Is it possible? > I imagine I should I add a full name field to the user? To do that you should override the theme_user function. There is an example at http://programmingbulls.com/how-display-fullname-drupal-instead-username-usi ng showing how to use some profile_name_last and profile_name_first fields in the profile to replace the username with those two fields. Hope that helps. Cheers, Dan -- Dan Karran dan at karran.net www.dankarran.com -- [ Drupal support list | http://lists.drupal.org/ ] __________ Informacisn de NOD32, revisisn 3828 (20090205) __________ Este mensaje ha sido analizado con NOD32 antivirus system http://www.nod32.com From Gar.Nelson at noaa.gov Thu Feb 5 14:33:11 2009 From: Gar.Nelson at noaa.gov (Gar Nelson) Date: Thu, 05 Feb 2009 07:33:11 -0700 Subject: [support] Linking to an external page on the same server In-Reply-To: References: <498A25F6.2020505@noaa.gov> Message-ID: <498AF8A7.3000706@noaa.gov> In the /var/www/html/movies directory the content of .htaccess is; (the file is automatically created during the VCDDB setup process.) [cat .htaccess] Options -Indexes +FollowSymLinks RewriteEngine On RewriteBase /movies/ RewriteRule ^movie/([0-9]+)$ index.php?page=cd&vcd_id=$1 [QSA] RewriteRule ^category/([0-9]+)$ index.php?page=category&category_id=$1 [QSA] RewriteRule ^category/([0-9]+)/([0-9]+)$ index.php?page=category&category_id=$1&batch=$2 [QSA] RewriteRule ^category/([0-9]+)/([0-9]+)/([a-zA-Z\\+]*)$ index.php?page=category&category_id=$1&batch=$2&viewmode=$3 [QSA] RewriteRule ^xxx/(category|studio)/([0-9]+)$ index.php?page=adultcategory&$1_id=$2 [QSA] RewriteRule ^xxx/(category|studio)/([0-9]+)/([0-9]+)$ index.php?page=adultcategory&$1_id=$2&batch=$3 [QSA] RewriteRule ^xxx/(category|studio)/([0-9]+)/([0-9]+)/(img|text)$ index.php?page=adultcategory&$1_id=$2&batch=$3&viewmode=$4 [QSA] RewriteRule ^pornstars/(all|active)/([a-zA-Z\\+]){1}/(img|text)$ index.php?page=pornstars&view=$1&l=$2&viewmode=$3[QSA] RewriteRule ^pornstars/(all|active)$ index.php?page=pornstars&view=$1 [QSA] RewriteRule ^pornstar/([0-9]+)$ index.php?page=pornstar&pornstar_id=$1 [QSA] RewriteRule ^search/?(actor|director)/([^\?/]*)$ index.php?page=search&by=$1&searchstring=$2 [QSA] RewriteRule ^file/(cover|pornstar|nfo)/([0-9]+)(&download)?$ index.php?page=file&$1_id=$2&$3 [QSA] RewriteRule ^page/movies/([a-zA-Z\\+]*)/([0-9]+)$ index.php?page=movies&do=$1&index=$2 [QSA] RewriteRule ^page/movies/([a-zA-Z\\+]*)$ index.php?page=movies&do=$1 [QSA] RewriteRule ^page/([^\?/]+)$ index.php?page=$1 [QSA] I don't see anything thing there that would cause this problem, but I'm a little shaky on Rewrite Rules. Mod_rewrite is loaded in httpd.conf; [grep rewrite httpd.conf] LoadModule rewrite_module modules/mod_rewrite.so And for anyone else that thinks about using this in a professional environment, there is a switch to eliminate showing any of the adult options. Personally, I would prefer to just strip them out of the program, but it is nice to be able to easily turn them off. Thanks, Gar simone-www.io-lab.org wrote: > what have you got in your .htaccess file in yoursite/movie ? > > On Wed, Feb 4, 2009 at 11:34 PM, Gar Nelson wrote: > >> I've got an apache/drupal problem that I'm coming up empty on for how to >> fix. >> My OS is RHEL 4, >> Apache is httpd-2.0.52-41.ent.2 >> Drupal is drupal5-5.15-1.el4.rf >> >> Drupal is working fine with Apache. My problem is that I want to run VCDDB, >> (http://vcddb.konni.com/) which is an external web based movie database >> application. I've installed it in /var/www/html/movies, and the installation >> process completed successfully. Drupal is installed in /var/www/html >> >> My problem is that when I go to http://my.host/movies or >> http://my.host/movies/ all I get is a blank screen. If I try to go to >> http://my.host/movies/index.php, I get a popup trying to download >> "index.php" rather than display "index.php". >> >> I have also installed WebCalendar (http://www.k5n.us/webcalendar.php), and >> that does work correctly when I go to http://my.host/calendar >> >> I suspect this is a Drupal issue, since VCDDB was running fine when I was >> using a manually coded html web site (rather than Drupal),but I'm not sure. >> If could be an Apache thing. >> >> Any ideas? >> >> Thanks in advance. >> Gar >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090205/1f26adc1/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: gar_nelson.vcf Type: text/x-vcard Size: 282 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20090205/1f26adc1/attachment.vcf From metzlerd at evergreen.edu Thu Feb 5 16:30:23 2009 From: metzlerd at evergreen.edu (Metzler, David) Date: Thu, 5 Feb 2009 08:30:23 -0800 Subject: [support] using panels to template system pages? In-Reply-To: <498A71A4.9060402@partialflow.com> References: <4989CAC6.9080008@partialflow.com><02ab01c986ed$cc5edd30$651c9790$@com> <498A71A4.9060402@partialflow.com> Message-ID: <52177C930FA90F4D9888B0343FDB79FB10ECBD@birch.evergreen.edu> This is a bit hackish but I've don'e this successfully using panels2 by using custom PHP code. It involves being able to read a module's menu_hook though and write a little PHP, and being careful about security (cause you can bypass menu security this way. The basic outline: 1. Determine the function being called in the menu_hook, 1. Create a minipanel (just to abstract the logic and security) 2. Ad a snippet of custom PHP code that calles the function. 3. Be extra careful to set security on this minipanel as it bypasses the menu security mechanism. In your example, the forums page could be loaded into any Panel by including the following custom php pane in your mini-panel. $block->content = forum_page(); This mini-pane can then be inserted into any block you have. Here's a more intense example where I'm passing context data to the php custom page to add the view cases page to a form that passes node id into the function being called. $block->content = casetracker_cases_overview($context->data->nid,'state:6'); Your question has sparked some interesting ideas for me with regard to creating a module that does this more generically based on the data that's already in the menu system :). Especially once we get to drupal 6 and wildcards in the path. Wow the possibilities are endless. Hope this helps. -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Christopher M. Jones Sent: Wednesday, February 04, 2009 8:57 PM To: support at drupal.org Subject: Re: [support] using panels to template system pages? That's plan B. Thanks much for your suggestion. I was hoping that there would be a way to do this with panels, because that would be useful in other applications. For example, I'd love to bring group forums into the group home page. Steve Kessler wrote: > To add text above the page you might want to look at just using > blocks. If you have a region (or add a region) above the content > region or put a block in the content region you can usually achieve > this. You can then change the settings for the block to only show on specific pages. > > I hope this helps. > > -Steve > > > Steve Kessler > Denver DataMan > 303-587-4428 > Sign up for the Denver DataMan Free eNewsletter > > > -----Original Message----- > From: Christopher M. Jones [mailto:cjones at partialflow.com] > Sent: Wednesday, February 04, 2009 10:05 AM > To: support at drupal.org > Subject: [support] using panels to template system pages? > > I'd like to use panels to do things like add text to the top of the > /forum page, but I don't see how to add this as content into the panel. > I'm guessing it can't be done, or can't be done easily. Can someone > > a. Tell me how to do it > > b. Suggest another strategy. -- [ Drupal support list | http://lists.drupal.org/ ] From ryan at etrafficsolutions.com Thu Feb 5 17:05:50 2009 From: ryan at etrafficsolutions.com (Ryan Thomson) Date: Thu, 05 Feb 2009 09:05:50 -0800 Subject: [support] Ubercart: Define attribute option for specific product when creating a product kit In-Reply-To: <4981ED62.9060403@etrafficsolutions.com> References: <4981ED62.9060403@etrafficsolutions.com> Message-ID: <498B1C6E.9050705@etrafficsolutions.com> Putting this out there one last time before completely dropping product kits. Ryan Thomson wrote: > Hey all! > > Any Ubercart ninjas in da house? > > > When editing a product kit there is a list of all included products > which include quantity, ordering and discount. This should also include > the product attribute options. > > example: we sell online content for schools. An ebook can be purchases > individually, per classroom or per school. These are all attribute > options of the ebook product. We want to create product kits which would > include an ebook with a classroom license, but as product kits work now > you can't set the attribute option on the edit page - instead the > customer picks which attribute option they want which, in this case, > won't work. > > Our workaround is to create copies of existing products with only one > attribute option, but this is obviously entirely inefficient and > messy... does anyone know of a method to achieve this? > > Thanks! > > > From ratadi2 at gmail.com Thu Feb 5 17:23:51 2009 From: ratadi2 at gmail.com (geniekids) Date: Thu, 5 Feb 2009 09:23:51 -0800 (PST) Subject: [support] Simplenews - Ugly Background in the emails sent In-Reply-To: References: <21745827.post@talk.nabble.com> <51a9b8330901301258ld5cd823hcbf45cb0d56b1de5@mail.gmail.com> <21758764.post@talk.nabble.com> <4983B24C.2090600@udel.edu> <21759155.post@talk.nabble.com> <51a9b8330901302328w12bc4335i7f26ce7b49e4caaf@mail.gmail.com> <21761669.post@talk.nabble.com> Message-ID: <21856692.post@talk.nabble.com> Well i tried that too but it just gave me more problems - instead of removing the background - the whole email vanished (i ended up spending considerable time looking up support request in that module and the whole things even more complicated that my current problem :-/ Victor Kane-2 wrote: > > The Simplenews module README.txt speaks of a helper module which can allow > you to theme individual templates: > > * Simplenews_template > Simplenews Template provides a themable template with configurable > header, > footer and style. Header, footer and style are configurable for each > newsletter independently. > > See http://drupal.org/project/simplenews_template > > Victor Kane > http://awebfactory.com.ar > > On Sat, Jan 31, 2009 at 8:00 AM, geniekids wrote: > >> >> Thanks Hans >> >> 1. I already have in fckeditor default as css setting (not the theme >> setting) - so that is not helping. >> 2. I tried google search on how to pick colour and find its hex value - >> couldn't get what would help me - as yet - but what i want to know - even >> i >> find out which entry in style.css is passing on the colour - what will i >> do >> with it? >> 3. Your third option right now looks too complicated for a ( novice like >> me >> ) and for a simple purpose of removal of background colour. So am not >> sure >> i >> want to invest so much time into it. >> >> I found another way around - though quite temporary - i logged in as >> admin >> and set an admin theme for the website which has white background >> (bluemarine) - and then used that to send the newsletter - it worked. >> >> Ratnesh >> >> >> KOBA | Hans Rossel-2 wrote: >> > >> > Try the following:Goto admin/settings/fckeditor and change in the >> profile >> > you are using the css settings of "editor css" to fckeditor default. I >> > think >> > it is now set to theme css. >> > You could also check the color hex value with a color picker from the >> > newsletter email and search for it in the css of your current theme to >> see >> > where it comes from if you prefer not to set fckeditor to default css. >> > >> > If that doesn't help, you might want to create a contemplate for your >> > newsletter; I have described the process (amongst other stuff you can >> do) >> > in http://drupal.org/node/268404 >> > >> > Good luck, >> > >> > Hans >> > >> > 2009/1/31 geniekids >> > >> >> >> >> >> >> Also i am using fckeditor - does that effect? >> >> Thanks anyway >> >> >> >> >> > >> > -- >> > [ Drupal support list | http://lists.drupal.org/ ] >> > >> >> -- >> View this message in context: >> http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21761669.html >> Sent from the Drupal - Support mailing list archive at Nabble.com. >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- View this message in context: http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21856692.html Sent from the Drupal - Support mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090205/71397304/attachment.htm From ronald at istos.it Thu Feb 5 17:28:44 2009 From: ronald at istos.it (Ronald Ashri) Date: Thu, 05 Feb 2009 18:28:44 +0100 Subject: [support] CCK + Categories? In-Reply-To: <46756B7D-B5DC-405A-BF54-065EF5CC45CE@cultmovieforums.com> References: <4989CAC6.9080008@partialflow.com> <02ab01c986ed$cc5edd30$651c9790$@com> <498A71A4.9060402@partialflow.com> <46756B7D-B5DC-405A-BF54-065EF5CC45CE@cultmovieforums.com> Message-ID: <498B21CC.6080507@istos.it> Hi Marc, an easy way to search CCK fields would be through Views. You can "expose" a filter on those CCK fields that would allow you to search them. If you want to link to search result pages that contained a specific value in a CCK field you could create the URLs by using the Arguments functionality of Views -- even if it is not quite as clean as the categories functionality of Drupal. Views with a bit of customisation would allow you to does specific search blocks, etc. There is a more sophisticated way through CCK Facets and Faceted search that might work in your case but I've never used those myself. Finally, if it is just a question of certain fields being more suitable as taxonomies/category terms and then write/get someone to write for you a small script that goes through all your nodes and assigns them taxonomy terms based on the value in the CCK field. Then you can use the full power of Drupal's taxonomy system. Hope this helps, best, Ronald Marc Morris wrote: > Can somebody advise how I can run a conversion from one set of > (important) CCK fields into categories which would allow a user to > search on movie nodes in groups? I have tried to set up categories > but I don't see how I tie them in with CCK nodes. > > Basically I've set up a new content type using CCK ("Movie") with > numerous fields. There are over 5,000 nodes containing "movie" data. > > Some of these fields have keywords which I need to link to and > search, but I am unsure how to do this. > > I also need to add an advanced search function to search the "movie' > cck but again I can only find the standard search block. This search > function would allow the selection of a "type" and then user input of > the search required in relation to the selected search criteria. > > Can anybody help me with this? > From rotsen at gmail.com Thu Feb 5 17:49:37 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Thu, 5 Feb 2009 09:49:37 -0800 Subject: [support] Drupal - White Screen of death Message-ID: I got a white screen of death when I removed some modules from my drupal 6.9 installation and I was not able to recover. I had to re-install Drupal and start all over again. This happened to me also 6 month ago when I when ahead and removed some modules and I was using drupal64. Am i the only person to get a white screen after removing modules? How do you fix the problem without having to re-install drupal? Thanks, Nestor :-) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090205/ae48346e/attachment.htm From john.callahan at UDel.Edu Thu Feb 5 18:13:02 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Thu, 05 Feb 2009 13:13:02 -0500 Subject: [support] Drupal - White Screen of death In-Reply-To: References: Message-ID: <498B2C2E.4060000@udel.edu> I believe that's relatively common. It happened to me a few times. Usually, I go into the database (system table?) and re-enable those modules. You can do that one module at a time to see what the offending package was. Also check out the apache/php logs. Most of the time I found something there that pointed to the problem. - John ************************************************** John Callahan Geospatial Application Developer Delaware Geological Survey, University of Delaware 227 Academy St, Newark DE 19716-7501 Tel: (302) 831-3584 Email: john.callahan at udel.edu http://www.dgs.udel.edu ************************************************** N?stor wrote: > I got a white screen of death when I removed some modules from my > drupal 6.9 > installation and I was not able to recover. I had to re-install > Drupal and start all over again. > > This happened to me also 6 month ago when I when ahead and removed > some modules > and I was using drupal64. > > Am i the only person to get a white screen after removing modules? > How do you fix the problem without having to re-install drupal? > > Thanks, > > Nestor :-) From marc at cultmovieforums.com Thu Feb 5 18:28:07 2009 From: marc at cultmovieforums.com (Marc Morris) Date: Thu, 5 Feb 2009 18:28:07 +0000 Subject: [support] CCK + Categories? In-Reply-To: <498B21CC.6080507@istos.it> References: <4989CAC6.9080008@partialflow.com> <02ab01c986ed$cc5edd30$651c9790$@com> <498A71A4.9060402@partialflow.com> <46756B7D-B5DC-405A-BF54-065EF5CC45CE@cultmovieforums.com> <498B21CC.6080507@istos.it> Message-ID: <7176F908-38B6-4464-9DC4-6FA811BF8DB8@cultmovieforums.com> Hi Ronald, I'm confused about this as I've been told that Views isn't the way to go with this. I'm told that CCK fields are already mapped to the search so what I'm trying to do doesn't make an awful lot of sense, and that the better way to search stuff is through categories (taxonomy), hence it being suggested that I run a conversion from one set of CCK fields into categories which would allow a user to search on movie nodes in groups. I'm new to Drupal and to say I'm confused is an understatement. Marc On 5 Feb 2009, at 17:28, Ronald Ashri wrote: > Hi Marc, > > an easy way to search CCK fields would be through Views. You can > "expose" a filter on those CCK fields that would allow you to > search them. > > If you want to link to search result pages that contained a specific > value in a CCK field you could create the URLs by using the Arguments > functionality of Views -- even if it is not quite as clean as the > categories functionality of Drupal. > > Views with a bit of customisation would allow you to does specific > search blocks, etc. > > There is a more sophisticated way through CCK Facets and Faceted > search > that might work in your case but I've never used those myself. > > Finally, if it is just a question of certain fields being more > suitable > as taxonomies/category terms and then write/get someone to write > for you > a small script that goes through all your nodes and assigns them > taxonomy terms based on the value in the CCK field. Then you can > use the > full power of Drupal's taxonomy system. > > Hope this helps, > > best, > > Ronald > > Marc Morris wrote: >> Can somebody advise how I can run a conversion from one set of >> (important) CCK fields into categories which would allow a user to >> search on movie nodes in groups? I have tried to set up categories >> but I don't see how I tie them in with CCK nodes. >> >> Basically I've set up a new content type using CCK ("Movie") with >> numerous fields. There are over 5,000 nodes containing "movie" data. >> >> Some of these fields have keywords which I need to link to and >> search, but I am unsure how to do this. >> >> I also need to add an advanced search function to search the "movie' >> cck but again I can only find the standard search block. This search >> function would allow the selection of a "type" and then user input of >> the search required in relation to the selected search criteria. >> >> Can anybody help me with this? >> > -- > [ Drupal support list | http://lists.drupal.org/ ] Marc Morris Cult Movie Forums http://www.cultmovieforums.com/ From donald at fane.com Thu Feb 5 18:27:00 2009 From: donald at fane.com (donald at fane.com) Date: Thu, 05 Feb 2009 11:27:00 -0700 Subject: [support] Drupal - White Screen of death In-Reply-To: <498B2C2E.4060000@udel.edu> References: <498B2C2E.4060000@udel.edu> Message-ID: <20090205112700.92lqxipag4gksk4o@webmail.fane.com> This usually happens when display_errors is set to off in php.ini. You can always try setting ini_set('display_errors', 1) at the top or display_errors to on in php.ini to see what is actually generating the error. -Don- Quoting John Callahan : > I believe that's relatively common. It happened to me a few times. > Usually, I go into the database (system table?) and re-enable those > modules. You can do that one module at a time to see what the offending > package was. Also check out the apache/php logs. Most of the time I > found something there that pointed to the problem. > > - John > > ************************************************** > John Callahan > Geospatial Application Developer > Delaware Geological Survey, University of Delaware > 227 Academy St, Newark DE 19716-7501 > Tel: (302) 831-3584 > Email: john.callahan at udel.edu > http://www.dgs.udel.edu > ************************************************** > > > > N?stor wrote: >> I got a white screen of death when I removed some modules from my >> drupal 6.9 >> installation and I was not able to recover. I had to re-install >> Drupal and start all over again. >> >> This happened to me also 6 month ago when I when ahead and removed >> some modules >> and I was using drupal64. >> >> Am i the only person to get a white screen after removing modules? >> How do you fix the problem without having to re-install drupal? >> >> Thanks, >> >> Nestor :-) > -- > [ Drupal support list | http://lists.drupal.org/ ] > From john.callahan at UDel.Edu Thu Feb 5 18:55:25 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Thu, 05 Feb 2009 13:55:25 -0500 Subject: [support] image gallery - a simple solution In-Reply-To: <4989CDAF.2040305@udel.edu> References: <4989CDAF.2040305@udel.edu> Message-ID: <498B361D.1040408@udel.edu> OK. I feel rather dumb. To create a simple image gallery like I proposed (all photos uploaded in one node then viewed through a Lightbox-like display,) you don't need any special gallery type of module. You don't even need views! You will need: CCK, ImageField, Imagecache, and Lightbox2. (but who doesn't already have those anyway!) All you need to do is: 1) configure Imagecache with two presets: one for each image thumbnail (e.g., 100x100), and one for slideshow view (e.g., 640x480) 2) create a new content type for these single-node galleries 3) create one CCK/ImageField field and upload images to this node (make sure to set the number of items allowed for that image field) 4) in the content type display fields, set the Label to Hidden, and Full node to Lightbox2: preset-thumbnail -> preset-slideshow. That's basically it! To make the images display horizontally, in a grid-like format, change the style of the div container to display:inline. You can put this style inside the page (using Full HTML filter), in style.css, or in your node-contenttype.tpl file. For example, if my content type was called "gallerypage" and CCK image field "gpimages", then I would use: .type-gallerypage img{ /* adds frame around image */ border:1px solid #cccccc; padding:5px; margin:5px; } .field-field-gpimage div{ /* displays images horizontally */ display: inline; overflow: hidden; } There is a post on the D5 imagefield_gallery module that describes something very close to this. It's also very easy to create a View for a listing of gallery pages, with the first image in each gallery as the thumbnail. Use taxonomy or more CCK fields to further categorize your galleries. (Of course, if you wanted images to be part of multiple galleries, I would put one image per node and use Views/Lightbox integration. This is the way most people suggest and does work very well.) - John ************************************************** John Callahan Geospatial Application Developer Delaware Geological Survey, University of Delaware 227 Academy St, Newark DE 19716-7501 Tel: (302) 831-3584 Email: john.callahan at udel.edu http://www.dgs.udel.edu ************************************************** John Callahan wrote: > I know there are plenty of options for creating image galleries in > drupal. I've used many of them. Like most people, I'm interested in > simple, and like an increasing number of people, I'm not interested in > using the image module. CCK, Views, Imagecache, etc.., is the preferred > way to go. > > In the interest of simplicity, I do not want to give my users FTP access > to my file system, and I'd rather not require them to create a new node > for every image. So, does anyone have suggestions for the following: > > > 1) users can create the image gallery on one page/node, such as through > CCK Image Field or file uploads as attachments > > 2) the display of the gallery can be through Lightbox or something similar. > > > Modules like Galleria and Gallerix have potential. They may work with a > decent amount of CSS work and maybe some changes to the module code. > > I love the method described here > (http://raincitystudios.com/blogs-and-pods/hubert/a-simple-ajax-image-gallery-system-drupal) > using CCK/Views but I can't get Lightbox to navigate through the > images. Not sure if it's possible here. > > - John > > > ************************************************** > John Callahan > Geospatial Application Developer > Delaware Geological Survey, University of Delaware > 227 Academy St, Newark DE 19716-7501 > Tel: (302) 831-3584 > Email: john.callahan at udel.edu > http://www.dgs.udel.edu > ************************************************** > > From cjones at partialflow.com Thu Feb 5 18:44:21 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Thu, 05 Feb 2009 13:44:21 -0500 Subject: [support] Membership site question In-Reply-To: <498A2F14.3020103@morsemedia.net> References: <498A2F14.3020103@morsemedia.net> Message-ID: <498B3385.9050705@partialflow.com> Where online payments are involved, you might take a look at Ubercart. There's a module included that associates a role with a product, so that any user purchasing the product is promoted to the associated role. So a user could start out as a registered user, or become registered through the normal checkout process, and then be given fuller access once the payment is processed. As for your third site, I'm not sure. Too much information missing here. What do you mean by "categories"? Sounds like you might be interested in og. You can explore from there what modules are available for customizing registration forms. You also could use "node profile" to create profiles as CCK types, including computed fields that would generate the 'what you would pay' info. Bob Morse wrote: > This seems like it should be easy but I am scratching my head. What > module or group of modules would you folks suggest for a site that > allows people to join the organization. I have two instances now, one > where they take online payments and one where they don't. On each one > I've used civicrm. But it's such a beast. The inferface is clunky and > neither organization uses the crm part. We're building a 3rd site, it's > a chamber of commerce web site and don't want to use civicrm. They want > to have a list of members in categories, be able to modify what shows up > on the listing, make the listings searchable, allow people to join > through the web site (not take payments for it but create a sign up form > that calculates what they would have to pay by check or credit card). > We're using version 6. We have something that works, but it took a lot > more customizing things than I think it should for this kind of site. > And if we're going to keep getting these kinds of jobs I like > suggestions of any simpler ways. TIA! From cjones at partialflow.com Thu Feb 5 18:49:28 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Thu, 05 Feb 2009 13:49:28 -0500 Subject: [support] regions help required In-Reply-To: <255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com> References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> <255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com> Message-ID: <498B34B8.20207@partialflow.com> Panels might help you here. Marc Morris wrote: > The site I'm setting up has split vertical regions on each page, > under a main horizontal image which spans both. > > So far the only way I have been able to add content to each region is > via blocks, positioned in bottom_left or bottom_right regions which I > have created. > > There are numerous static pages with this set-up, and I have had to > assign those blocks to display on only the specified pages. > > However, I really don't think this is ideal - is there a best > practice way of doing this? > > I'm really quite stuck with this and am finding help hard to come by. > > example: > > http://www.hollywoodclassics.com/new/ > > From cjones at partialflow.com Thu Feb 5 18:48:10 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Thu, 05 Feb 2009 13:48:10 -0500 Subject: [support] using panels to template system pages? In-Reply-To: <52177C930FA90F4D9888B0343FDB79FB10ECBD@birch.evergreen.edu> References: <4989CAC6.9080008@partialflow.com><02ab01c986ed$cc5edd30$651c9790$@com> <498A71A4.9060402@partialflow.com> <52177C930FA90F4D9888B0343FDB79FB10ECBD@birch.evergreen.edu> Message-ID: <498B346A.6050204@partialflow.com> Indeed it does help! Tremendously. I knew there must be something like this. Leider, I'm still on my first steps to module development, still learning the api, or I would offer to help on such a module. Thanks so much. Metzler, David wrote: > This is a bit hackish but I've don'e this successfully using panels2 by > using custom PHP code. It involves being able to read a module's > menu_hook though and write a little PHP, and being careful about > security (cause you can bypass menu security this way. > > The basic outline: > > 1. Determine the function being called in the menu_hook, > 1. Create a minipanel (just to abstract the logic and security) > 2. Ad a snippet of custom PHP code that calles the function. > 3. Be extra careful to set security on this minipanel as it bypasses > the menu security mechanism. > > In your example, the forums page could be loaded into any Panel by > including the following custom php pane in your mini-panel. > > $block->content = forum_page(); > > This mini-pane can then be inserted into any block you have. Here's a > more intense example where I'm passing context data to the php custom > page to add the view cases page to a form that passes node id into the > function being called. > > $block->content = > casetracker_cases_overview($context->data->nid,'state:6'); > > Your question has sparked some interesting ideas for me with regard to > creating a module that does this more generically based on the data > that's already in the menu system :). Especially once we get to drupal > 6 and wildcards in the path. Wow the possibilities are endless. > > Hope this helps. > > > > > > > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Christopher M. Jones > Sent: Wednesday, February 04, 2009 8:57 PM > To: support at drupal.org > Subject: Re: [support] using panels to template system pages? > > That's plan B. Thanks much for your suggestion. I was hoping that there > would be a way to do this with panels, because that would be useful in > other applications. For example, I'd love to bring group forums into the > group home page. > > Steve Kessler wrote: >> To add text above the page you might want to look at just using >> blocks. If you have a region (or add a region) above the content >> region or put a block in the content region you can usually achieve >> this. You can then change the settings for the block to only show on > specific pages. >> I hope this helps. >> >> -Steve >> >> >> Steve Kessler >> Denver DataMan >> 303-587-4428 >> Sign up for the Denver DataMan Free eNewsletter >> >> >> -----Original Message----- >> From: Christopher M. Jones [mailto:cjones at partialflow.com] >> Sent: Wednesday, February 04, 2009 10:05 AM >> To: support at drupal.org >> Subject: [support] using panels to template system pages? >> >> I'd like to use panels to do things like add text to the top of the >> /forum page, but I don't see how to add this as content into the > panel. >> I'm guessing it can't be done, or can't be done easily. Can someone >> >> a. Tell me how to do it >> >> b. Suggest another strategy. From marc at cultmovieforums.com Thu Feb 5 20:18:15 2009 From: marc at cultmovieforums.com (Marc Morris) Date: Thu, 5 Feb 2009 20:18:15 +0000 Subject: [support] regions help required In-Reply-To: <498B34B8.20207@partialflow.com> References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> <255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com> <498B34B8.20207@partialflow.com> Message-ID: <10271D18-1B73-4F8A-8927-038056719A16@cultmovieforums.com> Thanks Chris, Do you have a link to this as I have been unable to find anything for Drupal 6. I'm using the zen theme. On 5 Feb 2009, at 18:49, Christopher M. Jones wrote: > Panels might help you here. > > Marc Morris wrote: >> The site I'm setting up has split vertical regions on each page, >> under a main horizontal image which spans both. >> >> So far the only way I have been able to add content to each region is >> via blocks, positioned in bottom_left or bottom_right regions which I >> have created. >> >> There are numerous static pages with this set-up, and I have had to >> assign those blocks to display on only the specified pages. >> >> However, I really don't think this is ideal - is there a best >> practice way of doing this? >> >> I'm really quite stuck with this and am finding help hard to come by. >> >> example: >> >> http://www.hollywoodclassics.com/new/ >> >> > -- > [ Drupal support list | http://lists.drupal.org/ ] Marc Morris Cult Movie Forums http://www.cultmovieforums.com/ From bob at morsemedia.net Thu Feb 5 22:26:10 2009 From: bob at morsemedia.net (Bob Morse) Date: Thu, 05 Feb 2009 14:26:10 -0800 Subject: [support] Membership site question In-Reply-To: <498B3385.9050705@partialflow.com> References: <498A2F14.3020103@morsemedia.net> <498B3385.9050705@partialflow.com> Message-ID: <498B6782.6050405@morsemedia.net> Thanks, Christopher. Listing by categories simply means chamber members are displayed under categories of types of business. So we have a custom search that groups businesses by category and each category can be linked to so you can display only one category. Will look at your suggestions. Christopher M. Jones wrote: > Where online payments are involved, you might take a look at Ubercart. > There's a module included that associates a role with a product, so that > any user purchasing the product is promoted to the associated role. So a > user could start out as a registered user, or become registered through > the normal checkout process, and then be given fuller access once the > payment is processed. > > As for your third site, I'm not sure. Too much information missing here. > What do you mean by "categories"? Sounds like you might be interested in > og. You can explore from there what modules are available for > customizing registration forms. You also could use "node profile" to > create profiles as CCK types, including computed fields that would > generate the 'what you would pay' info. > > Bob Morse wrote: > >> This seems like it should be easy but I am scratching my head. What >> module or group of modules would you folks suggest for a site that >> allows people to join the organization. I have two instances now, one >> where they take online payments and one where they don't. On each one >> I've used civicrm. But it's such a beast. The inferface is clunky and >> neither organization uses the crm part. We're building a 3rd site, it's >> a chamber of commerce web site and don't want to use civicrm. They want >> to have a list of members in categories, be able to modify what shows up >> on the listing, make the listings searchable, allow people to join >> through the web site (not take payments for it but create a sign up form >> that calculates what they would have to pay by check or credit card). >> We're using version 6. We have something that works, but it took a lot >> more customizing things than I think it should for this kind of site. >> And if we're going to keep getting these kinds of jobs I like >> suggestions of any simpler ways. TIA! >> -- Bob Morse Morse Media Web Development * Web Hosting * Internet Marketing http://morsemedia.net 707-444-9566 707-496-9191 (cell) Blog: http://talkingtech.net From gordon at heydon.com.au Thu Feb 5 23:52:52 2009 From: gordon at heydon.com.au (Gordon Heydon) Date: Fri, 6 Feb 2009 10:52:52 +1100 Subject: [support] Ubercart: Define attribute option for specific product when creating a product kit In-Reply-To: <498B1C6E.9050705@etrafficsolutions.com> References: <4981ED62.9060403@etrafficsolutions.com> <498B1C6E.9050705@etrafficsolutions.com> Message-ID: <0E5F74B1-1420-4999-B817-FD46AE9E03DF@heydon.com.au> Hi, I don't think many ubercart people hang out here. The majority of the ubercart community lives over at ubercart.org. You may be better response from there. Gordon. On 06/02/2009, at 4:05 AM, Ryan Thomson wrote: > Putting this out there one last time before completely dropping > product > kits. > > Ryan Thomson wrote: >> Hey all! >> >> Any Ubercart ninjas in da house? >> >> >> When editing a product kit there is a list of all included products >> which include quantity, ordering and discount. This should also >> include >> the product attribute options. >> >> example: we sell online content for schools. An ebook can be >> purchases >> individually, per classroom or per school. These are all attribute >> options of the ebook product. We want to create product kits which >> would >> include an ebook with a classroom license, but as product kits work >> now >> you can't set the attribute option on the edit page - instead the >> customer picks which attribute option they want which, in this case, >> won't work. >> >> Our workaround is to create copies of existing products with only one >> attribute option, but this is obviously entirely inefficient and >> messy... does anyone know of a method to achieve this? >> >> Thanks! >> >> >> > > -- > [ Drupal support list | http://lists.drupal.org/ ] From ryan at etrafficsolutions.com Thu Feb 5 23:55:02 2009 From: ryan at etrafficsolutions.com (Ryan Thomson) Date: Thu, 05 Feb 2009 15:55:02 -0800 Subject: [support] Ubercart: Define attribute option for specific product when creating a product kit In-Reply-To: <0E5F74B1-1420-4999-B817-FD46AE9E03DF@heydon.com.au> References: <4981ED62.9060403@etrafficsolutions.com> <498B1C6E.9050705@etrafficsolutions.com> <0E5F74B1-1420-4999-B817-FD46AE9E03DF@heydon.com.au> Message-ID: <498B7C56.7020109@etrafficsolutions.com> Thanks Gordon, I've submitted this on the ubercart forum, on the post installation forum at drupal and as a feature request on the project page on drupal. I added it here just to cover my bases - you never know! Appreciate the heads up though! Ryan Gordon Heydon wrote: > Hi, > > I don't think many ubercart people hang out here. The majority of the > ubercart community lives over at ubercart.org. > > You may be better response from there. > > Gordon. > > On 06/02/2009, at 4:05 AM, Ryan Thomson wrote: > > >> Putting this out there one last time before completely dropping >> product >> kits. >> >> Ryan Thomson wrote: >> >>> Hey all! >>> >>> Any Ubercart ninjas in da house? >>> >>> >>> When editing a product kit there is a list of all included products >>> which include quantity, ordering and discount. This should also >>> include >>> the product attribute options. >>> >>> example: we sell online content for schools. An ebook can be >>> purchases >>> individually, per classroom or per school. These are all attribute >>> options of the ebook product. We want to create product kits which >>> would >>> include an ebook with a classroom license, but as product kits work >>> now >>> you can't set the attribute option on the edit page - instead the >>> customer picks which attribute option they want which, in this case, >>> won't work. >>> >>> Our workaround is to create copies of existing products with only one >>> attribute option, but this is obviously entirely inefficient and >>> messy... does anyone know of a method to achieve this? >>> >>> Thanks! >>> >>> >>> >>> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > From victorkane at gmail.com Fri Feb 6 09:54:44 2009 From: victorkane at gmail.com (Victor Kane) Date: Fri, 6 Feb 2009 07:54:44 -0200 Subject: [support] Simplenews - Ugly Background in the emails sent In-Reply-To: <21856692.post@talk.nabble.com> References: <21745827.post@talk.nabble.com> <51a9b8330901301258ld5cd823hcbf45cb0d56b1de5@mail.gmail.com> <21758764.post@talk.nabble.com> <4983B24C.2090600@udel.edu> <21759155.post@talk.nabble.com> <51a9b8330901302328w12bc4335i7f26ce7b49e4caaf@mail.gmail.com> <21761669.post@talk.nabble.com> <21856692.post@talk.nabble.com> Message-ID: Well, if the whole mail disappeared, at least you were on the right track! :) Maybe you can see what's going on and contribute back to the issue queue. Of course, if it just represents a pain, leave it, sure, Victor On Thu, Feb 5, 2009 at 3:23 PM, geniekids wrote: > Well i tried that too but it just gave me more problems - instead of > removing the background - the whole email vanished (i ended up spending > considerable time looking up support request in that module and the whole > things even more complicated that my current problem > > Victor Kane-2 wrote: > The Simplenews module README.txt speaks of a helper module which can allow > you to theme individual templates: * Simplenews_template Simplenews Template > provides a themable template with configurable header, footer and style. > Header, footer and style are configurable for each newsletter independently. > See http://drupal.org/project/simplenews_template Victor Kane > http://awebfactory.com.ar On Sat, Jan 31, 2009 at 8:00 AM, geniekids > wrote: > > Thanks Hans > > 1. I already have in fckeditor default as css > setting (not the theme > setting) - so that is not helping. > 2. I tried > google search on how to pick colour and find its hex value - > couldn't get > what would help me - as yet - but what i want to know - even i > find out > which entry in style.css is passing on the colour - what will i do > with > it? > 3. Your third option right now looks too complicated for a ( novice > like me > ) and for a simple purpose of removal of background colour. So am > not sure > i > want to invest so much time into it. > > I found another way > around - though quite temporary - i logged in as admin > and set an admin > theme for the website which has white background > (bluemarine) - and then > used that to send the newsletter - it worked. > > Ratnesh > > > KOBA | Hans > Rossel-2 wrote: > > > > Try the following:Goto admin/settings/fckeditor and > change in the profile > > you are using the css settings of "editor css" to > fckeditor default. I > > think > > it is now set to theme css. > > You could > also check the color hex value with a color picker from the > > newsletter > email and search for it in the css of your current theme to > see > > where > it comes from if you prefer not to set fckeditor to default css. > > > > If > that doesn't help, you might want to create a contemplate for your > > > newsletter; I have described the process (amongst other stuff you can do) > > > in http://drupal.org/node/268404 > > > > Good luck, > > > > Hans > > > > > 2009/1/31 geniekids > > > >> > >> > >> Also i am using fckeditor - does that > effect? > >> Thanks anyway > >> > >> > > > > -- > > [ Drupal support list | > http://lists.drupal.org/ ] > > > > -- > View this message in context: > > http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21761669.html> Sent from the Drupal - Support mailing list archive at Nabble.com. > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > -- [ Drupal support > list | http://lists.drupal.org/ ] > > > ------------------------------ > View this message in context: Re: Simplenews - Ugly Background in the > emails sent > > Sent from the Drupal - Support mailing list archiveat Nabble.com. > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090206/bafd987d/attachment-0001.htm From ratadi2 at gmail.com Fri Feb 6 10:23:01 2009 From: ratadi2 at gmail.com (geniekids) Date: Fri, 6 Feb 2009 02:23:01 -0800 (PST) Subject: [support] Simplenews - Ugly Background in the emails sent In-Reply-To: References: <21745827.post@talk.nabble.com> <51a9b8330901301258ld5cd823hcbf45cb0d56b1de5@mail.gmail.com> <21758764.post@talk.nabble.com> <4983B24C.2090600@udel.edu> <21759155.post@talk.nabble.com> <51a9b8330901302328w12bc4335i7f26ce7b49e4caaf@mail.gmail.com> <21761669.post@talk.nabble.com> <21856692.post@talk.nabble.com> Message-ID: <21869865.post@talk.nabble.com> Yes Victor - i did try sorting that out - have even posted on that "issue" queue - but it has got too complicated for my limited programing knowledge (i haven;t even applied a ptch in my life :-( Victor Kane-2 wrote: > > Well, if the whole mail disappeared, at least you were on the right track! > :) > Maybe you can see what's going on and contribute back to the issue queue. > > Of course, if it just represents a pain, leave it, sure, > > Victor > > > On Thu, Feb 5, 2009 at 3:23 PM, geniekids wrote: > >> Well i tried that too but it just gave me more problems - instead of >> removing the background - the whole email vanished (i ended up spending >> considerable time looking up support request in that module and the whole >> things even more complicated that my current problem >> >> Victor Kane-2 wrote: >> The Simplenews module README.txt speaks of a helper module which can >> allow >> you to theme individual templates: * Simplenews_template Simplenews >> Template >> provides a themable template with configurable header, footer and style. >> Header, footer and style are configurable for each newsletter >> independently. >> See http://drupal.org/project/simplenews_template Victor Kane >> http://awebfactory.com.ar On Sat, Jan 31, 2009 at 8:00 AM, geniekids >> wrote: > > Thanks Hans > > 1. I already have in fckeditor default as css >> setting (not the theme > setting) - so that is not helping. > 2. I tried >> google search on how to pick colour and find its hex value - > couldn't >> get >> what would help me - as yet - but what i want to know - even i > find out >> which entry in style.css is passing on the colour - what will i do > with >> it? > 3. Your third option right now looks too complicated for a ( novice >> like me > ) and for a simple purpose of removal of background colour. So >> am >> not sure > i > want to invest so much time into it. > > I found another >> way >> around - though quite temporary - i logged in as admin > and set an admin >> theme for the website which has white background > (bluemarine) - and >> then >> used that to send the newsletter - it worked. > > Ratnesh > > > KOBA | >> Hans >> Rossel-2 wrote: > > > > Try the following:Goto admin/settings/fckeditor >> and >> change in the profile > > you are using the css settings of "editor css" >> to >> fckeditor default. I > > think > > it is now set to theme css. > > You >> could >> also check the color hex value with a color picker from the > > >> newsletter >> email and search for it in the css of your current theme to > see > > >> where >> it comes from if you prefer not to set fckeditor to default css. > > > > >> If >> that doesn't help, you might want to create a contemplate for your > > >> newsletter; I have described the process (amongst other stuff you can do) >> > >> > in http://drupal.org/node/268404 > > > > Good luck, > > > > Hans > > > >> > >> 2009/1/31 geniekids > > > >> > >> > >> Also i am using fckeditor - does >> that >> effect? > >> Thanks anyway > >> > >> > > > > -- > > [ Drupal support list >> | >> http://lists.drupal.org/ ] > > > > -- > View this message in context: > >> http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21761669.html> >> Sent from the Drupal - Support mailing list archive at Nabble.com. > > -- >> > [ Drupal support list | http://lists.drupal.org/ ] > -- [ Drupal >> support >> list | http://lists.drupal.org/ ] >> >> >> ------------------------------ >> View this message in context: Re: Simplenews - Ugly Background in the >> emails >> sent >> >> Sent from the Drupal - Support mailing list >> archiveat Nabble.com. >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- View this message in context: http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21869865.html Sent from the Drupal - Support mailing list archive at Nabble.com. From victorkane at gmail.com Fri Feb 6 10:45:00 2009 From: victorkane at gmail.com (Victor Kane) Date: Fri, 6 Feb 2009 08:45:00 -0200 Subject: [support] Simplenews - Ugly Background in the emails sent In-Reply-To: <21869865.post@talk.nabble.com> References: <21745827.post@talk.nabble.com> <21758764.post@talk.nabble.com> <4983B24C.2090600@udel.edu> <21759155.post@talk.nabble.com> <51a9b8330901302328w12bc4335i7f26ce7b49e4caaf@mail.gmail.com> <21761669.post@talk.nabble.com> <21856692.post@talk.nabble.com> <21869865.post@talk.nabble.com> Message-ID: It is relatively painless and will lead you on to a whole new state of consciousness, and improve your karma points ;) http://www.google.com.ar/search?q=how+apply+patch+drupal&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:en-US:unofficial&client=firefox-a On Fri, Feb 6, 2009 at 8:23 AM, geniekids wrote: > > Yes Victor - i did try sorting that out - have even posted on that "issue" > queue - but it has got too > complicated for my limited programing knowledge (i haven;t even applied a > ptch in my life :-( > > > Victor Kane-2 wrote: > > > > Well, if the whole mail disappeared, at least you were on the right > track! > > :) > > Maybe you can see what's going on and contribute back to the issue queue. > > > > Of course, if it just represents a pain, leave it, sure, > > > > Victor > > > > > > On Thu, Feb 5, 2009 at 3:23 PM, geniekids wrote: > > > >> Well i tried that too but it just gave me more problems - instead of > >> removing the background - the whole email vanished (i ended up spending > >> considerable time looking up support request in that module and the > whole > >> things even more complicated that my current problem > >> > >> Victor Kane-2 wrote: > >> The Simplenews module README.txt speaks of a helper module which can > >> allow > >> you to theme individual templates: * Simplenews_template Simplenews > >> Template > >> provides a themable template with configurable header, footer and style. > >> Header, footer and style are configurable for each newsletter > >> independently. > >> See http://drupal.org/project/simplenews_template Victor Kane > >> http://awebfactory.com.ar On Sat, Jan 31, 2009 at 8:00 AM, geniekids > >> wrote: > > Thanks Hans > > 1. I already have in fckeditor default as css > >> setting (not the theme > setting) - so that is not helping. > 2. I tried > >> google search on how to pick colour and find its hex value - > couldn't > >> get > >> what would help me - as yet - but what i want to know - even i > find > out > >> which entry in style.css is passing on the colour - what will i do > > with > >> it? > 3. Your third option right now looks too complicated for a ( > novice > >> like me > ) and for a simple purpose of removal of background colour. So > >> am > >> not sure > i > want to invest so much time into it. > > I found another > >> way > >> around - though quite temporary - i logged in as admin > and set an > admin > >> theme for the website which has white background > (bluemarine) - and > >> then > >> used that to send the newsletter - it worked. > > Ratnesh > > > KOBA | > >> Hans > >> Rossel-2 wrote: > > > > Try the following:Goto admin/settings/fckeditor > >> and > >> change in the profile > > you are using the css settings of "editor css" > >> to > >> fckeditor default. I > > think > > it is now set to theme css. > > You > >> could > >> also check the color hex value with a color picker from the > > > >> newsletter > >> email and search for it in the css of your current theme to > see > > > >> where > >> it comes from if you prefer not to set fckeditor to default css. > > > > > >> If > >> that doesn't help, you might want to create a contemplate for your > > > >> newsletter; I have described the process (amongst other stuff you can > do) > >> > > >> > in http://drupal.org/node/268404 > > > > Good luck, > > > > Hans > > > > > >> > > >> 2009/1/31 geniekids > > > >> > >> > >> Also i am using fckeditor - does > >> that > >> effect? > >> Thanks anyway > >> > >> > > > > -- > > [ Drupal support > list > >> | > >> http://lists.drupal.org/ ] > > > > -- > View this message in context: > > >> > http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21761669.html > > > >> Sent from the Drupal - Support mailing list archive at Nabble.com. > > > -- > >> > [ Drupal support list | http://lists.drupal.org/ ] > -- [ Drupal > >> support > >> list | http://lists.drupal.org/ ] > >> > >> > >> ------------------------------ > >> View this message in context: Re: Simplenews - Ugly Background in the > >> emails > >> sent< > http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21856692.html > > > >> > >> Sent from the Drupal - Support mailing list > >> archiveat > Nabble.com. > >> > >> -- > >> [ Drupal support list | http://lists.drupal.org/ ] > >> > > > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > > > -- > View this message in context: > http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21869865.html > Sent from the Drupal - Support mailing list archive at Nabble.com. > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090206/37c57e53/attachment.htm From cjones at partialflow.com Fri Feb 6 11:15:00 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Fri, 06 Feb 2009 06:15:00 -0500 Subject: [support] regions help required In-Reply-To: <10271D18-1B73-4F8A-8927-038056719A16@cultmovieforums.com> References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> <255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com> <498B34B8.20207@partialflow.com> <10271D18-1B73-4F8A-8927-038056719A16@cultmovieforums.com> Message-ID: <498C1BB4.1020205@partialflow.com> http://drupal.org/project/panels It's a pretty big module. Lot's of options, lots of possibilities. Marc Morris wrote: > Thanks Chris, > > Do you have a link to this as I have been unable to find anything for > Drupal 6. I'm using the zen theme. > > > > On 5 Feb 2009, at 18:49, Christopher M. Jones wrote: > >> Panels might help you here. >> >> Marc Morris wrote: >>> The site I'm setting up has split vertical regions on each page, >>> under a main horizontal image which spans both. >>> >>> So far the only way I have been able to add content to each region is >>> via blocks, positioned in bottom_left or bottom_right regions which I >>> have created. >>> >>> There are numerous static pages with this set-up, and I have had to >>> assign those blocks to display on only the specified pages. >>> >>> However, I really don't think this is ideal - is there a best >>> practice way of doing this? >>> >>> I'm really quite stuck with this and am finding help hard to come by. >>> >>> example: >>> >>> http://www.hollywoodclassics.com/new/ >>> >>> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] > > Marc Morris > Cult Movie Forums > http://www.cultmovieforums.com/ > > > > From cjones at partialflow.com Fri Feb 6 11:21:25 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Fri, 06 Feb 2009 06:21:25 -0500 Subject: [support] Membership site question In-Reply-To: <498B6782.6050405@morsemedia.net> References: <498A2F14.3020103@morsemedia.net> <498B3385.9050705@partialflow.com> <498B6782.6050405@morsemedia.net> Message-ID: <498C1D35.3080207@partialflow.com> So are these usernodes associated with taxonomy terms? Is that how you are 'categorizing' these users? What do they do once they are on the site? Is this a site for collaboration on projects? Any social networking involved? Or is it just getting access to privileged content? Bob Morse wrote: > Thanks, Christopher. Listing by categories simply means chamber members > are displayed under categories of types of business. > So we have a custom search that groups businesses by category and each > category can be linked to so you can display only one category. > > Will look at your suggestions. > > Christopher M. Jones wrote: >> Where online payments are involved, you might take a look at Ubercart. >> There's a module included that associates a role with a product, so that >> any user purchasing the product is promoted to the associated role. So a >> user could start out as a registered user, or become registered through >> the normal checkout process, and then be given fuller access once the >> payment is processed. >> >> As for your third site, I'm not sure. Too much information missing here. >> What do you mean by "categories"? Sounds like you might be interested in >> og. You can explore from there what modules are available for >> customizing registration forms. You also could use "node profile" to >> create profiles as CCK types, including computed fields that would >> generate the 'what you would pay' info. >> >> Bob Morse wrote: >> >>> This seems like it should be easy but I am scratching my head. What >>> module or group of modules would you folks suggest for a site that >>> allows people to join the organization. I have two instances now, one >>> where they take online payments and one where they don't. On each one >>> I've used civicrm. But it's such a beast. The inferface is clunky and >>> neither organization uses the crm part. We're building a 3rd site, it's >>> a chamber of commerce web site and don't want to use civicrm. They want >>> to have a list of members in categories, be able to modify what shows up >>> on the listing, make the listings searchable, allow people to join >>> through the web site (not take payments for it but create a sign up form >>> that calculates what they would have to pay by check or credit card). >>> We're using version 6. We have something that works, but it took a lot >>> more customizing things than I think it should for this kind of site. >>> And if we're going to keep getting these kinds of jobs I like >>> suggestions of any simpler ways. TIA! >>> > > From Robin.Clarke at networkrail.co.uk Fri Feb 6 12:06:40 2009 From: Robin.Clarke at networkrail.co.uk (Clarke Robin) Date: Fri, 6 Feb 2009 12:06:40 -0000 Subject: [support] image gallery - a simple solution References: <4989CDAF.2040305@udel.edu> <498B361D.1040408@udel.edu> Message-ID: <0CF90D6CE50B98468B96FECD3CEFE7C901516986@sr1mm02.corp.UKrail.net> There seem to be quite a few examples of this pattern (CCK + ImageCache + Views + etc) being proposed within the Drupal community as a way of giving users the ability to add images to a Drupal site. There are some things I like about it: 1. The workflow for a user to add images is much simpler than using the Image module (only one node created). 2. There seems to be more flexibility in how the images are displayed (thanks to ImageCache). But there are some disadvantages; 1. Categories cannot be applied to individual images (just to the group of images). 2. Comments cannot be applied to individual images. One way around this is to use the CCK + ImageCache + Views pattern, but restrict the number of imagefield fields to 1 (as opposed to many). But then this negates the first advantage of simplifying the process of adding multiple images. Does anyone know another way of using the CCK + ImageCache + Views pattern that will allow users to add comments and categories to individual images? Thanks robin ________________________________ From: support-bounces at drupal.org on behalf of John Callahan Sent: Thu 05/02/2009 18:55 To: support at drupal.org Subject: Re: [support] image gallery - a simple solution OK. I feel rather dumb. To create a simple image gallery like I proposed (all photos uploaded in one node then viewed through a Lightbox-like display,) you don't need any special gallery type of module. You don't even need views! You will need: CCK, ImageField, Imagecache, and Lightbox2. (but who doesn't already have those anyway!) All you need to do is: 1) configure Imagecache with two presets: one for each image thumbnail (e.g., 100x100), and one for slideshow view (e.g., 640x480) 2) create a new content type for these single-node galleries 3) create one CCK/ImageField field and upload images to this node (make sure to set the number of items allowed for that image field) 4) in the content type display fields, set the Label to Hidden, and Full node to Lightbox2: preset-thumbnail -> preset-slideshow. That's basically it! To make the images display horizontally, in a grid-like format, change the style of the div container to display:inline. You can put this style inside the page (using Full HTML filter), in style.css, or in your node-contenttype.tpl file. For example, if my content type was called "gallerypage" and CCK image field "gpimages", then I would use: .type-gallerypage img{ /* adds frame around image */ border:1px solid #cccccc; padding:5px; margin:5px; } .field-field-gpimage div{ /* displays images horizontally */ display: inline; overflow: hidden; } There is a post on the D5 imagefield_gallery module that describes something very close to this. It's also very easy to create a View for a listing of gallery pages, with the first image in each gallery as the thumbnail. Use taxonomy or more CCK fields to further categorize your galleries. (Of course, if you wanted images to be part of multiple galleries, I would put one image per node and use Views/Lightbox integration. This is the way most people suggest and does work very well.) - John ************************************************** John Callahan Geospatial Application Developer Delaware Geological Survey, University of Delaware 227 Academy St, Newark DE 19716-7501 Tel: (302) 831-3584 Email: john.callahan at udel.edu http://www.dgs.udel.edu ************************************************** John Callahan wrote: > I know there are plenty of options for creating image galleries in > drupal. I've used many of them. Like most people, I'm interested in > simple, and like an increasing number of people, I'm not interested in > using the image module. CCK, Views, Imagecache, etc.., is the preferred > way to go. > > In the interest of simplicity, I do not want to give my users FTP access > to my file system, and I'd rather not require them to create a new node > for every image. So, does anyone have suggestions for the following: > > > 1) users can create the image gallery on one page/node, such as through > CCK Image Field or file uploads as attachments > > 2) the display of the gallery can be through Lightbox or something similar. > > > Modules like Galleria and Gallerix have potential. They may work with a > decent amount of CSS work and maybe some changes to the module code. > > I love the method described here > (http://raincitystudios.com/blogs-and-pods/hubert/a-simple-ajax-image-gallery-system-drupal) > using CCK/Views but I can't get Lightbox to navigate through the > images. Not sure if it's possible here. > > - John > > > ************************************************** > John Callahan > Geospatial Application Developer > Delaware Geological Survey, University of Delaware > 227 Academy St, Newark DE 19716-7501 > Tel: (302) 831-3584 > Email: john.callahan at udel.edu > http://www.dgs.udel.edu > ************************************************** > > -- [ Drupal support list | http://lists.drupal.org/ ] **************************************************************************************************************************************************************** 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: 7788 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20090206/35088329/attachment-0001.bin From earnie at users.sourceforge.net Fri Feb 6 13:05:54 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Fri, 06 Feb 2009 08:05:54 -0500 Subject: [support] Ubercart: Define attribute option for specific product when creating a product kit In-Reply-To: <498B7C56.7020109@etrafficsolutions.com> References: <4981ED62.9060403@etrafficsolutions.com> <498B1C6E.9050705@etrafficsolutions.com> <0E5F74B1-1420-4999-B817-FD46AE9E03DF@heydon.com.au> <498B7C56.7020109@etrafficsolutions.com> Message-ID: <20090206080554.pvdas44yl6gwcg0g@mail.progw.org> Quoting Ryan Thomson : > Thanks Gordon, > > I've submitted this on the ubercart forum, on the post installation > forum at drupal and as a feature request on the project page on drupal. > I added it here just to cover my bases - you never know! > But as Gordon said, your support for Ubercart is found at ubercart.org. > Appreciate the heads up though! > Ryan > > > > Gordon Heydon wrote: >> Hi, >> >> I don't think many ubercart people hang out here. The majority of the >> ubercart community lives over at ubercart.org. >> >> You may be better response from there. >> >> Gordon. >> -- 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 marc at cultmovieforums.com Fri Feb 6 13:07:59 2009 From: marc at cultmovieforums.com (Marc Morris) Date: Fri, 6 Feb 2009 13:07:59 +0000 Subject: [support] regions help required In-Reply-To: <498C1BB4.1020205@partialflow.com> References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> <255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com> <498B34B8.20207@partialflow.com> <10271D18-1B73-4F8A-8927-038056719A16@cultmovieforums.com> <498C1BB4.1020205@partialflow.com> Message-ID: Trouble is, no D6 support yet ;-( On 6 Feb 2009, at 11:15, Christopher M. Jones wrote: > http://drupal.org/project/panels > > It's a pretty big module. Lot's of options, lots of possibilities. > > Marc Morris wrote: >> Thanks Chris, >> >> Do you have a link to this as I have been unable to find anything for >> Drupal 6. I'm using the zen theme. >> >> >> >> On 5 Feb 2009, at 18:49, Christopher M. Jones wrote: >> >>> Panels might help you here. >>> >>> Marc Morris wrote: >>>> The site I'm setting up has split vertical regions on each page, >>>> under a main horizontal image which spans both. >>>> >>>> So far the only way I have been able to add content to each >>>> region is >>>> via blocks, positioned in bottom_left or bottom_right regions >>>> which I >>>> have created. >>>> >>>> There are numerous static pages with this set-up, and I have had to >>>> assign those blocks to display on only the specified pages. >>>> >>>> However, I really don't think this is ideal - is there a best >>>> practice way of doing this? >>>> >>>> I'm really quite stuck with this and am finding help hard to >>>> come by. >>>> >>>> example: >>>> >>>> http://www.hollywoodclassics.com/new/ >>>> >>>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >> >> Marc Morris >> Cult Movie Forums >> http://www.cultmovieforums.com/ >> >> >> >> > -- > [ Drupal support list | http://lists.drupal.org/ ] Marc Morris Cult Movie Forums http://www.cultmovieforums.com/ From earnie at users.sourceforge.net Fri Feb 6 13:28:20 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Fri, 06 Feb 2009 08:28:20 -0500 Subject: [support] Membership site question In-Reply-To: <498B6782.6050405@morsemedia.net> References: <498A2F14.3020103@morsemedia.net> <498B3385.9050705@partialflow.com> <498B6782.6050405@morsemedia.net> Message-ID: <20090206082820.jgbku9gx6t9co04w@mail.progw.org> Quoting Bob Morse : > Thanks, Christopher. Listing by categories simply means chamber members > are displayed under categories of types of business. > So we have a custom search that groups businesses by category and each > category can be linked to so you can display only one category. > I think you want: http://drupal.org/project/content_profile http://drupal.org/project/autotag http://drupal.org/project/pathauto and maybe: http://drupal.org/project/advanced_profile I'm thinking you need to create a profile field or two for "type of business". The content_profile will then move the profile data to a node that taxonomy can then be filled. The autotag module would be setup to tag the profile content type on a preset list of tags. The work would be to hook_form_alter the "type of business" field with the list of tags from the chosen vocabulary. Pathauto would be setup to create nice url's of sample.org/"type of business" which is really the vocabulary term but you would have your list of members for that business. -- 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 cjones at partialflow.com Fri Feb 6 14:01:22 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Fri, 06 Feb 2009 09:01:22 -0500 Subject: [support] regions help required In-Reply-To: References: <014201c9878f$fc5a4fe0$0601a8c0@zeus> <255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com> <498B34B8.20207@partialflow.com> <10271D18-1B73-4F8A-8927-038056719A16@cultmovieforums.com> <498C1BB4.1020205@partialflow.com> Message-ID: <498C42B2.8030005@partialflow.com> Huh? http://ftp.drupal.org/files/projects/panels-5.x-2.0-rc1a.tar.gz http://drupal.org/node/291357 Marc Morris wrote: > Trouble is, no D6 support yet ;-( > > > > > On 6 Feb 2009, at 11:15, Christopher M. Jones wrote: > >> http://drupal.org/project/panels >> >> It's a pretty big module. Lot's of options, lots of possibilities. >> >> Marc Morris wrote: >>> Thanks Chris, >>> >>> Do you have a link to this as I have been unable to find anything for >>> Drupal 6. I'm using the zen theme. >>> >>> >>> >>> On 5 Feb 2009, at 18:49, Christopher M. Jones wrote: >>> >>>> Panels might help you here. >>>> >>>> Marc Morris wrote: >>>>> The site I'm setting up has split vertical regions on each page, >>>>> under a main horizontal image which spans both. >>>>> >>>>> So far the only way I have been able to add content to each >>>>> region is >>>>> via blocks, positioned in bottom_left or bottom_right regions >>>>> which I >>>>> have created. >>>>> >>>>> There are numerous static pages with this set-up, and I have had to >>>>> assign those blocks to display on only the specified pages. >>>>> >>>>> However, I really don't think this is ideal - is there a best >>>>> practice way of doing this? >>>>> >>>>> I'm really quite stuck with this and am finding help hard to >>>>> come by. >>>>> >>>>> example: >>>>> >>>>> http://www.hollywoodclassics.com/new/ >>>>> >>>>> >>>> -- >>>> [ Drupal support list | http://lists.drupal.org/ ] >>> Marc Morris >>> Cult Movie Forums >>> http://www.cultmovieforums.com/ >>> >>> >>> >>> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] > > Marc Morris > Cult Movie Forums > http://www.cultmovieforums.com/ > > > > From metzlerd at evergreen.edu Fri Feb 6 15:55:35 2009 From: metzlerd at evergreen.edu (Metzler, David) Date: Fri, 6 Feb 2009 07:55:35 -0800 Subject: [support] regions help required In-Reply-To: References: <014201c9878f$fc5a4fe0$0601a8c0@zeus><255E8793-FC67-43B3-9491-E2097F1F3BBA@cultmovieforums.com><498B34B8.20207@partialflow.com><10271D18-1B73-4F8A-8927-038056719A16@cultmovieforums.com><498C1BB4.1020205@partialflow.com> Message-ID: <52177C930FA90F4D9888B0343FDB79FB10ECC0@birch.evergreen.edu> Yeah I know. It's a big part of why I haven't been able to jump on the 6.x bandwagon. Unfortunately it is really the best solution for what you're looking for short of hacking your theme all to pieces. :( These guys are doing great work, it is TRULY amazing what the panels module can do for you. I'd be seriously considering leaving things status quo until a panels 6.x comes out. Not what you wanted to hear I'm sure. Dave -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Marc Morris Sent: Friday, February 06, 2009 5:08 AM To: support at drupal.org Subject: Re: [support] regions help required Trouble is, no D6 support yet ;-( On 6 Feb 2009, at 11:15, Christopher M. Jones wrote: > http://drupal.org/project/panels > > It's a pretty big module. Lot's of options, lots of possibilities. > > Marc Morris wrote: >> Thanks Chris, >> >> Do you have a link to this as I have been unable to find anything for >> Drupal 6. I'm using the zen theme. >> >> >> >> On 5 Feb 2009, at 18:49, Christopher M. Jones wrote: >> >>> Panels might help you here. >>> >>> Marc Morris wrote: >>>> The site I'm setting up has split vertical regions on each page, >>>> under a main horizontal image which spans both. >>>> >>>> So far the only way I have been able to add content to each region >>>> is via blocks, positioned in bottom_left or bottom_right regions >>>> which I have created. >>>> >>>> There are numerous static pages with this set-up, and I have had to >>>> assign those blocks to display on only the specified pages. >>>> >>>> However, I really don't think this is ideal - is there a best >>>> practice way of doing this? >>>> >>>> I'm really quite stuck with this and am finding help hard to come >>>> by. >>>> >>>> example: >>>> >>>> http://www.hollywoodclassics.com/new/ >>>> >>>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >> >> Marc Morris >> Cult Movie Forums >> http://www.cultmovieforums.com/ >> >> >> >> > -- > [ Drupal support list | http://lists.drupal.org/ ] Marc Morris Cult Movie Forums http://www.cultmovieforums.com/ -- [ Drupal support list | http://lists.drupal.org/ ] From bob at morsemedia.net Fri Feb 6 17:37:23 2009 From: bob at morsemedia.net (Bob Morse) Date: Fri, 06 Feb 2009 09:37:23 -0800 Subject: [support] Membership site question In-Reply-To: <498C1D35.3080207@partialflow.com> References: <498A2F14.3020103@morsemedia.net> <498B3385.9050705@partialflow.com> <498B6782.6050405@morsemedia.net> <498C1D35.3080207@partialflow.com> Message-ID: <498C7553.3010303@morsemedia.net> I have sort of muddled this discussion by confusing the current site we are working on and trying to find a simple solution for new, potential sites going forward. That's really my goal. Sorry for the confusion. So far, while all suggestions are fine, they are not simple and I guess that's what's surprising to me. Maybe there is a need for one or two modules that do what we want without making any code modifications. As for the current site, their needs for users are minimal so the membership list is not even tied to site membership at the moment. They are categorized by a field in CCK. Christopher M. Jones wrote: > So are these usernodes associated with taxonomy terms? Is that how you > are 'categorizing' these users? > > What do they do once they are on the site? Is this a site for > collaboration on projects? Any social networking involved? Or is it just > getting access to privileged content? > > Bob Morse wrote: > >> Thanks, Christopher. Listing by categories simply means chamber members >> are displayed under categories of types of business. >> So we have a custom search that groups businesses by category and each >> category can be linked to so you can display only one category. >> >> Will look at your suggestions. >> >> Christopher M. Jones wrote: >> >>> Where online payments are involved, you might take a look at Ubercart. >>> There's a module included that associates a role with a product, so that >>> any user purchasing the product is promoted to the associated role. So a >>> user could start out as a registered user, or become registered through >>> the normal checkout process, and then be given fuller access once the >>> payment is processed. >>> >>> As for your third site, I'm not sure. Too much information missing here. >>> What do you mean by "categories"? Sounds like you might be interested in >>> og. You can explore from there what modules are available for >>> customizing registration forms. You also could use "node profile" to >>> create profiles as CCK types, including computed fields that would >>> generate the 'what you would pay' info. >>> >>> Bob Morse wrote: >>> >>> >>>> This seems like it should be easy but I am scratching my head. What >>>> module or group of modules would you folks suggest for a site that >>>> allows people to join the organization. I have two instances now, one >>>> where they take online payments and one where they don't. On each one >>>> I've used civicrm. But it's such a beast. The inferface is clunky and >>>> neither organization uses the crm part. We're building a 3rd site, it's >>>> a chamber of commerce web site and don't want to use civicrm. They want >>>> to have a list of members in categories, be able to modify what shows up >>>> on the listing, make the listings searchable, allow people to join >>>> through the web site (not take payments for it but create a sign up form >>>> that calculates what they would have to pay by check or credit card). >>>> We're using version 6. We have something that works, but it took a lot >>>> more customizing things than I think it should for this kind of site. >>>> And if we're going to keep getting these kinds of jobs I like >>>> suggestions of any simpler ways. TIA! >>>> >>>> >> -- Bob Morse Morse Media Web Development * Web Hosting * Internet Marketing http://morsemedia.net 707-444-9566 707-496-9191 (cell) Blog: http://talkingtech.net From sivaji2009 at gmail.com Fri Feb 6 19:42:53 2009 From: sivaji2009 at gmail.com (sivaji j.g) Date: Sat, 7 Feb 2009 01:12:53 +0530 Subject: [support] download web files In-Reply-To: References: Message-ID: when i click the check box say first and third check box and give submit, it > should create the zip achieve of files corresponding to first and third > check box . > Thank you for reading my mail, my superior was satisfied with webfm module . -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090207/2c656eb5/attachment-0001.htm From cjones at partialflow.com Mon Feb 9 15:22:52 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Mon, 09 Feb 2009 10:22:52 -0500 Subject: [support] rotating views Message-ID: <49904A4C.9040205@partialflow.com> I'm looking for a way to rotate views. I've seen "Views Rotator", but it doesn't look like it does exactly what I want. I need the view to rotate for each time a page is loaded, while views rotator rotates on the same page via jquery. What I'm after is a way to replace the advertisement module using views and click filter. A different ad should show each time the user loads a page. I'm thinking that I need to set a cookie to hold the incremented offset, and pull that value into the view whenever it is called. I can write this code, but I'd rather drop a module in and call it done. Anybody know of any thing that will do this for D5.x? From john.callahan at UDel.Edu Mon Feb 9 15:29:17 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Mon, 09 Feb 2009 10:29:17 -0500 Subject: [support] rotating views In-Reply-To: <49904A4C.9040205@partialflow.com> References: <49904A4C.9040205@partialflow.com> Message-ID: <49904BCD.4070001@udel.edu> Could you create a view that displays only one item and sorted randomly? - John Christopher M. Jones wrote: > I'm looking for a way to rotate views. I've seen "Views Rotator", but it > doesn't look like it does exactly what I want. I need the view to rotate > for each time a page is loaded, while views rotator rotates on the same > page via jquery. > > What I'm after is a way to replace the advertisement module using views > and click filter. A different ad should show each time the user loads a > page. I'm thinking that I need to set a cookie to hold the incremented > offset, and pull that value into the view whenever it is called. I can > write this code, but I'd rather drop a module in and call it done. > Anybody know of any thing that will do this for D5.x? > From cjones at partialflow.com Mon Feb 9 15:39:57 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Mon, 09 Feb 2009 10:39:57 -0500 Subject: [support] rotating views In-Reply-To: <49904BCD.4070001@udel.edu> References: <49904A4C.9040205@partialflow.com> <49904BCD.4070001@udel.edu> Message-ID: <49904E4D.9040404@partialflow.com> Hmm. Yes, for starters. But since this is for ads, it's important to be able to guarantee the advertiser a certain number of views per page load. So I'm not sure random would fly. And now I'm thinking that I probably need some code in there to get certain ads displaying more often than others. So maybe I really do need to write this code. John Callahan wrote: > Could you create a view that displays only one item and sorted randomly? > > - John > > > Christopher M. Jones wrote: >> I'm looking for a way to rotate views. I've seen "Views Rotator", but it >> doesn't look like it does exactly what I want. I need the view to rotate >> for each time a page is loaded, while views rotator rotates on the same >> page via jquery. >> >> What I'm after is a way to replace the advertisement module using views >> and click filter. A different ad should show each time the user loads a >> page. I'm thinking that I need to set a cookie to hold the incremented >> offset, and pull that value into the view whenever it is called. I can >> write this code, but I'd rather drop a module in and call it done. >> Anybody know of any thing that will do this for D5.x? >> From john.callahan at UDel.Edu Mon Feb 9 15:52:15 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Mon, 09 Feb 2009 10:52:15 -0500 Subject: [support] rotating views In-Reply-To: <49904E4D.9040404@partialflow.com> References: <49904A4C.9040205@partialflow.com> <49904BCD.4070001@udel.edu> <49904E4D.9040404@partialflow.com> Message-ID: <4990512F.705@udel.edu> I haven't done this before but you may be able to create a view with an argument form the URL, such as maybe the node ID or though parsing the path for terms. A different way could be to use CCK node reference from your pages to ad nodes which would be displayed as teasers in a block somehow. Each page may have a set of ads that go with it. Since I've never done these, maybe someone can tell you if they're even possible! The more I think about it, to guarantee a certain number of views per ad, custom code is probably necessary. - John Christopher M. Jones wrote: > Hmm. Yes, for starters. But since this is for ads, it's important to be > able to guarantee the advertiser a certain number of views per page > load. So I'm not sure random would fly. And now I'm thinking that I > probably need some code in there to get certain ads displaying more > often than others. So maybe I really do need to write this code. > > John Callahan wrote: > >> Could you create a view that displays only one item and sorted randomly? >> >> - John >> >> >> Christopher M. Jones wrote: >> >>> I'm looking for a way to rotate views. I've seen "Views Rotator", but it >>> doesn't look like it does exactly what I want. I need the view to rotate >>> for each time a page is loaded, while views rotator rotates on the same >>> page via jquery. >>> >>> What I'm after is a way to replace the advertisement module using views >>> and click filter. A different ad should show each time the user loads a >>> page. I'm thinking that I need to set a cookie to hold the incremented >>> offset, and pull that value into the view whenever it is called. I can >>> write this code, but I'd rather drop a module in and call it done. >>> Anybody know of any thing that will do this for D5.x? >>> >>> From ronald at istos.it Mon Feb 9 15:54:08 2009 From: ronald at istos.it (Ronald Ashri) Date: Mon, 09 Feb 2009 16:54:08 +0100 Subject: [support] rotating views In-Reply-To: <49904E4D.9040404@partialflow.com> References: <49904A4C.9040205@partialflow.com> <49904BCD.4070001@udel.edu> <49904E4D.9040404@partialflow.com> Message-ID: <499051A0.9030606@istos.it> Hi Christopher - we handle lots of ads on our websites and Views would not be the way to go for the critical ads - you only have the random feature which is not something that provides any guarantees in fairness across the same day, etc. I also don't know to which extend it is worth creating a view of banners and then rotating them - views is really best suited for results that can be cached to a certain extend - especially on sites that are visited often. Given that code is needed the best at this point is probably a custom module that resolves your specific problem. Just out of curiosity why do you want to stop using the Advertisement module? Ronald Christopher M. Jones wrote: > Hmm. Yes, for starters. But since this is for ads, it's important to be > able to guarantee the advertiser a certain number of views per page > load. So I'm not sure random would fly. And now I'm thinking that I > probably need some code in there to get certain ads displaying more > often than others. So maybe I really do need to write this code. > > John Callahan wrote: > >> Could you create a view that displays only one item and sorted randomly? >> >> - John >> >> >> Christopher M. Jones wrote: >> >>> I'm looking for a way to rotate views. I've seen "Views Rotator", but it >>> doesn't look like it does exactly what I want. I need the view to rotate >>> for each time a page is loaded, while views rotator rotates on the same >>> page via jquery. >>> >>> What I'm after is a way to replace the advertisement module using views >>> and click filter. A different ad should show each time the user loads a >>> page. I'm thinking that I need to set a cookie to hold the incremented >>> offset, and pull that value into the view whenever it is called. I can >>> write this code, but I'd rather drop a module in and call it done. >>> Anybody know of any thing that will do this for D5.x? >>> >>> From net at twoedged.org Mon Feb 9 17:34:56 2009 From: net at twoedged.org (John Fletcher) Date: Mon, 9 Feb 2009 18:34:56 +0100 Subject: [support] t() with non-english string Message-ID: <000001c98adc$ca7ce230$5f76a690$@org> Does anyone know whether it's possible to use t() with a non-English base language? I have a site with a base language of Spanish, plus some other languages, and I need to put a couple of text strings into templates, so I use t(). I would like to write the strings into the templates in Spanish and then use the translation interface to translate them into other languages. Checking the Drupal API for t() seems to indicate strings must be entered into the DB in English and then translated into other languages. Does anyone know the status on this? Can I use Spanish as input to the t() function? John Fletcher Salt Websites internationalised web development http://www.saltwebsites.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090209/242622d6/attachment.htm From earnie at users.sourceforge.net Mon Feb 9 20:11:53 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Mon, 09 Feb 2009 15:11:53 -0500 Subject: [support] t() with non-english string In-Reply-To: <000001c98adc$ca7ce230$5f76a690$@org> References: <000001c98adc$ca7ce230$5f76a690$@org> Message-ID: <20090209151153.7t1ogbaj10oocgcg@mail.progw.org> Quoting John Fletcher : > Does anyone know whether it's possible to use t() with a non-English base > language? > Yes. > > Does anyone know the status on this? Can I use Spanish as input to the t() > function? > See http://api.drupal.org/api/function/t t('siempre te esperamos'); and a translator translates to 'you are welcome' for the English version. -- 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 cjones at partialflow.com Mon Feb 9 20:14:26 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Mon, 09 Feb 2009 15:14:26 -0500 Subject: [support] rotating views In-Reply-To: <499051A0.9030606@istos.it> References: <49904A4C.9040205@partialflow.com> <49904BCD.4070001@udel.edu> <49904E4D.9040404@partialflow.com> <499051A0.9030606@istos.it> Message-ID: <49908EA2.2070102@partialflow.com> Ok, all points well taken. Since you handle lots of ads, maybe you can give me some advice for how else to proceed. We have a directory of service providers on our site. The provider record is a cck type with geocoded address. The results are displayed using Views, using the gmap proximity search. Now they want to sell ads by location, so that providers' ads are displayed on searches that return results within a certain proximity of them. I thought this might be doable by building the ad block as a View with a proximity argument, same as the actual search results. Thus my interest in views for this task. I thought to chuck Advertisement for two reasons: first, I can't see a way to do the above with it, though it does have geoip. Maybe I should just convince the client to do things that way, instead. But aside from that, we're having problems with the flash_ad module, which doesn't seem to track clicks properly. I've read the big thread on that topic (reference escapes me) but I just haven't had a chance to try out all the patches and combinations of patches that are mentioned there. The sum of shortcomings seemed to suggest to me that we wanted to look elsewhere. Any suggestions? Ronald Ashri wrote: > Hi Christopher - we handle lots of ads on our websites and Views would > not be the way to go for the critical ads - you only have the random > feature which is not something that provides any guarantees in fairness > across the same day, etc. > > I also don't know to which extend it is worth creating a view of banners > and then rotating them - views is really best suited for results that > can be cached to a certain extend - especially on sites that are visited > often. > > Given that code is needed the best at this point is probably a custom > module that resolves your specific problem. > > Just out of curiosity why do you want to stop using the Advertisement > module? > > Ronald > > > Christopher M. Jones wrote: >> Hmm. Yes, for starters. But since this is for ads, it's important to be >> able to guarantee the advertiser a certain number of views per page >> load. So I'm not sure random would fly. And now I'm thinking that I >> probably need some code in there to get certain ads displaying more >> often than others. So maybe I really do need to write this code. >> >> John Callahan wrote: >> >>> Could you create a view that displays only one item and sorted randomly? >>> >>> - John >>> >>> >>> Christopher M. Jones wrote: >>> >>>> I'm looking for a way to rotate views. I've seen "Views Rotator", but it >>>> doesn't look like it does exactly what I want. I need the view to rotate >>>> for each time a page is loaded, while views rotator rotates on the same >>>> page via jquery. >>>> >>>> What I'm after is a way to replace the advertisement module using views >>>> and click filter. A different ad should show each time the user loads a >>>> page. I'm thinking that I need to set a cookie to hold the incremented >>>> offset, and pull that value into the view whenever it is called. I can >>>> write this code, but I'd rather drop a module in and call it done. >>>> Anybody know of any thing that will do this for D5.x? >>>> >>>> From net at twoedged.org Mon Feb 9 21:16:43 2009 From: net at twoedged.org (John Fletcher) Date: Mon, 9 Feb 2009 22:16:43 +0100 Subject: [support] t() with non-english string In-Reply-To: <20090209151153.7t1ogbaj10oocgcg@mail.progw.org> References: <000001c98adc$ca7ce230$5f76a690$@org> <20090209151153.7t1ogbaj10oocgcg@mail.progw.org> Message-ID: <000101c98afb$b8e4da40$2aae8ec0$@org> Hi Earnie, Have you ever done this? I had a look at the API page and it indicated to me that translation will only run for non-English languages. In particular this bit of code: elseif (function_exists('locale') && $langcode != 'en') { $string = locale($string, $langcode); } Also if I go to admin/build/translate/search, anything I find is not available to be translated into English; English is marked as the "built-in language". Regards, John -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Earnie Boyd > Does anyone know the status on this? Can I use Spanish as input to the t() > function? > See http://api.drupal.org/api/function/t t('siempre te esperamos'); and a translator translates to 'you are welcome' for the English version. From gordon at heydon.com.au Mon Feb 9 21:20:50 2009 From: gordon at heydon.com.au (Gordon Heydon) Date: Tue, 10 Feb 2009 08:20:50 +1100 Subject: [support] t() with non-english string In-Reply-To: <000001c98adc$ca7ce230$5f76a690$@org> References: <000001c98adc$ca7ce230$5f76a690$@org> Message-ID: <338A29AA-141A-4BED-B80F-601232040E61@heydon.com.au> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I don't think so, as there is really no english locale that can be translated. In the past I have had to use an english variant like en- uk to translate english strings to english. Basically I found that you can't create a "en" translation. I always thought that the default english should be called something like C as it is in UNIX. It has been a while since I did anything with this so it may be different. Gordon. On 10/02/2009, at 4:34 AM, John Fletcher wrote: > Does anyone know whether it?s possible to use t() with a non-English > base language? > > I have a site with a base language of Spanish, plus some other > languages, and I need to put a couple of text strings into > templates, so I use t(). I would like to write the strings into the > templates in Spanish and then use the translation interface to > translate them into other languages. Checking the Drupal API for t() > seems to indicate strings must be entered into the DB in English and > then translated into other languages. > > Does anyone know the status on this? Can I use Spanish as input to > the t() function? > > John Fletcher > Salt Websites internationalised web development > http://www.saltwebsites.com/ > -- > [ Drupal support list | http://lists.drupal.org/ ] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (Darwin) iEYEARECAAYFAkmQnjMACgkQngavurZvkrwlawCfX0QISGfL3Y2kKkVb8H/Kuvhm hTgAnRTifBXgplMc1rldcwbM1M+rSuay =CojV -----END PGP SIGNATURE----- From bob at morsemedia.net Mon Feb 9 21:51:53 2009 From: bob at morsemedia.net (Bob Morse) Date: Mon, 09 Feb 2009 13:51:53 -0800 Subject: [support] rotating views In-Reply-To: <49908EA2.2070102@partialflow.com> References: <49904A4C.9040205@partialflow.com> <49904BCD.4070001@udel.edu> <49904E4D.9040404@partialflow.com> <499051A0.9030606@istos.it> <49908EA2.2070102@partialflow.com> Message-ID: <4990A579.1080406@morsemedia.net> Have you tried Openx? http://drupal.org/project/openx (for D6 only). Christopher M. Jones wrote: > Ok, all points well taken. Since you handle lots of ads, maybe you can > give me some advice for how else to proceed. We have a directory of > service providers on our site. The provider record is a cck type with > geocoded address. The results are displayed using Views, using the gmap > proximity search. > > Now they want to sell ads by location, so that providers' ads are > displayed on searches that return results within a certain proximity of > them. > > I thought this might be doable by building the ad block as a View with a > proximity argument, same as the actual search results. Thus my interest > in views for this task. > > I thought to chuck Advertisement for two reasons: first, I can't see a > way to do the above with it, though it does have geoip. Maybe I should > just convince the client to do things that way, instead. But aside from > that, we're having problems with the flash_ad module, which doesn't seem > to track clicks properly. I've read the big thread on that topic > (reference escapes me) but I just haven't had a chance to try out all > the patches and combinations of patches that are mentioned there. The > sum of shortcomings seemed to suggest to me that we wanted to look > elsewhere. > > Any suggestions? > > > Ronald Ashri wrote: > >> Hi Christopher - we handle lots of ads on our websites and Views would >> not be the way to go for the critical ads - you only have the random >> feature which is not something that provides any guarantees in fairness >> across the same day, etc. >> >> I also don't know to which extend it is worth creating a view of banners >> and then rotating them - views is really best suited for results that >> can be cached to a certain extend - especially on sites that are visited >> often. >> >> Given that code is needed the best at this point is probably a custom >> module that resolves your specific problem. >> >> Just out of curiosity why do you want to stop using the Advertisement >> module? >> >> Ronald >> >> >> Christopher M. Jones wrote: >> >>> Hmm. Yes, for starters. But since this is for ads, it's important to be >>> able to guarantee the advertiser a certain number of views per page >>> load. So I'm not sure random would fly. And now I'm thinking that I >>> probably need some code in there to get certain ads displaying more >>> often than others. So maybe I really do need to write this code. >>> >>> John Callahan wrote: >>> >>> >>>> Could you create a view that displays only one item and sorted randomly? >>>> >>>> - John >>>> >>>> >>>> Christopher M. Jones wrote: >>>> >>>> >>>>> I'm looking for a way to rotate views. I've seen "Views Rotator", but it >>>>> doesn't look like it does exactly what I want. I need the view to rotate >>>>> for each time a page is loaded, while views rotator rotates on the same >>>>> page via jquery. >>>>> >>>>> What I'm after is a way to replace the advertisement module using views >>>>> and click filter. A different ad should show each time the user loads a >>>>> page. I'm thinking that I need to set a cookie to hold the incremented >>>>> offset, and pull that value into the view whenever it is called. I can >>>>> write this code, but I'd rather drop a module in and call it done. >>>>> Anybody know of any thing that will do this for D5.x? >>>>> >>>>> >>>>> From cjones at partialflow.com Tue Feb 10 00:51:17 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Mon, 09 Feb 2009 19:51:17 -0500 Subject: [support] rotating views In-Reply-To: <4990A579.1080406@morsemedia.net> References: <49904A4C.9040205@partialflow.com> <49904BCD.4070001@udel.edu> <49904E4D.9040404@partialflow.com> <499051A0.9030606@istos.it> <49908EA2.2070102@partialflow.com> <4990A579.1080406@morsemedia.net> Message-ID: <4990CF85.5050808@partialflow.com> No, stuck with D5 for now. Bob Morse wrote: > Have you tried Openx? http://drupal.org/project/openx (for D6 only). > > Christopher M. Jones wrote: >> Ok, all points well taken. Since you handle lots of ads, maybe you can >> give me some advice for how else to proceed. We have a directory of >> service providers on our site. The provider record is a cck type with >> geocoded address. The results are displayed using Views, using the gmap >> proximity search. >> >> Now they want to sell ads by location, so that providers' ads are >> displayed on searches that return results within a certain proximity of >> them. >> >> I thought this might be doable by building the ad block as a View with a >> proximity argument, same as the actual search results. Thus my interest >> in views for this task. >> >> I thought to chuck Advertisement for two reasons: first, I can't see a >> way to do the above with it, though it does have geoip. Maybe I should >> just convince the client to do things that way, instead. But aside from >> that, we're having problems with the flash_ad module, which doesn't seem >> to track clicks properly. I've read the big thread on that topic >> (reference escapes me) but I just haven't had a chance to try out all >> the patches and combinations of patches that are mentioned there. The >> sum of shortcomings seemed to suggest to me that we wanted to look >> elsewhere. >> >> Any suggestions? >> >> >> Ronald Ashri wrote: >> >>> Hi Christopher - we handle lots of ads on our websites and Views would >>> not be the way to go for the critical ads - you only have the random >>> feature which is not something that provides any guarantees in fairness >>> across the same day, etc. >>> >>> I also don't know to which extend it is worth creating a view of banners >>> and then rotating them - views is really best suited for results that >>> can be cached to a certain extend - especially on sites that are visited >>> often. >>> >>> Given that code is needed the best at this point is probably a custom >>> module that resolves your specific problem. >>> >>> Just out of curiosity why do you want to stop using the Advertisement >>> module? >>> >>> Ronald >>> >>> >>> Christopher M. Jones wrote: >>> >>>> Hmm. Yes, for starters. But since this is for ads, it's important to be >>>> able to guarantee the advertiser a certain number of views per page >>>> load. So I'm not sure random would fly. And now I'm thinking that I >>>> probably need some code in there to get certain ads displaying more >>>> often than others. So maybe I really do need to write this code. >>>> >>>> John Callahan wrote: >>>> >>>> >>>>> Could you create a view that displays only one item and sorted randomly? >>>>> >>>>> - John >>>>> >>>>> >>>>> Christopher M. Jones wrote: >>>>> >>>>> >>>>>> I'm looking for a way to rotate views. I've seen "Views Rotator", but it >>>>>> doesn't look like it does exactly what I want. I need the view to rotate >>>>>> for each time a page is loaded, while views rotator rotates on the same >>>>>> page via jquery. >>>>>> >>>>>> What I'm after is a way to replace the advertisement module using views >>>>>> and click filter. A different ad should show each time the user loads a >>>>>> page. I'm thinking that I need to set a cookie to hold the incremented >>>>>> offset, and pull that value into the view whenever it is called. I can >>>>>> write this code, but I'd rather drop a module in and call it done. >>>>>> Anybody know of any thing that will do this for D5.x? >>>>>> >>>>>> >>>>>> > From ronald at istos.it Tue Feb 10 05:37:32 2009 From: ronald at istos.it (Ronald Ashri) Date: Tue, 10 Feb 2009 06:37:32 +0100 Subject: [support] rotating views In-Reply-To: <4990CF85.5050808@partialflow.com> References: <49904A4C.9040205@partialflow.com> <49904BCD.4070001@udel.edu> <49904E4D.9040404@partialflow.com> <499051A0.9030606@istos.it> <49908EA2.2070102@partialflow.com> <4990A579.1080406@morsemedia.net> <4990CF85.5050808@partialflow.com> Message-ID: <4991129C.2060108@istos.it> Hi Bob, using D5 does not exclude using OpenX - OpenX is an open source ad platform. You can use that to serve your banners and the integration with Drupal is simply a question of inserting the javascript code in the right place. We use Google Ad Manager so as to save on having to handle ads on our own server. However, based on your description you actually need views so as to decide which banner to display and something like OpenX or Google Ad Manager would add another system to handle and to keep in synx with your website - instead you could create a module that: 1. instantiates the view in code that sorts nodes based on the proximity filter and a ad_display_counter value (an extra - hidden to users - CCK field) 2. displays the view in the block 3. The nodes that got displayed get their ad_display_counter field updated 4. Next time round the nodes with lower counter values will be the chosen ones This is a relatively simple module and will handle the job - it's not as simple as a module that already does the job but it beats having to code a module from scratch you can still reuse the views functionality. Hope this helps, Ronald Christopher M. Jones wrote: > No, stuck with D5 for now. > > Bob Morse wrote: > >> Have you tried Openx? http://drupal.org/project/openx (for D6 only). >> >> Christopher M. Jones wrote: >> >>> Ok, all points well taken. Since you handle lots of ads, maybe you can >>> give me some advice for how else to proceed. We have a directory of >>> service providers on our site. The provider record is a cck type with >>> geocoded address. The results are displayed using Views, using the gmap >>> proximity search. >>> >>> Now they want to sell ads by location, so that providers' ads are >>> displayed on searches that return results within a certain proximity of >>> them. >>> >>> I thought this might be doable by building the ad block as a View with a >>> proximity argument, same as the actual search results. Thus my interest >>> in views for this task. >>> >>> I thought to chuck Advertisement for two reasons: first, I can't see a >>> way to do the above with it, though it does have geoip. Maybe I should >>> just convince the client to do things that way, instead. But aside from >>> that, we're having problems with the flash_ad module, which doesn't seem >>> to track clicks properly. I've read the big thread on that topic >>> (reference escapes me) but I just haven't had a chance to try out all >>> the patches and combinations of patches that are mentioned there. The >>> sum of shortcomings seemed to suggest to me that we wanted to look >>> elsewhere. >>> >>> Any suggestions? >>> >>> >>> Ronald Ashri wrote: >>> >>> >>>> Hi Christopher - we handle lots of ads on our websites and Views would >>>> not be the way to go for the critical ads - you only have the random >>>> feature which is not something that provides any guarantees in fairness >>>> across the same day, etc. >>>> >>>> I also don't know to which extend it is worth creating a view of banners >>>> and then rotating them - views is really best suited for results that >>>> can be cached to a certain extend - especially on sites that are visited >>>> often. >>>> >>>> Given that code is needed the best at this point is probably a custom >>>> module that resolves your specific problem. >>>> >>>> Just out of curiosity why do you want to stop using the Advertisement >>>> module? >>>> >>>> Ronald >>>> >>>> >>>> Christopher M. Jones wrote: >>>> >>>> >>>>> Hmm. Yes, for starters. But since this is for ads, it's important to be >>>>> able to guarantee the advertiser a certain number of views per page >>>>> load. So I'm not sure random would fly. And now I'm thinking that I >>>>> probably need some code in there to get certain ads displaying more >>>>> often than others. So maybe I really do need to write this code. >>>>> >>>>> John Callahan wrote: >>>>> >>>>> >>>>> >>>>>> Could you create a view that displays only one item and sorted randomly? >>>>>> >>>>>> - John >>>>>> >>>>>> >>>>>> Christopher M. Jones wrote: >>>>>> >>>>>> >>>>>> >>>>>>> I'm looking for a way to rotate views. I've seen "Views Rotator", but it >>>>>>> doesn't look like it does exactly what I want. I need the view to rotate >>>>>>> for each time a page is loaded, while views rotator rotates on the same >>>>>>> page via jquery. >>>>>>> >>>>>>> What I'm after is a way to replace the advertisement module using views >>>>>>> and click filter. A different ad should show each time the user loads a >>>>>>> page. I'm thinking that I need to set a cookie to hold the incremented >>>>>>> offset, and pull that value into the view whenever it is called. I can >>>>>>> write this code, but I'd rather drop a module in and call it done. >>>>>>> Anybody know of any thing that will do this for D5.x? >>>>>>> >>>>>>> >>>>>>> >>>>>>> From pcollett at gmail.com Tue Feb 10 07:44:32 2009 From: pcollett at gmail.com (Paul Collett) Date: Tue, 10 Feb 2009 16:44:32 +0900 Subject: [support] Bookreviews module error Message-ID: <20090210074432.2034433884@smtp.gmail.com> Hi, On one of my sites (drupal 5.15) I've suddenly started getting this error with content previously created in the bookreview module (5.x-1.x-dev): "md5() expects parameter 1 to be string, array given in /home/.../ public_html/modules/filter/filter.module on line 769" And the "Page" field is displaying "Array". I just noticed this after installing the Audio Module (Audio 5.x-1.4). While we're not using the bookreview module to add content any more, there are a number of old reviews that were created with the module. I'd like to be able to still display this content. Any ideas on what the problem may be? Thanks, Paul Collett From michel at ziobudda.net Tue Feb 10 23:33:06 2009 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Wed, 11 Feb 2009 00:33:06 +0100 Subject: [support] Problem with geshifilter Message-ID: <49920EB2.9080203@ziobudda.net> Hi all. If you go to this my url : http://www.ziodrupal.net/node/1096 you can see [geshifilter-code ....]. Why this ? I have read the install. HTML-Filter is before Geshi filter in the Input format - Filter Html - Rearrange Page. Any help ? 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 Tue Feb 10 23:35:26 2009 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Wed, 11 Feb 2009 00:35:26 +0100 Subject: [support] (SOLVED) Re: Problem with geshifilter In-Reply-To: <49920EB2.9080203@ziobudda.net> References: <49920EB2.9080203@ziobudda.net> Message-ID: <49920F3E.8000503@ziobudda.net> Davide Michel 'ZioBudda' Morelli ha scritto: > Hi all. If you go to this my url : http://www.ziodrupal.net/node/1096 > > you can see [geshifilter-code ....]. > > Why this ? I have read the install. HTML-Filter is before Geshi filter > in the Input format - Filter Html - Rearrange Page. > > Any help ? > > M. > > Don't ask me why, but now all is ok. 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 merlin at logrus.com Wed Feb 11 00:23:24 2009 From: merlin at logrus.com (Earl Miles) Date: Tue, 10 Feb 2009 16:23:24 -0800 Subject: [support] Theme inheritance broken In-Reply-To: <1233078748.19960.17.camel@localhost> References: <1233078748.19960.17.camel@localhost> Message-ID: <49921A7C.9080308@logrus.com> Scott wrote: > I'm working with a copy of Garland on Drupal 6.9. Essentially I copied > Garland into ./sites/all/themes/custom/kidsgardens to create my custom > theme. I created a working site. I would now like to remove the > template.php and style.css files (at least those parts that belong to > Garland) from this directory and eventually have only my customizations > there. I named Garland as the base theme in kidsgardens.info and > renamed template.php and style.css (to hide them) expecting them to be > inherited from Garland. No joy. The php stops at the call for > phptemplate_get_ie_styles(), the first function call in page.tpl.php. > When I return template.php to my theme directory, the code works but my > css is still gone - until style.css is returned to the directory. > > Being new to drupal I suspect I'm missing something fundamental. > If you have a css file named the same as the parent's, then the parent theme's css file won't be used. If you have not specified *any* css files in the parent theme, then you'll be assumed to have a 'style.css' (even if you don't). Without seeing your .info file and such, that's most likely waht's wrong. From mike at mikeyp.net Tue Feb 10 23:37:26 2009 From: mike at mikeyp.net (Michael Prasuhn) Date: Tue, 10 Feb 2009 15:37:26 -0800 Subject: [support] (SOLVED) Re: Problem with geshifilter In-Reply-To: <49920F3E.8000503@ziobudda.net> References: <49920EB2.9080203@ziobudda.net> <49920F3E.8000503@ziobudda.net> Message-ID: <87DCA862-EB91-4B60-994E-27EAE65C7A6D@mikeyp.net> Many times when updating filters it may be necessary to clear the cache, or open and re-save the node, (to trigger a cache rebuild for that node). -Mike On Feb 10, 2009, at 3:35 PM, Davide Michel 'ZioBudda' Morelli wrote: > Davide Michel 'ZioBudda' Morelli ha scritto: >> Hi all. If you go to this my url : http://www.ziodrupal.net/node/1096 >> >> you can see [geshifilter-code ....]. >> >> Why this ? I have read the install. HTML-Filter is before Geshi >> filter >> in the Input format - Filter Html - Rearrange Page. >> >> Any help ? >> >> M. >> >> > Don't ask me why, but now all is ok. > > 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 503.488.5433 office 714.356.0168 cell 503.661.7574 home mike at mikeyp.net http://mikeyp.net From mail at webthatworks.it Wed Feb 11 07:27:23 2009 From: mail at webthatworks.it (Ivan Sergio Borgonovo) Date: Wed, 11 Feb 2009 08:27:23 +0100 Subject: [support] alternative dependencies Message-ID: <20090211082723.73075446@dawn.webthatworks.it> I've 2 modules that provide similar functions but that conflict. Other modules depends on one of them. Is there an ordinate way to manage this situation? Just placing them in a nice place that will make my svn clean is an annoyance. Any advice? thanks -- Ivan Sergio Borgonovo http://www.webthatworks.it From michel at ziobudda.net Wed Feb 11 08:46:40 2009 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Wed, 11 Feb 2009 09:46:40 +0100 Subject: [support] (SOLVED) Re: Problem with geshifilter In-Reply-To: <87DCA862-EB91-4B60-994E-27EAE65C7A6D@mikeyp.net> References: <49920EB2.9080203@ziobudda.net> <49920F3E.8000503@ziobudda.net> <87DCA862-EB91-4B60-994E-27EAE65C7A6D@mikeyp.net> Message-ID: <49929070.8030200@ziobudda.net> Michael Prasuhn ha scritto: > Many times when updating filters it may be necessary to clear the > cache, or open and re-save the node, (to trigger a cache rebuild for > that node). > Tnx for the tip. 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 armin at easynet.co.uk Wed Feb 11 10:30:09 2009 From: armin at easynet.co.uk (Armin Medosch) Date: Wed, 11 Feb 2009 11:30:09 +0100 Subject: [support] problem with instability of site Message-ID: <1234348209.6786.16.camel@armin-laptop> Hi sorry for previous message which went out by mistake. I am using drupal 5.14 on a virtual machine with 512M Ram allocated (ubuntu server configuration). First the database and now apache toppled over, as it looks, because the system went out of memory. However, I think 512 should be decent enough, I havent that awful lot of additional modules installed and there is not such heavy traffick on the site. When the database fell over it generated an error message about duplicate entry in watchdog, so I repaired that. everything seemed fine for a couple of days, then last night apache said goodbye. What can I do to prevent that? is there a way to clean the database in a way that goes beyond repairing tables (I am not very advanced in command line mysql but my host does not want phpmyadmin to be installed) is there a way from stopping mysql growing and growing? Subsequent mysqldumps result in ever growing files, in no proportion to the amount of new content. Glad for any pointers to step by step howtos or any other advice cheers armin From armin at easynet.co.uk Wed Feb 11 10:22:12 2009 From: armin at easynet.co.uk (Armin Medosch) Date: Wed, 11 Feb 2009 11:22:12 +0100 Subject: [support] problem with instability of site In-Reply-To: <49929070.8030200@ziobudda.net> References: <49920EB2.9080203@ziobudda.net> <49920F3E.8000503@ziobudda.net> <87DCA862-EB91-4B60-994E-27EAE65C7A6D@mikeyp.net> <49929070.8030200@ziobudda.net> Message-ID: <1234347732.6786.7.camel@armin-laptop> HiM. From victorkane at gmail.com Wed Feb 11 11:09:50 2009 From: victorkane at gmail.com (Victor Kane) Date: Wed, 11 Feb 2009 09:09:50 -0200 Subject: [support] problem with instability of site In-Reply-To: <1234348209.6786.16.camel@armin-laptop> References: <1234348209.6786.16.camel@armin-laptop> Message-ID: On Wed, Feb 11, 2009 at 8:30 AM, Armin Medosch wrote: > Hi > > sorry for previous message which went out by mistake. > > I am using drupal 5.14 on a virtual machine with 512M Ram allocated > (ubuntu server configuration). First the database and now apache toppled > over, as it looks, because the system went out of memory. You say a virtual machine, and yet later on you say your host does not want you to install PhpMyAdmin... Which means you do not seem to have complete control over the administration of your server. So I would ask your hosting to update the lamp stack, first of all. Secondly, you have one instance of the watchdog table being corrupted, which happens. And a single instance of the Apache server crashing... Keep monitoring after everything is updated. Victor > However, I think 512 should be decent enough, I havent that awful lot of > additional modules installed and there is not such heavy traffick on the > site. When the database fell over it generated an error message about > duplicate entry in watchdog, so I repaired that. everything seemed fine > for a couple of days, then last night apache said goodbye. > > What can I do to prevent that? is there a way to clean the database in a > way that goes beyond repairing tables (I am not very advanced in command > line mysql but my host does not want phpmyadmin to be installed) > is there a way from stopping mysql growing and growing? Subsequent > mysqldumps result in ever growing files, in no proportion to the amount > of new content. > > Glad for any pointers to step by step howtos or any other advice > cheers > armin > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090211/f7007262/attachment.htm From ckwu at ck-erp.net Thu Feb 12 12:59:28 2009 From: ckwu at ck-erp.net (C K Wu) Date: Thu, 12 Feb 2009 20:59:28 +0800 Subject: [support] CK-ERP (Open Source ERP / CRM / MRP) v.0.29.1 released (with Drupal 6.8 connector) Message-ID: <49941D30.6070109@ck-erp.net> Hi, folks, I have posted a new release, v.0.29.1, of CK-ERP, at SourceForge.Net, http://sourceforge.net/projects/ck-erp . New features include, new access control module, import of Zencart customer and product records, improved backup/restore process, CK-ERP is an open source accounting/MRP/ERP/CRM system that runs on top of multiple middlewares. It comprises 24 modules - Administration, Data Import, Access Control, i18n, Contact Management, Customer Relationship, Customer Self Service, Vendor Relationship, Ledger, Bank Reconciliation, MRP, Warehouse, Inventory, Service, AP, AR, PO, SO, Quotation, POS for Cashier, POS for Manager, HR, Staff Self Service and Payroll. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups. Please report error and suggestion to the discussion group / mailing list, CK-ERP-en(at)googlegroups.com or CK-ERP-zh_CN(at)googlegroups.com . General history and expected development is available at the discussion group's Archive. Supported MiddleWares: Centre/SIS, ClaSS; OpenBiblio; CATS; php-residence, phpScheduleIT; AssetMan; Coppermine, Gallery2; phpMyTicket; phpMySport; PSCafePOS, MyHandyRestaurant; FreightFleetManagementSystem; OpenX, LandShop, Open-Realty, FreeRealty; IRM; LegalCase; ClearHealth, OpenEMR, Care2X; eGroupWare, Horde-GroupWare; Zencart, osCommerce; Drupal, Joomla, Mambo, e107, XOOPS, Xaraya; Moodle, Atutor; vTiger; WordPress, b2evolution; TikiWiki; phpBB. Information/Demo Websites: http://ck-erp.org http://ck-erp.net Download is available from, http://sourceforge.net/projects/ck-erp http://gforge.oss.org.cn/projects/ck-erp http://gro.clinux.org/projects/ck-ledger Cheers, Wu Chiu Kay, aka CK Wu, aka CK (CK is the preferred alias) Hong Kong From rotsen at gmail.com Fri Feb 13 00:27:06 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Thu, 12 Feb 2009 16:27:06 -0800 Subject: [support] Drupal + IIS + windows In-Reply-To: References: Message-ID: OK, I read the book's chapter 6 a coupl of time and I still do not know how to do the seamless login. I will try the LDP module. thanks :-) On Tue, Jan 27, 2009 at 12:05 AM, Victor Kane wrote: > Nestor, it seems to me you should check out the possibility of using NLTM > as an _external_ login. An simple example as well as one using LDAP as an > external login is given in Chapter 6 of Pro Drupal Developoment 2nd edition > (you are using Drupal 6, aren't you? if this is a new project, you > definitely should be at this point). > > Victor Kane > http://awebfactory.com.ar > > > On Tue, Jan 27, 2009 at 12:44 AM, N?stor wrote: > >> Gordon, >> >> Yes, I am interested. I am planning on using IIS and IE in a windows >> environment. >> >> Any information you can provide would be helpful. >> >> We are making the decision between Drupal and Sharepoint and so far that >> is the one thing that >> Sharepoint has over drupal in our requirements. >> >> Thanks, >> >> Rotsen >> >> >> On Mon, Jan 26, 2009 at 5:19 PM, Gordon Heydon wrote: >> >>> Hi, >>> >>> Yes I have gotten this to work before, but it only works on IE >>> complete (FF will automatically ask for the user/password). >>> >>> Other issues is that it will not pass the password so Drupal has no >>> idea of the password. Basically I had it working so that it placed >>> trust in the ADS that the company used. >>> >>> I would be a bit more specific, but I can't find my original code. >>> >>> If you want to know more just let me know and I will see if I can find >>> it. >>> >>> Gordon. >>> >>> On 27/01/2009, at 11:28 AM, N?stor wrote: >>> >>> > Hi people, >>> > >>> > I want to set up drupal in a windows + IIS environment and I want >>> > the user not to have to log in >>> > I want drupal to automatically knwo who they are. >>> > >>> > I am reading all kinds of stuff but some how I am not installing >>> > them correct because they do not work >>> > >>> > Drupal + IIS + Windows and the user did not have to login because its >>> > information was automagically pass to drupal. >>> > >>> > Did any of you people get this to work? >>> > >>> > Thanks, >>> > >>> > Nestor :-) >>> > -- >>> > [ Drupal support list | http://lists.drupal.org/ ] >>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >> >> >> -- >> [ 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/20090212/d3d8ed86/attachment.htm From rotsen at gmail.com Fri Feb 13 00:28:41 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Thu, 12 Feb 2009 16:28:41 -0800 Subject: [support] Drupal + IIS + windows In-Reply-To: <52177C930FA90F4D9888B0343FDB79FB10ECA2@birch.evergreen.edu> References: <000601c9805e$5700a130$0501e390$@org> <52177C930FA90F4D9888B0343FDB79FB10EC96@birch.evergreen.edu> <52177C930FA90F4D9888B0343FDB79FB10ECA2@birch.evergreen.edu> Message-ID: I read the requirements for php CAS and it seemed that is for us in a linux OS. I am using Widnows. Thanks, Nestor :-) On Fri, Jan 30, 2009 at 8:49 AM, Metzler, David wrote: > I get it. It might help to understand a bit about what the CAS module > does. > > The CAS module is a single sign on module that does automatically log > people in but only after checking with a centralized authentication server > to verify that they've logged in elsewhere. The idea behind the cas server > is that it's a centralized place to login, and we don't want to expose the > usernames and passwords to drupal. Rather if the user needs to log in, we > redirect the client to another location for login, and then when they come > back do a quick check to make sure that they have authenticated. If the > have, establish a drupal user session. > > In our environment, we actually use this to authenticate against our MS > Active Directory, but drupal never sees the user name and password. That's > handled by the CAS server which does Kerberos auth against active > directory. You do have to specify your username and password, but that's > authed by the CAS server against our active directory. > > Here's what the CAS module does: > 1. At the beginning of the page load check to see if there's already a > drupal session? If so no need to interfere. > 2. Since we're not logged in, Check and see if we "need to be", it may be > ok to display a drupal page as anonymous user.( this is reg expression based > on the path), but if we need to be authenticated. > 3. If we need to be and we haven't logged in use the phpCAS library to ask > the centralized server what user we're logged in as. The phpCAS client does > this via a curl request to the CAS server. This is the part I think you > can replace with a simple environment variable check. > 4. Given the username try and load the drupal user. If the user exists > then great we have a session established. > 5. If the user doesn't exist, and the cas module is configured to > automatically create accounts, create a local drupal account and establish a > session as that user. > > There are some tricks of course, and the module exposes some configuration > options, not all of which are relavent, but this is darn close to what you > need. If you have any specific questions, don't hesitate to contact me off > list. > > Dave > metzlerd at evergreen.edu > > > > ------------------------------ > *From:* support-bounces at drupal.org [mailto:support-bounces at drupal.org] *On > Behalf Of *N?stor > *Sent:* Friday, January 30, 2009 8:08 AM > > *To:* support at drupal.org > *Subject:* Re: [support] Drupal + IIS + windows > > I work for a goverment agency and they tend to be MS shops but the reasons > why we want Drupal is because > we do not have the money in the budget and I like to bring in some open > source to help change the IT mind > that MS is not the only way to go and that there are other choices. We do > have an intranet and was build in > 2001 and I want to implement somthing more current.. > > All the stuff you mentioned sounds so easy but it went over my head. I > will download the CAS and look at the > code to see if it means anything to me. > > I am actually surprise that more people do not have the need for a module > that automagically los users in. > > Thanks all for your replies. > > Nestor :-) > > On Thu, Jan 29, 2009 at 8:24 AM, Metzler, David wrote: > >> In such an environment using drupal would be an uphill battle for sure, >> but if you've got drupal working, and you've got IIS to do NTLM, it would >> seem to me that you COULD write a drupal module to do what you're asking. >> >> Much of the code is the same as what is in the CAS module (which I >> maintain) at http://drupal.org/project/cas. The primary difference is >> where drupal would get the username. If you got a copy of the cas module, >> and replaced the cas client code with a " get the logged in user from an IIS >> provided environment php environment" chunk of code, enabled the drupal is >> cas user repository checkbox set it up to require cas auth for all pages, >> you would have the starting point of a module that would, (I believe) do >> what you ask. >> >> Again, I don't know if its worth it. If you're reaching for integration >> with Microsoft products then you might be better off with sharepoint, but if >> you're looking for all the kinds of things that drupal provides (modular >> extendibility, rich media integeration, etc) then this might be worth your >> effort. Feel free to ask me any questions about the code if you're >> interested. >> >> Dave >> >> ------------------------------ >> *From:* support-bounces at drupal.org [mailto:support-bounces at drupal.org] *On >> Behalf Of *N?stor >> *Sent:* Thursday, January 29, 2009 8:07 AM >> >> *To:* support at drupal.org >> *Subject:* Re: [support] Drupal + IIS + windows >> >> Fletch, >> >> I few days left to help the cause for using Drupal but as long as I am >> unable to >> set up the NLTM so that users do not have to log into drupal then we >> probably go with >> Sharepoint. I have tried several of the solutions that I found when I >> googled but >> they have not work for me so far. >> >> :-) >> >> On Tue, Jan 27, 2009 at 1:04 AM, John Fletcher wrote: >> >>> Please let us know whether you end up going for SharePoint or Drupal, >>> and why. >>> >>> >>> >>> Regards, >>> >>> Fletch. >>> >>> >>> >>> *From:* support-bounces at drupal.org [mailto:support-bounces at drupal.org] *On >>> Behalf Of *N?stor >>> *Sent:* Tuesday, 27 January 2009 3:44 AM >>> *To:* support at drupal.org >>> *Subject:* Re: [support] Drupal + IIS + windows >>> >>> >>> >>> Gordon, >>> >>> Yes, I am interested. I am planning on using IIS and IE in a windows >>> environment. >>> >>> Any information you can provide would be helpful. >>> >>> We are making the decision between Drupal and Sharepoint and so far that >>> is the one thing that >>> Sharepoint has over drupal in our requirements. >>> >>> Thanks, >>> >>> Rotsen >>> >>> On Mon, Jan 26, 2009 at 5:19 PM, Gordon Heydon >>> wrote: >>> >>> Hi, >>> >>> Yes I have gotten this to work before, but it only works on IE >>> complete (FF will automatically ask for the user/password). >>> >>> Other issues is that it will not pass the password so Drupal has no >>> idea of the password. Basically I had it working so that it placed >>> trust in the ADS that the company used. >>> >>> I would be a bit more specific, but I can't find my original code. >>> >>> If you want to know more just let me know and I will see if I can find >>> it. >>> >>> Gordon. >>> >>> >>> On 27/01/2009, at 11:28 AM, N?stor wrote: >>> >>> > Hi people, >>> > >>> > I want to set up drupal in a windows + IIS environment and I want >>> > the user not to have to log in >>> > I want drupal to automatically knwo who they are. >>> > >>> > I am reading all kinds of stuff but some how I am not installing >>> > them correct because they do not work >>> > >>> > Drupal + IIS + Windows and the user did not have to login because its >>> > information was automagically pass to drupal. >>> > >>> > Did any of you people get this to work? >>> > >>> > Thanks, >>> > >>> > Nestor :-) >>> >>> > -- >>> >>> > [ Drupal support list | http://lists.drupal.org/ ] >>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >>> >>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >> >> >> -- >> [ 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/20090212/56fda026/attachment-0001.htm From rotsen at gmail.com Fri Feb 13 00:32:05 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Thu, 12 Feb 2009 16:32:05 -0800 Subject: [support] Drupal goes blank Message-ID: I just installed cck-6.x-2.1.tar.gz module and when I go read the modules Drupal goes blank. I do not know what to do. I had the white screen of death happened before but if I refresh a couple of times it comes back. I might remove the cck module and refresh to see if it comes back. I think is pretty amazing that it is consider normal that Drupal goes to La, Land Thanks, Nesto r:-) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090212/8aeed346/attachment.htm From brettev at gmail.com Fri Feb 13 00:39:23 2009 From: brettev at gmail.com (Brett Evanson) Date: Thu, 12 Feb 2009 17:39:23 -0700 Subject: [support] Drupal goes blank In-Reply-To: References: Message-ID: <972255370902121639i5a23ed43w2b240edee75d6f6@mail.gmail.com> This is actually a php thing, not a Drupal thing. It usually means some php file (could be a module, theme, custom block) is throwing an unrecoverable error. I'm guessing it's not cck. On Thu, Feb 12, 2009 at 5:32 PM, N?stor wrote: > I just installed cck-6.x-2.1.tar.gz module and when I go read the modules > Drupal goes blank. I do not know what to do. > > I had the white screen of death happened before but if I refresh a couple of > times > it comes back. > > I might remove the cck module and refresh to see if it comes back. > > I think is pretty amazing that it is consider normal that Drupal goes to La, > Land > > Thanks, > > Nesto r:-) > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- Brett Evanson brettev at gmail.com 801-599-0584 From rotsen at gmail.com Fri Feb 13 00:46:13 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Thu, 12 Feb 2009 16:46:13 -0800 Subject: [support] Drupal goes blank In-Reply-To: <972255370902121639i5a23ed43w2b240edee75d6f6@mail.gmail.com> References: <972255370902121639i5a23ed43w2b240edee75d6f6@mail.gmail.com> Message-ID: I log out and then logged back in and it is working now. I had notice that before, where Drupal gets lost and if I logout and log in then Drupal clear its memory and it is ready to go. It might be a PHP thing but Drupal is base on PHP and if a module is downloaded from the Drupal site it should not cause problems. Not knowing enough about Drupal, I think that if you load several modules at a time then Drupal gets confuse. I also noticed that when I load a module and if it has several things to select, is better not to choose all of them at once because it is bound to go blank on you. Thanks, Nestor ;-) On Thu, Feb 12, 2009 at 4:39 PM, Brett Evanson wrote: > This is actually a php thing, not a Drupal thing. It usually means > some php file (could be a module, theme, custom block) is throwing an > unrecoverable error. I'm guessing it's not cck. > > On Thu, Feb 12, 2009 at 5:32 PM, N?stor wrote: > > I just installed cck-6.x-2.1.tar.gz module and when I go read the modules > > Drupal goes blank. I do not know what to do. > > > > I had the white screen of death happened before but if I refresh a couple > of > > times > > it comes back. > > > > I might remove the cck module and refresh to see if it comes back. > > > > I think is pretty amazing that it is consider normal that Drupal goes to > La, > > Land > > > > Thanks, > > > > Nesto r:-) > > > > -- > > [ Drupal support list | http://lists.drupal.org/ ] > > > > > > -- > Brett Evanson > brettev at gmail.com > 801-599-0584 > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090212/1b0d79eb/attachment.htm From rotsen at gmail.com Fri Feb 13 00:52:45 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Thu, 12 Feb 2009 16:52:45 -0800 Subject: [support] Drupal goes blank In-Reply-To: References: <972255370902121639i5a23ed43w2b240edee75d6f6@mail.gmail.com> Message-ID: Could it be a time out type of problem? Could it be that it takes Drupal longer to respond than the amount of time that the Apche web server is willing to wsit? OK, I just took a look at my apache error_log file and says: "PHP error: Maximun execution time of 30 seconds exceeded in Drupal\\includes\\common.inc on line 1831, referer: http://localhost/drupal/admin/build" How do I change this? Thanks, Nestor :-) On Thu, Feb 12, 2009 at 4:46 PM, N?stor wrote: > I log out and then logged back in and it is working now. > I had notice that before, where Drupal gets lost and if I logout and > log in then Drupal clear its memory and it is ready to go. > > It might be a PHP thing but Drupal is base on PHP and if a module > is downloaded from the Drupal site it should not cause problems. > > Not knowing enough about Drupal, I think that if you load several > modules at a time then Drupal gets confuse. I also noticed that > when I load a module and if it has several things to select, is better > not to choose all of them at once because it is bound to go blank on you. > > Thanks, > > Nestor ;-) > > > On Thu, Feb 12, 2009 at 4:39 PM, Brett Evanson wrote: > >> This is actually a php thing, not a Drupal thing. It usually means >> some php file (could be a module, theme, custom block) is throwing an >> unrecoverable error. I'm guessing it's not cck. >> >> On Thu, Feb 12, 2009 at 5:32 PM, N?stor wrote: >> > I just installed cck-6.x-2.1.tar.gz module and when I go read the >> modules >> > Drupal goes blank. I do not know what to do. >> > >> > I had the white screen of death happened before but if I refresh a >> couple of >> > times >> > it comes back. >> > >> > I might remove the cck module and refresh to see if it comes back. >> > >> > I think is pretty amazing that it is consider normal that Drupal goes to >> La, >> > Land >> > >> > Thanks, >> > >> > Nesto r:-) >> > >> > -- >> > [ Drupal support list | http://lists.drupal.org/ ] >> > >> >> >> >> -- >> Brett Evanson >> brettev at gmail.com >> 801-599-0584 >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090212/d2b213ce/attachment.htm From rotsen at gmail.com Fri Feb 13 01:11:56 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Thu, 12 Feb 2009 17:11:56 -0800 Subject: [support] Drupal goes blank In-Reply-To: References: <972255370902121639i5a23ed43w2b240edee75d6f6@mail.gmail.com> Message-ID: OK, I changed the max-execution-time to 120 from 30 seconds and the memory-size-limit to 258 from 128 megs. It takes awhile but it seems to be working, with only the CCK Content selected..humm I tried choosing all the other CCK selections and it failed. then I tried just CCK 'content' again and it work. Then added CCK 'content copy' and it work. I might just have to do them one of the selections at a time...what a hassle. :-) On Thu, Feb 12, 2009 at 4:52 PM, N?stor wrote: > Could it be a time out type of problem? Could it be that it takes Drupal > longer to respond than the amount of time that the Apche web server is > willing to wsit? > > OK, I just took a look at my apache error_log file and says: > "PHP error: Maximun execution time of 30 seconds exceeded in > Drupal\\includes\\common.inc on line 1831, > referer: http://localhost/drupal/admin/build" > > How do I change this? > > Thanks, > > Nestor :-) > > > On Thu, Feb 12, 2009 at 4:46 PM, N?stor wrote: > >> I log out and then logged back in and it is working now. >> I had notice that before, where Drupal gets lost and if I logout and >> log in then Drupal clear its memory and it is ready to go. >> >> It might be a PHP thing but Drupal is base on PHP and if a module >> is downloaded from the Drupal site it should not cause problems. >> >> Not knowing enough about Drupal, I think that if you load several >> modules at a time then Drupal gets confuse. I also noticed that >> when I load a module and if it has several things to select, is better >> not to choose all of them at once because it is bound to go blank on you. >> >> Thanks, >> >> Nestor ;-) >> >> >> On Thu, Feb 12, 2009 at 4:39 PM, Brett Evanson wrote: >> >>> This is actually a php thing, not a Drupal thing. It usually means >>> some php file (could be a module, theme, custom block) is throwing an >>> unrecoverable error. I'm guessing it's not cck. >>> >>> On Thu, Feb 12, 2009 at 5:32 PM, N?stor wrote: >>> > I just installed cck-6.x-2.1.tar.gz module and when I go read the >>> modules >>> > Drupal goes blank. I do not know what to do. >>> > >>> > I had the white screen of death happened before but if I refresh a >>> couple of >>> > times >>> > it comes back. >>> > >>> > I might remove the cck module and refresh to see if it comes back. >>> > >>> > I think is pretty amazing that it is consider normal that Drupal goes >>> to La, >>> > Land >>> > >>> > Thanks, >>> > >>> > Nesto r:-) >>> > >>> > -- >>> > [ Drupal support list | http://lists.drupal.org/ ] >>> > >>> >>> >>> >>> -- >>> Brett Evanson >>> brettev at gmail.com >>> 801-599-0584 >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090212/2d919f7a/attachment-0001.htm From hans.rossel at koba.be Fri Feb 13 09:08:49 2009 From: hans.rossel at koba.be (KOBA | Hans Rossel) Date: Fri, 13 Feb 2009 10:08:49 +0100 Subject: [support] Simplenews - Ugly Background in the emails sent In-Reply-To: <21869865.post@talk.nabble.com> References: <21745827.post@talk.nabble.com> <21758764.post@talk.nabble.com> <4983B24C.2090600@udel.edu> <21759155.post@talk.nabble.com> <51a9b8330901302328w12bc4335i7f26ce7b49e4caaf@mail.gmail.com> <21761669.post@talk.nabble.com> <21856692.post@talk.nabble.com> <21869865.post@talk.nabble.com> Message-ID: <51a9b8330902130108y6acdf3cen7696d5c29048066b@mail.gmail.com> I also saw the ugly background now in some of my mails and in some email clients, results were also different by browser; so gmail in chrome was ok but not in IE. Got rid of it by removing tags and generally porting the html back to the nineties, make your html as old as possible and it should work. There is also interesting information about what is supported of html in emails in http://www.campaignmonitor.com/css/ Hans -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090213/f123ecbe/attachment.htm From ratadi2 at gmail.com Fri Feb 13 10:48:40 2009 From: ratadi2 at gmail.com (geniekids) Date: Fri, 13 Feb 2009 02:48:40 -0800 (PST) Subject: [support] Simplenews - Ugly Background in the emails sent In-Reply-To: <51a9b8330902130108y6acdf3cen7696d5c29048066b@mail.gmail.com> References: <21745827.post@talk.nabble.com> <51a9b8330901301258ld5cd823hcbf45cb0d56b1de5@mail.gmail.com> <21758764.post@talk.nabble.com> <4983B24C.2090600@udel.edu> <21759155.post@talk.nabble.com> <51a9b8330901302328w12bc4335i7f26ce7b49e4caaf@mail.gmail.com> <21761669.post@talk.nabble.com> <21856692.post@talk.nabble.com> <21869865.post@talk.nabble.com> <51a9b8330902130108y6acdf3cen7696d5c29048066b@mail.gmail.com> Message-ID: <21994064.post@talk.nabble.com> KOBA | Hans Rossel-2 wrote: > > Got rid of it by removing tags and generally porting > the html back to the nineties, make your html as old as possible and it > should work. > Hans how exactly did you do this - can you help me with a step by step guide. -- View this message in context: http://www.nabble.com/Simplenews---Ugly-Background-in-the-emails-sent-tp21745827p21994064.html Sent from the Drupal - Support mailing list archive at Nabble.com. From earnie at users.sourceforge.net Fri Feb 13 12:45:32 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Fri, 13 Feb 2009 07:45:32 -0500 Subject: [support] Drupal goes blank In-Reply-To: References: <972255370902121639i5a23ed43w2b240edee75d6f6@mail.gmail.com> Message-ID: <20090213074532.wib66hmoz4oc4cow@mail.progw.org> Quoting N?stor : > I log out and then logged back in and it is working now. > I had notice that before, where Drupal gets lost and if I logout and > log in then Drupal clear its memory and it is ready to go. > That is true for any website that controls the sessions of authenticated users. > It might be a PHP thing but Drupal is base on PHP and if a module > is downloaded from the Drupal site it should not cause problems. > I wouldn't say that. The contributed modules are what others think are handy dandy tools. Some have better developers and maintenance methods than others. Some *you* end up debugging before you can use them. Always test modules in development before moving them to production. > Not knowing enough about Drupal, I think that if you load several > modules at a time then Drupal gets confuse. I also noticed that > when I load a module and if it has several things to select, is better > not to choose all of them at once because it is bound to go blank on you. > The problem with selecting a large amount of new modules to activate is the install process. Nearly all the modules will install a table or two and creating tables will take some time. If your PHP limits are set to factory default or less and you choose several modules you could easily reach the stop processing threshold. This isn't a Drupal issue it is a system configuration issue. Both Apache, PHP and MySQL (or whatever DB you use) need tuned to meet your needs. -- 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 amont at 5net.hu Fri Feb 13 15:17:29 2009 From: amont at 5net.hu (=?ISO-8859-2?Q?=C1mon_Tam=E1s?=) Date: Fri, 13 Feb 2009 16:17:29 +0100 Subject: [support] GMap popup Message-ID: <49958F09.5000801@5net.hu> Hello, I am using GMap module with only one markers with a popup. I like to show this popup when the page is loading whitout a click. How can i make it? ?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 cooperq at cooperq.com Sat Feb 14 01:28:33 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Fri, 13 Feb 2009 17:28:33 -0800 Subject: [support] Can't uninstall imagecache Message-ID: <49961E41.2080200@cooperq.com> Hi everyone, I have a very strange problem here. I just can't seem to get rid of the imagecache module, no matter how hard I try. I have disabled the module, and uninstalled it, deleted all the relevant entries from the system table, made sure the cache table and my browser cache are all cleared, and run update.php but 'imagecache' still shows up in admin/build/modules every time I refresh it. Whats worse, when I load sites/all/modules it puts an imagecache entry back into the 'system' table. I delete it and reload the page and the entry comes back again. I have not been able to figure out what is causing this and I have no idea how to solve it. But hopefully someone here does. Thanks. -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From Smither at C-C-I.com Sat Feb 14 05:41:43 2009 From: Smither at C-C-I.com (Bob Smither) Date: Fri, 13 Feb 2009 23:41:43 -0600 Subject: [support] Multisite Question In-Reply-To: <20081211144531.3a8m0bv56v7l28c8@mail.progw.org> References: <000001c95bac$4bc62870$e3527950$@org> <20081211144531.3a8m0bv56v7l28c8@mail.progw.org> Message-ID: <1234590103.2687.16.camel@k6-2.c-c-i.com> Dear List I have D6 installed on domainA as my main site and have defined two additional domains using the /sites/domainB, /sites/domainC convention. This all works really well - great job developers! Now my question. Domains domainB and domainC share a common database (different than the database used by domainA. I set domainB up first, then decided I really wanted the site named domainC so I used a symbolic link to just link the files under /sites/domainC to the real files under /sites/domainB. I put domainC in my browser and the site comes up. The browser URL remains as domainC - however the title at the top of the browser window (Firefox) shows the name of domainB. Any hints as to where this is coming from and how to correct it? Thanks, -- Bob Smither, PhD Circuit Concepts, Inc. ========================================================================= There are only 10 kinds of people in the world --Those who understand binary, and those who don't... ========================================================================= Smither at C-C-I.Com http://www.C-C-I.Com 281-331-2744(office) -4616(fax) From hans.rossel at koba.be Sat Feb 14 07:45:23 2009 From: hans.rossel at koba.be (KOBA | Hans Rossel) Date: Sat, 14 Feb 2009 08:45:23 +0100 Subject: [support] Can't uninstall imagecache In-Reply-To: <49961E41.2080200@cooperq.com> References: <49961E41.2080200@cooperq.com> Message-ID: <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> Delete the imagecache directory. If you still see imagecache then listed in modules you have probably in a subdirectory of another module another copy of imagecache. If there is nowhere a imagecache.info filein the modules or sites/all/modules directory imagecache cannot show up. Hans 2009/2/14, cooper Quintin : > Hi everyone, I have a very strange problem here. I just can't seem to > get rid of the imagecache module, no matter how hard I try. I have > disabled the module, and uninstalled it, deleted all the relevant > entries from the system table, made sure the cache table and my browser > cache are all cleared, and run update.php but 'imagecache' still shows > up in admin/build/modules every time I refresh it. Whats worse, when I > load sites/all/modules it puts an imagecache entry back into the > 'system' table. I delete it and reload the page and the entry comes > back again. I have not been able to figure out what is causing this and > I have no idea how to solve it. But hopefully someone here does. Thanks. > > -- > Cooper Quintin > Freelance Programmer, Indymedia Journalist > http://CooperQ.com > (510) 827-5382 > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- Verzonden vanaf mijn mobiele apparaat Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be From cimo75 at gmail.com Sun Feb 15 03:35:59 2009 From: cimo75 at gmail.com (simone-www.io-lab.org) Date: Sun, 15 Feb 2009 03:35:59 +0000 Subject: [support] Multisite Question In-Reply-To: <1234590103.2687.16.camel@k6-2.c-c-i.com> References: <000001c95bac$4bc62870$e3527950$@org> <20081211144531.3a8m0bv56v7l28c8@mail.progw.org> <1234590103.2687.16.camel@k6-2.c-c-i.com> Message-ID: hi this is part on the site info which uses the "system" table, just give a prefix to that table and change the info, of course you need to make the proper modifications in settings.php Simone On Sat, Feb 14, 2009 at 5:41 AM, Bob Smither wrote: > Dear List > > I have D6 installed on domainA as my main site and have defined two > additional domains using the /sites/domainB, /sites/domainC convention. > > This all works really well - great job developers! > > Now my question. Domains domainB and domainC share a common database > (different than the database used by domainA. I set domainB up first, > then decided I really wanted the site named domainC so I used a symbolic > link to just link the files under /sites/domainC to the real files > under /sites/domainB. > > I put domainC in my browser and the site comes up. The browser URL > remains as domainC - however the title at the top of the browser window > (Firefox) shows the name of domainB. > > Any hints as to where this is coming from and how to correct it? > > Thanks, > -- > Bob Smither, PhD Circuit Concepts, Inc. > ========================================================================= > > There are only 10 kinds of people in the world > --Those who understand binary, and those who don't... > > ========================================================================= > Smither at C-C-I.Com http://www.C-C-I.Com 281-331-2744(office) -4616(fax) > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- .wmv , .wma , .pps along with all proprietary Windows formats won t be accepted and/or viewed.... From cooperq at cooperq.com Mon Feb 16 06:18:21 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Sun, 15 Feb 2009 22:18:21 -0800 Subject: [support] Can't uninstall imagecache In-Reply-To: <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> Message-ID: <4999052D.3050502@cooperq.com> I have used the unix find command and searched and the imagecache directory doesn't exist anywhere in the filesystem. Yet it still shows up. (I checked this before I sent my initial email. ) This is really preplexing. KOBA | Hans Rossel wrote: > Delete the imagecache directory. If you still see imagecache then > listed in modules you have probably in a subdirectory of another > module another copy of imagecache. > > If there is nowhere a imagecache.info filein the modules or > sites/all/modules directory imagecache cannot show up. > > Hans > > 2009/2/14, cooper Quintin : > >> Hi everyone, I have a very strange problem here. I just can't seem to >> get rid of the imagecache module, no matter how hard I try. I have >> disabled the module, and uninstalled it, deleted all the relevant >> entries from the system table, made sure the cache table and my browser >> cache are all cleared, and run update.php but 'imagecache' still shows >> up in admin/build/modules every time I refresh it. Whats worse, when I >> load sites/all/modules it puts an imagecache entry back into the >> 'system' table. I delete it and reload the page and the entry comes >> back again. I have not been able to figure out what is causing this and >> I have no idea how to solve it. But hopefully someone here does. Thanks. >> >> -- >> Cooper Quintin >> Freelance Programmer, Indymedia Journalist >> http://CooperQ.com >> (510) 827-5382 >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> > > -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From ronald at istos.it Mon Feb 16 07:21:49 2009 From: ronald at istos.it (Ronald Ashri) Date: Mon, 16 Feb 2009 08:21:49 +0100 Subject: [support] Multisite Question In-Reply-To: References: <000001c95bac$4bc62870$e3527950$@org> <20081211144531.3a8m0bv56v7l28c8@mail.progw.org> <1234590103.2687.16.camel@k6-2.c-c-i.com> Message-ID: <4999140D.2090102@istos.it> Hi, if DomainC simply exists because C is the right name and DomainB is of no use then I would suggest to completely remove domainB rather than link from C to B. Fix setting.php and make sure the filesystem settings within Drupal are all ok and you should be ok. Otherwise you are allowing for a situation that may or may not create problems in the future but you will always have the doubt of whether Drupal is handling this properly. The less to worry about the better :-) Ronald simone-www.io-lab.org wrote: > hi > this is part on the site info which uses the "system" table, just give > a prefix to that table and change the info, of course you need to make > the proper modifications in settings.php > Simone > > On Sat, Feb 14, 2009 at 5:41 AM, Bob Smither wrote: > >> Dear List >> >> I have D6 installed on domainA as my main site and have defined two >> additional domains using the /sites/domainB, /sites/domainC convention. >> >> This all works really well - great job developers! >> >> Now my question. Domains domainB and domainC share a common database >> (different than the database used by domainA. I set domainB up first, >> then decided I really wanted the site named domainC so I used a symbolic >> link to just link the files under /sites/domainC to the real files >> under /sites/domainB. >> >> I put domainC in my browser and the site comes up. The browser URL >> remains as domainC - however the title at the top of the browser window >> (Firefox) shows the name of domainB. >> >> Any hints as to where this is coming from and how to correct it? >> >> Thanks, >> -- >> Bob Smither, PhD Circuit Concepts, Inc. >> ========================================================================= >> >> There are only 10 kinds of people in the world >> --Those who understand binary, and those who don't... >> >> ========================================================================= >> Smither at C-C-I.Com http://www.C-C-I.Com 281-331-2744(office) -4616(fax) >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090216/c44e5067/attachment.htm From enboig at gmail.com Mon Feb 16 08:43:16 2009 From: enboig at gmail.com (=?ISO-8859-1?Q?Llu=EDs?=) Date: Mon, 16 Feb 2009 09:43:16 +0100 Subject: [support] Multisite Question In-Reply-To: <4999140D.2090102@istos.it> References: <000001c95bac$4bc62870$e3527950$@org> <20081211144531.3a8m0bv56v7l28c8@mail.progw.org> <1234590103.2687.16.camel@k6-2.c-c-i.com> <4999140D.2090102@istos.it> Message-ID: <45a29f450902160043ka5eb319ve517cff5709376a2@mail.gmail.com> Another way of changing just some settings in domainC would be inside settings.php: $conf = array( 'site_name' => 'name_of_domain_C', ); 2009/2/16 Ronald Ashri : > Hi, > > if DomainC simply exists because C is the right name and DomainB is of no > use then I would suggest to completely remove domainB rather than link from > C to B. Fix setting.php and make sure the filesystem settings within Drupal > are all ok and you should be ok. Otherwise you are allowing for a situation > that may or may not create problems in the future but you will always have > the doubt of whether Drupal is handling this properly. The less to worry > about the better :-) > > Ronald > > simone-www.io-lab.org wrote: > > hi > this is part on the site info which uses the "system" table, just give > a prefix to that table and change the info, of course you need to make > the proper modifications in settings.php > Simone > > On Sat, Feb 14, 2009 at 5:41 AM, Bob Smither wrote: > > > Dear List > > I have D6 installed on domainA as my main site and have defined two > additional domains using the /sites/domainB, /sites/domainC convention. > > This all works really well - great job developers! > > Now my question. Domains domainB and domainC share a common database > (different than the database used by domainA. I set domainB up first, > then decided I really wanted the site named domainC so I used a symbolic > link to just link the files under /sites/domainC to the real files > under /sites/domainB. > > I put domainC in my browser and the site comes up. The browser URL > remains as domainC - however the title at the top of the browser window > (Firefox) shows the name of domainB. > > Any hints as to where this is coming from and how to correct it? > > Thanks, > -- > Bob Smither, PhD Circuit Concepts, Inc. > ========================================================================= > > There are only 10 kinds of people in the world > --Those who understand binary, and those who don't... > > ========================================================================= > Smither at C-C-I.Com http://www.C-C-I.Com 281-331-2744(office) -4616(fax) > > -- > [ Drupal support list | http://lists.drupal.org/ ] > > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- *Si creus que l'educaci? ?s cara, prova la ignor?ncia. *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. *Abans d'imprimir aquest missatge, pensa en el medi ambient. From michel at ziobudda.net Mon Feb 16 14:16:09 2009 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Mon, 16 Feb 2009 15:16:09 +0100 Subject: [support] Imagecache: local ok, remote ko Message-ID: <49997529.5090209@ziobudda.net> Hi all. I have ported an ubercart site from local to remote (online). Now imagecache does not works. Fileupload works (and I can view thumb in edit page). Image is uploaded in "sites/default/files" (I can see them). All directory in files/ are rwxrwxrwx and all files are rw-rw-rw. I have deleted the cache and flush all imagecache "preset". No entries in watchdog table. I have asked my ISP if him can get me the apache error log. Any ideas ? 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 Smither at C-C-I.com Mon Feb 16 16:41:26 2009 From: Smither at C-C-I.com (Bob Smither) Date: Mon, 16 Feb 2009 10:41:26 -0600 Subject: [support] Multisite Question In-Reply-To: <45a29f450902160043ka5eb319ve517cff5709376a2@mail.gmail.com> References: <000001c95bac$4bc62870$e3527950$@org> <20081211144531.3a8m0bv56v7l28c8@mail.progw.org> <1234590103.2687.16.camel@k6-2.c-c-i.com> <4999140D.2090102@istos.it> <45a29f450902160043ka5eb319ve517cff5709376a2@mail.gmail.com> Message-ID: <1234802486.26156.103.camel@k6-2.c-c-i.com> Thanks for all the suggestions! I finally found the site name buried in the variable table. This table has simple name - value pairs. Changing the site_name value to the desired domain name fixed it. From sivaji2009 at gmail.com Mon Feb 16 19:57:25 2009 From: sivaji2009 at gmail.com (sivaji j.g) Date: Tue, 17 Feb 2009 01:27:25 +0530 Subject: [support] Imagecache: local ok, remote ko In-Reply-To: <49997529.5090209@ziobudda.net> References: <49997529.5090209@ziobudda.net> Message-ID: On Mon, Feb 16, 2009 at 7:46 PM, Davide Michel 'ZioBudda' Morelli < michel at ziobudda.net> wrote: > Hi all. I have ported an ubercart site from local to remote (online). > > Now imagecache does not works. imagecache requires clean url to work properly, check whether its enabled or not. -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090217/011708df/attachment.htm From michel at ziobudda.net Mon Feb 16 22:23:04 2009 From: michel at ziobudda.net (Davide Michel 'ZioBudda' Morelli) Date: Mon, 16 Feb 2009 23:23:04 +0100 Subject: [support] Imagecache: local ok, remote ko In-Reply-To: References: <49997529.5090209@ziobudda.net> Message-ID: <4999E748.9040602@ziobudda.net> sivaji j.g ha scritto: > > imagecache requires clean url to work properly, check whether its > enabled or not. ??? Why this ? 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 amont at 5net.hu Tue Feb 17 09:30:37 2009 From: amont at 5net.hu (=?ISO-8859-2?Q?=C1mon_Tam=E1s?=) Date: Tue, 17 Feb 2009 10:30:37 +0100 Subject: [support] XML to CCk Message-ID: <499A83BD.8060905@5net.hu> Hello, I like to import from an XML file to CCK fields. Is there any solution? ?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 alex at developmentseed.org Tue Feb 17 14:57:15 2009 From: alex at developmentseed.org (Alex Barth) Date: Tue, 17 Feb 2009 09:57:15 -0500 Subject: [support] XML to CCk In-Reply-To: <499A83BD.8060905@5net.hu> References: <499A83BD.8060905@5net.hu> Message-ID: <774223EC-D2C3-4AAE-B602-027858E2C6C5@developmentseed.org> FeedAPI + Feed Element Mapper On Feb 17, 2009, at 4:30 AM, ?mon Tam?s wrote: > Hello, > > > I like to import from an XML file to CCK fields. Is there any > solution? > > ?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 > > -- > [ Drupal support list | http://lists.drupal.org/ ] Alex Barth http://www.developmentseed.org/blog tel (202) 250-3633 From nicolast at logis.com.mx Tue Feb 17 16:06:50 2009 From: nicolast at logis.com.mx (Nicolas Tostin) Date: Tue, 17 Feb 2009 10:06:50 -0600 Subject: [support] XML to CCk References: <499A83BD.8060905@5net.hu> <774223EC-D2C3-4AAE-B602-027858E2C6C5@developmentseed.org> Message-ID: <02b501c99119$beac1b90$b400a8c0@Nikko> Great tool, this remind me a need I had, is it possible to use it both ways ? So I'll map my XML in CCK and then I can edit it and save it back in XML format in a local file ? ----- Original Message ----- From: "Alex Barth" To: Sent: Tuesday, February 17, 2009 8:57 AM Subject: Re: [support] XML to CCk FeedAPI + Feed Element Mapper On Feb 17, 2009, at 4:30 AM, ?mon Tam?s wrote: > Hello, > > > I like to import from an XML file to CCK fields. Is there any > solution? > > ?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 > > -- > [ Drupal support list | http://lists.drupal.org/ ] Alex Barth http://www.developmentseed.org/blog tel (202) 250-3633 -- [ Drupal support list | http://lists.drupal.org/ ] From earnie at users.sourceforge.net Tue Feb 17 17:43:48 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Tue, 17 Feb 2009 12:43:48 -0500 Subject: [support] XML to CCk In-Reply-To: <774223EC-D2C3-4AAE-B602-027858E2C6C5@developmentseed.org> References: <499A83BD.8060905@5net.hu> <774223EC-D2C3-4AAE-B602-027858E2C6C5@developmentseed.org> Message-ID: <20090217124348.o955xms16eck0ssg@mail.progw.org> Quoting Alex Barth : > > FeedAPI + Feed Element Mapper > > On Feb 17, 2009, at 4:30 AM, ?mon Tam?s wrote: > This only works if the XML is a FEED. What if the XML isn't in the format of a feed? -- 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 cooperq at cooperq.com Wed Feb 18 00:43:45 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Tue, 17 Feb 2009 16:43:45 -0800 Subject: [support] Can't uninstall imagecache In-Reply-To: <4999052D.3050502@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> Message-ID: <499B59C1.8020404@cooperq.com> Does nobody have any idea on this? I have checked my filesystem extensively using grep and find and have not found any trace of imagecache left in my filesystem. I have deleted it several times from the database but it always comes back and is listed there in the modules page. I really just don't know what to do any more. -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From shiva at io.com Wed Feb 18 02:55:02 2009 From: shiva at io.com (Earl Cooley III) Date: Tue, 17 Feb 2009 20:55:02 -0600 Subject: [support] Can't uninstall imagecache In-Reply-To: <499B59C1.8020404@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> Message-ID: <499B7886.5080807@io.com> cooper Quintin wrote: > I really just don't know what to do any more. Perhaps you should also post a Support Request on the Imagecache project issues page: http://drupal.org/node/add/project-issue/imagecache That, at least, may get more eyes on your situation. -- Earl Cooley III (shiva at io.com) From cooperq at cooperq.com Wed Feb 18 06:18:34 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Tue, 17 Feb 2009 22:18:34 -0800 Subject: [support] Can't uninstall imagecache In-Reply-To: <499B7886.5080807@io.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> Message-ID: <499BA83A.80402@cooperq.com> Thanks, I will try that, also I noticed an additional problem, any modules I put in sites/all/modules aren't showing up on the admin/build/modules page. So I think it may be some weird problem with my installation. Earl Cooley III wrote: > cooper Quintin wrote: > >> I really just don't know what to do any more. >> > > Perhaps you should also post a Support Request on the Imagecache project > issues page: > > http://drupal.org/node/add/project-issue/imagecache > > That, at least, may get more eyes on your situation. > > -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From cooperq at cooperq.com Wed Feb 18 06:24:47 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Tue, 17 Feb 2009 22:24:47 -0800 Subject: [support] Can't uninstall imagecache In-Reply-To: <499B7886.5080807@io.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> Message-ID: <499BA9AF.9090004@cooperq.com> ok, I had a big breakthrough on this. I have a multisite installion. Running off of one codebase. In other words I have a test, development, and produciton enviroment, all with different webroots, but all being checkouts of various revisions of an svn repository. I have a sites/foo/settings.php directory for each of the sites. I noticed when I put a module in the sites/all/modules directory of the production site, it shows up in the admin/build/modules listing for the dev site and so on. So obviously drupal is doing something weird only looking for modules in the production site. Earl Cooley III wrote: > cooper Quintin wrote: > >> I really just don't know what to do any more. >> > > Perhaps you should also post a Support Request on the Imagecache project > issues page: > > http://drupal.org/node/add/project-issue/imagecache > > That, at least, may get more eyes on your situation. > > -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From marolijo at yahoo.es Wed Feb 18 06:33:30 2009 From: marolijo at yahoo.es (marolijo at yahoo.es) Date: Wed, 18 Feb 2009 07:33:30 +0100 Subject: [support] How to show comment form on a view Message-ID: <002201c99192$d94880f0$0601a8c0@zeus> Hello, I need to place comment form on a "Full node" view, How can I do that? thank's! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090218/9b79cfa9/attachment.htm From cog.rusty at gmail.com Wed Feb 18 12:22:25 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Wed, 18 Feb 2009 14:22:25 +0200 Subject: [support] Can't uninstall imagecache In-Reply-To: <499B59C1.8020404@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> Message-ID: On Wed, Feb 18, 2009 at 2:43 AM, cooper Quintin wrote: > Does nobody have any idea on this? I have checked my filesystem > extensively using grep and find and have not found any trace of > imagecache left in my filesystem. I have deleted it several times from > the database but it always comes back and is listed there in the modules > page. I really just don't know what to do any more. Find the entry of the module in the system table in the database. Look at its path there. You will know exactly where Drupal found it. > -- > Cooper Quintin > Freelance Programmer, Indymedia Journalist > http://CooperQ.com > (510) 827-5382 > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From cog.rusty at gmail.com Wed Feb 18 12:24:16 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Wed, 18 Feb 2009 14:24:16 +0200 Subject: [support] Can't uninstall imagecache In-Reply-To: <499BA83A.80402@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> Message-ID: On Wed, Feb 18, 2009 at 8:18 AM, cooper Quintin wrote: > Thanks, > I will try that, also I noticed an additional problem, any modules I put > in sites/all/modules aren't showing up on the admin/build/modules page. > So I think it may be some weird problem with my installation. This probably means that you are looking at the sites/all/modules directory of a different Drupal installation. > Earl Cooley III wrote: >> cooper Quintin wrote: >> >>> I really just don't know what to do any more. >>> >> >> Perhaps you should also post a Support Request on the Imagecache project >> issues page: >> >> http://drupal.org/node/add/project-issue/imagecache >> >> That, at least, may get more eyes on your situation. >> >> > > > -- > Cooper Quintin > Freelance Programmer, Indymedia Journalist > http://CooperQ.com > (510) 827-5382 > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From earnie at users.sourceforge.net Wed Feb 18 12:52:29 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Wed, 18 Feb 2009 07:52:29 -0500 Subject: [support] XML to CCk In-Reply-To: <20090217124348.o955xms16eck0ssg@mail.progw.org> References: <499A83BD.8060905@5net.hu> <774223EC-D2C3-4AAE-B602-027858E2C6C5@developmentseed.org> <20090217124348.o955xms16eck0ssg@mail.progw.org> Message-ID: <20090218075229.ge0iyz0c235wcocs@mail.progw.org> Quoting Earnie Boyd : > Quoting Alex Barth : > >> >> FeedAPI + Feed Element Mapper >> >> On Feb 17, 2009, at 4:30 AM, ?mon Tam?s wrote: >> > > This only works if the XML is a FEED. What if the XML isn't in the > format of a feed? > Just as I thought it doesn't work. What would be cooler is if the feed element mapper grabbed the URL and allowed me to map the XML fields on the spot instead of after the fact. There are also paging parameters of some feeds that would be nice if feedAPI could handle the pull of all pages. Yea, yea, this belongs in the feature request queues. -- 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 Feb 18 13:58:22 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Wed, 18 Feb 2009 08:58:22 -0500 Subject: [support] Can't uninstall imagecache In-Reply-To: References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> Message-ID: <20090218085822.d61w6gisfrc4888w@mail.progw.org> Quoting Cog Rusty : > On Wed, Feb 18, 2009 at 8:18 AM, cooper Quintin wrote: >> Thanks, >> I will try that, also I noticed an additional problem, any modules I put >> in sites/all/modules aren't showing up on the admin/build/modules page. >> So I think it may be some weird problem with my installation. > > > This probably means that you are looking at the sites/all/modules > directory of a different Drupal installation. > To control this for my multisite setup I always remove the sites directory in the drupal install and then create a symbolic link to a common sites directory. Something like: /usr/local/drupal/6.x/drupal-6.0 mv /usr/local/drupal/6.x/drupal-6.0/sites /usr/local/drupal/6.x/ ln -s /usr/local/drupal/6.x/sites /usr/local/drupal/6.x/drupal-6.0/sites /usr/local/drupal/6.x/drupal-6.9 rm -rf /usr/local/drupal/6.x/drupal-6.9/sites ln -s /usr/local/drupal/6.x/sites /usr/local/drupal/6.x/drupal-6.9/sites cd /my/web/directory/mysite-1 mv htdocs htdocs.orig ln -s /usr/local/drupal/6.x/drupal-6.0 htdocs cd htdocs/sites mkdir mysite-1 cp default/default.settings.php mysite-1/settings.php cd /my/web/directory/mysite-2 mv htdocs htdocs.orig ln -s /usr/local/drupal/6.x/drupal-6.9 htdocs mkdir mysite-2 cp default/default.settings.php mysite-2/settings.php If you're using Windows XP or better then instead of ln -s source link use junction link source Another thing you might consider for multisites is to create a tmp directory in each of the sites/mysite directories and change the temporary directory setting in the files admin page. -- 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 rotsen at gmail.com Wed Feb 18 15:23:00 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Wed, 18 Feb 2009 07:23:00 -0800 Subject: [support] HOW: Moving drupal from one host to another Message-ID: I tried moving Drupal 6.9 from one host to another and it did not work. 1) I did a 'mysqldump -u root -p --opt drupal69 > drupal69.sql 2) I copied the entire Drupal69 directory under my htdocs to my the new host's htdocs directory 3) I created the DB on the new host and then I installed the dump using the following command 'mysql -u root -p drupal69 < drupal69.sql' 4) I edit the config file and changed the '10.100.5.126' ip address to 'localhost' and set the password to the correct password. (the user is the same) I am able to see the main page but when I try to log in, I get the error page not found for htdocs/drupal69/user. What are the proper steps tp follow? Thanks, Nestor -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090218/2ca7d162/attachment.htm From brettev at gmail.com Wed Feb 18 15:25:28 2009 From: brettev at gmail.com (Brett Evanson) Date: Wed, 18 Feb 2009 08:25:28 -0700 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: References: Message-ID: <972255370902180725y7d62c3bbhfb74e9d64eba2334@mail.gmail.com> This sounds like it could be a clean urls issue. Did you get the .htaccess file copied over? Does your new host support .htaccess files and mod_rewrite for apache? On Wed, Feb 18, 2009 at 8:23 AM, N?stor wrote: > I tried moving Drupal 6.9 from one host to another and it did not work. > 1) I did a 'mysqldump -u root -p --opt drupal69 > drupal69.sql > 2) I copied the entire Drupal69 directory under my htdocs to my > the new host's htdocs directory > 3) I created the DB on the new host and then I installed the dump > using the following command 'mysql -u root -p drupal69 < drupal69.sql' > > 4) I edit the config file and changed the '10.100.5.126' ip address to > 'localhost' > and set the password to the correct password. (the user is the same) > > I am able to see the main page but when I try to log in, I get the error > page not found > for htdocs/drupal69/user. > > What are the proper steps tp follow? > > Thanks, > > Nestor > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- Brett Evanson brettev at gmail.com 801-599-0584 From brettev at gmail.com Wed Feb 18 15:26:01 2009 From: brettev at gmail.com (Brett Evanson) Date: Wed, 18 Feb 2009 08:26:01 -0700 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: <972255370902180725y7d62c3bbhfb74e9d64eba2334@mail.gmail.com> References: <972255370902180725y7d62c3bbhfb74e9d64eba2334@mail.gmail.com> Message-ID: <972255370902180726w36e34df1t7b0ec60af065abfa@mail.gmail.com> Also, try going to http://newhost.com/index.php?q=user and see if that comes up On Wed, Feb 18, 2009 at 8:25 AM, Brett Evanson wrote: > This sounds like it could be a clean urls issue. Did you get the > .htaccess file copied over? Does your new host support .htaccess files > and mod_rewrite for apache? > > On Wed, Feb 18, 2009 at 8:23 AM, N?stor wrote: >> I tried moving Drupal 6.9 from one host to another and it did not work. >> 1) I did a 'mysqldump -u root -p --opt drupal69 > drupal69.sql >> 2) I copied the entire Drupal69 directory under my htdocs to my >> the new host's htdocs directory >> 3) I created the DB on the new host and then I installed the dump >> using the following command 'mysql -u root -p drupal69 < drupal69.sql' >> >> 4) I edit the config file and changed the '10.100.5.126' ip address to >> 'localhost' >> and set the password to the correct password. (the user is the same) >> >> I am able to see the main page but when I try to log in, I get the error >> page not found >> for htdocs/drupal69/user. >> >> What are the proper steps tp follow? >> >> Thanks, >> >> Nestor >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > > > -- > Brett Evanson > brettev at gmail.com > 801-599-0584 > -- Brett Evanson brettev at gmail.com 801-599-0584 From ramon.vilar at gmail.com Wed Feb 18 16:18:59 2009 From: ramon.vilar at gmail.com (=?ISO-8859-1?Q?Ramon_Vilar_Gavald=E0?=) Date: Wed, 18 Feb 2009 17:18:59 +0100 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: <972255370902180726w36e34df1t7b0ec60af065abfa@mail.gmail.com> References: <972255370902180725y7d62c3bbhfb74e9d64eba2334@mail.gmail.com> <972255370902180726w36e34df1t7b0ec60af065abfa@mail.gmail.com> Message-ID: Like Brett, I think that this issue seems that you haven't copied .htaccess file. Check that this file is in your "new" intstallation. If this isn't the problem, check your apache configuration file. Ramon -- Ramon Vilar Gavald? - http://ramonvilar.facil.cat - http://blog.facilitant.net Membre de F?CIL - http://www.facil.cat Membre de l'esplai SESA - http://www.esplaisesa.org From mattl at onshore.com Wed Feb 18 16:14:59 2009 From: mattl at onshore.com (Matthew Lechleider) Date: Wed, 18 Feb 2009 10:14:59 -0600 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: <972255370902180726w36e34df1t7b0ec60af065abfa@mail.gmail.com> References: <972255370902180725y7d62c3bbhfb74e9d64eba2334@mail.gmail.com> <972255370902180726w36e34df1t7b0ec60af065abfa@mail.gmail.com> Message-ID: <499C3403.4050105@onshore.com> http://drupal.org/project/backup_migrate I recommend setting up a basic drupal 6.9 site on the new server. Make sure all of apache mods and special features such as clean URLs are working. Then utilize the backup and migrate module. Brett Evanson wrote: > Also, try going to http://newhost.com/index.php?q=user and see if that comes up > > On Wed, Feb 18, 2009 at 8:25 AM, Brett Evanson wrote: > >> This sounds like it could be a clean urls issue. Did you get the >> .htaccess file copied over? Does your new host support .htaccess files >> and mod_rewrite for apache? >> >> On Wed, Feb 18, 2009 at 8:23 AM, N?stor wrote: >> >>> I tried moving Drupal 6.9 from one host to another and it did not work. >>> 1) I did a 'mysqldump -u root -p --opt drupal69 > drupal69.sql >>> 2) I copied the entire Drupal69 directory under my htdocs to my >>> the new host's htdocs directory >>> 3) I created the DB on the new host and then I installed the dump >>> using the following command 'mysql -u root -p drupal69 < drupal69.sql' >>> >>> 4) I edit the config file and changed the '10.100.5.126' ip address to >>> 'localhost' >>> and set the password to the correct password. (the user is the same) >>> >>> I am able to see the main page but when I try to log in, I get the error >>> page not found >>> for htdocs/drupal69/user. >>> >>> What are the proper steps tp follow? >>> >>> Thanks, >>> >>> Nestor >>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >>> >> >> -- >> Brett Evanson >> brettev at gmail.com >> 801-599-0584 >> >> > > > > From scott at bscottholmes.com Wed Feb 18 16:45:54 2009 From: scott at bscottholmes.com (Scott) Date: Wed, 18 Feb 2009 08:45:54 -0800 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: References: Message-ID: <1234975554.31193.1.camel@localhost> One might also check in the .htaccess file on line 110: # If your site is running in a VirtualDocumentRoot at http://example.com/, # uncomment the following line: RewriteBase / From rotsen at gmail.com Wed Feb 18 18:13:06 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Wed, 18 Feb 2009 10:13:06 -0800 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: <1234975554.31193.1.camel@localhost> References: <1234975554.31193.1.camel@localhost> Message-ID: Both host are windows running WAMP. I first host is my work desktop and second host is my home desktop I install both. I am not using extra modules in apache just the default. I did not set a .htaccess on directories at work or at home. I will have to look at http://drupal.org/project/backup_migrate I just wanted to do more work at home. Thanks, Nestor On Wed, Feb 18, 2009 at 8:45 AM, Scott wrote: > One might also check in the .htaccess file on line 110: > > # If your site is running in a VirtualDocumentRoot at > http://example.com/, > # uncomment the following line: > RewriteBase / > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090218/4d2f2e25/attachment-0001.htm From victorkane at gmail.com Wed Feb 18 18:16:39 2009 From: victorkane at gmail.com (Victor Kane) Date: Wed, 18 Feb 2009 16:16:39 -0200 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: References: <1234975554.31193.1.camel@localhost> Message-ID: On Wed, Feb 18, 2009 at 4:13 PM, N?stor wrote: > Both host are windows running WAMP. > > I did not set a .htaccess on directories at work or at home. What people are saying is that Drupal has a very important .htaccess file in the Drupal document root. Very often when using FTP clients, these files are hidden and so don't get copied when one wishes to copy or move a site from one host to another. The trick is to make sure you copied the Drupal .htaccess file along with the other. If you did, then we can narrow it down to another issue. But first that must be clear. Victor Kane http://awebfactory.com.ar On Wed, Feb 18, 2009 at 8:45 AM, Scott wrote: > >> One might also check in the .htaccess file on line 110: >> >> # If your site is running in a VirtualDocumentRoot at >> http://example.com/, >> # uncomment the following line: >> RewriteBase / >> >> >> -- >> [ 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/20090218/b083204f/attachment.htm From rotsen at gmail.com Wed Feb 18 18:18:30 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Wed, 18 Feb 2009 10:18:30 -0800 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: References: <1234975554.31193.1.camel@localhost> Message-ID: BTW, the error_log file is were I found the error warning about file not found. But I thought that the information about http://localhost/drupal69/usrwould be information only found on the database. Is this correct? If it is, then maybe is the user password that the system can not understand, but in this case, I should just get an error of an invalid password, correct? uhmm.... On Wed, Feb 18, 2009 at 10:13 AM, N?stor wrote: > Both host are windows running WAMP. > > I first host is my work desktop and second host is my home desktop > > I install both. I am not using extra modules in apache just the default. > > I did not set a .htaccess on directories at work or at home. > > I will have to look at http://drupal.org/project/backup_migrate > > I just wanted to do more work at home. > > Thanks, > > Nestor > > > On Wed, Feb 18, 2009 at 8:45 AM, Scott wrote: > >> One might also check in the .htaccess file on line 110: >> >> # If your site is running in a VirtualDocumentRoot at >> http://example.com/, >> # uncomment the following line: >> RewriteBase / >> >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090218/9c39741e/attachment.htm From rotsen at gmail.com Wed Feb 18 18:22:27 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Wed, 18 Feb 2009 10:22:27 -0800 Subject: [support] HOW: Moving drupal from one host to another In-Reply-To: References: <1234975554.31193.1.camel@localhost> Message-ID: I did not know that. I will take a look...... I just look at the files and YES, the .htaccess file was copied. On Wed, Feb 18, 2009 at 10:16 AM, Victor Kane wrote: > > > On Wed, Feb 18, 2009 at 4:13 PM, N?stor wrote: > >> Both host are windows running WAMP. >> >> I did not set a .htaccess on directories at work or at home. >> > > What people are saying is that Drupal has a very important .htaccess file > in the Drupal document root. Very often when using FTP clients, these files > are hidden and so don't get copied when one wishes to copy or move a site > from one host to another. > > The trick is to make sure you copied the Drupal .htaccess file along with > the other. If you did, then we can narrow it down to another issue. But > first that must be clear. > > Victor Kane > http://awebfactory.com.ar > > On Wed, Feb 18, 2009 at 8:45 AM, Scott wrote: >> >>> One might also check in the .htaccess file on line 110: >>> >>> # If your site is running in a VirtualDocumentRoot at >>> http://example.com/, >>> # uncomment the following line: >>> RewriteBase / >>> >>> >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >> >> >> -- >> [ 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/20090218/8ef08859/attachment.htm From cooperq at cooperq.com Wed Feb 18 23:21:10 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Wed, 18 Feb 2009 15:21:10 -0800 Subject: [support] Can't uninstall imagecache In-Reply-To: <20090218085822.d61w6gisfrc4888w@mail.progw.org> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> <20090218085822.d61w6gisfrc4888w@mail.progw.org> Message-ID: <499C97E6.3070100@cooperq.com> Thanks, I will try this. It's weird that it would be reading from the wrong directory though. Is the modules directory cached in drupal somewhere or something? I find it very odd that it would ever read from a different webroot. Earnie Boyd wrote: > Quoting Cog Rusty : > > >> On Wed, Feb 18, 2009 at 8:18 AM, cooper Quintin wrote: >> >>> Thanks, >>> I will try that, also I noticed an additional problem, any modules I put >>> in sites/all/modules aren't showing up on the admin/build/modules page. >>> So I think it may be some weird problem with my installation. >>> >> This probably means that you are looking at the sites/all/modules >> directory of a different Drupal installation. >> >> > > To control this for my multisite setup I always remove the sites > directory in the drupal install and then create a symbolic link to a > common sites directory. > > Something like: > /usr/local/drupal/6.x/drupal-6.0 > mv /usr/local/drupal/6.x/drupal-6.0/sites /usr/local/drupal/6.x/ > ln -s /usr/local/drupal/6.x/sites /usr/local/drupal/6.x/drupal-6.0/sites > > /usr/local/drupal/6.x/drupal-6.9 > rm -rf /usr/local/drupal/6.x/drupal-6.9/sites > ln -s /usr/local/drupal/6.x/sites /usr/local/drupal/6.x/drupal-6.9/sites > > > > cd /my/web/directory/mysite-1 > mv htdocs htdocs.orig > ln -s /usr/local/drupal/6.x/drupal-6.0 htdocs > cd htdocs/sites > mkdir mysite-1 > cp default/default.settings.php mysite-1/settings.php > > cd /my/web/directory/mysite-2 > mv htdocs htdocs.orig > ln -s /usr/local/drupal/6.x/drupal-6.9 htdocs > mkdir mysite-2 > cp default/default.settings.php mysite-2/settings.php > > > If you're using Windows XP or better then instead of > ln -s source link > use > junction link source > > > Another thing you might consider for multisites is to create a tmp > directory in each of the sites/mysite directories and change the > temporary directory setting in the files admin page. > > -- > Earnie http://r-feed.com > Make a Drupal difference and review core patches. > > -- http://for-my-kids.com/ -- http://give-me-an-offer.com/ > > -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From gaurav at deeproot.co.in Thu Feb 19 07:22:06 2009 From: gaurav at deeproot.co.in (Gaurav Khambhala) Date: Thu, 19 Feb 2009 12:52:06 +0530 Subject: [support] field name in exposed fields views Message-ID: <499D089E.9070103@deeproot.co.in> I am using views 6.x-2.2 and exposed some taxonomy fields. Now the case is, it shows Taxonomy: Term as field name.And by seeing that nobody can have idea what that field is for. So how can we have input field name there. Or can anyone show me how to change those. I would like to have Vocabulary name, from which it has been selected, to come there. It happens same with CCK fields when i expose them it shows Content: Field Name. What can be done to remove Content from that also. It's somewhat urgent as working on a client project. -- Thanks & Regards, Gaurav Khambhala DeepRoot Linux Pvt Ltd http://www.deeproot.in, +91.80.40890000 From earnie at users.sourceforge.net Thu Feb 19 12:32:29 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Thu, 19 Feb 2009 07:32:29 -0500 Subject: [support] Can't uninstall imagecache In-Reply-To: <499C97E6.3070100@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> <20090218085822.d61w6gisfrc4888w@mail.progw.org> <499C97E6.3070100@cooperq.com> Message-ID: <20090219073229.yu0wjgrhkfq8gooo@mail.progw.org> Quoting cooper Quintin : > Thanks, I will try this. It's weird that it would be reading from the > wrong directory though. Is the modules directory cached in drupal > somewhere or something? I find it very odd that it would ever read from > a different webroot. Yes, the system table contains the paths to modules. If you've copied the DB from one site to another then the you'll likely have the wrong paths to all modules. -- 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 cog.rusty at gmail.com Thu Feb 19 12:55:01 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Thu, 19 Feb 2009 14:55:01 +0200 Subject: [support] Can't uninstall imagecache In-Reply-To: <20090219073229.yu0wjgrhkfq8gooo@mail.progw.org> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> <20090218085822.d61w6gisfrc4888w@mail.progw.org> <499C97E6.3070100@cooperq.com> <20090219073229.yu0wjgrhkfq8gooo@mail.progw.org> Message-ID: On Thu, Feb 19, 2009 at 2:32 PM, Earnie Boyd wrote: > Quoting cooper Quintin : > >> Thanks, I will try this. It's weird that it would be reading from the >> wrong directory though. Is the modules directory cached in drupal >> somewhere or something? I find it very odd that it would ever read from >> a different webroot. > > Yes, the system table contains the paths to modules. If you've copied > the DB from one site to another then the you'll likely have the wrong > paths to all modules. ... which normally are automatically updated in the database whenever you visit the admin/build/modules page. > -- > 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 steev at initsix.co.uk Thu Feb 19 13:51:17 2009 From: steev at initsix.co.uk (Steve Power) Date: Thu, 19 Feb 2009 13:51:17 +0000 Subject: [support] caching database credentials Message-ID: <651c6d110902190551k3a678812p309b6e8f22fa2e3f@mail.gmail.com> Hi I have an odd issue which i hope someone can help resolve. In test my sites were pointing at one db server and now they are on a host where they are pointing at a db on localhost. the sites work fine for adding/viewing content etc (for the last 5 days), but when i come to change the theme, or i change a users role, i get a screen saying that the site could not connect to the OLD database. I have checked settings.php (im using multisites, have grepped everything). im assuming this is cached in the db somewhere, but wondered if there was a function to clean out the db cache (have used empty cache many times, and am running with cache disabled) before i start deleting stuff randomly... any help appreciated. -- -- -- Steve Power Principal Consultant Mobile: +44 (0) 7747 027 243 Initsix Technology and Media -- "So Linux is bulletproof? No. Bulletproof is one of the last stages of drunkenness, not a state of security" http://www.linux.com/feature/60208 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090219/131c6d94/attachment.htm From hovercrafter at earthlink.net Thu Feb 19 14:34:36 2009 From: hovercrafter at earthlink.net (Jamie Holly) Date: Thu, 19 Feb 2009 09:34:36 -0500 Subject: [support] caching database credentials In-Reply-To: <651c6d110902190551k3a678812p309b6e8f22fa2e3f@mail.gmail.com> References: <651c6d110902190551k3a678812p309b6e8f22fa2e3f@mail.gmail.com> Message-ID: <499D6DFC.6070501@earthlink.net> Admin->Site Configuration->Performance then click the clear cache button. You can also truncate all the cache_ tables in your database. Jamie Holly Steve Power wrote: > Hi > > I have an odd issue which i hope someone can help resolve. In test my > sites were pointing at one db server and now they are on a host where > they are pointing at a db on localhost. the sites work fine for > adding/viewing content etc (for the last 5 days), but when i come to > change the theme, or i change a users role, i get a screen saying that > the site could not connect to the OLD database. I have checked > settings.php (im using multisites, have grepped everything). > > im assuming this is cached in the db somewhere, but wondered if there > was a function to clean out the db cache (have used empty cache many > times, and am running with cache disabled) before i start deleting > stuff randomly... > > any help appreciated. > > -- > -- > -- > Steve Power > Principal Consultant > Mobile: +44 (0) 7747 027 243 > Initsix Technology and Media > -- > "So Linux is bulletproof? No. Bulletproof is one of the last stages of > drunkenness, not a state of security" http://www.linux.com/feature/60208 From daniel.carrera at theingots.org Thu Feb 19 15:20:09 2009 From: daniel.carrera at theingots.org (Daniel Carrera) Date: Thu, 19 Feb 2009 16:20:09 +0100 Subject: [support] TinyMCE incompatible with i18n module. Message-ID: <499D78A9.7010508@theingots.org> Hello, I just installed the i18n module on Drupal 5: http://drupal.org/project/i18n It works great, except for the fact that it made TinyMCE disappear. That is to say, when you go edit a page the "rich text editor" link is gone and if you have "rich text editor" enabled by default, you still get the plain HTML (pure text) editor. It's as if TinyMCE becomes disabled. This is a big doodle for me. My users want a "rich text editor" and I need to provide a convenient way to translate content. Does anyone have any idea why the two modules would not like each other? Does anyone have any suggestions for me? Thanks for the help. Daniel. From net at twoedged.org Thu Feb 19 18:47:43 2009 From: net at twoedged.org (John Fletcher) Date: Thu, 19 Feb 2009 19:47:43 +0100 Subject: [support] TinyMCE incompatible with i18n module. In-Reply-To: <499D78A9.7010508@theingots.org> References: <499D78A9.7010508@theingots.org> Message-ID: <002f01c992c2$98599c10$c90cd430$@org> Sorry can't help with TinyMCE. It worked for me with i18n in the past. In any case it's my opinion that FCKEditor has overtaken it and is a superior editor and additionally I get the feeling that community belief is starting to go that way too (OK, some might disagree and I'm not going to argue about it because it's a preference issue). Bottom line - if you don't get TinyMCE going then try FCK. Regards, John Fletcher Salt Websites Internationalised Web Development http://www.saltwebsites.com/ -----Original Message----- From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Daniel Carrera Sent: Thursday, 19 February 2009 4:20 PM To: support at drupal.org Subject: [support] TinyMCE incompatible with i18n module. Hello, I just installed the i18n module on Drupal 5: http://drupal.org/project/i18n It works great, except for the fact that it made TinyMCE disappear. That is to say, when you go edit a page the "rich text editor" link is gone and if you have "rich text editor" enabled by default, you still get the plain HTML (pure text) editor. It's as if TinyMCE becomes disabled. This is a big doodle for me. My users want a "rich text editor" and I need to provide a convenient way to translate content. Does anyone have any idea why the two modules would not like each other? Does anyone have any suggestions for me? Thanks for the help. Daniel. -- [ Drupal support list | http://lists.drupal.org/ ] From daniel.carrera at theingots.org Thu Feb 19 20:24:53 2009 From: daniel.carrera at theingots.org (Daniel Carrera) Date: Thu, 19 Feb 2009 21:24:53 +0100 Subject: [support] TinyMCE incompatible with i18n module. In-Reply-To: <002f01c992c2$98599c10$c90cd430$@org> References: <499D78A9.7010508@theingots.org> <002f01c992c2$98599c10$c90cd430$@org> Message-ID: <499DC015.5080702@theingots.org> FCKEditor works great. Thanks! It's a very nice HTML editor. I can't say I miss anything from TinyMCE. Cheers, Daniel. John Fletcher wrote: > Sorry can't help with TinyMCE. It worked for me with i18n in the past. > > In any case it's my opinion that FCKEditor has overtaken it and is a > superior editor and additionally I get the feeling that community belief is > starting to go that way too (OK, some might disagree and I'm not going to > argue about it because it's a preference issue). Bottom line - if you don't > get TinyMCE going then try FCK. > > Regards, > John Fletcher > > Salt Websites Internationalised Web Development > http://www.saltwebsites.com/ > > > -----Original Message----- > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Daniel Carrera > Sent: Thursday, 19 February 2009 4:20 PM > To: support at drupal.org > Subject: [support] TinyMCE incompatible with i18n module. > > Hello, > > I just installed the i18n module on Drupal 5: > > http://drupal.org/project/i18n > > It works great, except for the fact that it made TinyMCE disappear. That > is to say, when you go edit a page the "rich text editor" link is gone > and if you have "rich text editor" enabled by default, you still get the > plain HTML (pure text) editor. It's as if TinyMCE becomes disabled. > > This is a big doodle for me. My users want a "rich text editor" and I > need to provide a convenient way to translate content. Does anyone have > any idea why the two modules would not like each other? Does anyone have > any suggestions for me? > > Thanks for the help. > Daniel. From cooperq at cooperq.com Fri Feb 20 01:44:11 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Thu, 19 Feb 2009 17:44:11 -0800 Subject: [support] Can't uninstall imagecache In-Reply-To: References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> <20090218085822.d61w6gisfrc4888w@mail.progw.org> <499C97E6.3070100@cooperq.com> <20090219073229.yu0wjgrhkfq8gooo@mail.progw.org> Message-ID: <499E0AEB.2010709@cooperq.com> I thought about this and checked it out in the database. The database only holds relative paths, i.e. modules/taxonomy/taxonomy.module so it can't be the wrong absolute path in the system databse thats causing this problem. I have a new problem now too though, I tried to create a symlink to the modules directory like one user suggested, I put the symlink outside of the webroot, this didn't work out too well for me, so I moved them back, but now when I go to sites/build/modules it changes the file path in the database to point to modules/modules/taxonomy/taxonomy.module (this is the relative path of where the symlink was). I can import a clean copy of the database, (where the file pointer is at modules/taxonomy/taxonomy.module) but when I visit admin/build/modules again, it changes back to modules/modules/taxonomy.module. Cog Rusty wrote: > On Thu, Feb 19, 2009 at 2:32 PM, Earnie Boyd > wrote: > >> Quoting cooper Quintin : >> >> >>> Thanks, I will try this. It's weird that it would be reading from the >>> wrong directory though. Is the modules directory cached in drupal >>> somewhere or something? I find it very odd that it would ever read from >>> a different webroot. >>> >> Yes, the system table contains the paths to modules. If you've copied >> the DB from one site to another then the you'll likely have the wrong >> paths to all modules. >> > > > ... which normally are automatically updated in the database whenever > you visit the admin/build/modules page. > > > > >> -- >> 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/ ] >> >> -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From cooperq at cooperq.com Fri Feb 20 03:52:58 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Thu, 19 Feb 2009 19:52:58 -0800 Subject: [support] Can't uninstall imagecache In-Reply-To: <499E0AEB.2010709@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> <20090218085822.d61w6gisfrc4888w@mail.progw.org> <499C97E6.3070100@cooperq.com> <20090219073229.yu0wjgrhkfq8gooo@mail.progw.org> <499E0AEB.2010709@cooperq.com> Message-ID: <499E291A.4080108@cooperq.com> Also, just to note, I have made sure that all of the cache tables are cleared out. cooper Quintin wrote: > I thought about this and checked it out in the database. The database > only holds relative paths, i.e. modules/taxonomy/taxonomy.module so it > can't be the wrong absolute path in the system databse thats causing > this problem. > > I have a new problem now too though, I tried to create a symlink to the > modules directory like one user suggested, I put the symlink outside of > the webroot, this didn't work out too well for me, so I moved them back, > but now when I go to sites/build/modules it changes the file path in the > database to point to modules/modules/taxonomy/taxonomy.module (this is > the relative path of where the symlink was). I can import a clean copy > of the database, (where the file pointer is at > modules/taxonomy/taxonomy.module) but when I visit admin/build/modules > again, it changes back to modules/modules/taxonomy.module. > Cog Rusty wrote: > >> On Thu, Feb 19, 2009 at 2:32 PM, Earnie Boyd >> wrote: >> >> >>> Quoting cooper Quintin : >>> >>> >>> >>>> Thanks, I will try this. It's weird that it would be reading from the >>>> wrong directory though. Is the modules directory cached in drupal >>>> somewhere or something? I find it very odd that it would ever read from >>>> a different webroot. >>>> >>>> >>> Yes, the system table contains the paths to modules. If you've copied >>> the DB from one site to another then the you'll likely have the wrong >>> paths to all modules. >>> >>> >> ... which normally are automatically updated in the database whenever >> you visit the admin/build/modules page. >> >> >> >> >> >>> -- >>> 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/ ] >>> >>> >>> > > > -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From cooperq at cooperq.com Fri Feb 20 06:18:22 2009 From: cooperq at cooperq.com (cooper Quintin) Date: Thu, 19 Feb 2009 22:18:22 -0800 Subject: [support] Can't uninstall imagecache ***FIXED*** In-Reply-To: <499E291A.4080108@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> <20090218085822.d61w6gisfrc4888w@mail.progw.org> <499C97E6.3070100@cooperq.com> <20090219073229.yu0wjgrhkfq8gooo@mail.progw.org> <499E0AEB.2010709@cooperq.com> <499E291A.4080108@cooperq.com> Message-ID: <499E4B2E.50202@cooperq.com> I have solved this problem, (and I feel a little stupid). The problem was that I had the securepages module enabled. This was forcing https for all admin pages. Unfortunately I had the https webroot set up as the same webroot for all the sites. So in a word, I misconfigured https. Once I set up https correctly, everything fell into place. Thanks everyone for your help, and I'm sorry I didn't more thoroughly check things out on my end first. cooper Quintin wrote: > Also, just to note, I have made sure that all of the cache tables are > cleared out. > cooper Quintin wrote: > >> I thought about this and checked it out in the database. The database >> only holds relative paths, i.e. modules/taxonomy/taxonomy.module so it >> can't be the wrong absolute path in the system databse thats causing >> this problem. >> >> I have a new problem now too though, I tried to create a symlink to the >> modules directory like one user suggested, I put the symlink outside of >> the webroot, this didn't work out too well for me, so I moved them back, >> but now when I go to sites/build/modules it changes the file path in the >> database to point to modules/modules/taxonomy/taxonomy.module (this is >> the relative path of where the symlink was). I can import a clean copy >> of the database, (where the file pointer is at >> modules/taxonomy/taxonomy.module) but when I visit admin/build/modules >> again, it changes back to modules/modules/taxonomy.module. >> Cog Rusty wrote: >> >> >>> On Thu, Feb 19, 2009 at 2:32 PM, Earnie Boyd >>> wrote: >>> >>> >>> >>>> Quoting cooper Quintin : >>>> >>>> >>>> >>>> >>>>> Thanks, I will try this. It's weird that it would be reading from the >>>>> wrong directory though. Is the modules directory cached in drupal >>>>> somewhere or something? I find it very odd that it would ever read from >>>>> a different webroot. >>>>> >>>>> >>>>> >>>> Yes, the system table contains the paths to modules. If you've copied >>>> the DB from one site to another then the you'll likely have the wrong >>>> paths to all modules. >>>> >>>> >>>> >>> ... which normally are automatically updated in the database whenever >>> you visit the admin/build/modules page. >>> >>> >>> >>> >>> >>> >>>> -- >>>> 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/ ] >>>> >>>> >>>> >>>> >> >> > > > -- Cooper Quintin Freelance Programmer, Indymedia Journalist http://CooperQ.com (510) 827-5382 From admin at gkomninos.com Fri Feb 20 14:24:35 2009 From: admin at gkomninos.com (Giorgos Komninos) Date: Fri, 20 Feb 2009 16:24:35 +0200 Subject: [support] Openid module problem Message-ID: <1235139875.29290.7.camel@giorgos-laptop> Hello, the website i am trying to develop is www.homies.gr/d5. I have installed the openid module but when i click on login with openid it just shows the button login but not the form which i have to put the openid username. Thanks in advance -- ________________________________________________________________________ 01000111 01101001 01101111 01110010 01100111 01101111 01110011 01001011 01101111 01101101 01101110 01101001 01101110 01101111 01110011 www.gkomninos.com From admin at gkomninos.com Fri Feb 20 14:28:28 2009 From: admin at gkomninos.com (Giorgos Komninos) Date: Fri, 20 Feb 2009 16:28:28 +0200 Subject: [support] Can't uninstall imagecache ***FIXED*** In-Reply-To: <499E4B2E.50202@cooperq.com> References: <49961E41.2080200@cooperq.com> <51a9b8330902132345j55dd1a3ei4bc7d124a552f0f2@mail.gmail.com> <4999052D.3050502@cooperq.com> <499B59C1.8020404@cooperq.com> <499B7886.5080807@io.com> <499BA83A.80402@cooperq.com> <20090218085822.d61w6gisfrc4888w@mail.progw.org> <499C97E6.3070100@cooperq.com> <20090219073229.yu0wjgrhkfq8gooo@mail.progw.org> <499E0AEB.2010709@cooperq.com> <499E291A.4080108@cooperq.com> <499E4B2E.50202@cooperq.com> Message-ID: <1235140108.29290.8.camel@giorgos-laptop> ???? 19-02-2009, ????? ???, ??? ??? 22:18 -0800, ?/? cooper Quintin ??????: > I have solved this problem, (and I feel a little stupid). The problem > was that I had the securepages module enabled. This was forcing https > for all admin pages. Unfortunately I had the https webroot set up as > the same webroot for all the sites. So in a word, I misconfigured > https. Once I set up https correctly, everything fell into place. > Thanks everyone for your help, and I'm sorry I didn't more thoroughly > check things out on my end first. > > cooper Quintin wrote: > > Also, just to note, I have made sure that all of the cache tables are > > cleared out. > > cooper Quintin wrote: > > > >> I thought about this and checked it out in the database. The database > >> only holds relative paths, i.e. modules/taxonomy/taxonomy.module so it > >> can't be the wrong absolute path in the system databse thats causing > >> this problem. > >> > >> I have a new problem now too though, I tried to create a symlink to the > >> modules directory like one user suggested, I put the symlink outside of > >> the webroot, this didn't work out too well for me, so I moved them back, > >> but now when I go to sites/build/modules it changes the file path in the > >> database to point to modules/modules/taxonomy/taxonomy.module (this is > >> the relative path of where the symlink was). I can import a clean copy > >> of the database, (where the file pointer is at > >> modules/taxonomy/taxonomy.module) but when I visit admin/build/modules > >> again, it changes back to modules/modules/taxonomy.module. > >> Cog Rusty wrote: > >> > >> > >>> On Thu, Feb 19, 2009 at 2:32 PM, Earnie Boyd > >>> wrote: > >>> > >>> > >>> > >>>> Quoting cooper Quintin : > >>>> > >>>> > >>>> > >>>> > >>>>> Thanks, I will try this. It's weird that it would be reading from the > >>>>> wrong directory though. Is the modules directory cached in drupal > >>>>> somewhere or something? I find it very odd that it would ever read from > >>>>> a different webroot. > >>>>> > >>>>> > >>>>> > >>>> Yes, the system table contains the paths to modules. If you've copied > >>>> the DB from one site to another then the you'll likely have the wrong > >>>> paths to all modules. > >>>> > >>>> > >>>> > >>> ... which normally are automatically updated in the database whenever > >>> you visit the admin/build/modules page. > >>> > >>> > >>> > >>> > >>> > >>> > >>>> -- > >>>> 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/ ] > >>>> > >>>> > >>>> > >>>> > >> > >> > > > > > > > > > -- > Cooper Quintin > Freelance Programmer, Indymedia Journalist > http://CooperQ.com > (510) 827-5382 > . -- ________________________________________________________________________ 01000111 01101001 01101111 01110010 01100111 01101111 01110011 01001011 01101111 01101101 01101110 01101001 01101110 01101111 01110011 www.gkomninos.com From cxjohnson at gmail.com Fri Feb 20 15:35:05 2009 From: cxjohnson at gmail.com (Chris Johnson) Date: Fri, 20 Feb 2009 09:35:05 -0600 Subject: [support] Openid module problem In-Reply-To: <1235139875.29290.7.camel@giorgos-laptop> References: <1235139875.29290.7.camel@giorgos-laptop> Message-ID: <9ea8d6030902200735r78935fa1j78614a6e8af699f7@mail.gmail.com> The text input area is there in the HTML for the page, so you have some sort of CSS or JavaScript problem which is causing it to be obscured. ..chris On Fri, Feb 20, 2009 at 8:24 AM, Giorgos Komninos wrote: > Hello, > the website i am trying to develop is www.homies.gr/d5. > I have installed the openid module but when i click on login with openid > it just shows the button login but not the form which i have to put the > openid username. From enboig at gmail.com Fri Feb 20 16:23:10 2009 From: enboig at gmail.com (=?ISO-8859-1?Q?Llu=EDs?=) Date: Fri, 20 Feb 2009 17:23:10 +0100 Subject: [support] regenerate users Message-ID: <45a29f450902200823pd7e1d61p13175d8c03ac3a58@mail.gmail.com> I have a multisite sharing users and profiles across different databases using views, etc..... My problem is that user1 can see all users profiles but some users with the correct permissions cannot, I recive a "not found" error message. This is solved if user1 open the user profile and save it (without doing any change). I has trying to do a script to "update" all users, just using "user_load" and user_save" on every user on the site, but it don't work. Any idea of how to do this? I am sure my script isn't the best way, but as long as it works, it is a "one time" solution. Thanks %d ORDER BY uid",$_GET['uid']." LIMIT 1,1")); if ($actual>0) { $usuari=user_load(array("uid" => $actual)); $usuari=user_save($usuari); } ?> 0 ? " onLoad=\"setTimeout('delayer()', 500)\"" : "") ?>> 0) echo "doing...".$actual; else echo "Done"; ?> -- *Si creus que l'educaci? ?s cara, prova la ignor?ncia. *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. *Abans d'imprimir aquest missatge, pensa en el medi ambient. From admin at gkomninos.com Fri Feb 20 16:33:00 2009 From: admin at gkomninos.com (Giorgos Komninos) Date: Fri, 20 Feb 2009 18:33:00 +0200 Subject: [support] Openid module problem In-Reply-To: <9ea8d6030902200735r78935fa1j78614a6e8af699f7@mail.gmail.com> References: <1235139875.29290.7.camel@giorgos-laptop> <9ea8d6030902200735r78935fa1j78614a6e8af699f7@mail.gmail.com> Message-ID: <1235147580.6820.1.camel@giorgos-laptop> > > On Fri, Feb 20, 2009 at 8:24 AM, Giorgos Komninos wrote: > > Hello, > > the website i am trying to develop is www.homies.gr/d5. > > I have installed the openid module but when i click on login with openid > > it just shows the button login but not the form which i have to put the > > openid username. > > ???? 20-02-2009, ????? ???, ??? ??? 09:35 -0600, ?/? Chris Johnson > > ??????: > > The text input area is there in the HTML for the page, so you have > > some sort of CSS or JavaScript problem which is causing it to be > > obscured. > > > > ..chris Cris thanks for the answer but can you be more specific?what it could be happening and how can i check it? -- ________________________________________________________________________ 01000111 01101001 01101111 01110010 01100111 01101111 01110011 01001011 01101111 01101101 01101110 01101001 01101110 01101111 01110011 www.gkomninos.com From tiagofassoni at gmail.com Sat Feb 21 06:26:19 2009 From: tiagofassoni at gmail.com (Tiago Fassoni A. A. Leite) Date: Sat, 21 Feb 2009 03:26:19 -0300 Subject: [support] One OG per user Message-ID: I am making a site in which I want to limit the creation of only one OG by the same user. Is there any easy way of doing that? Is there ANY way of doing that? Thanks for the help, Tiago -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/39931212/attachment.htm From towfiq.islam at yahoo.com Sat Feb 21 13:54:39 2009 From: towfiq.islam at yahoo.com (Mohammad Towfiqul Islam) Date: Sat, 21 Feb 2009 05:54:39 -0800 (PST) Subject: [support] menu item issues Message-ID: <602046.59238.qm@web57208.mail.re3.yahoo.com> Hi guys, ? ? I am a newbie. Need some instruction. I have a five primary liks and ? ? each links has several childs (say 8/9). What I want, when I will click ? ? primary links suppose "Home" it will open a specific page linked to Home ? ? with its childs. It should not show other primary links child in a page ? ? linked to "Home". Like this when I will click other primary links it ? ? will open that primary links page with childs. What I mean every primary ? ? links child should be seperated when i click links. It should not show ? ? all. ? ? How can I achieve this? Any help will be appreciated. ? ? Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/644b492d/attachment-0001.htm From usufruct at gmail.com Sat Feb 21 15:47:14 2009 From: usufruct at gmail.com (Michael Anderson) Date: Sat, 21 Feb 2009 09:47:14 -0600 Subject: [support] help with Drupal 6 theme inheritance Message-ID: I'm hoping to get some help with what should be an easy question: how do I inherit a core theme? After looking at the docs it seemed that by creating a .info file and setting the base theme I would have inheritance set up. I tried that with this: name = development - testing theme based on Garland core = 6.x base theme = garland After activating this theme I lost all styles. The base theme directive seems to do nothing. My theme is in sites/all/themes/garland-dev; garland is in themes/garland. Please advise. -- La perfection est atteinte non quand il ne reste rien ? ajouter, mais quand il ne reste rien ? enlever. ? Antoine de Saint-Exup?ry -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/9e7c9a92/attachment.htm From sivaji2009 at gmail.com Sat Feb 21 16:01:48 2009 From: sivaji2009 at gmail.com (sivaji j.g) Date: Sat, 21 Feb 2009 21:31:48 +0530 Subject: [support] help with Drupal 6 theme inheritance In-Reply-To: References: Message-ID: > > > After activating this theme I lost all styles. The base theme directive > seems to do nothing. My theme is in sites/all/themes/garland-dev; garland is > in themes/garland. Please advise. Hello Michael Anderson Use zen theme. You cant inherit all the themes especially core themes like garland because its a default theme used for installation and upgrade process. Read this http://www.nabble.com/Theme-inheritance-broken-td21690633.html http://drupal.org/node/193318 http://drupal.org/node/171194 -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/d026212d/attachment.htm From mdshrops at shropnet.net Sat Feb 21 16:02:23 2009 From: mdshrops at shropnet.net (Mark Shropshire) Date: Sat, 21 Feb 2009 11:02:23 -0500 Subject: [support] help with Drupal 6 theme inheritance In-Reply-To: References: Message-ID: <6932133A-0C45-41EB-A02F-E92AC4F13290@shropnet.net> Michael, This is what I have been using to subtheme the Blueprint theme: name = MySubThemName base theme = blueprint description = MySubThemeName Blueprint subtheme. version = VERSION core = 6.x engine = phptemplate Also, make sure that the base theme is enabled. It seems that Drupal needs the base them enabled to work with it. Thanks, Mark On Feb 21, 2009, at 10:47 AM, Michael Anderson wrote: > I'm hoping to get some help with what should be an easy question: > how do I inherit a core theme? > > After looking at the docs it seemed that by creating a .info file > and setting the base theme I would have inheritance set up. I tried > that with this: > > name = development - testing theme based on Garland > core = 6.x > base theme = garland > > After activating this theme I lost all styles. The base theme > directive seems to do nothing. My theme is in sites/all/themes/ > garland-dev; garland is in themes/garland. Please advise. > > -- > La perfection est atteinte non quand il ne reste rien ? ajouter, > mais quand il ne reste rien ? enlever. > ? Antoine de Saint-Exup?ry > -- > [ Drupal support list | http://lists.drupal.org/ ] -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2425 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20090221/e8ed8938/attachment.bin From usufruct at gmail.com Sat Feb 21 18:12:19 2009 From: usufruct at gmail.com (Michael Anderson) Date: Sat, 21 Feb 2009 12:12:19 -0600 Subject: [support] inserting fields into the login form in the correct order Message-ID: Hello everyone, I'm trying to add a few fields to the Drupal login form. Using hook_form_alter I was able to change the login form to display a new field, but the new field appears at the bottom of the form. Here is the code I used to change the form: $form[newfield] = Array ( '#type' => 'textfield', '#title' => 'newfield_title', '#maxlength' => 60, '#size' => 15, '#required' => 1, ); I get my new textfield, but I would like to place it after (below) the password field. It is not apparent to me how the default layout is generated. When I examine the $form variable I don't see anything that would indicate an ordering of elements. Is this something that has to be done via .tpl file in theme? I would rather avoid that because then the login form becomes disordered again if I change themes. Please advise. -- La perfection est atteinte non quand il ne reste rien ? ajouter, mais quand il ne reste rien ? enlever. ? Antoine de Saint-Exup?ry -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/650ed81d/attachment.htm From sivaji2009 at gmail.com Sat Feb 21 18:16:30 2009 From: sivaji2009 at gmail.com (sivaji j.g) Date: Sat, 21 Feb 2009 23:46:30 +0530 Subject: [support] inserting fields into the login form in the correct order In-Reply-To: References: Message-ID: On Sat, Feb 21, 2009 at 11:42 PM, Michael Anderson wrote: > Hello everyone, > > I'm trying to add a few fields to the Drupal login form. You can do this using profile a core optional module. [ Drupal support list | http://lists.drupal.org/ ] > -- Thanks a lot ----------------------------------------- http://ubuntuslave.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/a5705a29/attachment.htm From killshot91 at comcast.net Sat Feb 21 18:16:39 2009 From: killshot91 at comcast.net (Steve Edwards) Date: Sat, 21 Feb 2009 10:16:39 -0800 Subject: [support] inserting fields into the login form in the correct order In-Reply-To: References: Message-ID: <49A04507.7020204@comcast.net> Use the #weight property to assign order. http://api.drupal.org/api/file/developer/topics/forms_api_reference.html/5#weightval Steve Michael Anderson wrote: > Hello everyone, > > I'm trying to add a few fields to the Drupal login form. Using > hook_form_alter I was able to change the login form to display a new > field, but the new field appears at the bottom of the form. Here is the > code I used to change the form: > > $form[newfield] = Array > ( > '#type' => 'textfield', > '#title' => 'newfield_title', > '#maxlength' => 60, > '#size' => 15, > '#required' => 1, > ); > > I get my new textfield, but I would like to place it after (below) the > password field. > > It is not apparent to me how the default layout is generated. When I > examine the $form variable I don't see anything that would indicate an > ordering of elements. Is this something that has to be done via .tpl > file in theme? I would rather avoid that because then the login form > becomes disordered again if I change themes. Please advise. > > -- > La perfection est atteinte non quand il ne reste rien ? ajouter, mais > quand il ne reste rien ? enlever. > ? Antoine de Saint-Exup?ry > From galooph at gmail.com Sat Feb 21 18:16:54 2009 From: galooph at gmail.com (Dan Smith) Date: Sat, 21 Feb 2009 18:16:54 +0000 Subject: [support] inserting fields into the login form in the correct order In-Reply-To: References: Message-ID: 2009/2/21 Michael Anderson : > It is not apparent to me how the default layout is generated. When I examine > the $form variable I don't see anything that would indicate an ordering of > elements. Is this something that has to be done via .tpl file in theme? I > would rather avoid that because then the login form becomes disordered again > if I change themes. Please advise. You need to look at 'weight' - Dan From hans.rossel at koba.be Sat Feb 21 19:59:35 2009 From: hans.rossel at koba.be (KOBA | Hans Rossel) Date: Sat, 21 Feb 2009 20:59:35 +0100 Subject: [support] menu item issues In-Reply-To: <602046.59238.qm@web57208.mail.re3.yahoo.com> References: <602046.59238.qm@web57208.mail.re3.yahoo.com> Message-ID: <51a9b8330902211159l103348c8u68ac431141b01d87@mail.gmail.com> In menu settings tab set secondary links as primary links. Then secondary links will show the children of every primary link. If the children have also subitems you will need an extra module or code to show them. A good module for showing third, fourth and lower levels of primary links is menu block. Good luck, Hans 2009/2/21, Mohammad Towfiqul Islam : > Hi guys, > I am a newbie. Need some instruction. I have a five primary liks and > each links has several childs (say 8/9). What I want, when I will click > primary links suppose "Home" it will open a specific page linked to Home > with its childs. It should not show other primary links child in a page > linked to "Home". Like this when I will click other primary links it > will open that primary links page with childs. What I mean every primary > links child should be seperated when i click links. It should not show > all. > How can I achieve this? Any help will be appreciated. > Thanks in advance. > > > > -- Verzonden vanaf mijn mobiele apparaat Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be From hans.rossel at koba.be Sat Feb 21 20:22:10 2009 From: hans.rossel at koba.be (KOBA | Hans Rossel) Date: Sat, 21 Feb 2009 21:22:10 +0100 Subject: [support] help with Drupal 6 theme inheritance In-Reply-To: References: Message-ID: <51a9b8330902211222l8fae994vcc3b72a27eec5a23@mail.gmail.com> Did you clear cache (in admin settings performance)? Its certainly needed when you create or change .info files. If subtheming a core theme would be the problem (like the first answer says) you could just copy garland to sites/all/themes and call it garlandcopy and replace garland with garlandcopy for the .info and template.php files. Also check out how Minelli is set u, its a core subtheme of garland. 2009/2/21, Michael Anderson : > I'm hoping to get some help with what should be an easy question: how do I > inherit a core theme? > > After looking at the docs it seemed that by creating a .info file and > setting the base theme I would have inheritance set up. I tried that with > this: > > name = development - testing theme based on Garland > core = 6.x > base theme = garland > > After activating this theme I lost all styles. The base theme directive > seems to do nothing. My theme is in sites/all/themes/garland-dev; garland is > in themes/garland. Please advise. > > -- > La perfection est atteinte non quand il ne reste rien ? ajouter, mais quand > il ne reste rien ? enlever. > ? Antoine de Saint-Exup?ry > -- Verzonden vanaf mijn mobiele apparaat Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be From towfiq.islam at yahoo.com Sun Feb 22 04:20:22 2009 From: towfiq.islam at yahoo.com (Mohammad Towfiqul Islam) Date: Sat, 21 Feb 2009 20:20:22 -0800 (PST) Subject: [support] menu item issues In-Reply-To: <51a9b8330902211159l103348c8u68ac431141b01d87@mail.gmail.com> Message-ID: <925267.4531.qm@web57201.mail.re3.yahoo.com> Thanks for your reply. ? What I want is like this: ? http://www.hbs.edu/mba/academics/ ? Here primary links are top and subitems of primary links are side of the page. Please see. When you click the link the sub items of that primary links?are shown in the side of web page. Not all the time all sub items of primary links are not showing. ? I want like this. ? But i can develop this menu items in Drupal too but problem is i need to assign page in the block "Show block on specific pages: " then this primary link item show in sepcfic page and other primary link item wont show. The problem is i need to assign the page every time "Show block on specific pages: " which is irritable when you create link inside the page at that time when you click link the sub item disapper or showing all sub items. ? Thanks again and waiting for reply. --- On Sat, 2/21/09, KOBA | Hans Rossel wrote: From: KOBA | Hans Rossel Subject: Re: [support] menu item issues To: support at drupal.org, towfiq.islam at yahoo.com Date: Saturday, February 21, 2009, 2:59 PM In menu settings tab set secondary links as primary links. Then secondary links will show the children of every primary link. If the children have also subitems you will need an extra module or code to show them. A good module for showing third, fourth and lower levels of primary links is menu block. Good luck, Hans 2009/2/21, Mohammad Towfiqul Islam : > Hi guys, > I am a newbie. Need some instruction. I have a five primary liks and > each links has several childs (say 8/9). What I want, when I will click > primary links suppose "Home" it will open a specific page linked to Home > with its childs. It should not show other primary links child in a page > linked to "Home". Like this when I will click other primary links it > will open that primary links page with childs. What I mean every primary > links child should be seperated when i click links. It should not show > all. > How can I achieve this? Any help will be appreciated. > Thanks in advance. > > > > -- Verzonden vanaf mijn mobiele apparaat Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/39b50452/attachment.htm From bob at morsemedia.net Sun Feb 22 05:13:22 2009 From: bob at morsemedia.net (Bob Morse) Date: Sat, 21 Feb 2009 21:13:22 -0800 Subject: [support] menu item issues In-Reply-To: <925267.4531.qm@web57201.mail.re3.yahoo.com> References: <925267.4531.qm@web57201.mail.re3.yahoo.com> Message-ID: <49A0DEF2.1070606@morsemedia.net> I'm not sure I understand your question. But I think what you are saying is you want specific submenus to appear in certain sections of your site. Is that correct? One simple way is to create a path structure such that each section of your site is defined and then each page under that is has a path that follows. For example, if you have a section of your site that is academics. The top page in that section has the path: academics. Then each sub-page has the path academics/subpage. Now you have a sort of psuedo directory structure. So in your block for a menu that is to appear on every page in that section you go to "Show block on specific pages" and check "Show on only the listed pages." Then in the field you put: academics academics/* Then that menu block will appear on every page that has the path academics/whatever. I hope that's the solution you are looking for. Mohammad Towfiqul Islam wrote: > Thanks for your reply. > > What I want is like this: > > http://www.hbs.edu/mba/academics/ > > Here primary links are top and subitems of primary links are side of > the page. Please see. > When you click the link the sub items of that primary links are shown > in the side of web page. Not all the time all sub items of primary > links are not showing. > > I want like this. > > But i can develop this menu items in Drupal too but problem is i need > to assign page in the block "Show block on specific pages: " then this > primary link item show in sepcfic page and other primary link item > wont show. The problem is i need to assign the page every time "Show > block on specific pages: " which is irritable when you create link > inside the page at that time when you click link the sub item disapper > or showing all sub items. > > Thanks again and waiting for reply. > > --- On *Sat, 2/21/09, KOBA | Hans Rossel //* wrote: > > From: KOBA | Hans Rossel > Subject: Re: [support] menu item issues > To: support at drupal.org, towfiq.islam at yahoo.com > Date: Saturday, February 21, 2009, 2:59 PM > > In menu settings tab set secondary links as primary links. Then > secondary links will show the children of every primary link. > > If the children have also subitems you will need an extra module or > code to show them. A good module for showing third, fourth and lower > levels of primary links is menu block. > > Good luck, > > Hans > > 2009/2/21, Mohammad Towfiqul Islam : > > Hi guys, > > I am a newbie. Need some instruction. I have a five primary liks and > > each links has several childs (say 8/9). What I want, when I will > click > > primary links suppose "Home" it will open a specific page > linked to Home > > with its childs. It should not show other primary links child in a > page > > linked to "Home". Like this when I will click other primary > links it > > will open that primary links page with childs. What I mean every > primary > > links child should be seperated when i click links. It should not show > > all. > > How can I achieve this? Any help will be appreciated. > > Thanks in advance. > > > > > > > > > > -- > Verzonden vanaf mijn mobiele apparaat > > Hans Rossel > KOBA Webdevelopment > Kerkstraat 228 > 9050 Gent > 09-334.52.60 > 0472-79.32.16 > www.koba.be > info at koba.be > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090221/cb5f721f/attachment.htm From towfiq.islam at yahoo.com Sun Feb 22 09:50:11 2009 From: towfiq.islam at yahoo.com (Mohammad Towfiqul Islam) Date: Sun, 22 Feb 2009 01:50:11 -0800 (PST) Subject: [support] menu item issues In-Reply-To: <49A0DEF2.1070606@morsemedia.net> Message-ID: <460454.72749.qm@web57205.mail.re3.yahoo.com> Many Thanks Mr. Bob ? I got the solution. ? I appreciate your help. --- On Sun, 2/22/09, Bob Morse wrote: From: Bob Morse Subject: Re: [support] menu item issues To: support at drupal.org, towfiq.islam at yahoo.com Cc: "KOBA | Hans Rossel" Date: Sunday, February 22, 2009, 12:13 AM I'm not sure I understand your question. But I think what you are saying is you want specific submenus to appear in certain sections of your site. Is that correct? One simple way is to create a path structure such that each section of your site is defined and then each page under that is has a path that follows. For example, if you have a section of your site that is academics. The top page in that section has the path: academics. Then each sub-page has the path academics/subpage. Now you have a sort of psuedo directory structure. So in your block for a menu that is to appear on every page in that section you go to "Show block on specific pages" and? check "Show on only the listed pages." Then in the field you put: academics academics/* Then that menu block will appear on every page that has the path academics/whatever. I hope that's the solution you are looking for. Mohammad Towfiqul Islam wrote: Thanks for your reply. ? What I want is like this: ? http://www.hbs.edu/mba/academics/ ? Here primary links are top and subitems of primary links are side of the page. Please see. When you click the link the sub items of that primary links?are shown in the side of web page. Not all the time all sub items of primary links are not showing. ? I want like this. ? But i can develop this menu items in Drupal too but problem is i need to assign page in the block "Show block on specific pages: " then this primary link item show in sepcfic page and other primary link item wont show. The problem is i need to assign the page every time "Show block on specific pages: " which is irritable when you create link inside the page at that time when you click link the sub item disapper or showing all sub items. ? Thanks again and waiting for reply. --- On Sat, 2/21/09, KOBA | Hans Rossel wrote: From: KOBA | Hans Rossel Subject: Re: [support] menu item issues To: support at drupal.org, towfiq.islam at yahoo.com Date: Saturday, February 21, 2009, 2:59 PM In menu settings tab set secondary links as primary links. Then secondary links will show the children of every primary link. If the children have also subitems you will need an extra module or code to show them. A good module for showing third, fourth and lower levels of primary links is menu block. Good luck, Hans 2009/2/21, Mohammad Towfiqul Islam : > Hi guys, > I am a newbie. Need some instruction. I have a five primary liks and > each links has several childs (say 8/9). What I want, when I will click > primary links suppose "Home" it will open a specific page linked to Home > with its childs. It should not show other primary links child in a page > linked to "Home". Like this when I will click other primary links it > will open that primary links page with childs. What I mean every primary > links child should be seperated when i click links. It should not show > all. > How can I achieve this? Any help will be appreciated. > Thanks in advance. > > > > -- Verzonden vanaf mijn mobiele apparaat Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090222/5b485917/attachment-0001.htm From towfiq.islam at yahoo.com Sun Feb 22 09:57:49 2009 From: towfiq.islam at yahoo.com (Mohammad Towfiqul Islam) Date: Sun, 22 Feb 2009 01:57:49 -0800 (PST) Subject: [support] Timeline - Milestones how can I make? In-Reply-To: <49A0DEF2.1070606@morsemedia.net> Message-ID: <901993.82144.qm@web57207.mail.re3.yahoo.com> Dear All, ? I think already some of you browse this site: http://www.recovery.gov/ ? My question is: How can I make "Timeline - Milestones at a Glance" section? (See the wbsite below) ? Is there any module for this? ? Thanks. --- On Sun, 2/22/09, Bob Morse wrote: From: Bob Morse Subject: Re: [support] menu item issues To: support at drupal.org, towfiq.islam at yahoo.com Cc: "KOBA | Hans Rossel" Date: Sunday, February 22, 2009, 12:13 AM I'm not sure I understand your question. But I think what you are saying is you want specific submenus to appear in certain sections of your site. Is that correct? One simple way is to create a path structure such that each section of your site is defined and then each page under that is has a path that follows. For example, if you have a section of your site that is academics. The top page in that section has the path: academics. Then each sub-page has the path academics/subpage. Now you have a sort of psuedo directory structure. So in your block for a menu that is to appear on every page in that section you go to "Show block on specific pages" and? check "Show on only the listed pages." Then in the field you put: academics academics/* Then that menu block will appear on every page that has the path academics/whatever. I hope that's the solution you are looking for. Mohammad Towfiqul Islam wrote: Thanks for your reply. ? What I want is like this: ? http://www.hbs.edu/mba/academics/ ? Here primary links are top and subitems of primary links are side of the page. Please see. When you click the link the sub items of that primary links?are shown in the side of web page. Not all the time all sub items of primary links are not showing. ? I want like this. ? But i can develop this menu items in Drupal too but problem is i need to assign page in the block "Show block on specific pages: " then this primary link item show in sepcfic page and other primary link item wont show. The problem is i need to assign the page every time "Show block on specific pages: " which is irritable when you create link inside the page at that time when you click link the sub item disapper or showing all sub items. ? Thanks again and waiting for reply. --- On Sat, 2/21/09, KOBA | Hans Rossel wrote: From: KOBA | Hans Rossel Subject: Re: [support] menu item issues To: support at drupal.org, towfiq.islam at yahoo.com Date: Saturday, February 21, 2009, 2:59 PM In menu settings tab set secondary links as primary links. Then secondary links will show the children of every primary link. If the children have also subitems you will need an extra module or code to show them. A good module for showing third, fourth and lower levels of primary links is menu block. Good luck, Hans 2009/2/21, Mohammad Towfiqul Islam : > Hi guys, > I am a newbie. Need some instruction. I have a five primary liks and > each links has several childs (say 8/9). What I want, when I will click > primary links suppose "Home" it will open a specific page linked to Home > with its childs. It should not show other primary links child in a page > linked to "Home". Like this when I will click other primary links it > will open that primary links page with childs. What I mean every primary > links child should be seperated when i click links. It should not show > all. > How can I achieve this? Any help will be appreciated. > Thanks in advance. > > > > -- Verzonden vanaf mijn mobiele apparaat Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090222/39b18ec8/attachment.htm From mroswell at gmail.com Sun Feb 22 11:01:06 2009 From: mroswell at gmail.com (Margie Roswell) Date: Sun, 22 Feb 2009 06:01:06 -0500 Subject: [support] Timeline - Milestones how can I make? In-Reply-To: <901993.82144.qm@web57207.mail.re3.yahoo.com> References: <49A0DEF2.1070606@morsemedia.net> <901993.82144.qm@web57207.mail.re3.yahoo.com> Message-ID: See the timeline module. On Sun, Feb 22, 2009 at 4:57 AM, Mohammad Towfiqul Islam wrote: > Dear All, > > I think already some of you browse this site: > http://www.recovery.gov/ > > My question is: How can I make "Timeline - Milestones at a Glance" section? > (See the > wbsite below) > > Is there any module for this? > > Thanks. > > --- On Sun, 2/22/09, Bob Morse wrote: > > From: Bob Morse > Subject: Re: [support] menu item issues > To: support at drupal.org, towfiq.islam at yahoo.com > Cc: "KOBA | Hans Rossel" > Date: Sunday, February 22, 2009, 12:13 AM > > I'm not sure I understand your question. But I think what you are saying is > you want specific submenus to appear in certain sections of your site. Is > that correct? > > One simple way is to create a path structure such that each section of your > site is defined and then each page under that is has a path that follows. > For example, if you have a section of your site that is academics. The top > page in that section has the path: academics. Then each sub-page has the > path academics/subpage. Now you have a sort of psuedo directory structure. > > So in your block for a menu that is to appear on every page in that section > you go to "Show block on specific pages" and check "Show on only the listed > pages." Then in the field you put: > > academics > academics/* > > Then that menu block will appear on every page that has the path > academics/whatever. I hope that's the solution you are looking for. > > Mohammad Towfiqul Islam wrote: > > Thanks for your reply. > > What I want is like this: > > http://www.hbs.edu/mba/academics/ > > Here primary links are top and subitems of primary links are side of the > page. Please see. > When you click the link the sub items of that primary links are shown in the > side of web page. Not all the time all sub items of primary links are not > showing. > > I want like this. > > But i can develop this menu items in Drupal too but problem is i need to > assign page in the block "Show block on specific pages: " then this primary > link item show in sepcfic page and other primary link item wont show. The > problem is i need to assign the page every time "Show block on specific > pages: " which is irritable when you create link inside the page at that > time when you click link the sub item disapper or showing all sub items. > > Thanks again and waiting for reply. > > --- On Sat, 2/21/09, KOBA | Hans Rossel wrote: > > From: KOBA | Hans Rossel > Subject: Re: [support] menu item issues > To: support at drupal.org, towfiq.islam at yahoo.com > Date: Saturday, February 21, 2009, 2:59 PM > > In menu settings tab set secondary links as primary links. Then > secondary links will show the children of every primary link. > > If the children have also subitems you will need an extra module or > code to show them. A good module for showing third, fourth and lower > levels of primary links is menu block. > > Good luck, > > Hans > > 2009/2/21, Mohammad Towfiqul Islam : >> Hi guys, >> I am a newbie. Need some instruction. I have a five primary liks and >> each links has several childs (say 8/9). What I want, when I will > click >> primary links suppose "Home" it will open a specific page > linked to Home >> with its childs. It should not show other primary links child in a > page >> linked to "Home". Like this when I will click other primary > links it >> will open that primary links page with childs. What I mean every > primary >> links child should be seperated when i click links. It should not show >> all. >> How can I achieve this? Any help will be appreciated. >> Thanks in advance. >> >> >> >> > > -- > Verzonden vanaf mijn mobiele apparaat > > Hans Rossel > KOBA Webdevelopment > Kerkstraat 228 > 9050 Gent > 09-334.52.60 > 0472-79.32.16 > www.koba.be > info at koba.be > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From john.callahan at UDel.Edu Sun Feb 22 14:16:24 2009 From: john.callahan at UDel.Edu (John Callahan) Date: Sun, 22 Feb 2009 09:16:24 -0500 Subject: [support] Timeline - Milestones how can I make? In-Reply-To: <901993.82144.qm@web57207.mail.re3.yahoo.com> References: <901993.82144.qm@web57207.mail.re3.yahoo.com> Message-ID: <49A15E38.4070001@udel.edu> Also check out the Exhibit module, whose source code is maintained by the same people who do Timeline. You probably also don't need a module, you should be able to place Timeline javascript/html code directly in the your page somewhere, and you'd read the data through a json file or external feed. The modules help to do things like giving Timeline access to your existing nodes through Views or allowing the code to use drupal variables. They're nice products. - John Mohammad Towfiqul Islam wrote: > Dear All, > > I think already some of you browse this site: > http://www.recovery.gov/ > > My question is: How can I make "Timeline - Milestones at a Glance" > section? (See the > wbsite below) > > Is there any module for this? > > Thanks. > > --- On *Sun, 2/22/09, Bob Morse //* wrote: > > From: Bob Morse > Subject: Re: [support] menu item issues > To: support at drupal.org, towfiq.islam at yahoo.com > Cc: "KOBA | Hans Rossel" > Date: Sunday, February 22, 2009, 12:13 AM > > I'm not sure I understand your question. But I think what you are > saying is you want specific submenus to appear in certain sections > of your site. Is that correct? > > One simple way is to create a path structure such that each > section of your site is defined and then each page under that is > has a path that follows. For example, if you have a section of > your site that is academics. The top page in that section has the > path: academics. Then each sub-page has the path > academics/subpage. Now you have a sort of psuedo directory structure. > > So in your block for a menu that is to appear on every page in > that section you go to "Show block on specific pages" and check > "Show on only the listed pages." Then in the field you put: > > academics > academics/* > > Then that menu block will appear on every page that has the path > academics/whatever. I hope that's the solution you are looking for. > > Mohammad Towfiqul Islam wrote: >> Thanks for your reply. >> >> What I want is like this: >> >> http://www.hbs.edu/mba/academics/ >> >> Here primary links are top and subitems of primary links are side >> of the page. Please see. >> When you click the link the sub items of that primary links are >> shown in the side of web page. Not all the time all sub items of >> primary links are not showing. >> >> I want like this. >> >> But i can develop this menu items in Drupal too but problem is i >> need to assign page in the block "Show block on specific pages: " >> then this primary link item show in sepcfic page and other >> primary link item wont show. The problem is i need to assign the >> page every time "Show block on specific pages: " which is >> irritable when you create link inside the page at that time when >> you click link the sub item disapper or showing all sub items. >> >> Thanks again and waiting for reply. >> >> --- On *Sat, 2/21/09, KOBA | Hans Rossel //* >> wrote: >> >> From: KOBA | Hans Rossel >> Subject: Re: [support] menu item issues >> To: support at drupal.org, towfiq.islam at yahoo.com >> Date: Saturday, February 21, 2009, 2:59 PM >> >> In menu settings tab set secondary links as primary links. Then >> secondary links will show the children of every primary link. >> >> If the children have also subitems you will need an extra module or >> code to show them. A good module for showing third, fourth and lower >> levels of primary links is menu block. >> >> Good luck, >> >> Hans >> >> 2009/2/21, Mohammad Towfiqul Islam : >> > Hi guys, >> > I am a newbie. Need some instruction. I have a five primary liks and >> > each links has several childs (say 8/9). What I want, when I will >> click >> > primary links suppose "Home" it will open a specific page >> linked to Home >> > with its childs. It should not show other primary links child in a >> page >> > linked to "Home". Like this when I will click other primary >> links it >> > will open that primary links page with childs. What I mean every >> primary >> > links child should be seperated when i click links. It should not show >> > all. >> > How can I achieve this? Any help will be appreciated. >> > Thanks in advance. >> > >> > >> > >> > >> >> -- >> Verzonden vanaf mijn mobiele apparaat >> >> Hans Rossel >> KOBA Webdevelopment >> Kerkstraat 228 >> 9050 Gent >> 09-334.52.60 >> 0472-79.32.16 >> www.koba.be >> info at koba.be >> >> >> > > From victorkane at gmail.com Sun Feb 22 14:49:14 2009 From: victorkane at gmail.com (Victor Kane) Date: Sun, 22 Feb 2009 12:49:14 -0200 Subject: [support] Timeline - Milestones how can I make? In-Reply-To: <49A15E38.4070001@udel.edu> References: <901993.82144.qm@web57207.mail.re3.yahoo.com> <49A15E38.4070001@udel.edu> Message-ID: Well, it is Sunday morning (midday now, actually) and I couldn't but help dig into this fascinating hint from John. Following links: Main page: http://simile.mit.edu/exhibit/ How to get source code (although you don't need it, like other libraries you can just run it from their servers) http://simile.mit.edu/wiki/Exhibit/Download_Exhibit%27s_Source_Code Check out the whole shebang to your desktop (includes jetty server!!!) svn checkout http://simile.mit.edu/repository/exhibit/branches/2.0 exhibit type run then: http://localhost:8888/exhibit/site/index.html Tutorials: http://simile.mit.edu/wiki/Exhibit/Getting_Started_Tutorial http://simile.mit.edu/wiki/Exhibit/Creating%2C_Importing%2C_and_Managing_Data Drupal project: http://drupal.org/project/exhibit The mind boggles! Victor Kane http://awebfactory.com.ar http://projectflowandtracker On Sun, Feb 22, 2009 at 12:16 PM, John Callahan wrote: > Also check out the Exhibit module, whose source code is maintained by > the same people who do Timeline. You probably also don't need a module, > you should be able to place Timeline javascript/html code directly in > the your page somewhere, and you'd read the data through a json file or > external feed. The modules help to do things like giving Timeline > access to your existing nodes through Views or allowing the code to use > drupal variables. They're nice products. > > - John > > > Mohammad Towfiqul Islam wrote: > > Dear All, > > > > I think already some of you browse this site: > > http://www.recovery.gov/ > > > > My question is: How can I make "Timeline - Milestones at a Glance" > > section? (See the > > wbsite below) > > > > Is there any module for this? > > > > Thanks. > > > > --- On *Sun, 2/22/09, Bob Morse //* wrote: > > > > From: Bob Morse > > Subject: Re: [support] menu item issues > > To: support at drupal.org, towfiq.islam at yahoo.com > > Cc: "KOBA | Hans Rossel" > > Date: Sunday, February 22, 2009, 12:13 AM > > > > I'm not sure I understand your question. But I think what you are > > saying is you want specific submenus to appear in certain sections > > of your site. Is that correct? > > > > One simple way is to create a path structure such that each > > section of your site is defined and then each page under that is > > has a path that follows. For example, if you have a section of > > your site that is academics. The top page in that section has the > > path: academics. Then each sub-page has the path > > academics/subpage. Now you have a sort of psuedo directory structure. > > > > So in your block for a menu that is to appear on every page in > > that section you go to "Show block on specific pages" and check > > "Show on only the listed pages." Then in the field you put: > > > > academics > > academics/* > > > > Then that menu block will appear on every page that has the path > > academics/whatever. I hope that's the solution you are looking for. > > > > Mohammad Towfiqul Islam wrote: > >> Thanks for your reply. > >> > >> What I want is like this: > >> > >> http://www.hbs.edu/mba/academics/ > >> > >> Here primary links are top and subitems of primary links are side > >> of the page. Please see. > >> When you click the link the sub items of that primary links are > >> shown in the side of web page. Not all the time all sub items of > >> primary links are not showing. > >> > >> I want like this. > >> > >> But i can develop this menu items in Drupal too but problem is i > >> need to assign page in the block "Show block on specific pages: " > >> then this primary link item show in sepcfic page and other > >> primary link item wont show. The problem is i need to assign the > >> page every time "Show block on specific pages: " which is > >> irritable when you create link inside the page at that time when > >> you click link the sub item disapper or showing all sub items. > >> > >> Thanks again and waiting for reply. > >> > >> --- On *Sat, 2/21/09, KOBA | Hans Rossel //* > >> wrote: > >> > >> From: KOBA | Hans Rossel > >> Subject: Re: [support] menu item issues > >> To: support at drupal.org, towfiq.islam at yahoo.com > >> Date: Saturday, February 21, 2009, 2:59 PM > >> > >> In menu settings tab set secondary links as primary links. Then > >> secondary links will show the children of every primary link. > >> > >> If the children have also subitems you will need an extra module > or > >> code to show them. A good module for showing third, fourth and > lower > >> levels of primary links is menu block. > >> > >> Good luck, > >> > >> Hans > >> > >> 2009/2/21, Mohammad Towfiqul Islam : > >> > Hi guys, > >> > I am a newbie. Need some instruction. I have a five > primary liks and > >> > each links has several childs (say 8/9). What I want, when > I will > >> click > >> > primary links suppose "Home" it will open a specific page > >> linked to Home > >> > with its childs. It should not show other primary links > child in a > >> page > >> > linked to "Home". Like this when I will click other > primary > >> links it > >> > will open that primary links page with childs. What I mean > every > >> primary > >> > links child should be seperated when i click links. It > should not show > >> > all. > >> > How can I achieve this? Any help will be appreciated. > >> > Thanks in advance. > >> > > >> > > >> > > >> > > >> > >> -- > >> Verzonden vanaf mijn mobiele apparaat > >> > >> Hans Rossel > >> KOBA Webdevelopment > >> Kerkstraat 228 > >> 9050 Gent > >> 09-334.52.60 > >> 0472-79.32.16 > >> www.koba.be > >> info at koba.be > >> > >> > >> > > > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090222/18047282/attachment-0001.htm From pavan.k.murthy at gmail.com Sun Feb 22 17:52:57 2009 From: pavan.k.murthy at gmail.com (Pavan Keshavamurthy) Date: Sun, 22 Feb 2009 23:22:57 +0530 Subject: [support] One OG per user In-Reply-To: References: Message-ID: <46b9cfab0902220952m5d0392f0k1dea080930200812@mail.gmail.com> Yeah there is. Get: http://drupal.org/project/usernode && http://drupal.org/project/nodeprofile And set one of those as your OG Group Node. -Pavan Keshavamurthy 2009/2/21 Tiago Fassoni A. A. Leite > I am making a site in which I want to limit the creation of only one OG by > the same user. > > Is there any easy way of doing that? > > Is there ANY way of doing that? > > Thanks for the help, > Tiago > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- _PK Skype: pavankeshavamurthy http://grahana.net/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090222/29d00b42/attachment.htm From greg.knaddison at gmail.com Sun Feb 22 18:11:55 2009 From: greg.knaddison at gmail.com (Greg Knaddison) Date: Sun, 22 Feb 2009 11:11:55 -0700 Subject: [support] One OG per user In-Reply-To: <46b9cfab0902220952m5d0392f0k1dea080930200812@mail.gmail.com> References: <46b9cfab0902220952m5d0392f0k1dea080930200812@mail.gmail.com> Message-ID: <3861c6770902221011x77ca3ef6v33bb81d2a84897f6@mail.gmail.com> On Sun, Feb 22, 2009 at 10:52 AM, Pavan Keshavamurthy wrote: > Yeah there is. > > Get: http://drupal.org/project/usernode && > http://drupal.org/project/nodeprofile > Another option is the User Quota module: http://drupal.org/project/user_quota It makes the restriction on a per-user-per-content-type basis, which gives a bit more flexibility than some of the other quota modules, but may also cause it to be slightly slower in certain situations. Cheers, Greg -- Greg Knaddison http://knaddison.com | 303-800-5623 | http://growingventuresolutions.com From towfiq.islam at yahoo.com Mon Feb 23 10:58:30 2009 From: towfiq.islam at yahoo.com (Mohammad Towfiqul Islam) Date: Mon, 23 Feb 2009 02:58:30 -0800 (PST) Subject: [support] Embed a file to page, How? In-Reply-To: <49A0DEF2.1070606@morsemedia.net> Message-ID: <748968.52065.qm@web57203.mail.re3.yahoo.com> How can I embed excel , ppt , pdf , video file in drupal page. Suppose excel case I want to show excel sheet in the page content of drupal. Is there any module for version 6 or any other tricks? ? Thanks. --- On Sun, 2/22/09, Bob Morse wrote: From: Bob Morse Subject: Re: [support] menu item issues To: support at drupal.org, towfiq.islam at yahoo.com Cc: "KOBA | Hans Rossel" Date: Sunday, February 22, 2009, 12:13 AM I'm not sure I understand your question. But I think what you are saying is you want specific submenus to appear in certain sections of your site. Is that correct? One simple way is to create a path structure such that each section of your site is defined and then each page under that is has a path that follows. For example, if you have a section of your site that is academics. The top page in that section has the path: academics. Then each sub-page has the path academics/subpage. Now you have a sort of psuedo directory structure. So in your block for a menu that is to appear on every page in that section you go to "Show block on specific pages" and? check "Show on only the listed pages." Then in the field you put: academics academics/* Then that menu block will appear on every page that has the path academics/whatever. I hope that's the solution you are looking for. Mohammad Towfiqul Islam wrote: Thanks for your reply. ? What I want is like this: ? http://www.hbs.edu/mba/academics/ ? Here primary links are top and subitems of primary links are side of the page. Please see. When you click the link the sub items of that primary links?are shown in the side of web page. Not all the time all sub items of primary links are not showing. ? I want like this. ? But i can develop this menu items in Drupal too but problem is i need to assign page in the block "Show block on specific pages: " then this primary link item show in sepcfic page and other primary link item wont show. The problem is i need to assign the page every time "Show block on specific pages: " which is irritable when you create link inside the page at that time when you click link the sub item disapper or showing all sub items. ? Thanks again and waiting for reply. --- On Sat, 2/21/09, KOBA | Hans Rossel wrote: From: KOBA | Hans Rossel Subject: Re: [support] menu item issues To: support at drupal.org, towfiq.islam at yahoo.com Date: Saturday, February 21, 2009, 2:59 PM In menu settings tab set secondary links as primary links. Then secondary links will show the children of every primary link. If the children have also subitems you will need an extra module or code to show them. A good module for showing third, fourth and lower levels of primary links is menu block. Good luck, Hans 2009/2/21, Mohammad Towfiqul Islam : > Hi guys, > I am a newbie. Need some instruction. I have a five primary liks and > each links has several childs (say 8/9). What I want, when I will click > primary links suppose "Home" it will open a specific page linked to Home > with its childs. It should not show other primary links child in a page > linked to "Home". Like this when I will click other primary links it > will open that primary links page with childs. What I mean every primary > links child should be seperated when i click links. It should not show > all. > How can I achieve this? Any help will be appreciated. > Thanks in advance. > > > > -- Verzonden vanaf mijn mobiele apparaat Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090223/84fb6b7e/attachment.htm From simpsonetti at googlemail.com Mon Feb 23 14:07:18 2009 From: simpsonetti at googlemail.com (=?iso-8859-1?Q?Sebastian_G=F6decke?=) Date: Mon, 23 Feb 2009 15:07:18 +0100 Subject: [support] lightbox2 gallerie Message-ID: <1201667061.20090223150718@googlemail.com> Guten Tag Support Support, hi, i have some trouble with lightbox2: i have i simple gallerie with image-modul and lighbox2 in the "summary"-view lightbox is still working fine. But view an article, created with the "image" modus, doesn't work. There will only shown the "original" link and "mini-view" . Clicking on both links they show my the lightbox (as it has to be) but in the lightbox, there is no image. How could i fix this ? Drupal 6.9 and lightbox 6.x-1.9 -- Mit freundlichen Gr??en Sebastian G?decke mailto:simpsonetti at googlemail.com From nabil at gobrighttree.com Mon Feb 23 15:29:34 2009 From: nabil at gobrighttree.com (Nabil Alsharif) Date: Mon, 23 Feb 2009 09:29:34 -0600 Subject: [support] Automatic update.php Message-ID: <1235402974.4821.10.camel@al-sa3ek.lappy> Hi every one, I'm going to be maintaining a bunch of drupal sites. I'm trying to automate as much of maintenance as possible and one of the things I would like to do is update the database via a script, basically run update.php with the latest upgrades selected. The problem is that I can't just wget update.php and I didn't see any thing helpful in the scripts directory. Even worse is that google came up with Nil. Any one have any ideas on how I could do that? Thanks. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part Url : http://lists.drupal.org/pipermail/support/attachments/20090223/0cec5c3f/attachment.pgp From rotsen at gmail.com Mon Feb 23 15:29:31 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Mon, 23 Feb 2009 07:29:31 -0800 Subject: [support] Newslfash theme Message-ID: I am testing the newsfalsh theme and it looks good except that when I put somehting on the right column it does not show. All of the other position work except the right column. Is there soemthing that I need to do to make the right column work? Thanks, Nestor -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090223/89103f66/attachment.htm From hovercrafter at earthlink.net Mon Feb 23 15:52:01 2009 From: hovercrafter at earthlink.net (Jamie Holly) Date: Mon, 23 Feb 2009 10:52:01 -0500 Subject: [support] Automatic update.php In-Reply-To: <1235402974.4821.10.camel@al-sa3ek.lappy> References: <1235402974.4821.10.camel@al-sa3ek.lappy> Message-ID: <49A2C621.10405@earthlink.net> It might not be the exact solution you are looking for, but I have done similar things with the iMacro add on for Firefox. https://addons.mozilla.org/en-US/firefox/addon/3863 That way you can create a macro to actually put the site in offline mode, then run update.php and then return it to online mode. I haven't actually used it for update.php, but have used it for a lot of other repetitive things I have to do in Drupal. (fyi - it looks like a feature request is in for update.php handling in Drush, but it isn't yet committed) Jamie Holly Nabil Alsharif wrote: > Hi every one, > > I'm going to be maintaining a bunch of drupal sites. I'm trying to > automate as much of maintenance as possible and one of the things I > would like to do is update the database via a script, basically run > update.php with the latest upgrades selected. The problem is that I > can't just wget update.php and I didn't see any thing helpful in the > scripts directory. Even worse is that google came up with Nil. > > Any one have any ideas on how I could do that? > > Thanks. > From shai at content2zero.com Mon Feb 23 15:54:06 2009 From: shai at content2zero.com (Shai Gluskin) Date: Mon, 23 Feb 2009 10:54:06 -0500 Subject: [support] Newslfash theme In-Reply-To: References: Message-ID: <9f68efb70902230754r14f2cbecxb20d0fd6ff2cc7bd@mail.gmail.com> Nestor, I think you are more likely to get help at the Roopletheme web site: http://www.*roopletheme*.com/ That said, their server is down right now; I hope that is temporary and not an ominous sign. best, Shai On Mon, Feb 23, 2009 at 10:29 AM, N?stor wrote: > I am testing the newsfalsh theme and it looks good except that when I put > somehting on the > right column it does not show. All of the other position work except the > right column. > Is there soemthing that I need to do to make the right column work? > > > Thanks, > > Nestor > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090223/ce03032b/attachment.htm From skessler at denverdataman.com Mon Feb 23 16:00:27 2009 From: skessler at denverdataman.com (Steve Kessler) Date: Mon, 23 Feb 2009 09:00:27 -0700 Subject: [support] Newslfash theme In-Reply-To: References: Message-ID: <04d901c995cf$d8e33e70$8aa9bb50$@com> In the main theme settings page for Newsflash there are a bunch of checkboxes and sizes for the columns. I have never had a problem with them but you might want to check if they are correct. The people at Roople Thmes are very good at responding to support issues in the queue for their theme. -Steve Steve Kessler Denver DataMan 303-587-4428 Sign up for the Denver DataMan Free eNewsletter From: N?stor [mailto:rotsen at gmail.com] Sent: Monday, February 23, 2009 8:30 AM To: support at drupal.org Subject: [support] Newslfash theme I am testing the newsfalsh theme and it looks good except that when I put somehting on the right column it does not show. All of the other position work except the right column. Is there soemthing that I need to do to make the right column work? Thanks, Nestor -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090223/05008c01/attachment.htm From metzlerd at evergreen.edu Mon Feb 23 16:03:14 2009 From: metzlerd at evergreen.edu (Metzler, David) Date: Mon, 23 Feb 2009 08:03:14 -0800 Subject: [support] One OG per user In-Reply-To: References: Message-ID: <52177C930FA90F4D9888B0343FDB79FB10ECFE@birch.evergreen.edu> Don't know what version you're on, but If your on 5.x, you might consider downloaded the bio module, and making that content type an organic group type. Bio isn't ported to 6.x yet. That might get you what you're looking for. Dave ________________________________ From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Tiago Fassoni A. A. Leite Sent: Friday, February 20, 2009 10:26 PM To: support at drupal.org Subject: [support] One OG per user I am making a site in which I want to limit the creation of only one OG by the same user. Is there any easy way of doing that? Is there ANY way of doing that? Thanks for the help, Tiago -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090223/21c9ed43/attachment.htm From rotsen at gmail.com Mon Feb 23 16:07:58 2009 From: rotsen at gmail.com (=?ISO-8859-1?B?TulzdG9y?=) Date: Mon, 23 Feb 2009 08:07:58 -0800 Subject: [support] Newslfash theme In-Reply-To: <04d901c995cf$d8e33e70$8aa9bb50$@com> References: <04d901c995cf$d8e33e70$8aa9bb50$@com> Message-ID: Thanks for replies. I look at the configuration themes and change the column size from 210 to 225 and now the right side is working. I will keep in mind to look at the roople link. Thanks again, Nestor :-) On Mon, Feb 23, 2009 at 8:00 AM, Steve Kessler wrote: > In the main theme settings page for Newsflash there are a bunch of > checkboxes and sizes for the columns. I have never had a problem with them > but you might want to check if they are correct. The people at Roople Thmes > are very good at responding to support issues in the queue for their theme. > > > > > > -Steve > > > > Steve Kessler > > *Denver DataMan * > > 303-587-4428 > > Sign up for the Denver DataMan Free eNewsletter > > > > *From:* N?stor [mailto:rotsen at gmail.com] > *Sent:* Monday, February 23, 2009 8:30 AM > *To:* support at drupal.org > *Subject:* [support] Newslfash theme > > > > I am testing the newsfalsh theme and it looks good except that when I put > somehting on the > right column it does not show. All of the other position work except the > right column. > Is there soemthing that I need to do to make the right column work? > > > Thanks, > > Nestor > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090223/f152670f/attachment.htm From nabil at gobrighttree.com Mon Feb 23 16:52:07 2009 From: nabil at gobrighttree.com (Nabil Alsharif) Date: Mon, 23 Feb 2009 10:52:07 -0600 Subject: [support] Automatic update.php In-Reply-To: <49A2C621.10405@earthlink.net> References: <1235402974.4821.10.camel@al-sa3ek.lappy> <49A2C621.10405@earthlink.net> Message-ID: <1235407927.4821.18.camel@al-sa3ek.lappy> Thanks for the Drush tip. http://acquia.com/blog/drupal-cli-utils looks promising but it is erroring out at the moment. On Mon, 2009-02-23 at 10:52 -0500, Jamie Holly wrote: > It might not be the exact solution you are looking for, but I have done > similar things with the iMacro add on for Firefox. > > https://addons.mozilla.org/en-US/firefox/addon/3863 > > That way you can create a macro to actually put the site in offline > mode, then run update.php and then return it to online mode. I haven't > actually used it for update.php, but have used it for a lot of other > repetitive things I have to do in Drupal. > > (fyi - it looks like a feature request is in for update.php handling in > Drush, but it isn't yet committed) > > Jamie Holly > > > > > Nabil Alsharif wrote: > > Hi every one, > > > > I'm going to be maintaining a bunch of drupal sites. I'm trying to > > automate as much of maintenance as possible and one of the things I > > would like to do is update the database via a script, basically run > > update.php with the latest upgrades selected. The problem is that I > > can't just wget update.php and I didn't see any thing helpful in the > > scripts directory. Even worse is that google came up with Nil. > > > > Any one have any ideas on how I could do that? > > > > Thanks. > > -- ?---------------------------------- Nabil Alsharif Bright Tree 573-499-1244 This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited. Please consider the environment before printing this email or its attachment(s). -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part Url : http://lists.drupal.org/pipermail/support/attachments/20090223/d133aa41/attachment-0001.pgp From towfiq.islam at yahoo.com Tue Feb 24 11:11:44 2009 From: towfiq.islam at yahoo.com (Mohammad Towfiqul Islam) Date: Tue, 24 Feb 2009 03:11:44 -0800 (PST) Subject: [support] Webserver directory show in a page how to? In-Reply-To: <49A15E38.4070001@udel.edu> Message-ID: <180012.69325.qm@web57202.mail.re3.yahoo.com> Dear All, ? Would be grateful if anybody have any solution: ? I want to show webserver folder in a drupal page. It may require each page will show different folder of webserver directory. Example: Page name: "A" will show A folder of webserver, Page name:? "B" will show B folder of webserver in somewhere of A/B page like a directory. ? How can?I do this? Is there any module or tricks for this ? ? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090224/0302cb7f/attachment.htm From cog.rusty at gmail.com Tue Feb 24 14:20:33 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Tue, 24 Feb 2009 16:20:33 +0200 Subject: [support] Webserver directory show in a page how to? In-Reply-To: <180012.69325.qm@web57202.mail.re3.yahoo.com> References: <49A15E38.4070001@udel.edu> <180012.69325.qm@web57202.mail.re3.yahoo.com> Message-ID: On Tue, Feb 24, 2009 at 1:11 PM, Mohammad Towfiqul Islam wrote: > Dear All, > > Would be grateful if anybody have any solution: > > I want to show webserver folder in a drupal page. It may require each page > will show different folder of webserver directory. Example: Page name: "A" > will show A folder of webserver, Page name:? "B" will show B folder of > webserver in somewhere of A/B page like a directory. > > How can?I do this? Is there any module or tricks for this ? Try the http://drupal.org/project/webfm module. Or Create an .htacess file containing only one line: Options +Indexes and copy it to all the directories that you want to show. Then create a post in Drupal, select "Full HTML" input format, and enter (for example): Preview it and adjust it. > Thanks. > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From aldo at caonao.cu Tue Feb 24 17:22:11 2009 From: aldo at caonao.cu (Aldo Martinez Selleras) Date: Tue, 24 Feb 2009 12:22:11 -0500 Subject: [support] modify the "add comment" in links In-Reply-To: References: <200902231359.06803.aldo@caonao.cu> <200902241119.14801.aldo@caonao.cu> Message-ID: <200902241222.12070.aldo@caonao.cu> i'm not creating a content type i just want in my forum post http://mydomain.org/forum A new forum post Posted on: Mon, 02/09/2009 - 03:56 let see if this it's show in the community group homepage?? Add new comment i want change this text "Add new comment" for "Reply", but only in the forum posts... i can modify the comment.module and replace the text -- ---------------------- Aldo Martinez Selleras Especialista en Telematica CITMATEL GND Camaguey Tel: 53 32 291661 Linux User #364356 From aldo at caonao.cu Tue Feb 24 17:35:54 2009 From: aldo at caonao.cu (Aldo Martinez Selleras) Date: Tue, 24 Feb 2009 12:35:54 -0500 Subject: [support] forum & blogs with og Message-ID: <200902241235.54368.aldo@caonao.cu> may i do the forum and blog modules work with the og ??? i mean, when i go to specific forum, the og blocks disapear, but i need that not happen, what can i do!?? thanks in advanced -- ---------------------- Aldo Martinez Selleras Especialista en Telematica CITMATEL GND Camaguey Tel: 53 32 291661 Linux User #364356 From cjones at partialflow.com Wed Feb 25 02:06:15 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Tue, 24 Feb 2009 21:06:15 -0500 Subject: [support] forum & blogs with og In-Reply-To: <200902241235.54368.aldo@caonao.cu> References: <200902241235.54368.aldo@caonao.cu> Message-ID: <49A4A797.6090601@partialflow.com> If you created forums before you installed og / og forum then you will need to migrate your forums into your groups. Otherwise, simply use the og forum administration to create new group forums. The link is in the "group details" block. As for blogs, you can do this any number of ways. Generally, if you need a blog for every user and you want user blogs to be associated with groups then set the blog content type to be a standard group post. Then, when users are in their groups and creating blog posts those posts will be associated with that group. There are other ways to handle blogs and groups, though. For example, you could have a corporate blog (more than one author), which you could set up as a closed group to which your authors belong. Then, you only need to use the story type as the group post. Snap, you have a blog. Aldo Martinez Selleras wrote: > may i do the forum and blog modules work with the og ??? i mean, when i go to > specific forum, the og blocks disapear, but i need that not happen, what can > i do!?? > > thanks in advanced > > From cjones at partialflow.com Wed Feb 25 02:08:59 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Tue, 24 Feb 2009 21:08:59 -0500 Subject: [support] One OG per user In-Reply-To: <52177C930FA90F4D9888B0343FDB79FB10ECFE@birch.evergreen.edu> References: <52177C930FA90F4D9888B0343FDB79FB10ECFE@birch.evergreen.edu> Message-ID: <49A4A83B.7030909@partialflow.com> Node profile and node family can do something similar, also for 5.x only. Read the docs about how to set up a "lonely node" Metzler, David wrote: > Don't know what version you're on, but If your on 5.x, you might > consider downloaded the bio module, and making that content type an > organic group type. Bio isn't ported to 6.x yet. > > That might get you what you're looking for. > > Dave > > ________________________________ > > From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On > Behalf Of Tiago Fassoni A. A. Leite > Sent: Friday, February 20, 2009 10:26 PM > To: support at drupal.org > Subject: [support] One OG per user > > > I am making a site in which I want to limit the creation of only one OG > by the same user. > > Is there any easy way of doing that? > > Is there ANY way of doing that? > > Thanks for the help, > Tiago > > > From cjones at partialflow.com Wed Feb 25 02:13:09 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Tue, 24 Feb 2009 21:13:09 -0500 Subject: [support] Embed a file to page, How? In-Reply-To: <748968.52065.qm@web57203.mail.re3.yahoo.com> References: <748968.52065.qm@web57203.mail.re3.yahoo.com> Message-ID: <49A4A935.2070805@partialflow.com> Try "File Framework". I've not used it, but it looks like it might do what you need. Mohammad Towfiqul Islam wrote: > How can I embed excel , ppt , pdf , video file in drupal page. Suppose excel case I want to show excel sheet in the page content of drupal. Is there any module for version 6 or any other tricks? > > Thanks. > > --- On Sun, 2/22/09, Bob Morse wrote: > > From: Bob Morse > Subject: Re: [support] menu item issues > To: support at drupal.org, towfiq.islam at yahoo.com > Cc: "KOBA | Hans Rossel" > Date: Sunday, February 22, 2009, 12:13 AM > > > I'm not sure I understand your question. But I think what you are saying is you want specific submenus to appear in certain sections of your site. Is that correct? > > One simple way is to create a path structure such that each section of your site is defined and then each page under that is has a path that follows. For example, if you have a section of your site that is academics. The top page in that section has the path: academics. Then each sub-page has the path academics/subpage. Now you have a sort of psuedo directory structure. > > So in your block for a menu that is to appear on every page in that section you go to "Show block on specific pages" and check "Show on only the listed pages." Then in the field you put: > > academics > academics/* > > Then that menu block will appear on every page that has the path academics/whatever. I hope that's the solution you are looking for. > > Mohammad Towfiqul Islam wrote: > > > > > > Thanks for your reply. > > What I want is like this: > > http://www.hbs.edu/mba/academics/ > > Here primary links are top and subitems of primary links are side of the page. Please see. > When you click the link the sub items of that primary links are shown in the side of web page. Not all the time all sub items of primary links are not showing. > > I want like this. > > But i can develop this menu items in Drupal too but problem is i need to assign page in the block "Show block on specific pages: " then this primary link item show in sepcfic page and other primary link item wont show. The problem is i need to assign the page every time "Show block on specific pages: " which is irritable when you create link inside the page at that time when you click link the sub item disapper or showing all sub items. > > Thanks again and waiting for reply. > > --- On Sat, 2/21/09, KOBA | Hans Rossel wrote: > > From: KOBA | Hans Rossel > Subject: Re: [support] menu item issues > To: support at drupal.org, towfiq.islam at yahoo.com > Date: Saturday, February 21, 2009, 2:59 PM > > In menu settings tab set secondary links as primary links. Then > secondary links will show the children of every primary link. > > If the children have also subitems you will need an extra module or > code to show them. A good module for showing third, fourth and lower > levels of primary links is menu block. > > Good luck, > > Hans > > 2009/2/21, Mohammad Towfiqul Islam : >> Hi guys, >> I am a newbie. Need some instruction. I have a five primary liks and >> each links has several childs (say 8/9). What I want, when I will > click >> primary links suppose "Home" it will open a specific page > linked to Home >> with its childs. It should not show other primary links child in a > page >> linked to "Home". Like this when I will click other primary > links it >> will open that primary links page with childs. What I mean every > primary >> links child should be seperated when i click links. It should not show >> all. >> How can I achieve this? Any help will be appreciated. >> Thanks in advance. >> >> >> >> > From marolijo at yahoo.es Wed Feb 25 12:06:00 2009 From: marolijo at yahoo.es (marolijo at yahoo.es) Date: Wed, 25 Feb 2009 13:06:00 +0100 Subject: [support] Theme file input on webforms Message-ID: <004b01c99741$6e3ba1c0$0601a8c0@zeus> Hello, I use to theme webforms as this: http://drupal.org/node/79086 I css inputs as this #edit-submitted-esq-comentaris { width: 300px; height: 60px; } but I'm not able to theme the file input field I have now on a webform. In firebug I see: and I tried: #edit-adjunts { width: 350px; } ..form-file{ width: 350px; } It works on IE and Chrome but not FFox. Any idea? Thank's! Pol Maresma PolNetwork.com / Serveis d'Internet pol(a)polnetwork.com msn: marolijo From aldo at caonao.cu Wed Feb 25 13:08:35 2009 From: aldo at caonao.cu (Aldo Martinez Selleras) Date: Wed, 25 Feb 2009 08:08:35 -0500 Subject: [support] forum & blogs with og In-Reply-To: <49A4A797.6090601@partialflow.com> References: <200902241235.54368.aldo@caonao.cu> <49A4A797.6090601@partialflow.com> Message-ID: <200902250808.35845.aldo@caonao.cu> look, i have modify the page template for my own content type "group_node", them i add links for control the group, ex, forums, blogs, them, i'm using views and panels for that, and i want the forums and the blog be show in the views and the panel, and the og_forum don't let me do that. -- ---------------------- Aldo Martinez Selleras Especialista en Telematica CITMATEL GND Camaguey Tel: 53 32 291661 Linux User #364356 From chris.mccreery at gmail.com Wed Feb 25 13:44:09 2009 From: chris.mccreery at gmail.com (Chris McCreery) Date: Wed, 25 Feb 2009 08:44:09 -0500 Subject: [support] Creating view referencing usernode data--suggestions Message-ID: <8ce458940902250544p33958dfej84704fe68428fe57@mail.gmail.com> Hi I am creating a site that has the following content types: - Organization (Usernode) - Program (define a program) - Attendance Tracking (track attendance for that program) I would like to create an admin view that shows me all the details for either program or the attendance tracking with data from the usernode. For example Program Name Organization Name Province Country Postal Code I'm just wondering what is the best way to have the Program and Attendance tracking content types reference this data. Would I need to create fields that query the database separately to get them into the content type? Thanks, any help would be much appreciated. -- Chris McCreery -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090225/7869f7e5/attachment.htm From aldo at caonao.cu Wed Feb 25 14:01:09 2009 From: aldo at caonao.cu (Aldo Martinez Selleras) Date: Wed, 25 Feb 2009 09:01:09 -0500 Subject: [support] forum & blogs with og In-Reply-To: <200902250808.35845.aldo@caonao.cu> References: <200902241235.54368.aldo@caonao.cu> <49A4A797.6090601@partialflow.com> <200902250808.35845.aldo@caonao.cu> Message-ID: <200902250901.09544.aldo@caonao.cu> when i click in Group Forums links inside the group details block, i go in the forum container referenced to my group, but the group details block disapear... i need this block stay here! -- ---------------------- Aldo Martinez Selleras Especialista en Telematica CITMATEL GND Camaguey Tel: 53 32 291661 Linux User #364356 From amont at 5net.hu Wed Feb 25 14:43:33 2009 From: amont at 5net.hu (=?ISO-8859-2?Q?=C1mon_Tam=E1s?=) Date: Wed, 25 Feb 2009 15:43:33 +0100 Subject: [support] More fields in one element in cck Message-ID: <49A55915.70005@5net.hu> Hello, I like to make a cck (or a form) element with 3 field: amount, price, type. It should be a multiple element. How can I make it? ?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 amont at 5net.hu Wed Feb 25 14:47:14 2009 From: amont at 5net.hu (=?ISO-8859-2?Q?=C1mon_Tam=E1s?=) Date: Wed, 25 Feb 2009 15:47:14 +0100 Subject: [support] Extra fields for file upload Message-ID: <49A559F2.9010409@5net.hu> Hello, An other question. How can I add more attribute to a file upload field? I am using filefield module, and I like to add some extra attribute, like language, version etc. How can I make it? ?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 cjones at partialflow.com Wed Feb 25 16:05:28 2009 From: cjones at partialflow.com (Christopher M. Jones) Date: Wed, 25 Feb 2009 11:05:28 -0500 Subject: [support] forum & blogs with og In-Reply-To: <200902250901.09544.aldo@caonao.cu> References: <200902241235.54368.aldo@caonao.cu> <49A4A797.6090601@partialflow.com> <200902250808.35845.aldo@caonao.cu> <200902250901.09544.aldo@caonao.cu> Message-ID: <49A56C48.2050401@partialflow.com> There is a patch for og_forum which keeps you in the group when you go to forums. Search the queue, or google to find it. If you don't know how to apply a patch, you can google that too. There are instructions somewhere on drupal.org. As for getting the forums onto your group homepage, within a panel pane, this is not directly supported. However, I recently asked this question here and got a great answer. I'm quoting it below for your convenience (thanks again, David): ------------------------------------------------- This is a bit hackish but I've don'e this successfully using panels2 by using custom PHP code. It involves being able to read a module's menu_hook though and write a little PHP, and being careful about security (cause you can bypass menu security this way. The basic outline: 1. Determine the function being called in the menu_hook, 1. Create a minipanel (just to abstract the logic and security) 2. Ad a snippet of custom PHP code that calles the function. 3. Be extra careful to set security on this minipanel as it bypasses the menu security mechanism. In your example, the forums page could be loaded into any Panel by including the following custom php pane in your mini-panel. $block->content = forum_page(); This mini-pane can then be inserted into any block you have. Here's a more intense example where I'm passing context data to the php custom page to add the view cases page to a form that passes node id into the function being called. $block->content = casetracker_cases_overview($context->data->nid,'state:6'); Your question has sparked some interesting ideas for me with regard to creating a module that does this more generically based on the data that's already in the menu system :) . Especially once we get to drupal 6 and wildcards in the path. Wow the possibilities are endless. Hope this helps. Aldo Martinez Selleras wrote: > when i click in Group Forums links inside the group details block, i go in the > forum container referenced to my group, but the group details block > disapear... i need this block stay here! > From marolijo at yahoo.es Thu Feb 26 13:05:50 2009 From: marolijo at yahoo.es (marolijo at yahoo.es) Date: Thu, 26 Feb 2009 14:05:50 +0100 Subject: [support] Primary links ul on various columns Message-ID: <002301c99812$f36b5260$0601a8c0@zeus> Hello, I need to fix the height of the primary links, showing the li on differents columns in a group of 3. Example >Link1 >Link4 >Link7 >Link2 >Link5 >Link8 >Link3 >Link6 How can I do that? Thank's! Pol Maresma PolNetwork.com / Serveis d'Internet pol(a)polnetwork.com msn: marolijo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/8978b67e/attachment.htm From towfiq.islam at yahoo.com Thu Feb 26 13:48:11 2009 From: towfiq.islam at yahoo.com (Mohammad Towfiqul Islam) Date: Thu, 26 Feb 2009 05:48:11 -0800 (PST) Subject: [support] Drupal-Portlet how to and others In-Reply-To: Message-ID: <863189.11748.qm@web57203.mail.re3.yahoo.com> Dear Friends, ? Few questions about Drupal: ? Could anybody know how can I create Yahoo homepage like portlet (which has several tabs like: Features, Environment etc. and has several links and small picture)?on Drupal page? ? Another question: I have a 20 GB data, Is it a good idea to copy these data to webserver folder in sites/default/files? or we can use any other folder of c: drive (If we can use c: drive folder?can users access from web browser?) Will it cause any problem in?future like slow response of site or any other issues? or anybody has any other idea regarding these unstructured data? Thanks in advance. ? --- On Tue, 2/24/09, Cog Rusty wrote: From: Cog Rusty Subject: Re: [support] Webserver directory show in a page how to? To: support at drupal.org, towfiq.islam at yahoo.com Date: Tuesday, February 24, 2009, 9:20 AM On Tue, Feb 24, 2009 at 1:11 PM, Mohammad Towfiqul Islam wrote: > Dear All, > > Would be grateful if anybody have any solution: > > I want to show webserver folder in a drupal page. It may require each page > will show different folder of webserver directory. Example: Page name: "A" > will show A folder of webserver, Page name:? "B" will show B folder of > webserver in somewhere of A/B page like a directory. > > How can?I do this? Is there any module or tricks for this ? Try the http://drupal.org/project/webfm module. Or Create an .htacess file containing only one line: Options +Indexes and copy it to all the directories that you want to show. Then create a post in Drupal, select "Full HTML" input format, and enter (for example): Preview it and adjust it. > Thanks. > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/01aa0021/attachment-0001.htm From fredthejonester at gmail.com Thu Feb 26 15:25:25 2009 From: fredthejonester at gmail.com (Fred Jones) Date: Thu, 26 Feb 2009 17:25:25 +0200 Subject: [support] drupal_mail and gmail auto response Message-ID: <177c0a10902260725x6a75d9fs1592882b4b432301@mail.gmail.com> If I send an email to a certain gmail address, then I get an autoresponse. This is good. :) We have a custom form setup that uses drupal_mail and I use this: $from = "$name <$email>" ; and no reply-to or anything like that. When I use the form to send an email, I see that it goes to the correct gmail address (same one as above that is), but no autoresponse is sent. Yes, I used a different email then the first email I sent b/c the responder won't respond more than twice in four days. I wonder if the issue is that the gmail address is not gmail.com--it's actually the same domain as the site--they use a Google App for email. Maybe gmail sees that it's internal yet the purported email address is external? Any other ideas why this may be failing? From richard at richardwilding.com Thu Feb 26 15:31:26 2009 From: richard at richardwilding.com (Richard Wilding) Date: Thu, 26 Feb 2009 15:31:26 +0000 Subject: [support] Project management website Message-ID: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> Hi All, I'm new to Drupal and this mailing list. I'm a front-end designer and have been asked by an architect to 're- skin' a Google Sites project he has set up to share project images, plans and to-do lists with one of his clients Google Sites does not allow access to their html / css templates for me to change the page structure and styles, so I'm looking for another platform I've looked at project management / collaboration platforms like Basecamp and Huddle, but they seem too complex and I really want a simple interface with just the features my client needs Is Drupal suitable for this or is there another platform that I should investigate? Here is a summary of the most important features required: 1. Restricted access with multiple user accounts 2. Display text, images, .pdfs and videos within the website pages 3. Zoom or enlarge images and .pdfs to view details in drawings & .pdf spreadsheets 4. Include tables of information with column ordering i.e team contact list 5. Include savable checklists 6. Page templates need to be customizable through html and css Thanks and best wishes, Richard Wilding -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/2536d20e/attachment.htm From metzlerd at evergreen.edu Thu Feb 26 16:02:37 2009 From: metzlerd at evergreen.edu (Metzler, David) Date: Thu, 26 Feb 2009 08:02:37 -0800 Subject: [support] Drupal-Portlet how to and others In-Reply-To: <863189.11748.qm@web57203.mail.re3.yahoo.com> References: <863189.11748.qm@web57203.mail.re3.yahoo.com> Message-ID: <52177C930FA90F4D9888B0343FDB79FB10ED11@birch.evergreen.edu> Would recommend you research the Panels module for your portlet question. Yes files (attachments) served out by drupal must be resident on the web server ('sites/default/files'). The most straightforward way of getting the ifles to the server is by uploading them and attaching them to pages and/or stories that are created by drupal. You need the upload module enabled in order to accomplish this. Dave ________________________________ From: support-bounces at drupal.org [mailto:support-bounces at drupal.org] On Behalf Of Mohammad Towfiqul Islam Sent: Thursday, February 26, 2009 5:48 AM To: support at drupal.org Subject: [support] Drupal-Portlet how to and others Dear Friends, Few questions about Drupal: Could anybody know how can I create Yahoo homepage like portlet (which has several tabs like: Features, Environment etc. and has several links and small picture) on Drupal page? Another question: I have a 20 GB data, Is it a good idea to copy these data to webserver folder in sites/default/files? or we can use any other folder of c: drive (If we can use c: drive folder can users access from web browser?) Will it cause any problem in future like slow response of site or any other issues? or anybody has any other idea regarding these unstructured data? Thanks in advance. --- On Tue, 2/24/09, Cog Rusty wrote: From: Cog Rusty Subject: Re: [support] Webserver directory show in a page how to? To: support at drupal.org, towfiq.islam at yahoo.com Date: Tuesday, February 24, 2009, 9:20 AM On Tue, Feb 24, 2009 at 1:11 PM, Mohammad Towfiqul Islam wrote: > Dear All, > > Would be grateful if anybody have any solution: > > I want to show webserver folder in a drupal page. It may require each page > will show different folder of webserver directory. Example: Page name: "A" > will show A folder of webserver, Page name: "B" will show B folder of > webserver in somewhere of A/B page like a directory. > > How can I do this? Is there any module or tricks for this ? Try the http://drupal.org/project/webfm module. Or Create an .htacess file containing only one line: Options +Indexes and copy it to all the directories that you want to show. Then create a post in Drupal, select "Full HTML" input format, and enter (for example): Preview it and adjust it. > Thanks. > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/8ba47d64/attachment.htm From shai at content2zero.com Thu Feb 26 16:08:50 2009 From: shai at content2zero.com (Shai Gluskin) Date: Thu, 26 Feb 2009 11:08:50 -0500 Subject: [support] Project management website In-Reply-To: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> Message-ID: <9f68efb70902260808n3cb8db20w91b42e7d829fca0d@mail.gmail.com> Richard, Welcome to Drupal! Everything is quite straightforward except for two things. Re: the checklists, I'd need to know more info about the requirements to recommend a course of action. For the images, using imagefield in conjunction with imagecache you are good-to-go very easily. However, I'm just not sure about zooming in on the .pdfs. It's possible/likely folks who are working on the filefield project ( http://drupal.org/project/filefield) are either working on or maybe even created what you want. I just don't know. While there certainly is a learning curve re: Drupal's templating system --- it is amazingly powerful and flexible. You can control anything you want without hacking --- which means you can continually upgrade Drupal core and its contrib modules, keep benefiting from improvements, bug fixes etc... without having to worry that you've broken your customizations. It is totally brilliant. Do let us know what you decide, discover, etc. Shai Content2zero On Thu, Feb 26, 2009 at 10:31 AM, Richard Wilding < richard at richardwilding.com> wrote: > Hi All, > > I'm new to Drupal and this mailing list. > > I'm a front-end designer and have been asked by an architect to 're-skin' a > Google Sites project he has set up to share project images, plans and to-do > lists with one of his clients > > Google Sites does not allow access to their html / css templates for me to > change the page structure and styles, so I'm looking for another platform > > I've looked at project management / collaboration platforms like Basecamp > and Huddle, but they seem too complex and I really want a simple interface > with just the features my client needs > > Is Drupal suitable for this or is there another platform that I should > investigate? > > > Here is a summary of the most important features required: > > 1. Restricted access with multiple user accounts > > 2. Display text, images, .pdfs and videos within the website pages > > 3. Zoom or enlarge images and .pdfs to view details in drawings & .pdf > spreadsheets > > 4. Include tables of information with column ordering i.e team contact list > > 5. Include savable checklists > > 6. Page templates need to be customizable through html and css > > > Thanks and best wishes, > > Richard Wilding > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/a267a59c/attachment-0001.htm From victorkane at gmail.com Thu Feb 26 16:15:49 2009 From: victorkane at gmail.com (Victor Kane) Date: Thu, 26 Feb 2009 14:15:49 -0200 Subject: [support] Project management website In-Reply-To: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> Message-ID: Hi Richard, Shai's comments are spot on. Just wanted to mention that I am developing Project Flow and Tracker (will be presenting at Drupal DC 2009), a Drupal based agile approach Project management tool. An alpha release will be available for download as a complete Drupal instance in about a week at http://projectflowandtracker.com/ , so even if there is not a 100% intersection on your requirements, you should have a good starter set upon which you might want to base part of your work. There is a "making of" blog at http://awebfactory.com.ar/node/325 which might prove useful to you as well. Victor Kane http://awebfactory.com.ar http://projectflowandtracker.com/ On Thu, Feb 26, 2009 at 1:31 PM, Richard Wilding wrote: > Hi All, > > I'm new to Drupal and this mailing list. > > I'm a front-end designer and have been asked by an architect to 're-skin' a > Google Sites project he has set up to share project images, plans and to-do > lists with one of his clients > > Google Sites does not allow access to their html / css templates for me to > change the page structure and styles, so I'm looking for another platform > > I've looked at project management / collaboration platforms like Basecamp > and Huddle, but they seem too complex and I really want a simple interface > with just the features my client needs > > Is Drupal suitable for this or is there another platform that I should > investigate? > > > Here is a summary of the most important features required: > > 1. Restricted access with multiple user accounts > > 2. Display text, images, .pdfs and videos within the website pages > > 3. Zoom or enlarge images and .pdfs to view details in drawings & .pdf > spreadsheets > > 4. Include tables of information with column ordering i.e team contact list > > 5. Include savable checklists > > 6. Page templates need to be customizable through html and css > > > Thanks and best wishes, > > Richard Wilding > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/81535fd7/attachment.htm From pinglaura at gmail.com Thu Feb 26 16:23:02 2009 From: pinglaura at gmail.com (Laura Scott) Date: Thu, 26 Feb 2009 09:23:02 -0700 Subject: [support] Project management website In-Reply-To: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> Message-ID: <88C4C36C-70EA-4590-AEED-B4084C61CE00@gmail.com> We have something much like this in use for our client-facing issue tracking system, built in Drupal 6 with robust use of organic groups, views, actions and triggers (and many more). Definitely doable. You run up against a technology limitation with PDF viewing though. That is enabled by browser plug-in, different on every platform. Zooming in and out on other images, though, is very doable. We're using a jQuery script for that. Laura http://pingv.com On Thursday 26 February 2009, at 8:31 am, Richard Wilding wrote: > Hi All, > > I'm new to Drupal and this mailing list. > > I'm a front-end designer and have been asked by an architect to 're- > skin' a Google Sites project he has set up to share project images, > plans and to-do lists with one of his clients > > Google Sites does not allow access to their html / css templates for > me to change the page structure and styles, so I'm looking for > another platform > > I've looked at project management / collaboration platforms like > Basecamp and Huddle, but they seem too complex and I really want a > simple interface with just the features my client needs > > Is Drupal suitable for this or is there another platform that I > should investigate? > > > Here is a summary of the most important features required: > > 1. Restricted access with multiple user accounts > > 2. Display text, images, .pdfs and videos within the website pages > > 3. Zoom or enlarge images and .pdfs to view details in drawings > & .pdf spreadsheets > > 4. Include tables of information with column ordering i.e team > contact list > > 5. Include savable checklists > > 6. Page templates need to be customizable through html and css > > > Thanks and best wishes, > > Richard Wilding > > -- > [ Drupal support list | http://lists.drupal.org/ ] -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/5b789aab/attachment.htm From killshot91 at comcast.net Thu Feb 26 16:29:31 2009 From: killshot91 at comcast.net (Steve Edwards) Date: Thu, 26 Feb 2009 08:29:31 -0800 Subject: [support] Project management website In-Reply-To: <88C4C36C-70EA-4590-AEED-B4084C61CE00@gmail.com> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> <88C4C36C-70EA-4590-AEED-B4084C61CE00@gmail.com> Message-ID: <49A6C36B.6050303@comcast.net> I haven't had a chance to go through this myself, but here is a video from the Do It With Drupal seminar held in December on re-creating Basecamp with Drupal. http://www.doitwithdrupal.com/free-videos Steve Laura Scott wrote: > We have something much like this in use for our client-facing issue > tracking system, built in Drupal 6 with robust use of organic groups, > views, actions and triggers (and many more). Definitely doable. > > You run up against a technology limitation with PDF viewing though. > That is enabled by browser plug-in, different on every platform. > Zooming in and out on other images, though, is very doable. We're > using a jQuery script for that. > > Laura > http://pingv.com > > On Thursday 26 February 2009, at 8:31 am, Richard Wilding wrote: > >> Hi All, >> >> I'm new to Drupal and this mailing list. >> >> I'm a front-end designer and have been asked by an architect to >> 're-skin' a Google Sites project he has set up to share project >> images, plans and to-do lists with one of his clients >> >> Google Sites does not allow access to their html / css templates for >> me to change the page structure and styles, so I'm looking for >> another platform >> >> I've looked at project management / collaboration platforms like >> Basecamp and Huddle, but they seem too complex and I really want a >> simple interface with just the features my client needs >> >> Is Drupal suitable for this or is there another platform that I >> should investigate? >> >> >> Here is a summary of the most important features required: >> >> 1. Restricted access with multiple user accounts >> >> 2. Display text, images, .pdfs and videos within the website pages >> >> 3. Zoom or enlarge images and .pdfs to view details in drawings & >> .pdf spreadsheets >> >> 4. Include tables of information with column ordering i.e team >> contact list >> >> 5. Include savable checklists >> >> 6. Page templates need to be customizable through html and css >> >> >> Thanks and best wishes, >> >> Richard Wilding >> >> -- >> [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/39ce24d0/attachment-0001.htm From richard at richardwilding.com Thu Feb 26 17:21:26 2009 From: richard at richardwilding.com (Richard Wilding) Date: Thu, 26 Feb 2009 17:21:26 +0000 Subject: [support] Project management website In-Reply-To: <9f68efb70902260808n3cb8db20w91b42e7d829fca0d@mail.gmail.com> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> <9f68efb70902260808n3cb8db20w91b42e7d829fca0d@mail.gmail.com> Message-ID: Thanks to everyone for their useful feedback on this project, I was hoping to be able to export the architect's CAD drawings and Excel spreadsheets as .pdfs to benefit from vector quality and small file size, but for the time being maybe I'll need to export them as .png Shai, in response to your question about the saveable checklists, these would need to act like an inventory of products, so there would be a series of items, each with a title, description, image, item code and associated options to be checked / unchecked, as shown in this image: ? Thanks, Richard Wilding > Richard, > > Welcome to Drupal! > > Everything is quite straightforward except for two things. > > Re: the checklists, I'd need to know more info about the > requirements to recommend a course of action. > > For the images, using imagefield in conjunction with imagecache you > are good-to-go very easily. > > However, I'm just not sure about zooming in on the .pdfs. It's > possible/likely folks who are working on the filefield project > (http://drupal.org/project/filefield) are either working on or > maybe even created what you want. I just don't know. > > While there certainly is a learning curve re: Drupal's templating > system --- it is amazingly powerful and flexible. You can control > anything you want without hacking --- which means you can > continually upgrade Drupal core and its contrib modules, keep > benefiting from improvements, bug fixes etc... without having to > worry that you've broken your customizations. It is totally brilliant. > > Do let us know what you decide, discover, etc. > > Shai > Content2zero -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/556e943d/attachment-0002.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Picture 1.png Type: application/applefile Size: 73 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20090226/556e943d/attachment-0001.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: Picture 1.png Type: image/png Size: 33280 bytes Desc: not available Url : http://lists.drupal.org/pipermail/support/attachments/20090226/556e943d/attachment-0001.png -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/556e943d/attachment-0003.htm From victorkane at gmail.com Thu Feb 26 17:23:59 2009 From: victorkane at gmail.com (Victor Kane) Date: Thu, 26 Feb 2009 15:23:59 -0200 Subject: [support] Project management website In-Reply-To: References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> <9f68efb70902260808n3cb8db20w91b42e7d829fca0d@mail.gmail.com> Message-ID: On Thu, Feb 26, 2009 at 3:21 PM, Richard Wilding wrote: > Thanks to everyone for their useful feedback on this project, > I was hoping to be able to export the architect's CAD drawings and Excel > spreadsheets as .pdfs to benefit from vector quality and small file size, > but for the time being maybe I'll need to export them as .png > > Shai, in response to your question about the saveable checklists, these > would need to act like an inventory of products, so there would be a series > of items, each with a title, description, image, item code and associated > options to be checked / unchecked, as shown in this image: > In Project Flow & Tracker tasks, listable via filters of various kinds, will be associated with user stories. Victor > > > > Thanks, > Richard Wilding > > > > Richard, > > Welcome to Drupal! > > Everything is quite straightforward except for two things. > > Re: the checklists, I'd need to know more info about the requirements to > recommend a course of action. > > For the images, using imagefield in conjunction with imagecache you are > good-to-go very easily. > > However, I'm just not sure about zooming in on the .pdfs. It's > possible/likely folks who are working on the filefield project ( > http://drupal.org/project/filefield) are either working on or maybe even > created what you want. I just don't know. > > While there certainly is a learning curve re: Drupal's templating system > --- it is amazingly powerful and flexible. You can control anything you want > without hacking --- which means you can continually upgrade Drupal core and > its contrib modules, keep benefiting from improvements, bug fixes etc... > without having to worry that you've broken your customizations. It is > totally brilliant. > > Do let us know what you decide, discover, etc. > > Shai > Content2zero > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/3a0738e8/attachment.htm From cog.rusty at gmail.com Thu Feb 26 18:04:27 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Thu, 26 Feb 2009 20:04:27 +0200 Subject: [support] Project management website In-Reply-To: <88C4C36C-70EA-4590-AEED-B4084C61CE00@gmail.com> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> <88C4C36C-70EA-4590-AEED-B4084C61CE00@gmail.com> Message-ID: On Thu, Feb 26, 2009 at 6:23 PM, Laura Scott wrote: > We have something much like this in use for our client-facing issue tracking > system, built in Drupal 6 with robust use of organic groups, views, actions > and triggers (and many more). Definitely doable. > You run up against a technology limitation with PDF viewing though. That is > enabled by browser plug-in, different on every platform. Zooming in and out > on other images, though, is very doable. We're using a jQuery script for > that. One possibility is http://drupal.org/project/ipaper based on a third party storage service. I looked around for any flash-based solutions but didn't find anything useful. > Laura > http://pingv.com > On Thursday 26 February 2009, at 8:31 am, Richard Wilding wrote: > > Hi All, > I'm new to Drupal and this mailing list. > I'm?a front-end designer and have been asked by an architect to 're-skin' a > Google Sites project he has set up to?share project images, plans and to-do > lists with one of his clients > Google Sites does not allow access to their html / css templates for me to > change the page structure and styles, so I'm looking for another platform > I've looked at project management / collaboration platforms like Basecamp > and Huddle, but they seem too complex and I really want a simple interface > with just the features my client needs > Is Drupal suitable for this or is there another platform that I should > investigate? > > Here is a summary of the most important features required: > 1. Restricted access with multiple user accounts > 2. Display text, images, .pdfs and videos within the website pages > 3. Zoom or enlarge images and .pdfs to view details in drawings & .pdf > spreadsheets > 4. Include tables of information with column ordering i.e team contact list > 5. Include savable checklists > 6. Page templates need to be?customizable?through html and css > > Thanks and best wishes, > Richard Wilding > -- > [ Drupal support list | http://lists.drupal.org/ ] > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From nabil at gobrighttree.com Thu Feb 26 18:13:02 2009 From: nabil at gobrighttree.com (Nabil Alsharif) Date: Thu, 26 Feb 2009 12:13:02 -0600 Subject: [support] update for all sub sites In-Reply-To: <1235407927.4821.18.camel@al-sa3ek.lappy> References: <1235402974.4821.10.camel@al-sa3ek.lappy> <49A2C621.10405@earthlink.net> <1235407927.4821.18.camel@al-sa3ek.lappy> Message-ID: <1235671982.3437.59.camel@al-sa3ek.lappy> This is related to the earlier discussion. Unfortunately I could find a good a scriptable way to automate update.php so my new question is: If I have a multi site setup, single codebase and multiple databases. When I upgrade a module in sites/all is it possible to have to database updates run for each database in one sweep assuming I run update.php by hand? -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part Url : http://lists.drupal.org/pipermail/support/attachments/20090226/22d5068b/attachment.pgp From shai at content2zero.com Thu Feb 26 18:40:05 2009 From: shai at content2zero.com (Shai Gluskin) Date: Thu, 26 Feb 2009 13:40:05 -0500 Subject: [support] Clarification on Latest Security Upgrade Message-ID: <9f68efb70902261040v435dcd43g9c5598b38c0fe233@mail.gmail.com> Gang, I'm a bit confused by the wording regarding the latest security upgrade to core. Usually these announcements are pretty explicit about what situations make you vulnerable and which situations are not vulnerable. It would seem, by deduction, that a Drupal install running an any server software other than Windows is *not *vulnerable. Can someone verify that? I'll certainly upgrade my sites, given how many bug fixes are also included... but I'd like a better handle on the urgency of things. Shai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/d0add47c/attachment.htm From shai at content2zero.com Thu Feb 26 18:52:48 2009 From: shai at content2zero.com (Shai Gluskin) Date: Thu, 26 Feb 2009 13:52:48 -0500 Subject: [support] Project management website In-Reply-To: References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> <9f68efb70902260808n3cb8db20w91b42e7d829fca0d@mail.gmail.com> Message-ID: <9f68efb70902261052j4cb5c621qd50976ffcdb8344e@mail.gmail.com> Richard, Something went wrong with that image you sent. Re: the list, Are the check boxes on/off flags to designate something, like something done on a to do list? Is the status of an item shared by all users OR, Is the flag status for each item unique to the user viewing the page? Actually, for any of these scenarios, my hunch is that using the "flag" module (http://drupal.org/project/flag) in conjunction views ( http://drupal.org/project/views) would get you what you need. Shai On Thu, Feb 26, 2009 at 12:21 PM, Richard Wilding < richard at richardwilding.com> wrote: > Thanks to everyone for their useful feedback on this project, > I was hoping to be able to export the architect's CAD drawings and Excel > spreadsheets as .pdfs to benefit from vector quality and small file size, > but for the time being maybe I'll need to export them as .png > > Shai, in response to your question about the saveable checklists, these > would need to act like an inventory of products, so there would be a series > of items, each with a title, description, image, item code and associated > options to be checked / unchecked, as shown in this image: > > > > Thanks, > Richard Wilding > > > > Richard, > > Welcome to Drupal! > > Everything is quite straightforward except for two things. > > Re: the checklists, I'd need to know more info about the requirements to > recommend a course of action. > > For the images, using imagefield in conjunction with imagecache you are > good-to-go very easily. > > However, I'm just not sure about zooming in on the .pdfs. It's > possible/likely folks who are working on the filefield project ( > http://drupal.org/project/filefield) are either working on or maybe even > created what you want. I just don't know. > > While there certainly is a learning curve re: Drupal's templating system > --- it is amazingly powerful and flexible. You can control anything you want > without hacking --- which means you can continually upgrade Drupal core and > its contrib modules, keep benefiting from improvements, bug fixes etc... > without having to worry that you've broken your customizations. It is > totally brilliant. > > Do let us know what you decide, discover, etc. > > Shai > Content2zero > > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/23f114a4/attachment.htm From ryan at etrafficsolutions.com Thu Feb 26 19:29:47 2009 From: ryan at etrafficsolutions.com (Ryan Thomson) Date: Thu, 26 Feb 2009 11:29:47 -0800 Subject: [support] actions_assignments table error Message-ID: <49A6EDAB.9090303@etrafficsolutions.com> Hey all I have an error in my database which is screwing with my ability to export it. My actions_assignments table is giving me this error: #1033 - Incorrect information in files: '.\*****\actions_assignment.frm' Does anyone know what I can do to fix this? If it's the actions module that created this can I disable it, run update.php then delete the table and re-enable the module or soemthing? Thanks! Leet From richard at richardwilding.com Thu Feb 26 19:34:48 2009 From: richard at richardwilding.com (Richard Wilding) Date: Thu, 26 Feb 2009 19:34:48 +0000 Subject: [support] Project management website In-Reply-To: <9f68efb70902261052j4cb5c621qd50976ffcdb8344e@mail.gmail.com> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> <9f68efb70902260808n3cb8db20w91b42e7d829fca0d@mail.gmail.com> <9f68efb70902261052j4cb5c621qd50976ffcdb8344e@mail.gmail.com> Message-ID: <2FA0D7B1-D8A0-4B03-96AD-07C782EF5929@richardwilding.com> Thanks Shai, Yes, the checkboxes (or they could possibly be radio buttons) would save status 'options' for an item, i.e 'Keep on site', 'Move to storage location' or 'Throw away' The status would be shared, and could be changed, by all users. Best wishes, Richard > Richard, > > Something went wrong with that image you sent. > > Re: the list, > > Are the check boxes on/off flags to designate something, like > something done on a to do list? Is the status of an item shared by > all users > > OR, > > Is the flag status for each item unique to the user viewing the page? > > Actually, for any of these scenarios, my hunch is that using the > "flag" module (http://drupal.org/project/flag) in conjunction views > (http://drupal.org/project/views) would get you what you need. > > Shai -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/9e1fdd9f/attachment-0001.htm From hans.rossel at koba.be Thu Feb 26 20:00:05 2009 From: hans.rossel at koba.be (KOBA | Hans Rossel) Date: Thu, 26 Feb 2009 21:00:05 +0100 Subject: [support] Clarification on Latest Security Upgrade In-Reply-To: <9f68efb70902261040v435dcd43g9c5598b38c0fe233@mail.gmail.com> References: <9f68efb70902261040v435dcd43g9c5598b38c0fe233@mail.gmail.com> Message-ID: <51a9b8330902261200k1835a813w4df42e4ac5f39c39@mail.gmail.com> If you look at the patch http://drupal.org/files/sa-core-2009-003/SA-CORE-2009-003-6.9.patchyou can see it's just adding one single line $arg = str_replace(array('/', '\\', '\0'), '', $arg); to theme.inc for Drupal 6.9. So if you have no immediate time to really do a full upgrade all your sites right now, its very quick and easy to just add that little line for the moment and feel safe. Greetings, Hans 2009/2/26 Shai Gluskin > Gang, > > I'm a bit confused by the wording regarding the latest security upgrade to > core. Usually these announcements are pretty explicit about what situations > make you vulnerable and which situations are not vulnerable. > > It would seem, by deduction, that a Drupal install running an any server > software other than Windows is *not *vulnerable. Can someone verify that? > > I'll certainly upgrade my sites, given how many bug fixes are also > included... but I'd like a better handle on the urgency of things. > > Shai > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- Hans Rossel KOBA Webdevelopment Kerkstraat 228 9050 Gent 09-334.52.60 0472-79.32.16 www.koba.be info at koba.be -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/6e7d54d8/attachment.htm From cog.rusty at gmail.com Thu Feb 26 21:27:19 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Thu, 26 Feb 2009 23:27:19 +0200 Subject: [support] actions_assignments table error In-Reply-To: <49A6EDAB.9090303@etrafficsolutions.com> References: <49A6EDAB.9090303@etrafficsolutions.com> Message-ID: On Thu, Feb 26, 2009 at 9:29 PM, Ryan Thomson wrote: > Hey all > > I have an error in my database which is screwing with my ability to > export it. My actions_assignments table is giving me this error: > #1033 - Incorrect information in files: '.\*****\actions_assignment.frm' > > Does anyone know what I can do to fix this? If it's the actions module > that created this can I disable it, run update.php then delete the table > and re-enable the module or soemthing? This is a MySQL error, not Drupal's. It seems that the real file associated with that database table has been damaged. If phpmyadmin can't repair the table you may need to drop it and create it from scratch (losing whatever it contains). The details depend on your Drupal version. In some cases, this MySQL error message is misleading and the real problem is that your operating system's tmp directory is inaccessible. > Thanks! > Leet > -- > [ Drupal support list | http://lists.drupal.org/ ] > From fndtn357 at gmail.com Fri Feb 27 00:59:26 2009 From: fndtn357 at gmail.com (James Stone) Date: Thu, 26 Feb 2009 19:59:26 -0500 Subject: [support] in response to Re: Project management website (Victor Kane) Message-ID: Has anyone seen and/or used the pdf2swf tool? I think it works ok for viewing pdf's. Otherwise I did read about a particularly complicated way to utilize pdf's through the use of the Zend framework.just my 2cents, fndtn357 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090226/ebdde691/attachment.htm From fb at codicelibero.net Fri Feb 27 08:50:34 2009 From: fb at codicelibero.net (Francesco Baldini) Date: Fri, 27 Feb 2009 09:50:34 +0100 (CET) Subject: [support] Localizing a template Message-ID: <5fef73c6e7758102d62fb372b9b4b1a3.squirrel@webmail.codicelibero.net> Hi, I did an Italian language website, I need now to provide it a multi language system, the only issue is that I need to change something in the main page.tpl.php for both languages. I see there're many translation modules but I need something able to change my page.tpl.php from the regular one to the english one (eg: page-it.tpl.php and page-en.tpl.php) as well other than regular text. Something like "localizing a template" Do you have any tips about it? Drupal version is 5.x thanks From jp.stacey at torchbox.com Fri Feb 27 09:29:21 2009 From: jp.stacey at torchbox.com (J-P Stacey) Date: Fri, 27 Feb 2009 09:29:21 +0000 Subject: [support] Localizing a template In-Reply-To: <5fef73c6e7758102d62fb372b9b4b1a3.squirrel@webmail.codicelibero.net> References: <5fef73c6e7758102d62fb372b9b4b1a3.squirrel@webmail.codicelibero.net> Message-ID: <49A7B271.9020305@torchbox.com> Hi Francesco, > I did an Italian language website, I need now to provide it a multi > language system, the only issue is that I need to change something in the > main page.tpl.php for both languages. The keywords you want are "locale" or "localization" (abbreviated sometimes to "l10n"). This is the process of making a website's content "local" for a particular site visitor. First turn on the Locale module. Then, if your text is hardcoded, wrap it in the t() PHP function as follows:

My text

... becomes ...

Then, visit the page (so that t() calls locale() and registers that there is some text to translate). You should see no difference right now. If you now go to admin/settings/locale you should see that you can define different languages, including a default one which in your case will be Italian. Any string that passes through the t() function is then able to be translated into other non-default languages. Further docs: Locale module and localization: http://drupal.org/node/290 (note all the links at the bottom) t() function (technical): http://api.drupal.org/api/function/t/5 Locale module (technical): http://api.drupal.org/api/file/modules/locale/locale.module/5 Cheers, J-P From net at twoedged.org Fri Feb 27 13:01:24 2009 From: net at twoedged.org (John Fletcher) Date: Fri, 27 Feb 2009 14:01:24 +0100 Subject: [support] Localizing a template In-Reply-To: <49A7B271.9020305@torchbox.com> References: <5fef73c6e7758102d62fb372b9b4b1a3.squirrel@webmail.codicelibero.net> <49A7B271.9020305@torchbox.com> Message-ID: <000301c998db$8255a340$8700e9c0$@org> > First turn on the Locale module. Then, if your text is hardcoded, wrap > it in the t() PHP function as follows Another important thing Francesco - make sure you write the strings with the t() around them in English and then translate them as described by JP into Italian. It doesn't work the other way around - source strings have to be in English. Not sure if you still will need to have different template files once you know how to do this. But if you are in need of further customisation, it's probably better to just stick with one template file but use the functions available to check the current page language and then do an if/then statement. I think page.tpl.php is automatically given a variable called $language which tells you the current language being used. Regards John Salt Websites internationalised web development http://www.saltwebsites.com/ From ryan at etrafficsolutions.com Fri Feb 27 17:14:47 2009 From: ryan at etrafficsolutions.com (Ryan Thomson) Date: Fri, 27 Feb 2009 09:14:47 -0800 Subject: [support] actions_assignments table error In-Reply-To: References: <49A6EDAB.9090303@etrafficsolutions.com> Message-ID: <49A81F87.4050403@etrafficsolutions.com> Yeah I realize this is a database issue, but I was hoping given that a drupal module made the table 'actions_assignments' I was hoping someone could tell me which module made that table. My sql knowledge isn't awesome so I'm hesitant to just delete the table as I have no clue what it's used for or what I would build it back up with. Cog Rusty wrote: > On Thu, Feb 26, 2009 at 9:29 PM, Ryan Thomson > wrote: > >> Hey all >> >> I have an error in my database which is screwing with my ability to >> export it. My actions_assignments table is giving me this error: >> #1033 - Incorrect information in files: '.\*****\actions_assignment.frm' >> >> Does anyone know what I can do to fix this? If it's the actions module >> that created this can I disable it, run update.php then delete the table >> and re-enable the module or soemthing? >> > > > This is a MySQL error, not Drupal's. It seems that the real file > associated with that database table has been damaged. > > If phpmyadmin can't repair the table you may need to drop it and > create it from scratch (losing whatever it contains). The details > depend on your Drupal version. > > In some cases, this MySQL error message is misleading and the real > problem is that your operating system's tmp directory is inaccessible. > > > >> Thanks! >> Leet >> -- >> [ Drupal support list | http://lists.drupal.org/ ] >> >> From kieran at acquia.com Fri Feb 27 19:24:25 2009 From: kieran at acquia.com (Kieran Lal) Date: Fri, 27 Feb 2009 11:24:25 -0800 Subject: [support] Project management website In-Reply-To: <49A6C36B.6050303@comcast.net> References: <4288B693-3B0A-487C-874E-EC5CFCA5E11F@richardwilding.com> <88C4C36C-70EA-4590-AEED-B4084C61CE00@gmail.com> <49A6C36B.6050303@comcast.net> Message-ID: 2009/2/26 Steve Edwards : > I haven't had a chance to go through this myself, but here is a video from the Do It With Drupal? seminar held in December on re-creating Basecamp with Drupal. > > http://www.doitwithdrupal.com/free-videos And here is the accompanying pdf: http://www.doitwithdrupal.com/sessions/basecamp-built-drupal Kieran > > Steve > > Laura Scott wrote: > > We have something much like this in use for our client-facing issue tracking system, built in Drupal 6 with robust use of organic groups, views, actions and triggers (and many more). Definitely doable. > You run up against a technology limitation with PDF viewing though. That is enabled by browser plug-in, different on every platform. Zooming in and out on other images, though, is very doable. We're using a jQuery script for that. > Laura > http://pingv.com > On Thursday 26 February 2009, at 8:31 am, Richard Wilding wrote: > > Hi All, > I'm new to Drupal and this mailing list. > I'm?a front-end designer and have been asked by an architect to 're-skin' a Google Sites project he has set up to?share project images, plans and to-do lists with one of his clients > Google Sites does not allow access to their html / css templates for me to change the page structure and styles, so I'm looking for another platform > I've looked at project management / collaboration platforms like Basecamp and Huddle, but they seem too complex and I really want a simple interface with just the features my client needs > Is Drupal suitable for this or is there another platform that I should investigate? > > Here is a summary of the most important features required: > 1. Restricted access with multiple user accounts > 2. Display text, images, .pdfs and videos within the website pages > 3. Zoom or enlarge images and .pdfs to view details in drawings & .pdf spreadsheets > 4. Include tables of information with column ordering i.e team contact list > 5. Include savable checklists > 6. Page templates need to be?customizable?through html and css > > Thanks and best wishes, > Richard Wilding > -- > [ Drupal support list | http://lists.drupal.org/ ] > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From gwlangie at uci.edu Fri Feb 27 20:27:30 2009 From: gwlangie at uci.edu (Gerald Langiewicz) Date: Fri, 27 Feb 2009 12:27:30 -0800 Subject: [support] Panels and Views Message-ID: <6.2.5.6.2.20090227120707.070c7080@uci.edu> I am stuck here and a little nudge in the right direction would be appreciated. I'm using Drupal 6.9 and Panels 2 for display a list of classes and based on which class is selected of the left panel, I want to display detailed information on the right panel. Those items of the right panel are the fields of a view for a particular node. The left panel is easy to do and the information on the right panel is too. What I need to do is bridge between the two so if I click "Lewiston" I get the information for that course. Thanks for the nudge gerald From cog.rusty at gmail.com Sat Feb 28 00:04:49 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Sat, 28 Feb 2009 02:04:49 +0200 Subject: [support] actions_assignments table error In-Reply-To: <49A81F87.4050403@etrafficsolutions.com> References: <49A6EDAB.9090303@etrafficsolutions.com> <49A81F87.4050403@etrafficsolutions.com> Message-ID: On Fri, Feb 27, 2009 at 7:14 PM, Ryan Thomson wrote: > Yeah I realize this is a database issue, but I was hoping given that a > drupal module made the table 'actions_assignments' I was hoping someone > could tell me which module made that table. My sql knowledge isn't > awesome so I'm hesitant to just delete the table as I have no clue what > it's used for or what I would build it back up with. I am guessing you are using Drupal 5. That table is created by the http://drupal.org/project/actions module, 5.x-2.{n} version. You can find details in the module's actions.install file. > Cog Rusty wrote: >> On Thu, Feb 26, 2009 at 9:29 PM, Ryan Thomson >> wrote: >> >>> Hey all >>> >>> I have an error in my database which is screwing with my ability to >>> export it. My actions_assignments table is giving me this error: >>> #1033 - Incorrect information in files: '.\*****\actions_assignment.frm' >>> >>> Does anyone know what I can do to fix this? If it's the actions module >>> that created this can I disable it, run update.php then delete the table >>> and re-enable the module or soemthing? >>> >> >> >> This is a MySQL error, not Drupal's. It seems that the real file >> associated with that database table has been damaged. >> >> If phpmyadmin can't repair the table you may need to drop it and >> create it from scratch (losing whatever it contains). The details >> depend on your Drupal version. >> >> In some cases, this MySQL error message is misleading and the real >> problem is that your operating system's tmp directory is inaccessible. >> >> >> >>> Thanks! >>> Leet >>> -- >>> [ Drupal support list | http://lists.drupal.org/ ] >>> >>> > > -- > [ Drupal support list | http://lists.drupal.org/ ] > From madflute at anonemusic.com Sat Feb 28 04:30:57 2009 From: madflute at anonemusic.com (A-NO-NE Music) Date: Fri, 27 Feb 2009 23:30:57 -0500 Subject: [support] Can't login Message-ID: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> Drupal 6.8 I am having a weird problem. All the sudden I can't login to my local dev site. The production site is fine. I backup MySQL data from the production site, and when I login to local dev site, the site flashes and do nothing. when I go example.com/user and login, I get access denied error. This is true to my admin account and a few other test accounts I created. I truncated all the cache tables before backing up. I went admin/config/perfrmance and clear the cache before backing up. Any suggestion would be appreciated. I have been doing for a long while, and never encountered this problem before. I can't think of anything that has changed. -- - Hiro Hiroaki Honshuku, A-NO-NE Music, Greater Boston http://a-no-ne.com http://anonemusic.com From vijaiprao at gmail.com Sat Feb 28 04:52:37 2009 From: vijaiprao at gmail.com (VJ) Date: Fri, 27 Feb 2009 23:52:37 -0500 Subject: [support] Can't login In-Reply-To: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> References: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> Message-ID: <600953e00902272052u43b56213iba8206945a00afec@mail.gmail.com> Are you hosting the dev site on a different server? I have seen this error when some hosts upgrade to php 5 If so, adding register_shutdown_function('session_write_close'); at the end of settings.php works On Fri, Feb 27, 2009 at 11:30 PM, A-NO-NE Music wrote: > Drupal 6.8 > > I am having a weird problem. All the sudden I can't login to my local > dev site. The production site is fine. > > I backup MySQL data from the production site, and > when I login to local dev site, the site flashes and do nothing. > when I go example.com/user and login, I get access denied error. > This is true to my admin account and a few other test accounts I > created. I truncated all the cache tables before backing up. I went > admin/config/perfrmance and clear the cache before backing up. > > Any suggestion would be appreciated. I have been doing for a long > while, and never encountered this problem before. I can't think of > anything that has changed. > > > -- > - Hiro > > Hiroaki Honshuku, A-NO-NE Music, Greater Boston > http://a-no-ne.com http://anonemusic.com > > -- > [ Drupal support list | http://lists.drupal.org/ ] > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.drupal.org/pipermail/support/attachments/20090227/6733e502/attachment.htm From madflute at anonemusic.com Sat Feb 28 05:08:00 2009 From: madflute at anonemusic.com (A-NO-NE Music) Date: Sat, 28 Feb 2009 00:08:00 -0500 Subject: [support] Can't login In-Reply-To: <600953e00902272052u43b56213iba8206945a00afec@mail.gmail.com> References: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> <600953e00902272052u43b56213iba8206945a00afec@mail.gmail.com> Message-ID: On 09/02/27(?), at 23:52, VJ wrote: > Are you hosting the dev site on a different server? Thank you for your response. My local dev machine is OSX 10.5.6 Intel Mac. > I have seen this error when some hosts upgrade to php 5 It has been PHP5 since I started, but your comment made me realize I did have a security update on this OSX last week. I took a look at system preferences but I couldn't find anything suspicious. > If so, adding register_shutdown_function('session_write_close'); at > the end of settings.php works I don't know much about PHP but I just tried it out of desperation. Unfortunately it didn't do anything. -- - Hiro Hiroaki Honshuku, A-NO-NE Music, Greater Boston http://a-no-ne.com http://anonemusic.com From pamcaymol at yahoo.com Sat Feb 28 10:40:45 2009 From: pamcaymol at yahoo.com (Pam Caymol) Date: Sat, 28 Feb 2009 02:40:45 -0800 (PST) Subject: [support] Can't login Message-ID: <249029.95001.qm@web59814.mail.ac4.yahoo.com> im so lost , lol > From: VJ > Subject: Re: [support] Can't login > To: support at drupal.org > Date: Saturday, February 28, 2009, 4:52 AM > Are you hosting the dev site on a > different server?? > I have seen this error when some hosts upgrade > to php 5 > If so, adding?register_shutdown_function('session_write_close'); > at the end of settings.php works > > > On Fri, Feb 27, 2009 at > 11:30 PM, A-NO-NE Music > wrote: > > Drupal > 6.8 > > > > I am having a weird problem. ?All the sudden I can't > login to my local > > dev site. ?The production site is fine. > > > > I backup MySQL data from the production site, and > > ? ? ? ?when I login to local dev site, the site > flashes and do nothing. > > ? ? ? ?when I go example.com/user and > login, I get access denied error. > > This is true to my admin account and a few other test > accounts I > > created. ?I truncated all the cache tables before backing > up. ?I went > > admin/config/perfrmance and clear the cache before backing > up. > > > > Any suggestion would be appreciated. I have been doing for > a long > > while, and never encountered this problem before. ?I > can't think of > > anything that has changed. > > > > > > -- > > - Hiro > > > > Hiroaki Honshuku, A-NO-NE Music, Greater Boston > > http://a-no-ne.com ? http://anonemusic.com > > > > -- > > [ Drupal support list | http://lists.drupal.org/ > ] > > > > > -----Inline Attachment Follows----- > > -- > [ Drupal support list | http://lists.drupal.org/ ] From hovercrafter at earthlink.net Sat Feb 28 13:59:32 2009 From: hovercrafter at earthlink.net (Jamie Holly) Date: Sat, 28 Feb 2009 08:59:32 -0500 Subject: [support] Can't login In-Reply-To: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> References: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> Message-ID: <49A94344.7070400@earthlink.net> Try emptying the sessions table in your database, then login again. You may also want to try and clear all the cookies in your browser for the local domain. Jamie Holly http://www.intoxination.net Skype:intoxination Phone: 1-513-252-2919 A-NO-NE Music wrote: > Drupal 6.8 > > I am having a weird problem. All the sudden I can't login to my local > dev site. The production site is fine. > > I backup MySQL data from the production site, and > when I login to local dev site, the site flashes and do nothing. > when I go example.com/user and login, I get access denied error. > This is true to my admin account and a few other test accounts I > created. I truncated all the cache tables before backing up. I went > admin/config/perfrmance and clear the cache before backing up. > > Any suggestion would be appreciated. I have been doing for a long > while, and never encountered this problem before. I can't think of > anything that has changed. > > > -- > - Hiro > > Hiroaki Honshuku, A-NO-NE Music, Greater Boston > http://a-no-ne.com http://anonemusic.com > > From earnie at users.sourceforge.net Sat Feb 28 15:10:44 2009 From: earnie at users.sourceforge.net (Earnie Boyd) Date: Sat, 28 Feb 2009 10:10:44 -0500 Subject: [support] Can't login In-Reply-To: <49A94344.7070400@earthlink.net> References: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> <49A94344.7070400@earthlink.net> Message-ID: <20090228101044.cmf10x816z5wcokw@mail.progw.org> Quoting Jamie Holly : > Try emptying the sessions table in your database, then login again. > > You may also want to try and clear all the cookies in your browser for > the local domain. > Also make sure the files and tmp directories are writable and not full. Login issues of this nature can happen if the sessions cannot be saved. -- 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 madflute at anonemusic.com Sat Feb 28 17:55:59 2009 From: madflute at anonemusic.com (A-NO-NE Music) Date: Sat, 28 Feb 2009 12:55:59 -0500 Subject: [support] Can't login In-Reply-To: <49A94344.7070400@earthlink.net> References: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> <49A94344.7070400@earthlink.net> Message-ID: On 09/02/28(?), at 8:59, Jamie Holly wrote: > Try emptying the sessions table in your database, then login again. Thank you for your response. I just tried. No change. > You may also want to try and clear all the cookies in your browser for > the local domain. Forgot to mention before. That didn't do anything either. On 09/02/28(?), at 10:10, Earnie Boyd wrote: > Also make sure the files and tmp directories are writable and not > full. To my surprise, there is no /tmp on my live site even though admin/ filesystem doesn't give me any error. Again, live site seems to be running fine without /tmp but I just created it manually just in case. I did the same on my local dev machine. Just to be sure I ran chown and chmod on files directory. No change. I then realized all four Drupal 5 and 6 local sites are showing the same problem. They are all different sites. Two of them weren't even updated for a while. Now I feel the last OSX 10.5.6 security patch did this. I just don't know what to do right now. I need to test the new dev version of gradebook module because it gives me the function I need to grade my students today, but I don't want to try this on my live site. -- - Hiro Hiroaki Honshuku, A-NO-NE Music, Greater Boston http://a-no-ne.com http://anonemusic.com From cog.rusty at gmail.com Sat Feb 28 23:03:51 2009 From: cog.rusty at gmail.com (Cog Rusty) Date: Sun, 1 Mar 2009 01:03:51 +0200 Subject: [support] Can't login In-Reply-To: References: <8967F245-EE48-45C4-820A-08896FF61EFC@anonemusic.com> <49A94344.7070400@earthlink.net> Message-ID: On Sat, Feb 28, 2009 at 7:55 PM, A-NO-NE Music wrote: > > On 09/02/28(?), at 8:59, Jamie Holly wrote: >> Try emptying the sessions table in your database, then login again. > > Thank you for your response. ?I just tried. ?No change. > >> You may also want to try and clear all the cookies in your browser for >> the local domain. > > Forgot to mention before. ?That didn't do anything either. > > > On 09/02/28(?), at 10:10, Earnie Boyd wrote: >> Also make sure the files and tmp directories are writable and not >> full. > > To my surprise, there is no /tmp on my live site even though admin/ > filesystem doesn't give me any error. ?Again, live site seems to be > running fine without /tmp but I just created it manually just in > case. ?I did the same on my local dev machine. ?Just to be sure I ran > chown and chmod on files directory. ?No change. > > I then realized all four Drupal 5 and 6 local sites are showing the > same problem. ?They are all different sites. ?Two of them weren't even > updated for a while. ?Now I feel the last OSX 10.5.6 security patch > did this. ?I just don't know what to do right now. Do the URLs of your menu links look correct? Do your menu links work on the local server? Look for any mention of your live domain name in your .htacess file (e.g. in RewriteBase or in any RewriteCond) and in your settings.php files (e.g. in $base_url or in $cookie_domain). Examine the cookies of your local sites in your browser (the session cookies, the ones with names like SESSxxxxxxxx). Do they exist? What "domain" and what "path" do they contain? If you don't see any session cookies for your local sites, run a phpinfo() and check the values of "session.cookie_path" and "session.use_cookies". > I need to test the new dev version of gradebook module because it > gives me the function I need to grade my students today, but I don't > want to try this on my live site. > > > -- > - Hiro > > Hiroaki Honshuku, A-NO-NE Music, Greater Boston > http://a-no-ne.com ? http://anonemusic.com > > -- > [ Drupal support list | http://lists.drupal.org/ ] >