| [00:00:41] | <Davea1> | ecommerce module? |
| [00:00:49] | <JBlaze> | yeah |
| [00:00:53] | * RandomCake__ has joined #drupal-support |
| [00:01:08] | * RandomCake__ is now known as RandomCake |
| [00:01:12] | <Davea1> | hmmm...are you requiring registrations for purchases |
| [00:01:47] | <JBlaze> | but i'm a bit puzzled as to where to point the ssl to. it needs to point to an index file does it not? |
| [00:02:07] | <Davea1> | in what context are you talking about pointing ? |
| [00:02:18] | <Davea1> | apache, drupal, something else? |
| [00:02:56] | * nearlythere has quit () |
| [00:03:04] | <JBlaze> | does the ssl certificate not need to be assigned to an index file? |
| [00:03:08] | <Davea1> | no |
| [00:03:18] | <Davea1> | ssl certs are assigned to domain names |
| [00:03:52] | <JBlaze> | hmmm |
| [00:04:02] | <JBlaze> | i think i need to look into ssl certificates a bit more |
| [00:04:08] | <Davea1> | ok |
| [00:04:56] | * vg__ has quit ("Leaving") |
| [00:06:08] | <NateSide> | in my module ( http://www.drupalbin.com/2281 ) im trying to $array[weight] = 1; but its only changing that in that function, not updating the term, any ideas any one? |
| [00:06:53] | <Davea1> | try &array[weight] in the arguments to the function where you are setting the value |
| [00:06:58] | <Davea1> | oops |
| [00:07:08] | <Davea1> | I mean NateSide try &$array |
| [00:07:25] | * catch has quit (Remote closed the connection) |
| [00:07:48] | * NikLP has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [00:07:57] | * catch has joined #drupal-support |
| [00:08:18] | * kidsleep has joined #drupal-support |
| [00:10:17] | <NateSide> | didnt work. function autotaxweight_taxonomy($op, $type, &$array = NULL) |
| [00:10:46] | <JBlaze> | cheers Davea1 |
| [00:10:49] | <JBlaze> | nite guys |
| [00:10:53] | <Davea1> | nite |
| [00:10:54] | * JBlaze has quit () |
| [00:11:36] | <Davea1> | NateSide, are you saving the changes to the term? |
| [00:12:16] | <futuresoon> | if $ ping example gives "localhost" instead of "example" would that indicate my virtual host isn't working? |
| [00:12:54] | <Davea1> | futuresoon, no, it simply means that your computer thinks that localhost and example resovle to the same IP |
| [00:12:55] | * Zarabadoo has quit (Read error: 104 (Connection reset by peer)) |
| [00:13:05] | <Davea1> | *resolve |
| [00:13:18] | <futuresoon> | hmm, ok |
| [00:13:19] | * samtresler has quit ("Konversation terminated!") |
| [00:13:40] | <NateSide> | Davea1: its a hook_taxonomy in my custom module, I want to change the weight of any terms that dont have parents, you can see what I have so far here http://www.drupalbin.com/2281 |
| [00:14:15] | <futuresoon> | my situation is that http://example is calling sites/default/settings.php instead of sites/example/settings.php |
| [00:14:40] | * JohnAlbin has quit () |
| [00:14:45] | * jscheel has joined #drupal-support |
| [00:14:50] | <Davea1> | futuresoon, change example to example.com in your path and in your local hosts file |
| [00:14:54] | <Davea1> | then try |
| [00:14:59] | <futuresoon> | it's ubuntu hardy and nothing i've changed in /etc/hosts, virtual.conf, sites-available or sites-example do anything |
| [00:15:41] | <futuresoon> | ok i have several places i guess i'd have to change that |
| [00:15:43] | <Davea1> | futuresoon, it calls the DEFAULT settings file when it has no clue what site you want |
| [00:16:01] | <futuresoon> | i see |
| [00:16:03] | <Davea1> | NateSide, I am reviewing your code |
| [00:16:10] | * e-anima has quit (Read error: 110 (Connection timed out)) |
| [00:16:55] | * emmajane has joined #drupal-support |
| [00:18:29] | * RandomCake_ has quit (Connection timed out) |
| [00:19:12] | <NateSide> | Davea1: thanks for helping |
| [00:20:52] | <Davea1> | NateSide, you might need a call to taxonomy_save_term function at the end |
| [00:23:44] | <NateSide> | taxonomy_save_term($array); gave me a Error 500 Internal Server error |
| [00:23:53] | * christefano has joined #drupal-support |
| [00:23:58] | <Davea1> | taxonomy_save_term(&$array) |
| [00:24:15] | <NateSide> | but it did work! |
| [00:24:39] | * jscheel has quit () |
| [00:24:54] | <NateSide> | do i need to put & in front of all my $array, and what does that do? |
| [00:25:55] | <Davea1> | NateSide, go to php.net and read about variable scope |
| [00:26:36] | <NateSide> | still get a 500 error |
| [00:27:28] | <Davea1> | http://api.drupal.org/api/function/taxonomy_save_term/5 |
| [00:30:23] | * cgardner has quit () |
| [00:30:34] | <ttbailey> | What file should I be looking to edit to customize the built-in user login block? |
| [00:30:52] | <ttbailey> | I don't like the <ul> look - want to just center it |
| [00:30:59] | * thinkling has left #drupal-support () |
| [00:31:09] | <NateSide> | im confused. i read about the varible scope but didnt see anything about & |
| [00:31:11] | <Davea1> | ttbailey, edit the style.css file |
| [00:31:33] | <Davea1> | ttbailey, once you find the ul that is used in the block |
| [00:32:22] | <Davea1> | NateSide, http://www.php.net/manual/en/functions.arguments.php |
| [00:33:01] | <NateSide> | i see, & is a refrence |
| [00:33:08] | <Davea1> | :) |
| [00:33:20] | <Davea1> | versus a COPY |
| [00:33:31] | <NateSide> | but i dont understand why im getting this 500 error |
| [00:33:34] | <ttbailey> | Daveal, looks like it doesn't exist - probably why it's ugly and not in style with the rest of the theme... |
| [00:33:46] | * davidstrauss has joined #drupal-support |
| [00:33:59] | <Davea1> | NateSide, that I can't explain- can you tail your apache logs and see where it dies? |
| [00:34:52] | * catch has quit ("Leaving") |
| [00:35:15] | <futuresoon> | daveal: i changed everything to example.com but it still uses the default folder |
| [00:35:31] | <Davea1> | and you can ping example.com? |
| [00:36:14] | <Davea1> | futuresoon, and you can ping example.com? |
| [00:36:21] | <NateSide> | Davea1: wierd, i dont have an error log, all i see is access ftp and mail |
| [00:36:41] | <futuresoon> | sorry i had to figure out how to stop it pinging www.example.com lol |
| [00:36:43] | * Anti73 has joined #drupal-support |
| [00:36:54] | <Davea1> | NateSide, is this your workstation , a remote server? |
| [00:37:29] | <futuresoon> | yeah it says example.com is localhost |
| [00:37:37] | <Davea1> | ok |
| [00:37:40] | <NateSide> | Davea1: its a 1and1 server, we should be moving over to a virtual private server in a week or two tho |
| [00:37:56] | <futuresoon> | 64 bytes from localhost (127.0.0.1): icmp_seq=2 ttl=64 time=0.032 ms |
| [00:38:08] | * Criticality|away is now known as Criticality |
| [00:38:11] | * Excallibur has quit (Read error: 110 (Connection timed out)) |
| [00:38:13] | <NateSide> | i guess i call 1and1 and see if tech support can get me that log |
| [00:38:46] | <Davea1> | NateSide, what version of Drupal? |
| [00:38:59] | <ttbailey> | Davea1, so is there a way to kill the <ul>< li> completely and just make it text? I can format the text now, but I want to completely kill the bullet points.... |
| [00:39:05] | <Davea1> | futuresoon, ok, can you bring up http://example.com ? |
| [00:39:12] | <NateSide> | Davea1: 5 |
| [00:39:29] | * grugnog_office has quit (Remote closed the connection) |
| [00:39:33] | <Davea1> | ttbailey, edit block.tpl.php in your theme directory- it will affect ALL blocks |
| [00:39:35] | <ttbailey> | Wow, this guy's good... :) |
| [00:39:37] | <futuresoon> | yeah it says It Works! and then if i go to http://example.com/install.php it's definitely using default/settings.php |
| [00:40:05] | <Davea1> | futuresoon, example.com is a copy of default? |
| [00:40:15] | <futuresoon> | daveal right |
| [00:40:43] | <Davea1> | futuresoon, so change the pw in your mysql parameter in default/settings.php and reload |
| [00:40:49] | <guest607_> | ok ok i am back with a quickie ..i have added field to the user_registration form using form_alter and am getting an error.. and i wanna access these values. An illegal choice has been detected. Please contact the site administrator. |
| [00:41:01] | <futuresoon> | daveal: my goal is multi-site |
| [00:41:13] | <Davea1> | futuresoon, this will ensure that the site WONT use default OR at least tell us if it us |
| [00:41:27] | <Davea1> | /us /us |
| [00:41:38] | <Davea1> | us=is |
| [00:41:58] | * MediaDoneRigh1 has joined #drupal-support |
| [00:42:02] | <Davea1> | NateSide, did this just start with your module? |
| [00:42:08] | <futuresoon> | daveal: sure, i get it---i can tell it's using default cause i had to chmod 666 /var/www/sites/default/settings.php for the install.php to work |
| [00:42:43] | <futuresoon> | i just can't figure out why it's doing that |
| [00:42:53] | <Anti73> | When you create a menu in drupal, it creates a block by the same name, under block configurations, you have the ability to conditionally display that block. If I have many menus, would it be faster to create another block that calls the correct menu based on url path? |
| [00:43:10] | <Davea1> | NateSide, your 500 error? |
| [00:43:45] | <Davea1> | futuresoon, ok so you have a different db for example.com ? |
| [00:44:11] | <Davea1> | guest607_, are you saving these values somewhere? |
| [00:44:30] | <NateSide> | yes, it started when we taxonomy_save_term(&$array); , id does save it tho |
| [00:44:31] | <Davea1> | guest607_, the profile module does this same function for you without using formapi |
| [00:44:31] | <guest607_> | i will pass them to another function somewhere |
| [00:44:33] | <futuresoon> | yeah for localhost i was using a db named drupal with 42 tables and for example i was using example with 0 tables |
| [00:44:47] | <futuresoon> | but of course i could never connect example |
| [00:44:51] | <guest607_> | but i dont' want this info in the user's profile |
| [00:45:16] | <futuresoon> | because it won't look at sites/example.com/settings.php |
| [00:45:20] | <Davea1> | NateSide, can yu post your entire function again? |
| [00:45:53] | <Davea1> | NateSide, use http://isi.pastebin.com |
| [00:46:22] | <Davea1> | futuresoon, so you have settings file with all the stuff , all ready for a fresh install ? |
| [00:46:41] | <Davea1> | futuresoon, and you have apache configured to answer for both domains ? |
| [00:46:59] | <futuresoon> | i suspect it's a problem with apache config but i've redone the config a couple times now |
| [00:47:07] | <NateSide> | Davea1: http://www.drupalbin.com/2284 |
| [00:47:10] | <futuresoon> | i've never gotten it right yet though |
| [00:47:31] | * BrightLoudNoise has quit (Remote closed the connection) |
| [00:47:44] | <Davea1> | guest607_, so if you create these values, when the form is saved, you have to save them- is that the step you are on ? |
| [00:48:01] | <Davea1> | futuresoon, I am running a multisite setup in several places |
| [00:48:02] | * ipwa_ has joined #drupal-support |
| [00:48:09] | <guest607_> | i want to pass them to a _create function to add to a node |
| [00:48:29] | <futuresoon> | daveal: i mostly followed this http://www.howtoforge.com/multisite_drupal_installation_ubuntu |
| [00:48:35] | * BrightLoudNoise has joined #drupal-support |
| [00:48:51] | <guest607_> | http://drupal.pastebin.com/d771d43b8 |
| [00:48:53] | <guest607_> | messy sry |
| [00:49:09] | <guest607_> | I want to pass the extra field to my _create function |
| [00:49:30] | * kthomas_vh has quit (Success) |
| [00:49:34] | <Davea1> | NateSide, http://www.drupalbin.com/2285 |
| [00:49:52] | <NateSide> | Davea1: sorry didnt see that, want me to paste again at the other site? |
| [00:50:11] | <Davea1> | NateSide, I prefer pastebin- no problem though |
| [00:50:20] | <level09> | good morning guys :D whats the topics for today |
| [00:50:46] | <Davea1> | guest607_, then you need to start writing your own module and that will require some reading on your part |
| [00:51:15] | <Davea1> | Davea1, I would highly suggest Pro Drupal Development as an alternative to reading online |
| [00:51:17] | <guest607_> | write a whole module just to capture 2 vars |
| [00:51:28] | <Davea1> | guardian, I would highly suggest Pro Drupal Development as an alternative to reading online |
| [00:51:35] | <guest607_> | i know how to make a module and that seems like overkill to catch 2 values |
| [00:51:49] | <level09> | I wrote some modules in less than 2 minutes :D |
| [00:51:59] | <guest607_> | http://drupal.pastebin.com/d771d43b8 |
| [00:52:01] | <Davea1> | guest607_, a whole module is NOT THAT MUCH really- I am just sitting here in Texas trying to help :) |
| [00:52:20] | <guest607_> | O i appreciate everything sorry if i sound combative |
| [00:52:25] | <guest607_> | just poking for ideas |
| [00:52:29] | <Davea1> | guest607_, no worries |
| [00:52:39] | <Davea1> | I have some modules that are 20 lines long |
| [00:52:57] | <futuresoon> | more like a modulette :-P |
| [00:52:58] | <guest607_> | that link i sent u was a module |
| [00:53:12] | <Davea1> | futuresoon, are you using the cvs versions as in the tutorial |
| [00:53:15] | <guest607_> | funny |
| [00:53:17] | <guest607_> | http://drupal.pastebin.com/d771d43b8 |
| [00:53:25] | <futuresoon> | daveal: no, the part i was following is "setting up multiple sites" |
| [00:53:43] | <Davea1> | futuresoon, ok |
| [00:54:15] | <futuresoon> | daveal: "create the drupal sites" it's called |
| [00:54:16] | <level09> | i have modules that are 5 lines long |
| [00:54:29] | <futuresoon> | level09: that's nothing----i have a module with no code in it :-P |
| [00:54:31] | <Davea1> | level09 is a show off |
| [00:54:42] | <level09> | lol |
| [00:54:44] | <Davea1> | :) |
| [00:54:44] | <level09> | well |
| [00:55:17] | <Davea1> | NateSide, did you see that ? |
| [00:55:26] | * dchakrab has joined #drupal-support |
| [00:55:34] | <level09> | futuresoon: I know that kind of modules :D |
| [00:55:40] | <ttbailey> | Davea1, Looks like it's actually pulling the format from the $block->content of the user login |
| [00:55:44] | <futuresoon> | :D |
| [00:55:53] | <level09> | used to do alot of that type |
| [00:56:26] | * nonsie has quit ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org") |
| [00:57:50] | <NateSide> | Davea1: sorry, on the phone with tech support trying to get that error log |
| [00:58:08] | <Davea1> | futuresoon, so you have a sites directory? |
| [00:58:19] | <futuresoon> | sure thing |
| [00:58:27] | <futuresoon> | i'm wondering if my sites-enabled directory is wrong |
| [00:58:28] | <NateSide> | Davea1: hehe, i see, i have a module that is 11 lines long, and most of that is formatting |
| [00:58:29] | <Davea1> | futuresoon, what dirs are in it ? |
| [00:58:37] | <futuresoon> | let's see... |
| [00:58:42] | * MediaDoneRigh1 has quit (Connection reset by peer) |
| [00:58:54] | <Davea1> | another showoff |
| [00:59:03] | <futuresoon> | daveal: all, default and example.com |
| [00:59:24] | <Davea1> | futuresoon, did you set the site_name in default/settings.php ? |
| [01:00:06] | * bshumate has quit ("*poof*") |
| [01:00:14] | <NateSide> | Davea1: any idea whats going on? if its dying, its dying after updating the term, cause my term gets weighted |
| [01:00:24] | <ttbailey> | level09, maybe you know - trying to edit the actual content within the user login box (want to kill the bullet points) - I found where I can edit the css and the overall block appearance (thanks Davea1) but I want to completely remove them... which I can't do with those |
| [01:00:52] | <futuresoon> | daveal: ok i just set it---never had to before |
| [01:00:56] | <Davea1> | NateSide, did you add the return statement ? |
| [01:01:01] | * ipwa has quit (Connection timed out) |
| [01:01:09] | <level09> | ttbailey: what exactly are u trying to remove ? |
| [01:01:16] | <Davea1> | futuresoon, NOPE- dont set it in default/settings.php |
| [01:01:30] | <futuresoon> | daveal: ok i'll hash it out again |
| [01:01:41] | <guest607_> | Davea1: Why can i not pull the values out of the altered user_reg form |
| [01:01:43] | * nomad411 has joined #drupal-support |
| [01:01:46] | <Davea1> | futuresoon, add it in example.com/settings.php |
| [01:01:49] | <guest607_> | with $form_vaules |
| [01:02:01] | <guest607_> | why does it give me an illegal error |
| [01:02:01] | * aZ-1314 has quit (Read error: 104 (Connection reset by peer)) |
| [01:02:01] | <NateSide> | Davea1: no i didnt |
| [01:02:04] | <futuresoon> | daveal: it's not reading example.com/settings.php |
| [01:02:14] | <Davea1> | guest607_, I am not saying you can't- I am just saying that you have to manage it with some code ( a module) |
| [01:02:17] | <guest607_> | chmod 777 |
| [01:02:29] | <guest607_> | yes i have code if u have time to reivew |
| [01:02:30] | <guest607_> | http://drupal.pastebin.com/d771d43b8 |
| [01:02:32] | <ttbailey> | level09, the ul/li tags that make the 'lost password' and 'create new account?' points so dern ugly |
| [01:02:39] | * Excallibur has joined #drupal-support |
| [01:03:03] | <NateSide> | ohh, i see your message now |
| [01:03:21] | * guest607_ is now known as TZ |
| [01:03:21] | <Davea1> | NateSide, it is a guess |
| [01:03:58] | <level09> | ttbailey: okay, I'd make a custom tpl file for that |
| [01:04:00] | * TZ is now known as TZ_ |
| [01:04:07] | <level09> | one moment .. i'll get u a link |
| [01:04:12] | <level09> | http://drupal.org/node/19855 |
| [01:04:12] | <Druplicon> | http://drupal.org/node/19855 => Customising the login form => 12 IRC mentions |
| [01:04:43] | * MediaDoneRight has quit (Connection timed out) |
| [01:04:57] | * Bojhan has quit () |
| [01:05:08] | <ttbailey> | ah - that's what I'm looking for - thanks again! |
| [01:05:26] | * TZ_ is now known as http |
| [01:06:08] | <ipwa_> | hey level09! |
| [01:06:35] | * christefano has quit (Read error: 60 (Operation timed out)) |
| [01:06:42] | <level09> | ipwa_ !! |
| [01:06:47] | <Davea1> | http, so what is failing ? |
| [01:07:01] | <Davea1> | http, which line is the error happening ? |
| [01:07:02] | <level09> | hey :) |
| [01:07:11] | <ipwa_> | hows your site going? |
| [01:07:18] | <ipwa_> | :) |
| [01:07:25] | <http> | it is saying An illegal choice has been detected. Please contact the site administrator. |
| [01:07:33] | * christefano has joined #drupal-support |
| [01:07:36] | <http> | i believe its because of the 2 extra fields |
| [01:07:53] | * sepeck_ is now known as sepeck |
| [01:08:02] | <Davea1> | http, yeah, you added something to the form without telling it how to handle it |
| [01:08:06] | <ipwa_> | level09: you live in the States? |
| [01:08:19] | <level09> | not really :( |
| [01:08:23] | <level09> | i'm in the gulf :D |
| [01:08:27] | <ipwa_> | me neither |
| [01:08:32] | <ipwa_> | whereabouts? |
| [01:08:50] | * sicjoy has left #drupal-support () |
| [01:08:55] | * setvik has joined #drupal-support |
| [01:09:37] | <level09> | Dubai |
| [01:09:45] | <level09> | but I move around alot :D |
| [01:09:47] | <ipwa_> | oh cool! |
| [01:09:51] | <level09> | where are u ? |
| [01:09:54] | <ipwa_> | I'd love to go there |
| [01:10:05] | <level09> | yeah, its a little bit hot though |
| [01:10:06] | <ipwa_> | I'm from Peru, but I'm living in the UK |
| [01:10:07] | * ekiczek has joined #drupal-support |
| [01:10:09] | <http> | Davea1: how set a handle for it |
| [01:10:15] | <setvik> | My Primary Links disappear on "Page not found" screens in Drupal 6.2... Anyone know if this is a bug? or by design? |
| [01:10:34] | <level09> | cool |
| [01:10:52] | <ipwa_> | I think I'm going to Drupalcon this year again and just realized I missed the first deadline, d'oh |
| [01:11:15] | <ipwa_> | do they do any DrupalCamps or something similar in Dubai? |
| [01:12:12] | <Davea1> | http, what kind of node is being created? |
| [01:12:38] | <http> | its a group node for organic groups |
| [01:12:41] | <level09> | never heard of any yet :D |
| [01:12:42] | * jwalling has joined #drupal-support |
| [01:12:51] | <level09> | but that would be something |
| [01:12:54] | <http> | trying to create a group at the same time as user |
| [01:13:02] | <ipwa_> | I'm going back home in a few months and I want to do one, maybe even in Cuzco |
| [01:13:07] | <http> | at least the basic of it then the user can enter the rest of the details later |
| [01:13:07] | <lronPaw> | hi |
| [01:13:11] | <level09> | here in dubai they prefer commercial - closed source software |
| [01:13:11] | <Davea1> | http, so each user will have their own group ? |
| [01:13:16] | <lronPaw> | is there a way I can let users change their username? |
| [01:13:20] | <lronPaw> | my client sucks |
| [01:13:23] | <level09> | especially microsoft's stuff |
| [01:13:33] | <level09> | .net ASP C# etc ... |
| [01:13:37] | <lronPaw> | i dont think they have EVER used an online forum/member based website |
| [01:13:50] | <ipwa_> | here they have regular meetings, but haven't been to one in a few months |
| [01:14:02] | * kmonty_work is now known as kmonty_work_afk |
| [01:14:15] | <ipwa_> | yeah I understand, back home is the same, but slowly changing |
| [01:14:18] | <http> | nope i will add a conditional i think so only one role runs that func |
| [01:14:23] | <http> | a group creator role |
| [01:14:32] | <http> | hopefully that will work |
| [01:14:36] | <level09> | ipwa_: do u work in a company ? or on ur own projects / |
| [01:15:17] | <ipwa_> | I used to work freelance, but now I'm on contract with a company |
| [01:15:25] | <Davea1> | http, I did something similar with og- each user can create their own party- but I added a link from the page they see when they complete the registration page |
| [01:15:31] | * RobertLaptop has joined #drupal-support |
| [01:15:38] | <ipwa_> | but I still do occasionally freelance |
| [01:15:42] | * RobertMLaptop has quit ("Leaving") |
| [01:15:44] | <Davea1> | http, the link says create a party! |
| [01:15:51] | <http> | i would go with ur method but i need it dummy proof |
| [01:16:01] | <http> | like real dummy proof |
| [01:16:03] | <Davea1> | http, then they are the owner |
| [01:16:21] | <level09> | great :) |
| [01:16:39] | <freescroll> | hi, i've created a block view that displays a list of terms from a vocabulary, but it's displaying each term multiple times depending on how many nodes are using the term, how can i limit it to show each term once? (just using views in drupal 5x) |
| [01:16:56] | <Davea1> | Davea1, then what about this- use the profile module to capture the data- then have your module use that data to copy it over to the og node that you create |
| [01:16:59] | <ipwa_> | hey by the way has anyone themed the exposed filters in forms to appear as radio buttons? |
| [01:17:11] | <jwalling> | staging and deployment was hot topic at DrupalCamp Seattle - does anyone have a favorite approach or best practices reference? |
| [01:17:24] | <ipwa_> | I want to target a specific filter, anyone has any experience with that? |
| [01:17:31] | <NateSide> | Davea1: still getting the error |
| [01:18:03] | <Davea1> | NateSide, no fun |
| [01:18:13] | <Davea1> | http, then what about this- use the profile module to capture the data- then have your module use that data to copy it over to the og node that you create |
| [01:18:43] | <Davea1> | NateSide, error logs? |
| [01:18:45] | <ipwa_> | jwalling: I've heard that its good to have all your developments modules like devel for example in a separate folder so you can create a script to deply your site and in the process delete that folder |
| [01:18:56] | <http> | that may the way |
| [01:18:57] | <ipwa_> | *deploy |
| [01:18:59] | <http> | that will work |
| [01:19:06] | <http> | lets try |
| [01:19:08] | <Davea1> | ipwa_, a rsync script might help as well |
| [01:19:15] | <ttbailey> | level09, OK, so that taught me how to add a little text above and below the exact same field, but didn't tell me how to edit the block that it's pulling from... why can't I just find that block it's pulling from and edit it? |
| [01:19:36] | * dougvann has joined #drupal-support |
| [01:19:38] | <Davea1> | ttbailey, let me check something |
| [01:19:45] | <ttbailey> | gracias |
| [01:19:47] | <ipwa_> | Davea1: nice, wasn't aware of rsync :) |
| [01:20:07] | <NateSide> | Davea1: 35 mins on the phone with tier 1, trying to get transfered to to tier 2, I asked about the error logs and she tells me I need to rename my index.php to index.html, im like what the hell? |
| [01:21:18] | <jwalling> | ipwa_ that sounds like a good tip - see also http://del.icio.us/thinkling/drupal+deployment |
| [01:21:22] | <level09> | ttbailey: i'm not sure what u are trying to do , custom blocks based on modules can be done with block-module.tpl.php files |
| [01:21:23] | * Michelle2 has joined #drupal-support |
| [01:21:27] | <Davea1> | NateSide, another reason for me to dislike 1and1 |
| [01:21:33] | <Davea1> | ttbailey, http://isi.pastebin.com/m3614b37a |
| [01:21:46] | * Michelle has quit (Nick collision from services.) |
| [01:21:48] | * Michelle2 is now known as Michelle |
| [01:22:17] | <Davea1> | ttbailey, and http://isi.pastebin.com/d10a4c149 |
| [01:22:44] | <Davea1> | ttbailey, the first post is a portion of template.php, the second is user_profile.tpl.php |
| [01:22:50] | * ipwa_ is tagging a del.icio.us page, lol |
| [01:22:55] | <ipwa_> | thanks jwalling |
| [01:23:12] | <Davea1> | ipwa_, with rsync, you can also exclude things like symlinks, cvs/svn crud, etc |
| [01:23:33] | <futuresoon> | anybody ever done multisite on ubuntu hardy? |
| [01:23:38] | <ipwa_> | cool! |
| [01:23:43] | <Davea1> | futuresoon, sitll no joy ? |
| [01:23:57] | <futuresoon> | daveal: still none |
| [01:24:07] | <Davea1> | futuresoon, you have apache configured with a virtualhost ip |
| [01:24:19] | <Davea1> | futuresoon, apache is where your problem lies I think |
| [01:24:21] | <futuresoon> | maybe that's something----what do you mean ip? |
| [01:24:29] | <futuresoon> | daveal: i think so too |
| [01:24:39] | <ipwa_> | anyone knows how to theme exposed filters to appear as radio buttons? |
| [01:24:41] | <Davea1> | futuresoon, what version of apache? |
| [01:24:48] | <futuresoon> | apache2 |
| [01:25:06] | <Davea1> | futuresoon, so you have a httpd.conf ? |
| [01:25:20] | <futuresoon> | the only thing in it is my ServerName as localhost |
| [01:25:27] | <ipwa_> | sorry I had already asked here, thought I was in another channel |
| [01:25:46] | * MediaDoneRight has joined #drupal-support |
| [01:26:03] | * gusaus has quit (Read error: 104 (Connection reset by peer)) |
| [01:26:21] | <futuresoon> | either i'm missing a step or i'm making a mistake on one of the steps.... |
| [01:26:27] | * activelyOUT has joined #drupal-support |
| [01:26:30] | * gusaus has joined #drupal-support |
| [01:26:37] | <Davea1> | futuresoon, :) |
| [01:26:53] | <jwalling> | ipwa_ i am working with a themer to convert a dropdown list to include checkbox list for filters. If you have only checkbox, the space needed can be extensibe |
| [01:27:40] | <ipwa_> | there's a module for that also, http://drupal.org/project/views_checkboxes |
| [01:28:18] | <ipwa_> | but it does it globally, I want to target a specific one with a function |
| [01:28:33] | * xur1z_ has quit (Read error: 104 (Connection reset by peer)) |
| [01:28:45] | <futuresoon> | daveal: what's the purpose of moving the NameVirtualHost into virtual.conf (if indeed that's what i did, which i'm checking) |
| [01:29:08] | * alpritt has left #drupal-support () |
| [01:29:35] | <Davea1> | futuresoon, unbuntu is not my linux of choice. I use centos. it appears that each distro does things a little differently |
| [01:29:41] | * _DT has joined #drupal-support |
| [01:29:51] | <Davea1> | futuresoon, you have a conf file for default? |
| [01:29:52] | <http> | yup each distro separtes there conf different |
| [01:29:55] | <futuresoon> | yeah, i'd love standardizatrion in this area because i'm not changing linux distros for a while after this |
| [01:29:56] | <Davea1> | can you post it? |
| [01:30:07] | <jwalling> | ipwa_ good suggestion, the approach I was considering might be more targetted |
| [01:30:22] | <futuresoon> | sure one sec |
| [01:30:27] | <Davea1> | futuresoon, kind of like people and opinions! |
| [01:30:36] | * bjfresh has joined #drupal-support |
| [01:30:42] | <Davea1> | quake wars is calling |
| [01:30:48] | * coder1 has quit () |
| [01:30:55] | * xur1z has joined #drupal-support |
| [01:30:56] | <futuresoon> | hah, yeah----it's like the swiss watchmaker who went door to door trying to get people to synchronize their clocks----they said it was a good idea "as long as everyone sets it to MY time" |
| [01:30:57] | <ipwa_> | I've tried this using phptemplate_form_alter in my template.php |
| [01:30:59] | <ipwa_> | http://drupal.org/node/138374#comment-545078 |
| [01:31:00] | <Druplicon> | http://drupal.org/node/138374 => Exposed views filter widgets as checkboxes and radio buttons => Form Tweaker, Code, normal, patch (code needs review), 3 IRC mentions |
| [01:31:06] | <ipwa_> | but can't get it working |
| [01:31:28] | <activelyOUT> | i have a question: in dev node.. i am taking a look at node_access entries for nodes shown on a page. What is gid? also I have an entry 1 and an entry '2" for it. what does that mean? |
| [01:31:42] | <ipwa_> | I think this does it globally too, but that could be modified |
| [01:32:09] | <_DT> | ipwa_ you can't use hook_form_alter in template.php you'd need to use a module |
| [01:32:25] | <_DT> | template.php is for theming |
| [01:32:27] | <futuresoon> | daveal: http://pastebin.ca/1059589 this is my sites-available/default |
| [01:32:27] | * mcneelycorp has joined #drupal-support |
| [01:32:28] | <_DT> | etc... |
| [01:32:51] | <Davea1> | activelyOUT, I believe it means the role of the owner that created the node |
| [01:32:52] | <ipwa_> | thanks _DT someone told me I coulddo it in my template that's why I tried, but thanks for the heads up |
| [01:33:05] | <_DT> | you may be able to use phptemplate_formid($form){} though |
| [01:33:11] | <ipwa_> | _DT: have you ever themed exposed filter? |
| [01:33:20] | <activelyOUT> | daveal, thanks so if it has two entries it just means the roles associated with the owner? |
| [01:33:27] | <ttbailey> | Davea1, I can't follow what's going on in those - when I cut and paste, I either get an error or I get the same login but with a bit of text before and after the same login block (as in when you copy and paste this code http://drupal.org/node/19855 ) |
| [01:33:27] | <Druplicon> | http://drupal.org/node/19855 => Customising the login form => 13 IRC mentions |
| [01:33:27] | * ipwa_ is trying that out |
| [01:33:28] | <Davea1> | activelyOUT, es |
| [01:33:37] | <_DT> | ipwa_ I've used views filter block and done a little theming of it yes |
| [01:33:57] | <Davea1> | futuresoon, copy that file into a safe place |
| [01:34:22] | <futuresoon> | daveal: like a backup? |
| [01:34:30] | <Davea1> | ttbailey, that was my sample to you- did you remove my vars ? |
| [01:34:34] | <Davea1> | futuresoon, yet |
| [01:34:38] | <_DT> | ipwa_: this one can be useful: http://drupal.org/project/views_filterblock |
| [01:34:38] | <Davea1> | futuresoon, yes |
| [01:34:45] | <activelyOUT> | hi, i am using the menu_tree function to print out the menu in a block. How can I theme that block to be a drop down like a regular filter block would be? |
| [01:35:00] | * ceardach has joined #drupal-support |
| [01:35:32] | * mqueiros has quit () |
| [01:35:41] | <futuresoon> | daveal: ok |
| [01:35:58] | <Davea1> | futuresoon, make another copy in the same dir |
| [01:36:08] | <Davea1> | call it example.com.conf |
| [01:36:10] | <futuresoon> | daveal: yeah it's called "example" |
| [01:36:20] | <futuresoon> | they're not called .conf in ubuntu i don't think |
| [01:36:38] | <Davea1> | futuresoon, you have a httpd.conf or apache.conf ? |
| [01:36:40] | <_DT> | menu_form_alter? |
| [01:36:41] | <Druplicon> | menu_form_alter: Implementation of hook_form_alter(). Adds menu item fields to the node form. => menu_form_alter(&$form, $form_state, $form_id) => http://api.drupal.org/api/function/menu_form_alter/6 |
| [01:36:53] | <_DT> | activelyOUT, have a look at that for an example ^ |
| [01:36:59] | * ablemike has joined #drupal-support |
| [01:36:59] | <futuresoon> | i have an httpd.conf but it was empty---could this be my problem? everything works though |
| [01:37:23] | <Davea1> | futuresoon, not the problem |
| [01:37:26] | * ablemike has quit (Read error: 104 (Connection reset by peer)) |
| [01:37:32] | * ablemike has joined #drupal-support |
| [01:37:50] | <ceardach> | Whats the problem? Maybe I can help out |
| [01:37:54] | * ablemike has quit (Read error: 54 (Connection reset by peer)) |
| [01:38:24] | * ablemike has joined #drupal-support |
| [01:38:26] | <futuresoon> | ceardach: possible apache config problem (since that's where i'm least knowledgeable about multisite) |
| [01:38:44] | <ipwa_> | thanks _DT with that I can alter the form, it doesn't do the checkboxes but I can alter it with that |
| [01:38:48] | <futuresoon> | basically http://example is calling the sites/default/settings.php instead of the sites/example/settings.php |
| [01:38:57] | * ablemike has quit (Read error: 104 (Connection reset by peer)) |
| [01:38:58] | <Davea1> | futuresoon, look here http://pastebin.ca/1059592 |
| [01:39:02] | <ipwa_> | I have used that module to do the search boxes for specific pages |
| [01:39:02] | <Davea1> | futuresoon, line 3 |
| [01:39:02] | <ceardach> | hmmmm |
| [01:39:15] | <ipwa_> | but ended up doing search boxes for cck types |
| [01:39:17] | * mikebishop has joined #drupal-support |
| [01:39:17] | * Alex_UA has joined #drupal-support |
| [01:39:25] | <ipwa_> | but I like the module its really good :) |
| [01:39:26] | <futuresoon> | daveal: that's so funny, ok |
| [01:39:33] | * protitude has joined #drupal-support |
| [01:39:47] | * nielsbom has quit ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]") |
| [01:39:50] | * mikebishop has quit (Read error: 54 (Connection reset by peer)) |
| [01:40:03] | * AlexUA has quit (Read error: 104 (Connection reset by peer)) |
| [01:40:05] | * mmmmmmmike has joined #drupal-support |
| [01:40:09] | <Davea1> | futuresoon, in the original file, put this http://pastebin.ca/1059596 |
| [01:40:13] | * dougvann has quit (Read error: 60 (Operation timed out)) |
| [01:40:15] | * Anti73 has quit ("Ex-Chat") |
| [01:40:20] | <Davea1> | futuresoon, line 3 |
| [01:40:28] | <ceardach> | futuresoon: trying putting the tld in the folder name. sites/example.com/settings.php |
| [01:40:46] | * mmmmmmmike has quit (Read error: 104 (Connection reset by peer)) |
| [01:40:47] | <activelyOUT> | _DT, will do |
| [01:41:16] | <Davea1> | futuresoon, so you should have 2 files that we changed- restart apache |
| [01:41:21] | * mikebishop has joined #drupal-support |
| [01:41:59] | * activelyOUT has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [01:42:00] | * mikebishop has quit (Read error: 104 (Connection reset by peer)) |
| [01:42:11] | <jwalling> | ipwa_ if you get a working solution for targetting filter check list, would you post it to http://drupalbin.com/ and send me a message at wallingconsulting-at-gmail-dot-com? |
| [01:42:57] | <ipwa_> | yeah definitely I'll keep your mail on my address book |
| [01:43:20] | <jwalling> | ipwa_ thanks for the feedback |
| [01:43:31] | <ipwa_> | np :) |
| [01:43:38] | * [alphex] has quit ("This computer has gone to sleep") |
| [01:43:48] | <futuresoon> | daveal: i'm just navigating bash right now |
| [01:43:57] | <Davea1> | futuresoon, w00t! |
| [01:44:30] | * ttbailey has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [01:44:44] | <jwalling> | time to go see WALL-E |
| [01:45:15] | * maynards-girl has joined #drupal-support |
| [01:45:15] | * xur1z has quit (Read error: 104 (Connection reset by peer)) |
| [01:45:18] | <futuresoon> | daveal: lol i mean to make the changes |
| [01:45:36] | * xur1z has joined #drupal-support |
| [01:45:40] | * jwalling has left #drupal-support ("Konversation terminated!") |
| [01:46:12] | <futuresoon> | daveal: should i put ServerName localhost into default? |
| [01:46:21] | <Davea1> | futuresoon, sure |
| [01:46:26] | * pcwic1 has joined #drupal-support |
| [01:46:30] | * brainycat has joined #drupal-support |
| [01:46:42] | * robstandard has joined #drupal-support |
| [01:47:32] | <futuresoon> | daveal: no change, even with a reload |
| [01:47:53] | * purserj has joined #drupal-support |
| [01:48:03] | * naught101 has joined #drupal-support |
| [01:48:12] | <Davea1> | futuresoon, did you create the symlinks like the article suggested |
| [01:48:19] | <futuresoon> | yeah i'm getting used to that |
| [01:48:21] | <Davea1> | futuresoon, to BOTH files |
| [01:48:29] | <futuresoon> | ok, now hold a sec, both files lemme see |
| [01:48:50] | <futuresoon> | does a ~ at the end of the files mean they're symlinked elsewhere? |
| [01:48:54] | * Samonoske has joined #drupal-support |
| [01:49:00] | * cgardner has joined #drupal-support |
| [01:49:01] | <Davea1> | futuresoon, no |
| [01:49:06] | <futuresoon> | i dunno why the ~ appears at the end---it hasn't caused problems so far |
| [01:49:12] | <futuresoon> | not that i noticed |
| [01:49:14] | <futuresoon> | ok |
| [01:49:24] | <Davea1> | futuresoon, what editor do you use? |
| [01:49:31] | <futuresoon> | gedit |
| [01:49:42] | <Davea1> | futuresoon, that is probably gedit crud |
| [01:49:53] | <futuresoon> | i see |
| [01:49:57] | <robstandard> | When I create 'Pages' content they are created in this style: '*/node/1'. I want to have pages that are */[title of page]. Is this possible via drupal settings or modules? |
| [01:50:09] | <Davea1> | futuresoon, but you have one without the tilde as well right ? |
| [01:50:17] | <cgardner> | Does anyone know of a module or script that will spider a site and tell you which links return a 404? |
| [01:50:32] | <ceardach> | robstandard: Install the pathauto module |
| [01:50:34] | <Davea1> | cgardner, check with freshmeat.net |
| [01:50:39] | * davidstrauss has quit () |
| [01:50:49] | <_DT> | cgardner: google? |
| [01:50:52] | <_DT> | ;-) |
| [01:51:04] | * djtansey has joined #drupal-support |
| [01:51:07] | <cgardner> | _DT: yeah, but I don't think this site has been spidered by google yet. |
| [01:51:09] | * Excallibur has quit () |
| [01:51:10] | <futuresoon> | daveal: sure thing |
| [01:51:14] | * yareckon has joined #drupal-support |
| [01:51:18] | <ceardach> | cgardner: Darn. You know, I did use a utility like that before... saddly, I haven't the foggiest idea what it was called |
| [01:51:26] | <_DT> | https://www.google.com/webmasters |
| [01:51:37] | <Davea1> | futuresoon, if I was there I could help but I am not an unbuntu guy |
| [01:51:49] | <futuresoon> | daveal: well you've done a lot, i appreciate it |
| [01:51:53] | <futuresoon> | i'm about set to give up on this too |
| [01:51:59] | <_DT> | cgardner: google webmaster tools give you a list of 404 pages |
| [01:52:01] | <Davea1> | futuresoon, what I think is happening is that ONLY ONE Of your configs is being used |
| [01:52:07] | <ceardach> | futuresoon: what are you using other than localhost? |
| [01:52:18] | <Davea1> | nite all |
| [01:52:20] | * Davea1 has quit ("Leaving") |
| [02:14:14] | * Druplicon has joined #drupal-support |
| [02:15:01] | <futuresoon> | i think it was an ubuntu naming convention problem |
| [02:15:46] | <ceardach> | futuresoon: yeah, i don't understand why the distros change the default settings for apps |
| [02:15:49] | * Excallibur has joined #drupal-support |
| [02:15:58] | <ceardach> | futuresoon: I actually install apache/php/mysql from source due to that |
| [02:16:09] | * Excallibur has quit (Client Quit) |
| [02:16:24] | <futuresoon> | ceardach: yeah that sounds best in the long run |
| [02:16:31] | <futuresoon> | i'm totally in favor of the long run btw |
| [02:17:09] | <ceardach> | hehe |
| [02:17:11] | <PaulATL> | Does anyone know how to determine the width and height of the $logo image file from page.tpl.php? |
| [02:17:24] | <futuresoon> | nope, still not working---man, can't believe it |
| [02:17:37] | <ceardach> | futuresoon: yeah, I tried to tackle it using yum to install everything... but even a default install from yum of apache didn't work |
| [02:21:06] | <futuresoon> | i bet it's impossible to navigate between operating systems with drupal until you know apache pretty well? |
| [02:21:14] | * djtansey has quit ("Ex-Chat") |
| [02:22:11] | <ceardach> | futuresoon: what do you mean? |
| [02:22:36] | <futuresoon> | well i'm guessing i just don't know apache well enough |
| [02:22:45] | * [alphex] has joined #drupal-support |
| [02:23:28] | * Bigmack83 has joined #drupal-support |
| [02:23:46] | <level09> | I move my drupal sites between windows and linux with no issues at all :D |
| [02:23:46] | * okwichu has joined #drupal-support |
| [02:24:06] | <futuresoon> | level09: ubuntu? |
| [02:24:16] | <level09> | yeah gutsy |
| [02:24:32] | <futuresoon> | hardy here |
| [02:24:52] | <futuresoon> | does the naming in /etc/apache2/sites-enabled make a difference? |
| [02:24:55] | <level09> | hardy, gutsy, gonzy .. whats the difference |
| [02:25:08] | <futuresoon> | i used 000-default and 001-example.com |
| [02:25:25] | <futuresoon> | well the difference to me was hitting a button and waiting 25 minutes |
| [02:26:01] | <level09> | :D |
| [02:26:19] | <freescroll> | how can i add a "Read more" to my teasers? |
| [02:26:33] | <level09> | there is a readmore module |
| [02:26:43] | <freescroll> | o rly |
| [02:26:48] | <level09> | or u can hard code it into ur node.tpl |
| [02:27:03] | <futuresoon> | isn't there a <!--break--> tag |
| [02:27:07] | <freescroll> | rly rly.. okay, i'll checket |
| [02:27:26] | <level09> | yea |
| [02:29:07] | <futuresoon> | ok so first step i edit my /etc/hosts file so that typing example.com into the url bar works... |
| [02:29:23] | <futuresoon> | then i make a sites/example.com/settings.php folder/file |
| [02:29:47] | <level09> | multisites? |
| [02:29:56] | <level09> | multisite? |
| [02:29:56] | <Druplicon> | multisite is http://drupal.org/node/43816 and http://drupal.org/node/107347 |
| [02:30:12] | <futuresoon> | my multisite problem is rare/unique |
| [02:30:26] | <futuresoon> | it won't read from the sites/example.com/settings.php file |
| [02:30:33] | <futuresoon> | it looks to sites/default/settings.php instead |
| [02:30:43] | <futuresoon> | i've never gotten that, nor have i seen anyone report it |
| [02:31:00] | <futuresoon> | though i've only been checking for ubuntu |
| [02:32:03] | * coder1 has joined #drupal-support |
| [02:34:23] | * mcneelycorp has quit ("Elvis has left the building") |
| [02:34:35] | * luike2 has joined #drupal-support |
| [02:36:39] | * okwichu has quit () |
| [02:36:51] | <NateSide> | any one feel like taking a look at my custom module, have an ideas whats wrong with it, some reason when (or if) it calls taxonomy_save_term(&$array); depending on the host I try it on, 1 server returns a 500 server error, the other server just goes to a blank page, and im not getting anything in the appache error log on that site |
| [02:37:01] | <NateSide> | opps, need a link taxonomy_save_term(&$array); |
| [02:37:26] | <NateSide> | its only 12 lines, like 5 of witch are acual code |
| [02:39:12] | <NateSide> | acual = actual |
| [02:39:28] | * sarah_p has joined #drupal-support |
| [02:39:31] | * NateSide smacks himself for correcting himself |
| [02:39:48] | <ceardach> | yeah sure, put it in pastebin |
| [02:40:02] | <Bigmack83> | is there an rss feed that updates when a new module is available for 6x? not necesarily new updates but when a new mod is available or one is finished from being ported etc... |
| [02:40:06] | <NateSide> | shoot, i though it pasted the link, darn |
| [02:40:18] | <NateSide> | http://isi.pastebin.com/d4ea533da |
| [02:40:36] | <cgardner> | Does anyone know how to fix the temp_search_sids error that comes up when doing a search? |
| [02:42:00] | <luike2> | the versioning feature in drupal 6.x -- does that allow for the versioning of file documents (.doc, pdf) or is this relegated solely to user-generated content such as blog posts? |
| [02:43:16] | <ceardach> | NateSide: what is some example data you're sending into it? |
| [02:44:58] | <NateSide> | ceardach: its a implementation of hook_taxonomy, its gets called when ever you update or insert a taxonomy term, ive just been using the form at admin/content/taxonomy/4/add/term and adding varitions of the word test |
| [02:45:51] | <NateSide> | crazy thing is that it does save the term with the new weight |
| [02:46:03] | * dougvann has quit (Remote closed the connection) |
| [02:46:44] | * bitchkat has joined #drupal-support |
| [02:47:16] | <ceardach> | hmmm |
| [02:47:20] | <ceardach> | I'm not sure really |
| [02:48:32] | * koolhead17 has joined #drupal-support |
| [02:49:08] | * dchakrab has quit () |
| [02:49:18] | * xur1z has quit (Read error: 110 (Connection timed out)) |
| [02:50:08] | <NateSide> | i trying to make this cause i use a 2 level hierarcy to tag nodes on my site, and I save both terms in the node so they show up under both term lisitngs, and both terms are displayed in the teasers, but if both terms have the same weight, the lower term in the hierachy doesnt show up in the bread crumbs, so i weight the first term, so the second level term becomes the primary term |
| [02:50:41] | <ceardach> | hm... I see... |
| [02:52:10] | * koolhead17 has quit (Client Quit) |
| [02:53:34] | * PaulATL has left #drupal-support ("Leaving") |
| [02:54:13] | <Travis_Carden1> | Hey. Can anyone tell me how to force my breadcrumbs in Drupal 6 to always use the Primary menu? |
| [02:54:28] | <Bigmack83> | how could i change the name of 'Anonymous User' to something else? or is it possible without causing problems? |
| [02:55:10] | <ceardach> | Bigmack83: I think it's under site configuration |
| [02:55:57] | <nomad411> | Hi everyone. I'm looking at upgrading a 4.7.2 site with all sorts of modules like acid-free, to the highest 5.x I can. I plan on upgrading to the highest 4.7.x first, and then switch to 5.x after finding all the modules needed for 5. Do modules normally also need to be upgraded to their latest 4.7.x version before flipping to 5? |
| [02:57:07] | * Criticality is now known as Criticality|away |
| [02:58:44] | * Michelle has quit (Read error: 60 (Operation timed out)) |
| [02:58:55] | * Michelle has joined #drupal-support |
| [02:59:34] | <ceardach> | nomad411: it depends upon each module. You'd have to read their instructions. |
| [02:59:57] | <nomad411> | I was worried it would come to that. :) |
| [03:00:07] | <nomad411> | I cannot even find the original "banner" module :( |
| [03:00:21] | <ceardach> | nomad411: eep |
| [03:00:44] | <Bigmack83> | ceardach: hmm, hold on ill look, thx |
| [03:01:38] | <nomad411> | Bigmack83: Settings / general |
| [03:01:55] | <nomad411> | in 4.7. anyway. :) |
| [03:02:44] | <NateSide> | you guys wanna hear the most stupid tech support suggestion ever? |
| [03:02:56] | * alvin_2 has joined #drupal-support |
| [03:03:00] | <ceardach> | sure |
| [03:03:29] | <NateSide> | my hosting provider tech support tier 1 lady says, did you try renameing the index.php file to index.html |
| [03:03:41] | * nrpil has quit (Read error: 110 (Connection timed out)) |
| [03:03:46] | <alvin_2> | is there a way knowing what functions have been call using "node_invoke() " ? |
| [03:03:47] | <NateSide> | she says you must have a index.html for your site to work |
| [03:03:48] | * naught101 has quit (Connection timed out) |
| [03:04:03] | <emmajane> | NateSide: depending on how your server is configured, she might be right. |
| [03:04:10] | <ceardach> | alvin_2: checkout api.drupal.org |
| [03:04:31] | <ceardach> | NateSide: ohmigod, I hate dumb support people |
| [03:04:52] | <emmajane> | NateSide: out of curiosity, why did you need support? |
| [03:05:04] | <ceardach> | NateSide: I like it when I get an onsite tech and I know more than them :) This guy turning on my cable internet didn't know how to renew the ip on a computer |
| [03:05:05] | <NateSide> | emmajane: naw, shes completly clueless, i told her I was trying to debug a script and wanted access to the apache error logs and that was her response |
| [03:05:33] | <emmajane> | NateSide: you don't get access to logs by default? |
| [03:05:55] | <emmajane> | NateSide: most hosting companies give you a ~/logs directory |
| [03:06:18] | <NateSide> | emmajane: not the error logs. mail and ftp and access logs are in /logs |
| [03:06:22] | <ceardach> | NateSide: got a spare computer or laptop laying around? You should set up your own lamp for development so you don't have to rely on other people to give you access to stuff |
| [03:06:46] | <emmajane> | NateSide: bummer. My hosting provider gives me error logs as well. |
| [03:07:15] | * mstef has quit ("Ex-Chat") |
| [03:07:21] | <emmajane> | of course I also run my own server, but that's not the point. :) |
| [03:07:31] | * sarah_p has quit () |
| [03:08:01] | <NateSide> | ahh, for what its worth I got smart and called thier dedicated server support department and they were super helpful despite this being a shared host |
| [03:08:25] | <emmajane> | phew |
| [03:08:41] | <ceardach> | hehe |
| [03:09:07] | <Travis_Carden1> | Can anyone tell me how to force my breadcrumbs in Drupal 6 to always use the Primary menu? |
| [03:09:37] | <ceardach> | Travis_Carden1: breadcrumbs are a general problem. Try checking out some modules. |
| [03:10:18] | <Travis_Carden1> | ceardach: Thank you. I've actually checked out at least a half a dozen modules and read everything I can find. I'm afraid I'm gonna have to program a solution. (And I'm still new to programming Drupal.) |
| [03:10:44] | <ceardach> | Travis_Carden1: yeah, it may be the best bet |
| [03:11:10] | <Travis_Carden1> | I tried using Menu Breadcrumb http://drupal.org/project/menu_breadcrumb which says it builds the breadcrumb based on whatever menu a node belongs to, but... |
| [03:11:44] | <Travis_Carden1> | ...while it seemed to work great at first, I then created a sub-nav menu for certain sections which seems to break it. |
| [03:12:31] | <Travis_Carden1> | ceardach: You wouldn't happen to know how to program such a solution, would you? |
| [03:12:49] | <ceardach> | Travis_Carden1: yeah sounds like it's a limitation of the module. You could try fixing it in the module and posting a patch |
| [03:13:03] | <ceardach> | Travis_Carden1: no I don't, I haven't fiddled with breadcrumbs |
| [03:13:03] | <Travis_Carden1> | ceardach: I'm afraid I'm not that advanced yet. |
| [03:13:14] | <Travis_Carden1> | cearcach: All right, well thanks anyway. |
| [03:13:20] | <ceardach> | :) |
| [03:13:29] | <NateSide> | emmajane: you seem pretty smart, think you could take a look at my implementation of hook_taxonomy() ? http://isi.pastebin.com/d4ca96ecc |
| [03:13:45] | <NateSide> | any any one for that matter |
| [03:15:03] | <emmajane> | in a few, I have a guinea pig running around the house that I need to deal with first. :) |
| [03:16:12] | * level09 has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [03:17:04] | <emmajane> | I assume it's generating an error? or not working as expected? |
| [03:17:11] | <NateSide> | i love those things, especially when they make noise |
| [03:17:31] | * threexk has joined #drupal-support |
| [03:17:54] | <emmajane> | I could do without him, but I'm a nice aunty. |
| [03:17:57] | * jenlampton has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [03:18:05] | <NateSide> | emmajane: seems to work, but on one server it throws a server 500 error, thats the retarded server, on the other server it just goes to blank page, but it does seem to work |
| [03:18:22] | <emmajane> | blank pages == server 500 errors. |
| [03:19:15] | * http is now known as TZZ |
| [03:19:25] | <NateSide> | nothing in the apache error log tho |
| [03:19:40] | <NateSide> | that site i have access to the error logs |
| [03:19:57] | <emmajane> | kay. just a sec. |
| [03:19:58] | * samtresler has joined #drupal-support |
| [03:22:16] | * Wonder95 has joined #drupal-support |
| [03:23:02] | <Wonder95> | Has anybody seen the problem where when you try to sign in to Drupal, your user name and password just disappear and you're not signed in? |
| [03:24:10] | * travisc has joined #drupal-support |
| [03:25:00] | <NateSide> | I was about to say something funny about not seeing it cause it dissapered, but then I relized you didnt ask if any one didnt see that problem, so I decided not to say anything |
| [03:25:53] | <ceardach> | Wonder95: I think I have, and there is an answer on Drupal.org in one of the issues. If I remember correctly, some line needs to be commented out. |
| [03:26:05] | <ceardach> | You could also try upgrading to the latest version of the major release you have |
| [03:27:42] | * grim_fandango has quit ("Ex-Chat") |
| [03:28:01] | * bshumate has joined #drupal-support |
| [03:29:41] | <Wonder95> | I'm on 5.7 |
| [03:30:20] | <Wonder95> | NateSide: I'm always up for a smart comment |
| [03:30:26] | <Wonder95> | I give plenty of them myself |
| [03:30:37] | * sceo has left #drupal-support () |
| [03:30:59] | <Wonder95> | ceardach: thanks for the specifics :-) |
| [03:31:12] | * [alphex] has quit ("This computer has gone to sleep") |
| [03:31:16] | <Wonder95> | I've done some searching on d.o., but I'll look some more |
| [03:31:33] | <ceardach> | Wonder95: yeah sorry I can't be more specific, but I think an answer is out there. |
| [03:32:01] | * Wonder95 has quit (" HydraIRC -> http://www.hydrairc.com <- Go on, try it!") |
| [03:35:16] | * yareckon has left #drupal-support () |
| [03:39:35] | * sammyfung has joined #drupal-support |
| [03:39:52] | * sammyfung_ has joined #drupal-support |
| [03:40:01] | * sammyfung_ has quit (Read error: 104 (Connection reset by peer)) |
| [03:40:30] | * coder1 has quit () |
| [03:41:11] | * Sero has quit (Read error: 113 (No route to host)) |
| [03:42:24] | * japerry has joined #drupal-support |
| [03:44:05] | <emmajane> | NateSide: I don't see any flaws in what you've written, but that doesn't necessarily mean much. |
| [03:45:01] | * xur1z_ has joined #drupal-support |
| [03:46:21] | <emmajane> | NateSide: what happens when you throw in random bits of print "up to here" statements to see where it's actually failing? |
| [03:46:51] | <emmajane> | NateSide: blank page is often an "out of memory" spinning server errror. |
| [03:53:34] | * CrookedNumber has quit (Read error: 104 (Connection reset by peer)) |
| [03:54:05] | * CrookedNumber has joined #drupal-support |
| [03:57:08] | * luike2 has quit ("http://www.mibbit.com ajax IRC Client") |
| [03:57:38] | * bshumate has quit ("*poof*") |
| [03:58:18] | * bshumate has joined #drupal-support |
| [04:01:24] | * sarah_p has joined #drupal-support |
| [04:04:22] | * AlexUA has joined #drupal-support |
| [04:04:52] | * emmajane has quit (Read error: 104 (Connection reset by peer)) |
| [04:06:36] | * emmajane has joined #drupal-support |
| [04:06:58] | * Padawan has joined #drupal-support |
| [04:08:05] | <nomad411> | hi all. I just upgraded 4.7.2 to the highest 4.7 and once update.php has run I end up with a blank page. The webpage title coms through, but bank pages no matter where I go. I went in the DB and set status to 1 for the main modules like pages, path, menu, etc.. Is it php memory? |
| [04:09:33] | <ceardach> | hmm... I"m not sure what it could be |
| [04:09:40] | <ceardach> | did you try upgrading one at a time maybe? |
| [04:10:28] | <nomad411> | one at a time? Modules you mean? |
| [04:10:42] | <ceardach> | just core |
| [04:11:29] | * dchakrab has joined #drupal-support |
| [04:11:52] | <nomad411> | I don't get it.. |
| [04:11:55] | <nomad411> | sorry? |
| [04:13:58] | <ceardach> | as in 4.7.3 > 4.7.4, etc |
| [04:14:09] | <nomad411> | oh.. You think I should? |
| [04:14:16] | <nomad411> | I'll make it an option for the next tries :) |
| [04:14:30] | <ceardach> | maybe... it at least would make it easier to pin point where the problem is |
| [04:16:36] | <nomad411> | makes sense |
| [04:16:48] | <nomad411> | I'm now looking for where to download the different releases |
| [04:17:47] | <ceardach> | nomad411: It's not there. Just alter the URL for the given release and change the release number |
| [04:18:07] | <nomad411> | ahh? Ok |
| [04:18:12] | <nomad411> | thanks :) |
| [04:18:58] | * sarah_p has quit () |
| [04:20:04] | * jfxberns has joined #drupal-support |
| [04:24:32] | <NateSide> | emmajane:sorry for the slow response, yes, I know where its failing, its failing in the taxaonomy_save_term() call, how ever, it seems that call is going threw, but i dies at that point |
| [04:26:41] | * AlexUA has quit (Read error: 60 (Operation timed out)) |
| [04:26:41] | * Nightlurker has quit (Read error: 104 (Connection reset by peer)) |
| [04:26:44] | <NateSide> | emmajane: i should print_r the array, verify whats in there |
| [04:26:47] | * Nightlurker has joined #drupal-support |
| [04:26:54] | <emmajane> | NateSide: if you're not sure, that's a good idea. |
| [04:27:31] | <nomad411> | ceardach: Got all the releases, will start over tomorrow, thanks |
| [04:27:38] | * coder1 has joined #drupal-support |
| [04:27:41] | <nomad411> | to all a good night/day :) |
| [04:27:43] | <NateSide> | im using form token, (makes sure forms arent submited twice, i wonder if that has anything to do will it |
| [04:27:50] | * nomad411 has quit ("Back to the unreal world...") |
| [04:28:11] | * esmerel-laptop has quit (" HydraIRC -> http://www.hydrairc.com <- IRC with a difference") |
| [04:28:33] | * japerry has quit () |
| [04:28:48] | * dmitrig01 has joined #drupal-support |
| [04:28:53] | * dmitrig01 puts his hands up |
| [04:29:08] | <emmajane> | not sure... this is the taxonomy_save_term() information though http://api.drupal.org/api/function/taxonomy_save_term/5 |
| [04:29:30] | * emmajane blinks at dmitrig01, "Yes?" |
| [04:29:42] | <dmitrig01> | So (I'm fine with code) how do I get labels next to form fields like this: https://www.veer.com/account/register.aspx ? That is, inline, right-aligned, where all textfields are left-alighed |
| [04:29:54] | * jaacob has quit (Read error: 104 (Connection reset by peer)) |
| [04:29:55] | * jaacob has joined #drupal-support |
| [04:30:11] | <emmajane> | are they displaying, but not in the right place, or not displaying at all? |
| [04:30:51] | * vordude has joined #drupal-support |
| [04:31:03] | <vordude> | I'm having an ID10T Moment,,, |
| [04:31:38] | <vordude> | I'm trying to figure out how to change the date format on the "Posted " info on each node... It's showing the date, but I'd like to show the date and time... |
| [04:32:39] | <emmajane> | vordude: http://drupal.org/node/101993 |
| [04:32:39] | <Druplicon> | http://drupal.org/node/101993 => Converting the date format => 1 IRC mention |
| [04:34:22] | <emmajane> | vordude: apart from that.. my blog shows date and time by default |
| [04:34:35] | <vordude> | using the blog modue>? |
| [04:34:43] | <emmajane> | using the blog module. |
| [04:34:48] | <emmajane> | admin/settings/date-time <--- general site settings |
| [04:35:06] | <vordude> | I have a CCK content type doing essentialy what blog is doing...but just shows date. |
| [04:35:26] | <emmajane> | within the CCK field I believe you can customize it. |
| [04:35:41] | <emmajane> | there's a text input box where you can put custom PHP stuff. |
| [04:35:43] | * dchakrab has quit () |
| [04:36:42] | <vordude> | I suppose that might just work. |
| [04:37:25] | <emmajane> | assuming you're using the date widget and not just a text input for people to type in their dates. |
| [04:37:52] | <emmajane> | if you're using hte CCK date field you can change the default display or use the custom date format |
| [04:38:13] | <vordude> | Neither actually. |
| [04:38:30] | <vordude> | It's just taking the normal submitted date. (and assuming time) |
| [04:38:45] | <vordude> | Simple CCK content type with title and body. |
| [04:39:02] | <emmajane> | try changing the site defaults then. |
| [04:41:32] | <vordude> | each of the formats in admin/settings/date-time includes the time, |
| [04:42:00] | * threexk has quit ("Leaving.") |
| [04:42:35] | <vordude> | I was looking for another config setting I missed.... to no avail... |
| [04:43:51] | * Padawan has quit ("Leaving") |
| [04:44:25] | <NateSide> | emmajane: i assumed the array was for taxonomy_save_term, maybe hook_taxonomy array isnt exatly what saver_term wants |
| [04:45:22] | <emmajane> | taxonomy_save_term() is looking for a form |
| [04:45:30] | <emmajane> | erm the results from a form, rather |
| [04:46:04] | <emmajane> | e.g. http://drupal.org/node/152828 |
| [04:46:04] | <Druplicon> | http://drupal.org/node/152828 => abstracting functionality out of taxonomy_save_term => 1 IRC mention |
| [04:46:33] | <vordude> | emmajane: I truly am an ID10T, it's in the node.tpl.php... |
| [04:46:56] | <emmajane> | vordude: if you've got a custom theme, yup it might be there too :) |
| [04:47:12] | * dmitrig01 wonders if anyone can help him |
| [04:47:17] | <vordude> | just hunchbaque, which I highly reccomend by the way. |
| [04:47:42] | <emmajane> | dmitrig01: you didn't answer my earlier question. |
| [04:47:52] | <emmajane> | dmitrig01: are they displaying, but not in the right place, or not displaying at all? |
| [04:47:59] | <dmitrig01> | What do you mean? |
| [04:48:12] | <emmajane> | dmitrig01: are the labels appearing, but in the wrong place? |
| [04:48:15] | <dmitrig01> | I can get the labels to display next to form fields |
| [04:48:25] | <dmitrig01> | but, they need to be right-aligned like that |
| [04:49:04] | <emmajane> | using CSS: align the text to the right. |
| [04:49:07] | <emmajane> | text-align: right; |
| [04:49:12] | <emmajane> | do that in your CSS file |
| [04:49:28] | <emmajane> | check the class for the label by viewing the source on the HTML output page. |
| [04:49:52] | <emmajane> | vordude: like zen, but not. :) |
| [04:50:02] | <NateSide> | thanks emmajane |
| [04:50:04] | * cwgordon7 has quit (Read error: 104 (Connection reset by peer)) |
| [04:50:17] | <NateSide> | for the link, i think it will help |
| [04:50:20] | <emmajane> | NateSide: ok :) |
| [04:50:28] | <emmajane> | NateSide: I had to assume you were giving it useful data... |
| [04:50:48] | <emmajane> | NateSide: maybe I should have started with that question though. :) |
| [04:54:28] | <vordude> | emmajane: thanks a lot, I'm out. |
| [04:54:30] | * vordude has left #drupal-support () |
| [04:55:08] | <NateSide> | emmajane: i bet I might just have to prune the array a little |
| [04:55:27] | <emmajane> | or just copy out the stuff you know you need. |
| [04:55:37] | <emmajane> | make a new array with only the parts you need in it |
| [04:55:53] | * cwgordon7 has joined #drupal-support |
| [04:57:19] | * renga has joined #drupal-support |
| [04:59:27] | <Bigmack83> | under configure filter, if i add the table tags (<table><tr><td><th>) will it allow tag elements also? like the scope element here: <th scope="row"> </th> . Or do I have to add them to the allowed list also |
| [05:00:01] | * Samonoske has quit (Connection timed out) |
| [05:01:17] | * emmajane has quit (Read error: 104 (Connection reset by peer)) |
| [05:01:58] | <lronPaw> | hullo |
| [05:01:58] | <Druplicon> | bonjour |
| [05:02:19] | <lronPaw> | has anyone seen an issue while trying to edit posts in IE breaking at all? |
| [05:02:43] | <_DT> | what, a problem with IE !? never ;-) |
| [05:02:55] | * emmajane has joined #drupal-support |
| [05:03:34] | <lronPaw> | when you attempt to edit a page it comes up with "Internet Explorer cannot open the Internet site http://blah.com/node/123/edit. Operation aborted" |
| [05:03:44] | <lronPaw> | this is for pages, news events, etc |
| [05:03:53] | <lronPaw> | makes it hard for the client running IE to make changes |
| [05:04:01] | <lronPaw> | and is a bit pain in the bum for me |
| [05:04:24] | <lronPaw> | when you click on ok it shows a blank page with a DNS error |
| [05:04:26] | * xx_xx_xx has joined #drupal-support |
| [05:04:33] | <lronPaw> | the URL is fine and correct |
| [05:04:50] | <lronPaw> | its only JUST started happening and it only happens with IE. |
| [05:05:02] | * McGo has joined #drupal-support |
| [05:05:02] | <NateSide> | just when you think you have all the css fixed, bam the freaking header shoots to the middle of the page |
| [05:05:23] | <lronPaw> | haha |
| [05:05:51] | <Bigmack83> | IronPaw: try clearing your cache, lol or get them to use firefox. |
| [05:08:17] | * nickit has joined #drupal-support |
| [05:08:22] | <nickit> | hello |
| [05:08:22] | <Druplicon> | hola |
| [05:08:26] | <nickit> | botzor |
| [05:08:28] | <xx_xx_xx> | hi |
| [05:08:28] | <Druplicon> | bonjour |
| [05:08:43] | <nickit> | hey, im having trouble with drupal |
| [05:08:58] | <UltimateBoy> | go on.. |
| [05:09:01] | <xx_xx_xx> | okay |
| [05:09:31] | <UltimateBoy> | We all have trouble with drupal at least once a day ;) |
| [05:10:05] | * Zarabadoo1 has joined #drupal-support |
| [05:10:30] | <nickit> | ok, so i am trying to take an embeded myspace user playlist and post it as content in drupal |
| [05:11:07] | <nickit> | usually, i can check the source code and copy/paste the embed code |
| [05:11:33] | <UltimateBoy> | nickit: where are you copying this code to, what input filter are you using... |
| [05:12:13] | <nickit> | full html, and its gonna be on a content profile or a forum post |
| [05:13:21] | <UltimateBoy> | can you pastebin the code you are pasting? |
| [05:13:33] | <nickit> | link me to pastebin please |
| [05:13:42] | <UltimateBoy> | pastebin? |
| [05:13:42] | <Druplicon> | Please don't paste code directly into IRC. Use http://drupalbin.com or http://pastebin.ca or http://pastebin.org or http://pastie.textmate.org instead. |
| [05:14:06] | * alleyoopster has joined #drupal-support |
| [05:14:23] | <nickit> | http://pastie.textmate.org/225345http://pastie.textmate.org/225345 |
| [05:14:25] | <nickit> | ahh |
| [05:14:27] | <nickit> | http://pastie.textmate.org/225345 |
| [05:14:57] | * Criticality|away is now known as Criticality |
| [05:14:59] | <dmitrig01> | emmajane: that wored, tahnks |
| [05:15:28] | <nickit> | ahh sorry |
| [05:15:37] | <nickit> | copied the wrong source code |
| [05:15:58] | <nickit> | http://pastie.textmate.org/225347 |
| [05:16:00] | <nickit> | this one is right |
| [05:16:03] | <emmajane> | dmitrig01: excellent :) |
| [05:16:25] | * MattV has quit (Connection timed out) |
| [05:17:17] | <nickit> | UltimateBoy ? |
| [05:17:30] | <UltimateBoy> | nickit: i am giving it a try |
| [05:17:34] | <nickit> | okay |
| [05:19:09] | * alvin_2 has quit ("This computer has gone to sleep") |
| [05:20:27] | <UltimateBoy> | nickit: I am trying to make it fail now.. i have tried almost everything i can think of.. and everything works |
| [05:20:34] | <_DT> | IronPaw: I know that IE 'operation aborted' error |
| [05:20:49] | * TZZ has left #drupal-support () |
| [05:20:55] | <lronPaw> | o rly? |
| [05:20:55] | <Druplicon> | YA RLY. |
| [05:21:08] | <lronPaw> | just tried clearing drupal cache and browser cache |
| [05:21:08] | <_DT> | it occurs when some javascript tries to add an html element to the DOM before the page is fully loaded |
| [05:21:17] | <UltimateBoy> | nickit: I simply pasted the code you provided into a page content type with full html and got this (http://new.springsultimate.org/content/test) |
| [05:21:21] | <_DT> | IE chokes but FF handles it np |
| [05:21:27] | <lronPaw> | yeh its like a refresh |
| [05:21:31] | <lronPaw> | or it causes a refresh |
| [05:21:42] | <lronPaw> | i dont think ive added anything recent that may cause it |
| [05:21:44] | <lronPaw> | EXCEPT! |
| [05:21:54] | <lronPaw> | i did at a flash component to the template recentl |
| [05:21:54] | <lronPaw> | y |
| [05:22:16] | <lronPaw> | using the fancy JS that DW/ADobe want you to use. |
| [05:22:25] | <_DT> | oh, that's prob it then |
| [05:22:26] | <nickit> | uhh... |
| [05:22:35] | <nickit> | interesting |
| [05:22:39] | <lronPaw> | cheers _DT i'll look into it |
| [05:22:55] | <nickit> | i guess the problem was that i didnt post the whole code |
| [05:22:58] | <nickit> | thanks anyways.. |
| [05:22:58] | <lronPaw> | can i put any code around it so when going into an edit mode that the flash is not rendered? |
| [05:23:01] | <_DT> | IronPaw: to fix it, you need to wrap the js in jquery's document.ready() so it only loads when the page is fully loaded |
| [05:23:12] | <UltimateBoy> | nickit: that would do it ;) |
| [05:23:23] | <NateSide> | ok, im done playing the css game for tonight, time for beer |
| [05:23:29] | <NateSide> | beer and tv |
| [05:23:38] | <_DT> | IronPaw: http://www.learningjquery.com/2006/09/introducing-document-ready |
| [05:23:43] | <UltimateBoy> | NateSide: sounds like a plan |
| [05:23:45] | <nickit> | is there an area of the drupal website to promote your site, say on the forums or something? |
| [05:23:48] | <NateSide> | peace out homies |
| [05:24:00] | <UltimateBoy> | nickit: there is a showcase forum |
| [05:24:07] | <nickit> | word up stay loc'ed nate dogg |
| [05:24:13] | <UltimateBoy> | nickit: there is also drupalsites.net |
| [05:24:14] | <xx_xx_xx> | and you can post it in here, nickit |
| [05:24:17] | <emmajane> | NateSide: laters |
| [05:24:36] | * NateSide has quit () |
| [05:24:53] | <UltimateBoy> | nickit: drupal showcase forum: http://drupal.org/forum/25 |
| [05:25:07] | <nickit> | okay, thank you |
| [05:25:21] | <UltimateBoy> | nickit: or if it is really good: www.drupalmuseum.com/ |
| [05:26:12] | <nickit> | ok, thanks |
| [05:26:22] | <UltimateBoy> | np. |
| [05:26:25] | <lronPaw> | thanks _DT looking into it now.. |
| [05:27:18] | <nickit> | one last question |
| [05:27:29] | <UltimateBoy> | go ahead. |
| [05:27:37] | <nickit> | you know that light in the fridge? does it stay on when i close the door? |
| [05:28:05] | <UltimateBoy> | nickit: I would try to come up with something witty.. but I am too lazy. |
| [05:28:13] | <nickit> | lol |
| [05:28:23] | <nickit> | fair enough |
| [05:28:38] | <UltimateBoy> | nickit: are you new to drupal? |
| [05:28:43] | <nickit> | yea |
| [05:28:50] | <nickit> | a month new |
| [05:29:16] | <UltimateBoy> | nickit: wonderful. |
| [05:29:38] | * Thomas_Zahreddin has joined #drupal-support |
| [05:29:44] | <UltimateBoy> | nickit: enjoy.. you will soon have no life. |
| [05:29:49] | <nickit> | psh |
| [05:29:52] | <nickit> | i found that out already |
| [05:30:06] | <nickit> | the past few days ive been sleeping 12 hours, being awake like 20 |
| [05:30:20] | * NateSide has joined #drupal-support |
| [05:30:26] | <nickit> | its this god damn drum and bass music |
| [05:30:34] | <NateSide> | ahh, came back for one more issue |
| [05:30:44] | <UltimateBoy> | nickit: i liked the beats by the way, are they yours? |
| [05:30:54] | <nickit> | no, they are a friend of mine's |
| [05:31:00] | <nickit> | i uploaded them for him though |
| [05:31:16] | <nickit> | mine are at (brace for shameless self advertisment) www.myspace.com/nickitproductions |
| [05:31:18] | <NateSide> | i was running YSlow on my site and it says one of my expires headers have a far future expire of Sun, 19 Nov 1978 05:00:00 GMT |
| [05:31:28] | <NateSide> | where could I fix that? |
| [05:31:53] | * xur1z_ has quit (Read error: 104 (Connection reset by peer)) |
| [05:31:57] | <UltimateBoy> | NateSide: ah yes.. good ol dreis. |
| [05:32:01] | <NateSide> | its an imaage cache direivitive |
| [05:32:38] | * _DT has quit (Remote closed the connection) |
| [05:32:42] | <NateSide> | i guess i could just errase that dirivitive and let it regenerate |
| [05:32:51] | * NateSide thanks me for the help |
| [05:33:03] | <NateSide> | later |
| [05:33:04] | <UltimateBoy> | NateSide: http://www.lullabot.com/articles/is-site-running-drupal |
| [05:33:10] | <NateSide> | wait |
| [05:33:42] | * Gluteus has joined #drupal-support |
| [05:33:51] | <UltimateBoy> | NateSide: btw.. that is dreis' birthday ;) |
| [05:34:24] | <dmitrig01> | Dries |
| [05:34:27] | <NateSide> | ohh |
| [05:34:29] | * cwgordon7 has quit (Read error: 104 (Connection reset by peer)) |
| [05:34:48] | <NateSide> | i wonder why the complaint is only for a single diriv |
| [05:34:58] | <UltimateBoy> | yes dmitrig01 i am a bit dyslexic today |
| [05:35:12] | <dmitrig01> | It's ok |
| [05:36:09] | <freescroll> | is it safe to say, that if I get drupal 5.x up and running with some data and modules, i can move it to another server and get the same setup running? |
| [05:36:27] | <nickit> | it seems i have figured out the problem with the myspace playlist. |
| [05:36:35] | <nickit> | it works with opera, but not with firefox |
| [05:36:39] | <UltimateBoy> | freescroll: yes. sometimes there are a few hickups along the way.. but it is usually pretty straight forward. |
| [05:36:51] | <UltimateBoy> | nickit: i am using ff. |
| [05:36:57] | <nickit> | http://nickit.emoface.net/node/12 |
| [05:37:00] | <nickit> | try this |
| [05:37:11] | <freescroll> | ultimateboy: cross fingers then i guess... |
| [05:37:39] | <UltimateBoy> | freescroll: you just have to adjust the settings.php file accordingly. |
| [05:37:50] | <UltimateBoy> | nickit: works fine in my ff3 setup. |
| [05:37:54] | <freescroll> | ultimateboy: is it generally as simple as moving the files over, dumping the mysql db to a new one, and adjust the settings.php? |
| [05:37:55] | <nickit> | hmm.. |
| [05:38:03] | <nickit> | it could be something to do with cookies or cache |
| [05:38:10] | <UltimateBoy> | freescroll: yup. |
| [05:38:17] | <freescroll> | ultimateboy: k thanks. |
| [05:38:41] | <nickit> | this is strange.. |
| [05:38:51] | <UltimateBoy> | freescroll: and of course changing any non-relative links (if you are changing domains). |
| [05:39:11] | * dmitrig01 has left #drupal-support () |
| [05:39:13] | <lronPaw> | hmm |
| [05:39:41] | <lronPaw> | hmm that put my page into a loop |
| [05:39:42] | * Egyptian[Home] has joined #drupal-support |
| [05:39:53] | <lronPaw> | how can i create an edit template? is it just page-edit.tpl.php? |
| [05:40:17] | <NateSide> | ohh, theres a + in the filename, thats why i got a B instead of an A for that score |
| [05:40:18] | <lronPaw> | i mean how can i create a template that is only used when in 'edit' module |
| [05:40:33] | * futuresoon has quit ("Ex-Chat") |
| [05:40:39] | <nickit> | you can select the admin template |
| [05:40:44] | <nickit> | i think |
| [05:40:48] | * Bigmack83 has quit (Read error: 104 (Connection reset by peer)) |
| [05:41:15] | * lefnire has joined #drupal-support |
| [05:41:22] | * xur1z has joined #drupal-support |
| [05:41:45] | <lefnire> | any simple php way to determine if the page a user is on requires admin privileges? |
| [05:42:17] | * brainycat has quit (Read error: 113 (No route to host)) |
| [05:42:23] | <UltimateBoy> | lronPaw: see http://drupal.org/node/104316 |
| [05:42:24] | <Druplicon> | http://drupal.org/node/104316 => Using different page templates depending on the current path => 62 IRC mentions |
| [05:43:19] | <nickit> | ultimate would you know why the myspace playlist works in opera but not ff for me? |
| [05:43:22] | <lronPaw> | UltimateBoy cheers.. page-node-edit is the ticket |
| [05:43:43] | <UltimateBoy> | lronPaw: indeed. |
| [05:44:11] | <UltimateBoy> | nickit: no.. my guess is that it is something local on your box... either cache or cookies or something crazy. Try a different box. |
| [05:44:30] | <UltimateBoy> | lefnire: version? |
| [05:44:32] | <UltimateBoy> | v? |
| [05:44:32] | <Druplicon> | What version of Drupal? The answer can vary widely depending on your version. |
| [05:44:36] | <nickit> | box meaning computer/ |
| [05:44:43] | <UltimateBoy> | nickit: yes. |
| [05:44:45] | <nickit> | ok |
| [05:45:32] | <lefnire> | UltimateBoy: 5 |
| [05:46:22] | * zostay has quit (Remote closed the connection) |
| [05:47:50] | <UltimateBoy> | lefnire: can you rephrase the question a bit? |
| [05:48:23] | <UltimateBoy> | user_access() might work depending on what you need. |
| [05:49:04] | <UltimateBoy> | user_access:5? |
| [05:49:04] | <Druplicon> | user_access: Determine whether the user has a given privilege. => user_access($string, $account = NULL) => http://api.drupal.org/api/function/user_access/5 |
| [05:49:19] | * renga has quit (Remote closed the connection) |
| [05:49:46] | * Nikki_ has quit (No route to host) |
| [05:49:47] | * nickit has left #drupal-support () |
| [05:50:07] | <lefnire> | UltimateBoy: what i mean is... i want to add a few items to pages that don't require admin privileges. previously i was doign strstr($_GET['q'], 'admin') but that misses */edit and other such pages that require admin privs... so i'm wondering if there's a way to determine if the currently viewed page requires admin privs to be viewed |
| [05:50:08] | * coder1 has quit (Read error: 104 (Connection reset by peer)) |
| [05:50:46] | * Ronin1234 has joined #drupal-support |
| [05:50:51] | * RoninBaka has quit (Read error: 104 (Connection reset by peer)) |
| [05:51:31] | * coder1 has joined #drupal-support |
| [05:52:52] | <UltimateBoy> | lefnire: that is a very open ended question.. because what exactly is 'admin privileges'? |
| [05:53:14] | * Chriswaterguy has quit (SendQ exceeded) |
| [05:53:34] | <UltimateBoy> | lefnire: I understand in concept.. but cannot think of an easy way to really nail down what you are looking for. |
| [05:54:24] | <UltimateBoy> | i think that simply making blocks display on admin/*, */edit, and any others would probably be good enough (this is not knowing your exact needs of course). |
| [05:55:02] | * coder1 has quit (Read error: 104 (Connection reset by peer)) |
| [05:55:04] | <lefnire> | UltimateBoy: i think i found it: _menu_check_access(). thx for the help! i'll post back with success/fail |
| [05:56:26] | <lefnire> | UltimateBoy: nm, fail :) i guess i'll just have to stick to admin/* */edit after all.. |
| [05:56:56] | <UltimateBoy> | lefnire: why would simply selecting the correct role not be enough? |
| [05:57:28] | <UltimateBoy> | lefnire: ya.. i guess that would not work exactly how you want. |
| [05:58:20] | <lefnire> | UltimateBoy: yeah.. looks like my req is a bit far-fetched, i'll just stick to the wildcards. thanks man |
| [05:58:55] | * bitchkat has quit ("Leaving") |
| [05:59:00] | <UltimateBoy> | lefnire: np. its not that the request is a bit farfetched.. it is that it is hard to really nail down exactly what you mean by "admin privileges" |
| [05:59:22] | * cc_toide has joined #drupal-support |
| [05:59:31] | <lefnire> | or any arbitraty privs |
| [05:59:33] | * Thomas_Zahreddin has quit (Read error: 104 (Connection reset by peer)) |
| [06:00:08] | <lefnire> | just wanna theme a page based on priv. required to view the page, rather than priv of the logged in user. so if */edit requires role "x", theme it this way, else that way |
| [06:02:25] | * ulfk_ has joined #drupal-support |
| [06:07:48] | * okwichu has joined #drupal-support |
| [06:10:00] | * CrookedNumber has quit () |
| [06:10:31] | <UltimateBoy> | lefnire: well I cant seem to come up with something that works... and it is probably because i need sleep.. given that I am headed to bed. |
| [06:11:52] | <lefnire> | UltimateBoy: go to bed :) thanks for tryin! good karma for you :D |
| [06:12:00] | <NateSide> | ooh crap, i just got a B (86) on YSlow. yippie |
| [06:12:02] | <j0rd> | i have two versions of 5.7 installed both with the lastest CCK and Imagefield plugins. When I upload an image on one...i get a nice ajax uploader and the page doesn't refresh. When I upload on the other...the page refreshes...any ideas what's causing tihs? |
| [06:12:24] | <NateSide> | all i need now is a CDN |
| [06:12:33] | <j0rd> | from what I can tell there is no special module that would cause this..it seems to be default drupal behaviour |
| [06:12:41] | <j0rd> | (from CCK and imagefield that is) |
| [06:13:01] | <UltimateBoy> | j0rd: it is not jquery update.. is it? just a wild guess. |
| [06:13:08] | <lefnire> | NateSide: a B!? i've never NOT gotten an F! wtg! |
| [06:13:29] | <j0rd> | UltimateBoy: no...not installed on either machine...nor are it's plugins |
| [06:13:56] | * zostay has joined #drupal-support |
| [06:14:09] | <UltimateBoy> | j0rd: humm.. stumped me. And now I am really going to bed.. ;) |
| [06:14:28] | * UltimateBoy has quit ("ChatZilla 0.9.82.1 [Firefox 3.0/2008052906]") |
| [06:16:01] | * bitchkat has joined #drupal-support |
| [06:16:57] | * Criticality is now known as Criticality|away |
| [06:17:09] | * cctoide has quit (Read error: 110 (Connection timed out)) |
| [06:18:43] | * ulfk has quit (Read error: 110 (Connection timed out)) |
| [06:20:31] | * bin has joined #drupal-support |
| [06:21:31] | <bin> | good morning techies |
| [06:21:54] | * Singularo has quit ("http://www.singularo.com/") |
| [06:22:03] | <bin> | i like to ask one question abt the payment , |
| [06:22:33] | <bin> | in my site i like to incooperate payment module , in the registration part |
| [06:22:37] | <bin> | how can i do that |
| [06:22:43] | * davidstrauss has joined #drupal-support |
| [06:23:01] | * lefnire has left #drupal-support () |
| [06:23:25] | * matason has joined #drupal-support |
| [06:26:23] | <j0rd> | bin: there's e-commerce and ubercart...i tihnk they both provide stuff for that |
| [06:26:46] | * Sero has joined #drupal-support |
| [06:26:46] | * Bigmack83 has joined #drupal-support |
| [06:27:23] | * ins\away has quit (Read error: 113 (No route to host)) |
| [06:27:51] | <bin> | yes i know that j0rd , but i need it in the user registation part , is that possible with that |
| [06:29:05] | * matason has quit () |
| [06:29:44] | * alleyoopster has quit (Read error: 110 (Connection timed out)) |
| [06:30:39] | <j0rd> | bin: i would believe so |
| [06:30:51] | * matason has joined #drupal-support |
| [06:31:09] | <j0rd> | there's also a module which charges people for creation of nodes...you could do something like that with nodeprofile i'm sure |
| [06:31:10] | <freescroll> | can anyone help with this: http://pastebin.com/de5c1f02 |
| [06:31:54] | <bin> | ok thanks j0rd , let me check |
| [06:38:34] | * Ronin1234 has quit (Read error: 104 (Connection reset by peer)) |
| [06:38:45] | * RoninBaka has joined #drupal-support |
| [06:38:58] | * Criticality|away is now known as Criticality |
| [06:39:13] | * jscheel has joined #drupal-support |
| [06:42:04] | * Harry_Slaughter has joined #drupal-support |
| [06:47:52] | * mcjim has joined #drupal-support |
| [06:48:59] | * Singularo has joined #drupal-support |
| [06:49:25] | * okwichu has quit () |
| [06:53:13] | <NateSide> | i want to use http://drupal.org/project/sprites so bad, but I just dont understand how to empliment the sprite I made for my theme back into the theme |
| [06:54:34] | * davidstrauss has quit () |
| [06:55:13] | * matason has quit () |
| [06:57:38] | * davidstrauss has joined #drupal-support |
| [07:00:05] | <bin> | i want to integrate a payment module in the user registration area |
| [07:00:10] | <bin> | how can i do that |
| [07:01:06] | * mortendk has joined #drupal-support |
| [07:03:19] | * m0oman has joined #drupal-support |
| [07:03:57] | * jscheel has quit (Read error: 110 (Connection timed out)) |
| [07:04:16] | * mikl has quit ("Leaving...") |
| [07:06:19] | * mcjim has quit () |
| [07:08:35] | * sutha has joined #drupal-support |
| [07:12:22] | <NateSide> | bin: did you look at http://drupal.org/project/Modules/category/104 |
| [07:13:02] | * drupalmannen has joined #drupal-support |
| [07:13:27] | <bin> | i think its with ecommerce |
| [07:13:49] | <drupalmannen> | how do i get a nodes children in php? |
| [07:14:23] | * emmajane has quit ("kaybai") |
| [07:14:54] | <bin> | <NateSide> my aim is to ask for the payment at the time of user registration |
| [07:15:53] | * matason has joined #drupal-support |
| [07:16:21] | * zwiep` has joined #drupal-support |
| [07:16:55] | * matason has quit (Client Quit) |
| [07:17:10] | <Bigmack83> | is there an easy way to make a custom html filter that allows most tags except a few other than manually entering them all by hand? |
| [07:17:16] | * jfxberns has quit ("Leaving.") |
| [07:17:53] | * MediaDoneRight has quit ("I'm no quitter... just had other things to do") |
| [07:19:24] | <j0rd> | Bigmack83: no...just enter the ones you want...there isnt many |
| [07:19:46] | <j0rd> | Bigmack83: check drupal.org's for a fairly complete list of the ones you'd want |
| [07:19:51] | * Thomas_Zahreddin has joined #drupal-support |
| [07:20:35] | * kjh_ has joined #drupal-support |
| [07:20:36] | * bitchkat has quit (Read error: 104 (Connection reset by peer)) |
| [07:22:14] | <NateSide> | bin: i dont know of any module that presents payment at registration but i know with ubercart users can purchase a product and recieve a role |
| [07:22:21] | <Bigmack83> | j0rd: ok cool. yea my site is for my school, some of the student are web designers so i want to be able to give them more freedom and only wanted to dissallow a fer. but thanks. it theirs listed in the site docs? |
| [07:22:40] | <bin> | yes that i know <NateSide> |
| [07:23:00] | <j0rd> | Bigmack83: install tinyMCE then |
| [07:23:19] | <j0rd> | Bigmack83: or at least play around with it...that would give them a fairbit of the control |
| [07:24:18] | * davidstrauss has quit () |
| [07:24:20] | <Bigmack83> | j0rd: yea im going to be looking into that but i have to have the site ready and functional by the 14th and want to get the site a solid foundation first. then once its sttled i will set it up. |
| [07:24:31] | <j0rd> | Bigmack83: enjoy |
| [07:25:00] | * NateSide has left #drupal-support () |
| [07:25:33] | <Bigmack83> | yea thx |
| [07:26:07] | * ngnp has joined #drupal-support |
| [07:28:04] | * gusaus_lurk has quit () |
| [07:28:20] | * threexk has joined #drupal-support |
| [07:28:51] | * ngnp has left #drupal-support () |
| [07:30:07] | <threexk> | the phrase "his or her" is intrinsically sexist. I'm changing it to "it" |
| [07:30:25] | * zamba has joined #drupal-support |
| [07:30:31] | <zamba> | how can i turn on captcha for forums? |
| [07:30:34] | <threexk> | (intrinsically sexist because why should "his" come before "her", when it is after alphabetically) |
| [07:30:58] | <threexk> | I guess "her or his" is fine, because then you can say, "hey, it's just alphabetical" |
| [07:31:28] | * guardian has quit () |
| [07:32:09] | * davidstrauss has joined #drupal-support |
| [07:34:52] | * mcjim has joined #drupal-support |
| [07:38:00] | * sutha has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:00] | * cgardner has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:00] | * cafuego has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:00] | * freescroll has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:00] | * TomvB has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:00] | * pengwen has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:00] | * Peter has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:00] | * pounard has quit (kornbluth.freenode.net irc.freenode.net) |
| [07:38:54] | * sutha has joined #drupal-support |
| [07:38:54] | * cgardner has joined #drupal-support |
| [07:38:54] | * cafuego has joined #drupal-support |
| [07:38:54] | * freescroll has joined #drupal-support |
| [07:38:54] | * TomvB has joined #drupal-support |
| [07:38:54] | * pengwen has joined #drupal-support |
| [07:38:54] | * pounard has joined #drupal-support |
| [07:38:54] | * Peter has joined #drupal-support |
| [07:39:01] | * mcjim has quit (Client Quit) |
| [07:43:02] | * kjh_ has quit (Read error: 104 (Connection reset by peer)) |
| [07:43:04] | * kjh__ has joined #drupal-support |
| [07:47:13] | * kostly has joined #drupal-support |
| [07:47:38] | * travisc has quit () |
| [07:49:51] | * mikl has joined #drupal-support |
| [07:52:41] | * sammyfung has quit ("Ex-Chat") |
| [07:55:54] | * Haza`` has joined #drupal-support |
| [07:57:15] | * nikkiana has quit ("This computer has gone to sleep") |
| [07:58:02] | * gusaus has joined #drupal-support |
| [07:59:35] | * xushi has joined #drupal-support |
| [08:00:03] | <boobaa> | one of our customers wants to own hiscompanyname.(com|net|org|whatever), which looks like parked ATM - do you know anybody who could acquire it for them? |
| [08:02:04] | * quentusrex has joined #drupal-support |
| [08:02:13] | <quentusrex> | What is the module that lets me specify a custom url for my nodes. So if I want a node to be at www.mydomain.com/page rather than www.mydomain.com/node/1 |
| [08:02:59] | <boobaa> | quentusrex: path |
| [08:03:00] | * cirotix has joined #drupal-support |
| [08:03:25] | * xushi has quit (Client Quit) |
| [08:03:51] | <quentusrex> | thanks boobaa. I just couldn't remember the name... |
| [08:04:28] | * netron1234 has joined #drupal-support |
| [08:04:35] | * jayboodhun has joined #drupal-support |
| [08:08:00] | * Gluteus has quit (Read error: 54 (Connection reset by peer)) |
| [08:09:06] | <boobaa> | that's why they have a short desc on the admin/build/modules page ;) |
| [08:09:19] | * Inferus has joined #drupal-support |
| [08:09:23] | * Mek_ has joined #drupal-support |
| [08:10:03] | * PatMac has joined #drupal-support |
| [08:10:24] | * Sero has quit (Read error: 113 (No route to host)) |
| [08:10:26] | * xushi has joined #drupal-support |
| [08:10:50] | <threexk> | boobaa: are you thinking like a lawyer, a hacker, or a hitman? |
| [08:10:50] | <quentusrex> | boobaa, I didn't remember that it was automatically included. I was searching the module listings at drupal.org for the module... |
| [08:11:10] | * Bes` has joined #drupal-support |
| [08:12:05] | * kenois has quit ("Leaving") |
| [08:12:08] | * kenois has joined #drupal-support |
| [08:12:35] | * hpnadig has joined #drupal-support |
| [08:12:36] | <boobaa> | threexk: dunno what do you mean by a hitman, but if I have to choose between the other two, I'd take the hacker ;) |
| [08:13:27] | * Criticality is now known as Criticality|away |
| [08:14:34] | * setvik has quit () |
| [08:14:56] | <threexk> | boobaa: would it fall under the "ACPA"? http://en.wikipedia.org/wiki/Anticybersquatting_Consumer_Protection_Act |
| [08:15:15] | <threexk> | well, if you're in US |
| [08:15:36] | <threexk> | which you're probably not considering the hour |
| [08:16:20] | * Mek has quit (Connection timed out) |
| [08:16:26] | * Criticality|away is now known as Criticality |
| [08:18:54] | * setvik has joined #drupal-support |
| [08:19:35] | <threexk> | perhaps it's a question of whether they're parking legitimately or squatting.. you said "parking" |
| [08:21:08] | * kjh_ has joined #drupal-support |
| [08:21:09] | * kjh__ has quit (Read error: 104 (Connection reset by peer)) |
| [08:21:16] | * modular^ has quit () |
| [08:21:17] | <bin> | hi techies |
| [08:21:59] | <bin> | is it possible to add payment method in the user registration page with out using ecommerce , ubercart |
| [08:22:48] | * wojtha has joined #drupal-support |
| [08:25:33] | * guardian_ has joined #drupal-support |
| [08:25:56] | * matason has joined #drupal-support |
| [08:26:09] | * jonhattan has joined #drupal-support |
| [08:28:26] | * gusaus has quit () |
| [08:31:36] | <j0rd> | there's node page and node teaser ... but what if i wanted to output a node as like an RSS elements...how do i theme that? theme('rss_this_node', $node); or is there a way I can set a theme file with node_view...? |
| [08:32:19] | <j0rd> | i tried doing $node['#theme'] = 'theme_file'; but PHP doesn't appreciate that |
| [08:34:34] | * jayboodhun has quit () |
| [08:35:52] | <netron1234> | http://drupal.org/node/276755 still no answer... i guess i must be the only person in drupaland doing this... |
| [08:35:53] | <Druplicon> | http://drupal.org/node/276755 => Ahah "Add more" for two fields or more - is there a guide? => 2 IRC mentions |
| [08:35:59] | * mikl has quit () |
| [08:37:09] | * Mek_ has quit (Read error: 110 (Connection timed out)) |
| [08:37:43] | * Roelven has joined #drupal-support |
| [08:38:10] | <j0rd> | netron1234: you trying to do it with CCK field type? or your own form? |
| [08:38:17] | <netron1234> | cck |
| [08:38:19] | * davidstrauss has quit () |
| [08:38:20] | * kostly has quit (Read error: 104 (Connection reset by peer)) |
| [08:38:26] | * Mek has joined #drupal-support |
| [08:38:41] | <j0rd> | essentially that's a multiple cck field...where you choose how many to display |
| [08:38:42] | <netron1234> | custom module with a custom content type made up of cck fields. |
| [08:38:52] | <j0rd> | and programmatically add new multiples with javascript or something |
| [08:39:09] | <j0rd> | i can point you in the right direction..but it's not going to be easy |
| [08:39:09] | <netron1234> | thats what i'm trying to figure out ... how do you group cck fields? |
| [08:39:25] | <netron1234> | oh - any direction is better than none. appreciated... |
| [08:39:28] | <j0rd> | i'm trying to do a very similar thing...and it's yet to be abstracted in drupal |
| [08:39:47] | <j0rd> | netron1234: you create your own CCK field type with multiple fields |
| [08:39:57] | <j0rd> | then you set that field to be "multiple" |
| [08:40:03] | <netron1234> | D6? |
| [08:40:17] | <j0rd> | d5 |
| [08:40:21] | <netron1234> | darn.. |
| [08:40:25] | <j0rd> | http://drupal.org/node/206980 |
| [08:40:33] | <Druplicon> | http://drupal.org/node/206980 => Template files for CCK fields => 2 IRC mentions |
| [08:40:33] | <netron1234> | i'm working with the Ahah stuff in D6. |
| [08:40:33] | <j0rd> | http://www.darcynorman.net/2008/05/02/creating-a-custom-compound-field-f... |
| [08:40:43] | <j0rd> | http://drupal.org/node/232184 |
| [08:40:49] | <Druplicon> | http://drupal.org/node/232184 => CCK Multiple Groups (like multiple fields) => 1 IRC mention |
| [08:40:54] | * swentel has joined #drupal-support |
| [08:40:55] | <j0rd> | netron1234: well..this might provide at least direction |
| [08:40:56] | * matason has quit ("Tepplefall") |
| [08:41:08] | <j0rd> | they have not implemetned this in d6 either from what I have read |
| [08:41:34] | <j0rd> | it's a very common problem and this is the very common solution |
| [08:41:49] | <netron1234> | basically i'm trying to extract what poll.module is doing in D6... you can add simultaneously two field items with a single add more button... "choice" & "vote" - displayed on a single line. hitting "add more" adds another two fields. |
| [08:42:10] | <netron1234> | and its all powered by ahah, so no page refresh. |
| [08:42:20] | <j0rd> | create your custom field with your two textfields or selects |
| [08:42:29] | <netron1234> | thanks for the direction jOrd.. will investigate. |
| [08:42:31] | <j0rd> | call that field 'mygroup' |
| [08:42:44] | <j0rd> | make sure 'mygroup' can handle multiple entries |
| [08:42:52] | <netron1234> | so you can create a cck field which is actually made of 2 fields or more? |
| [08:43:22] | <j0rd> | programatically add a new 'mygroup' entry when the user presses ...GIMME MORE! |
| [08:43:37] | <j0rd> | netron1234: yes...yo ucan create a custom field which is two fields or more |
| [08:43:55] | <netron1234> | hmm.. i think we're on the right track here. thanks. |
| [08:44:00] | <j0rd> | netron1234: and it's fairly simple to do when they're standard fields like textarea and textfield |
| [08:44:09] | <j0rd> | netron1234: i have 1 more article for you |
| [08:44:10] | * Mek has quit (Read error: 104 (Connection reset by peer)) |
| [08:44:11] | <netron1234> | yeah they are... just textfields. |
| [08:44:39] | <j0rd> | http://www.lullabot.com/articles/an_introduction_to_the_content_construc... |
| [08:44:42] | * Mek has joined #drupal-support |
| [08:44:59] | <j0rd> | ^ CCK explained from the database perspective |
| [08:45:07] | <j0rd> | enjoy |
| [08:45:12] | * mikl has joined #drupal-support |
| [08:45:23] | <j0rd> | that should provide you with enough insight....now you just need the skills to implement :D |
| [08:46:23] | <netron1234> | yeah - that lullabot article is packed full of good stuff.. great article. |
| [08:46:48] | <j0rd> | i should suggest added those URLs which you find useful to your posts on drupal.org ... even if you can't figure it out...someone else might appreciate the direction |
| [08:46:56] | <j0rd> | cheers |
| [08:48:07] | <netron1234> | ok will do. |
| [08:49:28] | * naught101 has joined #drupal-support |
| [08:51:12] | * ins\away has joined #drupal-support |
| [08:52:41] | <netron1234> | holy crap... i just cut and pasted three fields into my hook_form_alter from poll.module,, and the ahah stuff is working. so it's leveraging off the functions already in poll.module. |
| [08:52:45] | <netron1234> | thats so cool... |
| [08:52:45] | <netron1234> | wow |
| [08:53:12] | <netron1234> | but its not exactly what i'm after.. but still - thats very cool the way the modules interact with each other. |
| [08:54:33] | <Bigmack83> | has anyone used tinyMCE for 6x? the latest is a dev version. Has it been pretty stable? |
| [08:54:33] | * xur1z has quit (Read error: 104 (Connection reset by peer)) |
| [08:54:43] | * xur1z has joined #drupal-support |
| [08:55:03] | * a_c_m has quit ("Leaving.") |
| [08:55:15] | * alleyoopster has joined #drupal-support |
| [08:56:22] | * maynards-girl has joined #drupal-support |
| [08:56:29] | * bshumate has quit () |
| [08:57:21] | * xur1z has quit (Read error: 104 (Connection reset by peer)) |
| [08:57:24] | * xur1z_ has joined #drupal-support |
| [08:58:11] | * xur1z_ has quit (Read error: 104 (Connection reset by peer)) |
| [08:58:16] | * nearlythere has joined #drupal-support |
| [08:58:33] | * xur1z has joined #drupal-support |
| [08:59:06] | * Bunset has joined #drupal-support |
| [08:59:32] | * Sero has joined #drupal-support |
| [08:59:45] | * flabberkenny has joined #drupal-support |
| [08:59:58] | * xur1z has quit (Read error: 104 (Connection reset by peer)) |
| [09:00:06] | <netron1234> | in D6 can cck handle |
| [09:00:09] | <netron1234> | oops |
| [09:00:12] | <netron1234> | try again |
| [09:00:35] | <netron1234> | i'm trying to figure out how to create a cck group field made up of two or more fields |
| [09:00:38] | <netron1234> | in d6 |
| [09:01:10] | * quentusrex has quit ("Leaving") |
| [09:01:13] | <netron1234> | when editing my custom content type, there's a "add group" option - but all that seems to do is create a group of fields in a panel on the form. |
| [09:01:21] | * JBlaze has joined #drupal-support |
| [09:02:18] | * mib_jg8r16 has joined #drupal-support |
| [09:04:52] | * NikLP has joined #drupal-support |
| [09:05:16] | * asimmonds has joined #drupal-support |
| [09:06:15] | * kjh_ has quit (Read error: 104 (Connection reset by peer)) |
| [09:06:18] | * kjh_ has joined #drupal-support |
| [09:06:19] | <mib_jg8r16> | is there any chatbox i can download from drupal like "chatroom" module |
| [09:06:31] | * ZiggyFish has joined #drupal-support |
| [09:06:36] | <mib_jg8r16> | the problem with chatroom module is that it disconnects all of the users |
| [09:06:47] | <ZiggyFish> | the problem is this. I have two domains setup to one hosting service |
| [09:06:59] | <ZiggyFish> | the one that is one the root (that also has drupal installed) works with clean URLS |
| [09:07:01] | <netron1234> | mibbit might be worth checking out. its an irc client. |
| [09:07:05] | <netron1234> | mibbit? |
| [09:07:07] | <ZiggyFish> | on the other (one that is not located on the root) doesn't allow me to use Clean URLs (box is greyed out) |
| [09:07:18] | <ZiggyFish> | does anyone know what the problem could be |
| [09:07:26] | * Criticality is now known as Criticality|away |
| [09:07:28] | <NikLP> | ZiggyFish: I've had that before, it's something to do with the server config, but I never found out what :/ |
| [09:07:28] | <netron1234> | mibbit_irc? |
| [09:07:44] | <ZiggyFish> | BTW, it's running on a goddady hosting service |
| [09:08:17] | <mib_jg8r16> | hmmm |
| [09:08:27] | <NikLP> | read there |
| [09:08:28] | <NikLP> | http://drupalmodules.com/module/mibbit-irc |
| [09:09:15] | * ingo86 has joined #drupal-support |
| [09:09:21] | <mib_jg8r16> | is mibbit doesn't really have any built in smileys at all |
| [09:09:26] | <mib_jg8r16> | people love smileys |
| [09:09:43] | <mib_jg8r16> | hey guyz. anybody there? |
| [09:09:54] | <netron1234> | well it is irc. but just embedded in a browser. |
| [09:10:07] | <mib_jg8r16> | hmmm |
| [09:10:11] | * fago has joined #drupal-support |
| [09:10:19] | <mib_jg8r16> | unlike chatroom module.. you can embed smileys.. |
| [09:10:45] | <mib_jg8r16> | well is there any module which is better than chatroom type module? |
| [09:10:59] | <mib_jg8r16> | chatroom module is really cool.. |
| [09:11:14] | <mib_jg8r16> | but having a problem with multiple users signed in |
| [09:11:39] | <mib_jg8r16> | they are just suddenly being kicked... it's being disconnected to the database server |
| [09:11:55] | <mib_jg8r16> | in short. there's a bug |
| [09:12:00] | * naught101 has quit (Connection timed out) |
| [09:12:46] | <mib_jg8r16> | is there any chatroom like module that has no bug? |
| [09:13:04] | * Hxh has joined #drupal-support |
| [09:13:27] | * Amitaibu has joined #drupal-support |
| [09:13:40] | <mib_jg8r16> | anyone? |
| [09:13:49] | <ekes> | mib_jg8r16: I thought that chatroom largely used temporary files not the database |
| [09:13:51] | <Amitaibu> | fago, ping |
| [09:14:04] | <ZiggyFish> | should I really worry about my problem. |
| [09:14:11] | <mib_jg8r16> | so what do you the best solution for that? |
| [09:14:35] | <mib_jg8r16> | ekes? |
| [09:15:02] | <ekes> | mib_jg8r16: I was trying to work out what the problem was, it's not clear from you description - and is important to me as I just installed the module on a site (not my choice, but my problem) |
| [09:16:10] | <mib_jg8r16> | hmm. so no solutions yet.. right? |
| [09:16:27] | <mib_jg8r16> | that's what it is... |
| [09:17:19] | <drupalmannen> | which module do you suggest to create a list of a specific content types children or just display number of children it has? (i have node hieararchy installed and the parent-child relationship is there) |
| [09:18:31] | <drupalmannen> | i have node access too, but there is no field:children(count) |
| [09:18:35] | <drupalmannen> | in views |
| [09:19:11] | <ekes> | mib_jg8r16: is it this type of problem http://drupal.org/node/179785 ? |
| [09:19:12] | <Druplicon> | http://drupal.org/node/179785 => Users get kicked out all the time => Chat Room, User interface, normal, active, 2 IRC mentions |
| [09:19:42] | * wojtha has quit ("Leaving") |
| [09:20:56] | <boobaa> | threexk: thanks, will consider it - and yes, I'm not in the US |
| [09:21:54] | <JBlaze> | hey |
| [09:22:20] | <mib_jg8r16> | thanks for the link ekes |
| [09:22:34] | <JBlaze> | i've managed to get my SSL certificate installed onto a site within my multisite but i'm having rproblems with clean URLs now |
| [09:22:54] | <JBlaze> | https refuses to work unless clean URLs are disabled... anyone know how i can get around this? |
| [09:23:27] | * xur1z has joined #drupal-support |
| [09:23:38] | <mib_jg8r16> | ekes do you wanna see how my chatroom works? |
| [09:23:48] | <mib_jg8r16> | it's really bad sometimes |
| [09:24:25] | * ZiggyFish has left #drupal-support ("Ex-Chat") |
| [09:25:05] | <netron1234> | in D6, whats the point of the "add group" option when creating a custom content type? |
| [09:27:01] | * hpnadig has quit (Read error: 104 (Connection reset by peer)) |
| [09:28:00] | * hpnadig has joined #drupal-support |
| [09:31:17] | * Arancaytar has joined #drupal-support |
| [09:31:35] | * Bunset has left #drupal-support ("Leaving.") |
| [09:32:13] | <drupalmannen> | how do i get an article to display number of subarticles? (node hierarchy) can it be done with views (been trying for 3 hours) or must i code it myself? |
| [09:33:01] | <drupalmannen> | someone have a getChildren().size() snippet? |
| [09:33:40] | <netron1234> | i dont. i just use taxonomy and taxonomy_vtn. |
| [09:34:24] | * hunvreus has joined #drupal-support |
| [09:34:30] | <netron1234> | the sitemap module might be worth having a look at , as that iterates through your taxonomy and displays parents and children |
| [09:34:43] | * hunvreus has quit (Client Quit) |
| [09:34:56] | * hunvreus has joined #drupal-support |
| [09:35:06] | * swentel has quit (Read error: 104 (Connection reset by peer)) |
| [09:35:27] | * swentel has joined #drupal-support |
| [09:35:27] | <drupalmannen> | ty netron, i'll try it |
| [09:37:51] | * Ronin1234 has joined #drupal-support |
| [09:37:59] | * RoninBaka has quit (Read error: 104 (Connection reset by peer)) |
| [09:40:50] | * gonzorob has joined #drupal-support |
| [09:40:50] | <mib_jg8r16> | ekes: thanks |
| [09:40:53] | <gonzorob> | hi |
| [09:40:53] | <Druplicon> | bonjour |
| [09:40:56] | <mib_jg8r16> | it really helped me |
| [09:40:57] | <mib_jg8r16> | ;) |
| [09:41:04] | <mib_jg8r16> | thanks for the link dude |
| [09:41:54] | <gonzorob> | when users sign into my sight they get a blank white page (firefox) or a HTTP 500 error (IE) - when you click refresh it signs you on without an issue - any ideas what it could be ? |
| [09:42:19] | <gonzorob> | http://www.plainsightgame.com |
| [09:42:26] | <gonzorob> | l/p : reguser |
| [09:42:28] | <netron1234> | thats known of the "white screen of death" |
| [09:42:37] | <netron1234> | something is wrong with your drupal install. |
| [09:43:05] | <gonzorob> | right, how do i go about finding out what issue it is ? |
| [09:43:41] | * chemical_ has joined #drupal-support |
| [09:44:05] | <gonzorob> | ah, found a page on it |
| [09:45:36] | * zoidfar1 has joined #drupal-support |
| [09:45:37] | * joker2048_ has joined #drupal-support |
| [09:46:13] | <zoidfar1> | does drupal have any modules that provide paid/subscription content functionality? |
| [09:46:27] | * maynards-girl has quit () |
| [09:46:33] | <joker2048_> | hi folks, I searched the forums but did not get a answer. Does anyone of you can suggets me a module for a private filesharing within drupal? |
| [09:47:13] | * Egyptian[Home1 has joined #drupal-support |
| [09:47:34] | * nearlythere has quit () |
| [09:47:58] | <zoidfar1> | joker, what do you mean private filesharing? you can assign priviliges to users based on roles |
| [09:48:17] | <gonzorob> | ah ha! : Fatal error: Call to undefined function mcrypt_module_open() in C:\www.plainsightgame.com\modules\aes\aes.module on line 467 |
| [09:49:13] | * mib_jg8r16 has quit ("http://www.mibbit.com ajax IRC Client") |
| [09:49:15] | * markos_ has joined #drupal-support |
| [09:50:16] | * JBlaze has quit () |
| [09:50:17] | <gonzorob> | that's easy - delete ;) |
| [09:50:22] | <gonzorob> | thanks guys |
| [09:50:25] | * Ronin1234 has quit (Read error: 104 (Connection reset by peer)) |
| [09:50:38] | <joker2048_> | zoidfar1: i have a small group which is working together and we want to share files inside a private area of our drupal website. Some sort of a hierarchical folder structure or so to sort in the files... |
| [09:51:14] | * RoninBaka has joined #drupal-support |
| [09:52:26] | * Egyptian[Home] has quit (Read error: 60 (Operation timed out)) |
| [09:54:22] | <netron1234> | has anyone done work with CCK groups in D6? can you make a CCK field thats actually made up of several fields? |
| [09:54:35] | * J-O-K-E-R has joined #drupal-support |
| [09:54:44] | * chemmyone has quit (Read error: 110 (Connection timed out)) |
| [09:55:45] | * MarioS has joined #drupal-support |
| [09:56:00] | * corsair__ has joined #drupal-support |
| [09:57:05] | <MarioS> | Hello all, Is it possible to split up the Drupal CMS and the main page ? i dont want the administrator to login on the main website but on (example:) http://www.website.com/cms |
| [09:58:28] | <ekes> | MarioS: You can remove the login block from the front page - the login page is usually /user but this can be changed |
| [09:59:03] | <j0rd> | MarioS: you can also create your own main page for your theme |
| [09:59:23] | <j0rd> | MarioS: create a file called page-frontpage.tpl.php or something....google for it |
| [10:00:00] | <MarioS> | will do |
| [10:00:06] | <j0rd> | MarioS: you can also install drupal under a sub-drectory ... check settings.php |
| [10:00:20] | <MarioS> | j0rd: thanks ill look into it |
| [10:00:31] | <MarioS> | j0rd: sub directory sounds more like what i want |
| [10:00:46] | <joker2048_> | anyone here with an idea for my private filesharing? |
| [10:01:27] | <MarioS> | j0rd: quick question, where is the settings.php ^^ |
| [10:02:05] | <j0rd> | sites/yoursite.com/settings.php is where you should put it |
| [10:02:15] | <j0rd> | you can copy one from sites/default/setttings.php |
| [10:02:56] | * kjh_ has quit (Read error: 104 (Connection reset by peer)) |
| [10:02:58] | * kjh__ has joined #drupal-support |
| [10:03:22] | * freescroll has quit () |
| [10:03:39] | <j0rd> | joker2048_: why don't you just install an FTP :D sounds exactly like what you want. Private filesharing with hierarchical strcuture |
| [10:04:41] | <j0rd> | joker2048_: you could create a CCK node with a file upload field. setup permissions and access roles and setup tagging for structure |
| [10:04:41] | <stella> | anyone here still using FF2? If so would you mind trying out something for me? |
| [10:04:43] | * swentel has quit (Read error: 104 (Connection reset by peer)) |
| [10:05:09] | * swentel has joined #drupal-support |
| [10:05:17] | * ipwa has joined #drupal-support |
| [10:05:58] | <joker2048_> | j0rd: hm ok understand but dont know what you mean with 'setup tagging for structure'? |
| [10:06:10] | <netron1234> | sorry stella...FF3 here. it auto-updated when 3 came out. |
| [10:06:20] | <j0rd> | joker2048_: taxonomy via categories |
| [10:06:24] | <stella> | ditto :( |
| [10:06:28] | <joker2048_> | j0rd : ftp is not an option for users without any internet knowledge :-) |
| [10:06:49] | <joker2048_> | j0rd : ah ok |
| [10:06:53] | * Blade_75_ has joined #drupal-support |
| [10:06:57] | <joker2048_> | j0rd: thx |
| [10:06:57] | <j0rd> | doesn't sounds like you want to use drupal unless youwant a shitload of headaches |
| [10:07:09] | <j0rd> | i'd suggest a webftp program |
| [10:07:17] | <j0rd> | or something of the sort that already does what you want |
| [10:07:21] | * xur1z has quit (Read error: 104 (Connection reset by peer)) |
| [10:07:21] | <netron1234> | i'm trying to figure out what the point of CCK groups are in D6... all it seems to do is insert them into a DIV on a form. but beyond that , whats the point of them? |
| [10:07:22] | <j0rd> | save you time and money |
| [10:07:52] | <j0rd> | unless you need the flexibility of drupal and want to build an application around it |
| [10:08:13] | * xur1z has joined #drupal-support |
| [10:08:29] | <Blade_75_> | Hello! I have a problem with TinyMCE... I am trying to enable it on the editing page of a block, but if I enable it it breaks the site and the page does not load. DO anybody know if it is possible to use it on a edit block page? |
| [10:08:48] | <netron1234> | basically i'm trying to do something very simple - two or three fields in a group, with a single "add another" button. its seems nigh on impossible in D6... |
| [10:09:09] | <netron1234> | well, except for poll.module which seems to have hacked a workaround. |
| [10:09:24] | <joker2048_> | j0rd: y inside drupal is a nice option. perhaps a webftp is enough... |
| [10:10:29] | <j0rd> | joker2048_: because it doesn't sound like you know drupal enough to make your time cost effective if all you need is fileupload |
| [10:10:45] | <j0rd> | if you want a hobby projects...then by allmeans it can be done |
| [10:11:03] | <j0rd> | if you want to get it done and working properly...ive suggested webftp for your needs |
| [10:11:57] | <joker2048_> | j0rd: its a hoby project, for a small group. I implemented several websites with drupal but only with a few modules and without cck or taxonomy... :-) |
| [10:12:06] | <zoidfar1> | is there a drupal module that supports paid/subscription content? |
| [10:12:07] | <joker2048_> | o not hoby y now |
| [10:13:21] | <j0rd> | zoidfar1: e-commerce, ubercart |
| [10:14:05] | <zoidfar1> | ubercart seems to be more geared toward selling actual items, it works for subscription-based content as well? |
| [10:14:40] | <netron1234> | "annual subscription" is a type of line item , isnt it? |
| [10:16:50] | <zoidfar1> | hmm, ok, sounds good |
| [10:16:58] | * Singularo has quit (Read error: 110 (Connection timed out)) |
| [10:17:04] | <zoidfar1> | I guess I'll just have to install it and experiment then. Thanks for the advice |
| [10:17:13] | * zoidfar1 has left #drupal-support () |
| [10:17:28] | * Singularo has joined #drupal-support |
| [10:18:29] | * hunvreus_ has joined #drupal-support |
| [10:21:13] | * ipwa_ has quit (Read error: 110 (Connection timed out)) |
| [10:24:32] | * Singularo has quit ("Ex-Chat") |
| [10:24:48] | * Singularo has joined #drupal-support |
| [10:26:45] | <netron1234> | so has anyone manage to get "add another" working with more than one cck field in D6? anyone? |
| [10:27:01] | <Bigmack83> | i want to create a custom link like 'user/1/track' but i want it to be dynamic to each user, so what would i replace the '1' with? |
| [10:27:33] | * hunvreus has quit (Read error: 110 (Connection timed out)) |
| [10:27:33] | * kjh__ has quit (Read error: 104 (Connection reset by peer)) |
| [10:27:41] | * kjh__ has joined #drupal-support |
| [10:27:42] | <swentel> | global $user; $user->uid; |
| [10:29:45] | * purrin has joined #drupal-support |
| [10:29:55] | * purrin has quit (Client Quit) |
| [10:30:01] | * nielsbom has joined #drupal-support |
| [10:30:02] | <Bigmack83> | how would i put that in the actual path field? |
| [10:30:24] | * wmostrey has joined #drupal-support |
| [10:30:49] | <wmostrey> | Hey everyone |
| [10:31:04] | <swentel> | hi wmostrey |
| [10:31:08] | <wmostrey> | I'm looking to set up multi-langual error reporting, but I can't seem to get it working |
| [10:31:16] | * purrin has joined #drupal-support |
| [10:31:31] | <wmostrey> | I tried a host of path aliases and entries in admin/settings/error-reporting but it just doesn't work |
| [10:31:48] | <swentel> | D5 ? |
| [10:31:53] | <wmostrey> | so when a french user goes to a page that doesn't exists, I want to display a french custom node |
| [10:31:54] | <wmostrey> | yes, drupal 5 |
| [10:32:08] | <wmostrey> | or could I do it with i18n_variables perhaps? |
| [10:32:19] | <wmostrey> | naah |
| [10:32:19] | <swentel> | yeps |
| [10:32:23] | <swentel> | that's the easiest way |
| [10:32:37] | * xur1z has quit (Read error: 104 (Connection reset by peer)) |
| [10:33:25] | <swentel> | btw, you going to drupalcon? |
| [10:33:26] | * purrin has quit (Client Quit) |
| [10:33:45] | <wmostrey> | I'm not no, though I was I could |
| [10:34:16] | * Bunset has joined #drupal-support |
| [10:37:15] | * Sero has quit () |
| [10:37:28] | * Sero has joined #drupal-support |
| [10:39:02] | <wmostrey> | yup, it works as expected witn i18n_variables |
| [10:39:06] | * nielsbom has quit (Read error: 104 (Connection reset by peer)) |
| [10:39:06] | <wmostrey> | thanks :) |
| [10:39:32] | <swentel> | np :) |
| [10:39:35] | * nielsbom has joined #drupal-support |
| [10:41:30] | * corsair__ has quit () |
| [10:42:24] | * kanhaiya has joined #drupal-support |
| [10:42:28] | <kanhaiya> | hi all |
| [10:42:46] | <kanhaiya> | can i put website in offline mode from backend ? |
| [10:43:44] | <netron1234> | /etc/init.d/apache2 stop |
| [10:43:46] | <netron1234> | ? |
| [10:44:11] | <swentel> | admin/settings/site-maintenance ? |
| [10:46:45] | <kanhaiya> | Actually i have stopped the apache before only.... |
| [10:47:20] | <kanhaiya> | now i want to put website in offline mode without starting apache...because users are accessing that site before..all they are waiitng for this website to get start |
| [10:47:36] | <kanhaiya> | so i want to do it from mysql db |
| [10:47:47] | <kanhaiya> | is there any table which stores this info........ ? |
| [10:47:54] | * ins\away has quit (No route to host) |
| [10:49:32] | * our1944 has joined #drupal-support |
| [10:51:33] | * Sero has quit () |
| [10:52:14] | * Bunset has left #drupal-support ("Leaving.") |
| [10:53:11] | * RoninBaka has quit (Read error: 104 (Connection reset by peer)) |
| [10:53:16] | * RoninBaka has joined #drupal-support |
| [10:53:18] | <kanhaiya> | netron1234, swentel is there any soln ? |
| [10:53:54] | <netron1234> | not that i'm aware of. quickest way... start up apache.. then admin/settings/site-maintenance |
| [10:53:57] | <bin> | i have a doubt |
| [10:54:16] | <swentel> | kanhaiya, cf netron1234, I'd do it that way too. |
| [10:54:38] | <netron1234> | a doubt? |
| [10:54:41] | <bin> | i like to give some options using radio buttons in user registration page |
| [10:55:01] | <swentel> | hook_form_alter? |
| [10:55:01] | <Druplicon> | hook_form_alter: Perform alterations before a form is rendered. => hook_form_alter(&$form, $form_state, $form_id) => http://api.drupal.org/api/function/hook_form_alter/6 |
| [10:55:08] | * sutha has quit () |
| [10:55:45] | <bin> | but i can't able to find the readio button in the profile creation page |
| [10:55:59] | <bin> | iam using profile module for this |
| [10:56:32] | <netron1234> | hook_form_alter is what you're after |
| [10:56:39] | <bin> | the fireld present in that is single-line textfield |
| [10:56:39] | <bin> | multi-line textfield |
| [10:56:39] | <bin> | checkbox |
| [10:56:39] | <bin> | list selection |
| [10:56:39] | <bin> | freeform list |
| [10:56:40] | <bin> | URL |
| [10:56:42] | <bin> | date |
| [10:56:48] | <kanhaiya> | netron1234, Actually there 1000's of users waiting to do admission ...this is admission process website |
| [10:56:49] | <bin> | how can i use radio in that |
| [10:57:04] | <kanhaiya> | so i have to do it from backend only.... |
| [10:57:12] | <bin> | can u give me an idea netron1234 |
| [10:57:22] | * pcwic1 has quit (Remote closed the connection) |
| [10:58:14] | * pcwick has joined #drupal-support |
| [10:58:47] | * our1944 has left #drupal-support () |
| [10:59:35] | <netron1234> | http://groups.drupal.org/node/2403 |
| [10:59:35] | <Druplicon> | http://groups.drupal.org/node/2403 => Lesson #3 Class Notes wiki -- NodeAPI => 4 IRC mentions |
| [10:59:54] | * corsair__ has joined #drupal-support |
| [11:00:19] | * Nikki_ has joined #drupal-support |
| [11:02:16] | * gagan555 has joined #drupal-support |
| [11:02:48] | <gagan555> | hello all. i needed information regarding VIEWS module. can anyone help me. |
| [11:03:23] | <netron1234> | kanhaiya... put a deny from , allow from in your .htaccess |
| [11:03:35] | <netron1234> | allow from your_ip_address |
| [11:03:37] | <netron1234> | deny from all |
| [11:03:44] | * bshumate has joined #drupal-support |
| [11:03:52] | <netron1234> | that'll only allow yourself in , and deny from everyone else. |
| [11:04:05] | * bshumate has quit (Client Quit) |
| [11:06:17] | * egoleo has joined #drupal-support |
| [11:07:03] | * cc_toide is now known as cctoide |
| [11:08:35] | * jan_bangna has joined #drupal-support |
| [11:12:04] | <kanhaiya> | okay fine thank you netron1234 |
| [11:12:31] | <gagan555> | hello all. anyone can tell me whats the criteria for sorting content in views module. |
| [11:12:50] | <jan_bangna> | i can not see translatable cck fields in views. is that a known issue or missconfiguration? |
| [11:14:36] | * grndlvl____ has quit ("This computer has gone to sleep") |
| [11:16:00] | * kjh__ has quit (Read error: 104 (Connection reset by peer)) |
| [11:16:01] | * kjh_ has joined #drupal-support |
| [11:16:02] | * valcker has joined #drupal-support |
| [11:16:46] | <Bigmack83> | when making a menu item, i want to make the link function similar to 'user/1/track' but for it to work dynamically depending on what user is logged in. How would i write that out in the 'path' box? is there a variable i can replace the '1' with? |
| [11:18:46] | <jan_bangna> | gagan555 just < or > in mysql requests. |
| [11:19:29] | <jan_bangna> | Bigmack83 what kind of content you want to link to? |
| [11:20:19] | * Nikki_ has quit (No route to host) |
| [11:22:14] | * hunvreus_ has quit ("This computer has gone to sleep") |
| [11:22:31] | * JBlaze has joined #drupal-support |
| [11:26:15] | <Bigmack83> | jan_bangna: it will be profile content. I have a dropdown menu that has 'My Account' links |
| [11:26:28] | * gagan555 has quit ("Quick! Kill your client! Bersirc 2.2 is here! [ http://www.bersirc.org/ - Open Source IRC ]") |
| [11:27:13] | * nicjasno has joined #drupal-support |
| [11:27:18] | <nicjasno> | hm... weird |
| [11:27:37] | <nicjasno> | i9 have some nodes overlapping causeing the teasers to display like a cascade and i don't know why |
| [11:27:43] | <jan_bangna> | Bigmack83 i got no idea. |
| [11:27:45] | <nicjasno> | http://www.tonyrobbinslivinghealth.com/ |
| [11:27:52] | <nicjasno> | if anyone can help |
| [11:28:04] | <Bigmack83> | k thanks |
| [11:28:22] | <nicjasno> | if i activate web developer plugin in ff it shows the overlaps |
| [11:29:35] | * DynV_ has joined #drupal-support |
| [11:30:33] | * Blade_75_ has quit ("Ex-Chat") |
| [11:30:33] | <nicjasno> | i'm really out of ideas what this could be |
| [11:30:42] | * wmostrey has quit () |
| [11:31:36] | * iCyborg has joined #drupal-support |
| [11:33:18] | <iCyborg> | How to avoid selecting categories altogether and still make sure the new page lands in proper category |
| [11:34:20] | * dchakrab has joined #drupal-support |
| [11:34:21] | * kjh_ has quit (Read error: 104 (Connection reset by peer)) |
| [11:34:26] | * kjh_ has joined #drupal-support |
| [11:34:42] | * nearlythere has joined #drupal-support |
| [11:37:50] | * mukesh has joined #drupal-support |
| [11:38:24] | * pcwick has quit ("Leaving.") |
| [11:38:31] | <mukesh> | can any one tell me which module should i use to show all the member's. |
| [11:38:43] | * valberg has quit (Nick collision from services.) |
| [11:38:45] | * valberg has joined #drupal-support |
| [11:38:49] | * cirotix has quit (Read error: 104 (Connection reset by peer)) |
| [11:38:51] | * valberg has quit (Nick collision from services.) |
| [11:39:49] | * jan_bangna has quit () |
| [11:40:50] | * JBlaze has quit () |
| [11:40:56] | * hunvreus has joined #drupal-support |
| [11:43:44] | * valberg_ has joined #drupal-support |
| [11:44:00] | * _DT has joined #drupal-support |
| [11:44:06] | <Bigmack83> | mukesh: go to 'mysite.com/profile' that will show a list of all your users |
| [11:45:21] | * dchakrab has quit () |
| [11:45:53] | * valberg_ has quit (Client Quit) |
| [11:46:39] | <mukesh> | Bigmack83: thanks but it showing only name not email ids....and i wanna show all the info.. how do i do this? |
| [11:47:03] | * hunvreus has quit ("This computer has gone to sleep") |
| [11:47:40] | * J-O-K-E-R has quit ("Trillian (http://www.ceruleanstudios.com") |
| [11:52:42] | <bin> | how i can do the radio button select in the profile module |
| [11:52:55] | <Bigmack83> | mukesh: 'admin/user/profile' edit the field you want to show, under visibility choose a public field. if you select the last option that field will show on that link i showed you and most likely if you make a view. |
| [11:53:11] | * hunvreus has joined #drupal-support |
| [11:54:10] | <Bigmack83> | bin: are you on D5 or D6 |
| [11:54:34] | <bin> | D5 |
| [11:55:00] | <bin> | Bigmack83, iam on D5 |
| [11:55:06] | * hunvreus has quit (Client Quit) |
| [11:55:10] | <Bigmack83> | bin: if on D5 download the radio button cck field. you should find it under the cck section of the d.o. downloads page |
| [11:55:27] | <bin> | Bigmack83, ok |
| [11:56:19] | <bin> | Bigmack83, one more thing , is it possible t add the payment option in user registration, il like to ask payment for registration in my site |
| [11:56:20] | * kjh_ has quit (Read error: 104 (Connection reset by peer)) |
| [11:56:31] | * kjh_ has joined #drupal-support |
| [11:56:43] | <bin> | Bigmack83 how can i do that |
| [11:58:30] | * DynV has quit (Read error: 110 (Connection timed out)) |
| [11:58:54] | * iCyborg has quit (Read error: 110 (Connection timed out)) |
| [11:58:55] | <Bigmack83> | bin: i cant find the radio button module, but for paid subscriptions use either 'ubercart' or 'e-commerce' . Ubercart is easier to set up but does not offer as much expansion as e-commerce, well usually. |
| [11:59:35] | <bin> | yes i used ubercart |
| [11:59:54] | <bin> | but it asking the detaisl when the user buy a product from the site |
| [11:59:55] | * sayers has joined #drupal-support |
| [12:00:10] | <sayers> | How difficult is it to install a module overall? |
| [12:00:27] | <Bigmack83> | bin: for ubercart questions try #ubercart |
| [12:00:40] | <Bigmack83> | sayers: point and click |
| [12:01:06] | <bin> | Bigmack83, ok |
| [12:01:10] | <sayers> | Bigmack83, Is there any post installation procedure or just put it in the directory ? |
| [12:02:23] | <Bigmack83> | sayers: find the module you want to download and place the folder from the zip file into the modules directory. then go to your modules page and check the box next to your module then 'submit' at the bottom of the page. there are a select few modules that require more but they will say so |
| [12:02:50] | * Bes` has quit ("power off") |
| [12:02:57] | <Bigmack83> | only real post installation setup is to configure any options that module gives. the settings. |
| [12:03:02] | * Bes` has joined #drupal-support |
| [12:03:05] | <sayers> | Sweet! Sounds really seasy |
| [12:03:20] | <Bigmack83> | yup. you considering drupal? |
| [12:03:28] | <nearlythere> | does anyone have acquire from URL working with op_video module? i just need to run a test, if you can spare a minute? |
| [12:04:30] | <MarioS> | Question: When i make a page, how do i add content in it ? ^^ |
| [12:05:42] | <Bigmack83> | marioS: in the body field of the page is where you place all of your pages content. the other stuff is all settings forthat page |
| [12:06:26] | <MarioS> | Bigmack83: Yea but what if i wanted it more like this: http://muntrue.nl/?code |
| [12:07:00] | * RandomCake_ has joined #drupal-support |
| [12:08:36] | * RandomCake_ has quit (Client Quit) |
| [12:09:02] | * e-anima has joined #drupal-support |
| [12:09:08] | * brunodbo has joined #drupal-support |
| [12:09:12] | <Bigmack83> | ok the link at the very top are your 'primary links' the image below that is the header with a picure. 'contact' on the right is the right sidebar with a menu in it. the 4 icons in the bottom are the footer. Where it says 'CODE' is the title of a piece of MarioS: content and the text below that is the "stuff" put into the body field |
| [12:09:48] | <Bigmack83> | MarioS: to create a link you just use the <a> as per standard html |
| [12:10:12] | <Bigmack83> | i meant the <a> link tag |
| [12:11:37] | <Bigmack83> | MarioS: are you on drupal 5 or 6? |
| [12:13:25] | * [alphex] has joined #drupal-support |
| [12:13:52] | <Bigmack83> | creating content? |
| [12:14:10] | <Bigmack83> | content? |
| [12:14:10] | <Druplicon> | content is the main section of page output. If you want to theme it, you can look at contemplate? or... search d.o. for content themeing snippets |
| [12:14:20] | <Bigmack83> | createcontent? |
| [12:15:27] | <Bigmack83> | druplicon: createcontent is Noobs look here to help with creating new content. and please read the many other documentation on the drupal.org site. http://drupal.org/node/120635 |
| [12:15:27] | <Druplicon> | Bigmack83: Okay. |
| [12:15:35] | <Druplicon> | http://drupal.org/node/120635 => G. Creating Content => 3 IRC mentions |
| [12:15:35] | * _DT has quit (Remote closed the connection) |
| [12:15:55] | <Bigmack83> | MarioS: look here http://drupal.org/node/120635 |
| [12:15:56] | <Druplicon> | http://drupal.org/node/120635 => G. Creating Content => 4 IRC mentions |
| [12:16:10] | * sutha has joined #drupal-support |
| [12:16:21] | <Bigmack83> | createcontent? |
| [12:16:21] | <Druplicon> | createcontent is Noobs look here to help with creating new content. and please read the many other documentation on the drupal.org site. http://drupal.org/node/120635 |
| [12:16:37] | * [alphex] has quit (Read error: 104 (Connection reset by peer)) |
| [12:17:13] | <MarioS> | Bigmack83: Im on drupal 6 |
| [12:17:33] | <sayers> | Wow! My user just exploded. I no longer have an account on my site. |
| [12:17:41] | <Bigmack83> | MarioS: ok that link i just pasted will still help you. |
| [12:17:53] | <Bigmack83> | sayers: ? the user1? |
| [12:18:09] | <sayers> | Bigmack83, The admin user I made at the installation is now gone. |
| [12:18:18] | * afief_ has joined #drupal-support |
| [12:18:48] | <MarioS> | Bigmack83: So basicly, i will have to create invisible content, and link off to that? |
| [12:18:56] | <Bigmack83> | sayers: do you have phpmyadmin or an equivelant? |
| [12:19:03] | <sayers> | Bigmack83, Yes. |
| [12:19:15] | <MarioS> | Bigmack83: And i cant create like a page, and give the content that parentId so it will go there auto ? |
| [12:19:53] | <Bigmack83> | MarioS: yes you can you have to make a link on the front page or make a menu item for it |
| [12:20:17] | <Bigmack83> | sayers: go to the table 'users' in your database |
| [12:20:19] | * frostburn has quit ("Leaving") |
| [12:20:36] | <sayers> | alright I'm there b |
| [12:20:42] | <sayers> | Bigmack83, * |
| [12:21:07] | <Bigmack83> | sayers: and you should see a uid 1 and the admin username next to it right? |
| [12:21:48] | <sayers> | Bigmack83, I see an empty column with some nulls and 0's |
| [12:22:08] | <Bigmack83> | sayers: what did you do right before this happened? |
| [12:22:25] | <sayers> | Bigmack83, I was toying around with Taxomany |
| [12:23:30] | <Bigmack83> | sayers: there should be a UID column with a value of '1' then a 'name' column with a value of whatever the admins username is |
| [12:23:47] | * valcker has quit (Remote closed the connection) |
| [12:23:52] | <sayers> | Bigmack83, nope there is empty column though/ |
| [12:23:57] | <Bigmack83> | sayers: make sure you opt to browse the whole table not just one column |
| [12:24:14] | <Bigmack83> | sayers: can you upload a screen anywhere? |
| [12:24:18] | <sayers> | I'm pretty sure I'm browsing the whole thing |
| [12:24:24] | <Bigmack83> | ok |
| [12:24:25] | <sayers> | yeah give me a seccond |
| [12:24:29] | <Bigmack83> | k |
| [12:24:31] | * jackson- has quit () |
| [12:24:44] | <nielsbom> | try Crossloop for remote-help |
| [12:24:59] | <nielsbom> | (it's free) |
| [12:25:28] | <Bigmack83> | crossloop? well all i need is to see what his table looks like and I can tell him what to do |
| [12:26:03] | <nielsbom> | I understand but then you'll be able to do it with him instead of explaining it |
| [12:26:10] | <nielsbom> | But your way works too. |
| [12:26:23] | <nielsbom> | (him/her) |
| [12:26:26] | <Bigmack83> | what is crossloop? |
| [12:27:14] | <nielsbom> | It's sort of like remote desktop but easier, it's based on VNC |
| [12:27:27] | <nielsbom> | www.crossloop.com |
| [12:27:47] | <sayers> | Bigmack83, where do I put the picture |
| [12:27:56] | <sayers> | nicjasno, VNC over ssh is easy, and secure ;) |
| [12:28:22] | <nielsbom> | It's Windows only btw |
| [12:28:24] | * DarthclueWork has joined #drupal-support |
| [12:28:37] | <sayers> | thus making it useless. |
| [12:28:42] | <Bigmack83> | haha |
| [12:28:50] | <nielsbom> | If you don't have Windows:true |
| [12:29:40] | <Bigmack83> | cmon windows isnt that bad. yea i agree linux is awesome but i grew up on windows and can do most of the same things. |
| [12:29:57] | <nielsbom> | http://www.tightvnc.com/ |
| [12:30:05] | <nielsbom> | cross platform VNC client |
| [12:30:11] | * daYZman-w has joined #drupal-support |
| [12:30:13] | <daYZman-w> | hi |
| [12:30:18] | <nielsbom> | GLP-licensed |
| [12:30:25] | <daYZman-w> | does anyone know how to import data into CCK in d6? |
| [12:30:29] | <gonzorob> | what's the best backup module ? |
| [12:30:52] | <sayers> | It's not bad, I just like all the fun features I get, like awesome Printer GUI's and very fast software, amongst the best media players around and an intuitive interface. |
| [12:30:54] | <nielsbom> | daYZman-w: have you looked at node-import? |
| [12:31:31] | <nielsbom> | I feel an OS-flame war catching on ;-) |
| [12:31:49] | <sayers> | nah I'm done |
| [12:32:08] | <sayers> | it is way to early and way to cold. |
| [12:32:20] | <gonzorob> | yeah, we all know OS2 warp is the best... |
| [12:33:00] | <nielsbom> | BeOS looked good :-) Pretty good UI as I've heard |
| [12:33:06] | <daYZman-w> | nielsbom, no i haven't yet. will it allow me to import a new type using cck d5 code? |
| [12:33:30] | <Bigmack83> | sayers: too early? well its late for me. but wait thats cuz i work graveyard shift.only an hour nad a half left. woot |
| [12:33:49] | <nielsbom> | daYZman-w: I don't know actually |
| [12:34:09] | <nielsbom> | http://drupal.org/node/133705 |
| [12:34:09] | <Druplicon> | http://drupal.org/node/133705 => How-to: Import data into CCK nodes (5.x) => 8 IRC mentions |
| [12:34:24] | * valcker has joined #drupal-support |
| [12:34:33] | <nielsbom> | But you're looking for D6 right? |
| [12:35:35] | * DynV__ has joined #drupal-support |
| [12:35:42] | <gonzorob> | do D5 modules work on D6? |
| [12:35:46] | <boobaa> | - |
| [12:36:25] | <nielsbom> | no |
| [12:36:34] | <nielsbom> | http://drupal.org/project/node_import |
| [12:37:11] | <nielsbom> | http://groups.drupal.org/node/5036 Node Import for D6 is "In Progress Almost ready for testing. " |
| [12:37:11] | <Druplicon> | http://groups.drupal.org/node/5036 => Contributed modules status - version 6.x => 26 IRC mentions |
| [12:37:49] | <daYZman-w> | nielsbom, ok thanks. i'll look into that. |
| [12:38:13] | <nielsbom> | you're welcome |
| [12:39:05] | * MarioS has quit () |
| [12:39:54] | * sarah_p has joined #drupal-support |
| [12:41:38] | <mukesh> | I'm creating a content type feedback. which should be displayed on front page....how should set permission to it so that it should be displayed only when a user give permision. |
| [12:41:51] | <mukesh> | user* admin |
| [12:44:59] | * alleyoopster has quit (Remote closed the connection) |
| [12:45:02] | <netron1234> | in a custom form (for a custom content type) how do you get rid of options like "book outline", "revision information" etc... i just want to *only* display the cck fields that i have created for the form |
| [12:46:16] | * frostburn has joined #drupal-support |
| [12:47:30] | * dchakrab has joined #drupal-support |
| [12:49:28] | <bin> | hi mukesh do u know how to add payment option in user registration |
| [12:50:04] | <netron1234> | use hook_form_alter bin |
| [12:50:06] | * DynV_ has quit (Read error: 110 (Connection timed out)) |
| [12:50:12] | * guardian_ is now known as guardian |
| [12:50:29] | <netron1234> | and cck. |
| [12:50:49] | <bin> | can u plz explain to me , iam new in drupal |
| [12:51:04] | <bin> | in thisnk hook_form_alter is a function |
| [12:51:19] | <bin> | netron1234, am i right |
| [12:52:11] | <netron1234> | yeah.. but in your own custom module |
| [12:52:42] | <netron1234> | so if you created a module called "dingbats"... then the function would be dingbats_form_alter |
| [12:52:59] | <bin> | ok |
| [12:53:04] | <netron1234> | to alter a node, it would be dingbats_nodeapi |
| [12:53:08] | <netron1234> | etc etc |
| [12:53:12] | <bin> | ok |
| [12:53:24] | <netron1234> | http://groups.drupal.org/node/2403 is a good guide to it |
| [12:53:25] | <Druplicon> | http://groups.drupal.org/node/2403 => Lesson #3 Class Notes wiki -- NodeAPI => 5 IRC mentions |
| [12:53:32] | <nielsbom> | mukesh:can you explain some more? |
| [12:53:42] | <nielsbom> | feedback should be viewable by whom? |
| [12:54:07] | <mukesh> | every one |
| [12:54:11] | <bin> | netron1234, thanks , i will tell my aim |
| [12:54:17] | <bin> | i have a site |
| [12:54:27] | <bin> | in that the user can register |
| [12:54:41] | * setvik has quit () |
| [12:54:47] | <nielsbom> | every user can view the feedback, but they can also change a setting so that they never see it? |
| [12:54:52] | <bin> | for the registration they have to pay some amount |
| [12:55:02] | <nielsbom> | (every user for himself) |
| [12:55:30] | <mukesh> | nielsbom: they should not manage it. |
| [12:55:49] | <bin> | netron1234, they ca select different options like aypal, money order, check etc |
| [12:55:57] | <mukesh> | they have to see it and it should be in front page. |
| [12:56:09] | <bin> | netron1234, is there any module avilable for this one , |
| [12:56:19] | <nielsbom> | and every piece of feedback is a node right? |
| [12:56:23] | * sammyfung has joined #drupal-support |
| [12:56:27] | <mukesh> | yes |
| [12:56:35] | <bin> | netron1234, or i have to develop my own module for this |
| [12:56:36] | <netron1234> | basically you are describing a subscription based site, with content only available to subscribed users... |
| [12:56:43] | <netron1234> | thats been done already.. |
| [12:56:46] | <netron1234> | see here: |
| [12:56:48] | <nielsbom> | mukesh:you can then use Views to display the latest feedback items |
| [12:56:51] | <netron1234> | http://www.stonemind.net/blog/2008/02/07/tips-for-implementing-a-subscri... |
| [12:56:55] | * e-anima has quit ("www.artwaves.de") |
| [12:56:57] | * nearlythere has quit () |
| [12:57:03] | * bshumate has joined #drupal-support |
| [12:57:05] | <bin> | netron1234, ok |
| [12:57:06] | <nielsbom> | and then add a block to the frontpage that shows that view |
| [12:57:14] | <bin> | netron1234, let me chk |
| [12:57:32] | * _valcker has joined #drupal-support |
| [12:57:39] | <mukesh> | yes but thing is that in view i'm not able to call the feedback content type. |
| [12:57:41] | <netron1234> | and here's the module |
| [12:57:43] | <mukesh> | nielsbom: |
| [12:57:45] | <netron1234> | http://drupal.org/project/role_subscription |
| [12:57:56] | * Ori_P has quit () |
| [12:58:33] | <nielsbom> | mukesh: http://learn.awakenedvoice.com/2007/07/30/drupal-cck-and-views-tutorial/ |
| [12:58:45] | <nielsbom> | I think this video could help you |
| [12:59:06] | <nielsbom> | mukesh: sorry didn't read your last line |
| [12:59:34] | * harurenu has joined #drupal-support |
| [13:00:23] | <nielsbom> | so your problem is that you can't see the content-type you created with CCK when making a View, am I correct? |
| [13:00:28] | * sarah_p has quit () |
| [13:00:31] | * Ori_P has joined #drupal-support |
| [13:00:33] | <mukesh> | i have seen this video but i'm not gettign how should i call my feedback in view i mean there is no content type option ...i'm using D5. |
| [13:00:55] | <mukesh> | yes |
| [13:00:58] | <mukesh> | nielsbom: |
| [13:01:05] | <nielsbom> | mukesh: I'll just test it locally, w8 a minute |
| [13:01:16] | <mukesh> | ok |
| [13:03:45] | <bin> | <netron1234> can i ask on ething |
| [13:04:22] | <bin> | netron1234, this ecommerce module used for the shopping cart right |
| [13:04:59] | * andreaf has joined #drupal-support |
| [13:05:08] | <andreaf> | hi * |
| [13:05:08] | <netron1234> | yeah... |
| [13:05:26] | <sayers> | are there any 'must have' modules? |
| [13:05:37] | <netron1234> | cck |
| [13:05:51] | <stella> | views |
| [13:05:56] | * Zarabadoo1 has quit (Read error: 104 (Connection reset by peer)) |
| [13:06:03] | <stella> | prob, imagecache + imagefield if you want images |
| [13:06:14] | <andreaf> | hi *, what about the possibility to "semplify" the create content menu with some big icons and/or buttons ? According to my boss the backoffice of drupal (for editing content) is too difficult to use... tips ? googling ? any ideas ? |
| [13:06:24] | <bin> | netron1234, so when user click on new account then this payment option will not come |
| [13:06:31] | <bin> | netron1234, right |
| [13:06:31] | <netron1234> | bin - you checked out that role_subscription module? i think thats exactuly what you are after... |
| [13:06:43] | <netron1234> | http://drupal.org/project/role_subscription |
| [13:06:44] | <andreaf> | ok, maybe my boss is not a geek. but actually is my boss :/ |
| [13:07:18] | <netron1234> | edit the template files maybe? |
| [13:07:24] | <bin> | netron1234, ok i will check and let u know the result |
| [13:08:26] | <netron1234> | andreaf > this might help http://drupal.org/node/144603 |
| [13:08:28] | <Druplicon> | http://drupal.org/node/144603 => Add an icon to menu links => 8 IRC mentions |
| [13:08:40] | * llang has joined #drupal-support |
| [13:10:31] | * valcker has quit (Connection timed out) |
| [13:12:01] | <nielsbom> | mukesh: I'm still testing |
| [13:12:03] | * CrackerJackMack has joined #drupal-support |
| [13:12:10] | <andreaf> | interesting but i can add a BIG icon in the list of different content that someone can edit .. |
| [13:12:34] | * netaust1n has joined #drupal-support |
| [13:13:01] | <nielsbom> | andreaf: what you want to do is theming |
| [13:13:31] | * Ricco has joined #drupal-support |
| [13:13:33] | <netron1234> | i wonder if anyone has done avatars for content types? i think thats what andreaf is after |
| [13:13:37] | * kanhaiya has quit ("Leaving") |
| [13:13:54] | <Ricco> | hey guys, I am having trouble getting the field name of my form to process |
| [13:13:56] | <Ricco> | $message = ""; |
| [13:13:56] | <Ricco> | foreach ($form_values['submitted'] as $field_id => $value) { |
| [13:13:57] | <andreaf> | more or less. I have to semplify the editoral feature (for a dumb editor user, something like a marketing monkey :) ) |
| [13:13:57] | <Ricco> | $component = $node->webformcomponents[$field_id]; |
| [13:13:59] | <Ricco> | $message .= $component['name'] . " = " . $value . "\n\n"; |
| [13:14:01] | <Ricco> | } |
| [13:14:03] | <Ricco> | is my code |
| [13:14:24] | <Ricco> | and i was assuming $component['name'] would have the form field name? what am I missing? |
| [13:14:24] | <nielsbom> | Ricco: please use pastebin.com or the like |
| [13:14:30] | <Ricco> | nielsbom, sorry |
| [13:14:38] | <nielsbom> | it's easier |
| [13:14:45] | <ipwa> | hey guys, anyone themed exposed filters? |
| [13:15:40] | <ipwa> | This is my code, and it works, but when I uncomment the line that attempt to turn the select box into radio buttons, that filter dissappears |
| [13:15:40] | <Ricco> | the $value is coming accross fine, but all the $component['name'] are just empty |
| [13:15:43] | <ipwa> | http://drupalbin.com/2289 |
| [13:16:12] | <netron1234> | Ricco-> best guess is that $component is a multi part array |
| [13:16:27] | <netron1234> | $component[0]['name'] might work. |
| [13:16:44] | <netron1234> | have you tried doing print_r on $component to see what the structure actually is of it. |
| [13:16:58] | * hpnadig has quit ("Ex-Chat") |
| [13:17:40] | <netron1234> | print_r on $node and $form_values will also help you track down the issue |
| [13:18:02] | * ohhi has quit (Connection timed out) |
| [13:18:42] | * cYu has joined #drupal-support |
| [13:21:38] | <nielsbom> | mukesh: are you still there? |
| [13:21:53] | * RobertMLaptop has joined #drupal-support |
| [13:22:28] | <drupalmannen> | [Node Hierarchy: permission] has anyone found a solution for this http://drupal.org/node/242439 (?) - problem is a user cannot choose parent if he doesn't have permission to edit that parent content type. |
| [13:22:29] | <Druplicon> | http://drupal.org/node/242439 => Ability to create children of nodes user cannot edit => Node Hierarchy, Code, normal, active, 1 IRC mention |
| [13:22:34] | <mukesh> | yes |
| [13:22:38] | <mukesh> | nielsbom: yes |
| [13:22:46] | <nielsbom> | mukesh:what you need to do is the following |
| [13:22:52] | <nielsbom> | mukesh:go to filters |
| [13:23:05] | <nielsbom> | mukesh:select node-type |
| [13:23:07] | <nielsbom> | mukesh: |
| [13:23:13] | <mukesh> | yes |
| [13:23:21] | <nielsbom> | mukesh:Is One of and then select the feedback node type |
| [13:23:26] | * kjh_ has quit (Remote closed the connection) |
| [13:23:56] | <nielsbom> | mukesh:every node type should be listed in the list of values after "Node-type" |
| [13:24:02] | <mukesh> | nielsbom: got it but now its not showing in the my specified page... |
| [13:24:42] | <mukesh> | when ever a user enters nay thing in it whereit goes i'm not getting. |
| [13:25:10] | * ceardach has quit (Remote closed the connection) |
| [13:25:29] | <McGo> | Hi. I thought a lot about this but can't come to a solution. Is there some kind of content repository realisable in drupal? |
| [13:25:29] | <nielsbom> | mukesh:do you see it showing up in the content list? |
| [13:25:43] | <nielsbom> | mukesh: admin/content/node |
| [13:25:45] | * TomvB has quit (Read error: 104 (Connection reset by peer)) |
| [13:25:57] | <McGo> | So that x sites can get there content (on a node basis) from that repository and push content to it? |
| [13:26:35] | * dtaylormi has joined #drupal-support |
| [13:26:42] | <mukesh> | nielsbom: yes now i just tested one and it is showing ....let me check if user enter's any thing then...it ask for the permission or not. |
| [13:27:02] | * hunvreus has joined #drupal-support |
| [13:28:01] | <nielsbom> | mukesh:I don't understand your last line |
| [13:28:19] | * hunvreus has quit (Client Quit) |
| [13:28:39] | * tomdeb_ is now known as tomdeb |
| [13:28:49] | * tomdeb has quit ("leaving") |
| [13:28:51] | <mukesh> | i need it when ever a normal user gives feedback it should ask for approval of the admin. |
| [13:28:54] | <mukesh> | nielsbom: |
| [13:29:06] | * tomdeb has joined #drupal-support |
| [13:29:07] | * Michelle2 has joined #drupal-support |
| [13:29:29] | * alvin_2 has joined #drupal-support |
| [13:29:31] | <nielsbom> | mukesh:so step1: user adds feedback step2: admin approves, step3: it shows on the frontpage, right? |
| [13:29:43] | <mukesh> | yes |
| [13:30:33] | * afief__ has joined #drupal-support |
| [13:31:03] | * bshumate has quit () |
| [13:32:13] | * ins\away has joined #drupal-support |
| [13:32:19] | * darrenoh has joined #drupal-support |
| [13:32:21] | <Bigmack83> | under pathauto settings I want to have a path that changes profiles from 'use/username' to '[role]/usersname' but i dont see a replacement pattern that lets me replace 'user' with the name of a role. is this possible? that was all student profiles are 'student/studentname' and staff is 'staff/staffname' |
| [13:32:32] | <daYZman-w> | does anyone know how i can import fields into CCK d6? i remember there was an import feature in CCK for d5. |
| [13:33:05] | <mukesh> | nielsbom: when user enters any thing its not showing but...how admin will approve it. where it goes? |
| [13:33:17] | <nielsbom> | mukesh: wait a minute |
| [13:33:19] | <nielsbom> | I'm thinking |
| [13:33:21] | <nielsbom> | :) |
| [13:33:30] | * bshumate has joined #drupal-support |
| [13:33:31] | <mukesh> | ok |
| [13:33:34] | * DynV_ has joined #drupal-support |
| [13:33:53] | * RobertLaptop has quit (Read error: 113 (No route to host)) |
| [13:35:00] | * Michelle2 has quit () |
| [13:37:00] | <drupalmannen> | Anyone know of a function to set the parent node of a node? |
| [13:37:53] | * DynV has joined #drupal-support |
| [13:38:29] | <mikl> | drupalmannen: CCK noderefs :) |
| [13:39:09] | * Michelle2 has joined #drupal-support |
| [13:39:37] | * Michelle has quit (Connection timed out) |
| [13:39:43] | * Michelle2 is now known as Michelle |
| [13:40:02] | * Bojhan has joined #drupal-support |
| [13:41:09] | * valberg has joined #drupal-support |
| [13:41:32] | <valberg> | hi! |
| [13:41:32] | <Druplicon> | hello |
| [13:41:46] | <DarthclueWork> | Is there a way to prevent drupal from using a specific path alias? For example, if I already have content at 'mystuff' I want drupal to prevent that alias from being used for drupal content. |
| [13:41:47] | <valberg> | what sre the pros and cons of using panel pages and panel nodes ? |
| [13:41:56] | * _valcker is now known as valcker |
| [13:42:03] | <nielsbom> | mukesh: what you want to do is probaby best done using roles |
| [13:42:13] | * brainycat has joined #drupal-support |
| [13:42:19] | * afief__ has quit (Read error: 104 (Connection reset by peer)) |
| [13:42:27] | <mukesh> | ok now i was looking that one.. |
| [13:42:30] | * aslak has joined #drupal-support |
| [13:42:47] | <nielsbom> | muskesh:that the group of users that can add feedback have the rights to create content of type feedback but only admins have the right to publish content of tyoe feedback |
| [13:42:48] | * murphy has joined #drupal-support |
| [13:43:17] | <murphy> | anyone can help with modifying $_GET['page'] on a view? http://drupal.org/node/276850 |
| [13:43:18] | <Druplicon> | http://drupal.org/node/276850 => where to change default $page value => Views, Code, normal, fixed, 2 IRC mentions |
| [13:43:37] | <murphy> | not sure where to modify its value.. |
| [13:43:40] | * afief_ has quit (Read error: 104 (Connection reset by peer)) |
| [13:45:27] | * bshumate has quit ("*poof*") |
| [13:45:40] | <daYZman-w> | does anyone know how i can import fields into CCK d6? i remember there was an import feature in CCK for d5. |
| [13:47:42] | * corsair__ has quit () |
| [13:49:31] | * RobertLaptop has joined #drupal-support |
| [13:49:31] | * snufkin has joined #drupal-support |
| [13:49:42] | * RobertMLaptop has quit ("Leaving") |
| [13:49:47] | * DynV__ has quit (Read error: 110 (Connection timed out)) |
| [13:50:23] | <murphy> | daYZman-w: check this out: http://drupal.org/node/133027#comment-858073 |
| [13:50:31] | <Druplicon> | http://drupal.org/node/133027 => importing data into CCK created node => 2 IRC mentions |
| [13:51:41] | <nielsbom> | mukesh:what you can do is edit the feedback content type to have it "not-published" by default |
| [13:52:07] | <nielsbom> | mukesh:using views and filters you can let the admin view a list of the non-published feedback |
| [13:52:19] | <nielsbom> | mukesh: and then some way for the admin to publish the content |
| [13:52:21] | * gusaus has joined #drupal-support |
| [13:52:21] | * frando has joined #drupal-support |
| [13:52:41] | <nielsbom> | mukesh:Users with the 'administer nodes' permission can change the publication status of a node. |
| [13:53:08] | <nielsbom> | mukesh:so the people who give the feedback should NOT be given that role |
| [13:53:09] | <mukesh> | nielsbom: ok so everu time admin has to check if the user has puted a feedback he cant get a email for this? |
| [13:53:14] | * afief__ has joined #drupal-support |
| [13:53:44] | * DynV_ has quit (Read error: 110 (Connection timed out)) |
| [13:54:04] | <nielsbom> | mukesh:that can be done with: http://drupal.org/project/nodetriggers |
| [13:54:28] | <mukesh> | ok |
| [13:55:00] | <nielsbom> | mukesh:For example, you can set up a trigger so that an action gets executed each time a Story node is created. |
| [13:55:14] | <nielsbom> | mukesh: same goes for every other node ofcourse |
| [13:55:30] | <mukesh> | hey grt means it solves my problem... |
| [13:55:41] | <mukesh> | nielsbom: |
| [13:56:34] | * billfish1 has joined #drupal-support |
| [13:56:39] | <nielsbom> | mukesh: you're welcome |
| [13:56:56] | * sirkitree has joined #drupal-support |
| [13:57:26] | <mukesh> | nielsbom: thanks a million |
| [13:57:35] | <nielsbom> | mukesh::) |
| [13:57:40] | <nielsbom> | mukesh: :) |
| [13:57:44] | * amarrero has joined #drupal-support |
| [13:58:26] | <nielsbom> | mukesh: maybe you can help me then, the feedback block doesn't show up on my test-site... |
| [13:59:00] | <mukesh> | yeah why not.. |
| [13:59:09] | <nielsbom> | mukesh:I've made the block with Views and then positioned it with the Blocks page |
| [13:59:22] | <nielsbom> | mukesh:and I've added some feedback content |
| [14:00:16] | <mukesh> | nielsbom: you made it through content type. |
| [14:00:29] | * gusaus has quit () |
| [14:00:32] | <nielsbom> | mukesh: I've made a content type feedback first |
| [14:00:46] | <nielsbom> | and those show up on "recent posts" |
| [14:00:51] | <nielsbom> | so they are published |
| [14:01:03] | <ipwa> | anyone know how to theme a exposed filter select box as radio buttons? |
| [14:01:15] | * renga has joined #drupal-support |
| [14:01:39] | * dereine has joined #drupal-support |
| [14:02:01] | <dereine> | is there a way to use suscribe for NON new users? |
| [14:03:19] | <mukesh> | actually i had clicked on publish on front page. so i think thats why it was pramoted to front page |
| [14:03:22] | <mukesh> | nielsbom: |
| [14:04:00] | <nielsbom> | mukesh: I have published them |
| [14:04:23] | <dereine> | nielsbom, do you use views or sth. like that for frontpage? |
| [14:04:28] | <nielsbom> | mukesh: If I make another block it does show op |
| [14:04:51] | * xgetc25 has joined #drupal-support |
| [14:04:52] | * hunvreus has joined #drupal-support |
| [14:05:17] | <nielsbom> | dereine: I used Views to create a Block that I want to show somewhere (for testing I've now set it to display on all pages) |
| [14:05:40] | * Bigmack83 has quit (Read error: 110 (Connection timed out)) |
| [14:06:10] | * mortendk has quit () |
| [14:06:17] | <mukesh> | nielsbom: but the block is showed when you create it with view. even i do not created any different block for it. |
| [14:06:51] | * milian has joined #drupal-support |
| [14:06:52] | * hpnadig has joined #drupal-support |
| [14:07:14] | <mukesh> | nielsbom: try to edit it from the blocks. |
| [14:07:26] | * renga has quit (Remote closed the connection) |
| [14:07:34] | * alvin_2 has quit (Read error: 104 (Connection reset by peer)) |
| [14:07:47] | <mukesh> | admin/block/ |
| [14:07:55] | * davexoxide has joined #drupal-support |
| [14:08:51] | <xgetc25> | who used module bithdays - how to show some profile files in block recent birthdays , now there only name of user are shown? |
| [14:11:59] | <xgetc25> | who can help? |
| [14:12:44] | * develCuy has joined #drupal-support |
| [14:14:58] | * aslak has quit ("Leaving") |
| [14:15:33] | * mukesh has quit ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]") |
| [14:15:45] | * snufkin has quit (Read error: 113 (No route to host)) |
| [14:15:57] | <drupalmannen> | anyone familiar with node comment? |
| [14:16:35] | * DynV_ has joined #drupal-support |
| [14:17:40] | <drupalmannen> | (with node comment) can you assign different types of comments to different types of content types? |
| [14:20:57] | <drupalmannen> | forget it, i found it. it works |
| [14:21:14] | <drupalmannen> | wasted my time on node hierarchy |
| [14:21:44] | <drupalmannen> | node comment is the stuff you want for section/article like relations |
| [14:22:18] | * [alphex] has joined #drupal-support |
| [14:27:21] | <xgetc25> | who can help with bithdays module? |
| [14:27:39] | <netron1234> | is there something like hook_form_alter but for blocks? |
| [14:28:09] | <billfish1> | Anyone have experience with phptemplate_preprocess_views_view_list_VIEWNAME($view, $nodes, $type) and overriding a List View? |
| [14:30:11] | * PatMac has quit () |
| [14:30:29] | * cirotix has joined #drupal-support |
| [14:31:45] | * DynV has quit (Read error: 113 (No route to host)) |
| [14:33:05] | * mukesh has joined #drupal-support |
| [14:33:13] | <mukesh> | how do i edit a profile page so that it should show all the info? |
| [14:33:58] | * mlsamuelson has joined #drupal-support |
| [14:35:10] | * nicdc has joined #drupal-support |
| [14:36:31] | * PatMac has joined #drupal-support |
| [14:36:38] | <murphy> | where can i modify the value of $GET_['page'] for a view? |
| [14:37:40] | * netaust1n has quit () |
| [14:38:03] | <nielsbom> | muskesh:I'm back |
| [14:38:33] | * xgetc25 has quit ("Galaxy Legend http://galaxylegend.ru") |
| [14:38:44] | <nielsbom> | muskesh: I also didn't create a new block for it, the block was created by the views module |
| [14:39:03] | * fo2sh has joined #drupal-support |
| [14:39:07] | <nielsbom> | muskesh:hence I can't edit it from the Block page, as it's not a regular Block |
| [14:40:07] | <nielsbom> | mukesh: editing the profile page-->use theming |
| [14:40:12] | <nicjasno> | hm... thi is driving me crazy... the pics in the bottom block are getting offset by 20px each |
| [14:40:17] | <nicjasno> | and i don't know why |
| [14:40:25] | <nicjasno> | same happens with teasers |
| [14:40:28] | <nicjasno> | http://www.tonyrobbinslivinghealth.com/ |
| [14:40:32] | <nicjasno> | dammit |
| [14:40:36] | <nielsbom> | nicjasno:do you use Web Developer Toolbar and Firebug? |
| [14:40:44] | <nicjasno> | web developer |
| [14:40:56] | <nicjasno> | i've been looking through their ancestors |
| [14:41:00] | <nicjasno> | and nothing |
| [14:41:14] | <nicjasno> | i'm probably overlooking some small detail |
| [14:41:25] | <mukesh> | nielsbom: but i edited it... it means i created it from blocks. |
| [14:41:26] | <nielsbom> | nicjasno: Firebug let's you see the cascade and shows where the styles effecting the element are coming from |
| [14:41:35] | <nielsbom> | nicjasno: and it's editable, live |
| [14:41:35] | * gusaus has joined #drupal-support |
| [14:41:45] | * PatMac_ has joined #drupal-support |
| [14:42:02] | * afief__ has quit (Read error: 104 (Connection reset by peer)) |
| [14:42:11] | <nielsbom> | mukesh: you created a profile page using blocks? |
| [14:42:13] | <mukesh> | nielsbom: what is theming? |
| [14:42:19] | <nicjasno> | hm.. |
| [14:42:25] | * nicjasno goes to install firebug |
| [14:42:37] | <nielsbom> | mukesh: http://drupal.org/node/35728 |
| [14:42:38] | <Druplicon> | http://drupal.org/node/35728 => Customising the user profile layout => 41 IRC mentions |
| [14:42:46] | * ekiczek has quit () |
| [14:43:14] | <nielsbom> | Theming is changing the layout of your site, that's pretty basic. |
| [14:44:05] | * zwiep` has quit ("this laptop has gone to sleep") |
| [14:44:12] | * developerhealey has joined #drupal-support |
| [14:44:13] | <billfish1> | where is the best palce to override a list view? in template.tpl.php? |
| [14:44:37] | * davidstrauss has joined #drupal-support |
| [14:44:51] | <nielsbom> | billfish1: depends on your wishes |
| [14:45:09] | <nielsbom> | billfish1: do you want it to be easily editable by designers? |
| [14:45:25] | <nielsbom> | billfish1: then make a callback function in template.php and create a .tpl.php file |
| [14:45:34] | <Ricco> | anyone know what the name of the array that a webform stores the fields into? |
| [14:45:36] | <billfish1> | nielsbom: somewhat simple. it doesn't matter. I am a one-man shop, but I prefer to code as if there were third-party designers. |
| [14:45:40] | <nielsbom> | billfish1: else you can can use template.php |
| [14:46:01] | * davidstrauss has quit (Client Quit) |
| [14:46:13] | <nielsbom> | billfish1: use the first option |
| [14:46:27] | <billfish1> | nielsbom: thanks for the info. i assume the tpl is going to be views-view-list.tpl.php ? |
| [14:46:55] | <billfish1> | nielsbom: just copy it over from them folder within view? (assuming it is of course a list view)? |
| [14:47:11] | * luison has joined #drupal-support |
| [14:47:17] | <nielsbom> | billfish1: I don't know that by heart, sorry |
| [14:47:29] | <nielsbom> | billfish1: yes copying it is a good start |
| [14:47:41] | <murphy> | let me rephrase, where is the best place to modify $page in a view? |
| [14:47:47] | <nielsbom> | billfish1: and then renaming it partly with the name of your theme |
| [14:47:58] | * nielsbom is digging up a video on theming |
| [14:48:19] | <billfish1> | nielsbom: ok I can look up the candidate tpl.php suggestions using Theme Developer. |
| [14:48:38] | * C00re has joined #drupal-support |
| [14:48:51] | <billfish1> | nielsbom: however, do you know the propery syntax for the callback to put into template.tpl.php? |
| [14:48:55] | <nicjasno> | nielsbom: i'm eeven more in the dark than before now |
| [14:48:57] | <developerhealey> | Got an issue with permissions.... on Drupal 5.5 (when logged out cant see pages, but can see panels, but cant see stories, and only can see the same poll forever even tho it is most recent, click on more polls and there is only that one, when logged it This is different |
| [14:49:01] | <nicjasno> | http://www.tonyrobbinslivinghealth.com/category/1/1 |
| [14:49:07] | <nicjasno> | here the images are ligned up |
| [14:49:19] | <developerhealey> | how would i upgrade to 5.7 maybe will fix these issues |
| [14:49:19] | <nicjasno> | but the teaser nodes are misaligned |
| [14:50:39] | <nielsbom> | billfish1: for the template callback function naming-->mytheme_breadcrumb($breadcrumb) |
| [14:50:59] | * mortendk has joined #drupal-support |
| [14:51:05] | * Singularo has quit ("Ex-Chat") |
| [14:51:12] | * danmurf has joined #drupal-support |
| [14:51:15] | <billfish1> | ok. I will check that out in the manner that you mentioned. |
| [14:51:29] | <nielsbom> | billfish1: no wait, that's wrong |
| [14:51:41] | * Nikki_ has joined #drupal-support |
| [14:52:21] | * Singularo has joined #drupal-support |
| [14:52:36] | <nielsbom> | billfish1: there's a great lesson on DrupalDojo.com where theming is explained, including using .tpl.php files |
| [14:52:46] | <gonzorob> | on a windows server, how do i change the "sites\default\files" unaccessable over the web? |
| [14:52:50] | <nielsbom> | billfish1:only drupaldojo.com is down now |
| [14:52:50] | <danmurf> | Hi, I'm using user_save to create new user account in my module then assign them to roles, but it's saying that the user has logged in before when they havent. Is there a way to stop this happening? |
| [14:53:09] | <gonzorob> | on linux i could just use chmod 770 :/ |
| [14:53:13] | <gonzorob> | windows is annoying |
| [14:53:49] | <gonzorob> | do i need to do it in apache ? |
| [14:54:16] | * dougvann has joined #drupal-support |
| [14:55:39] | * drupalmannen has quit () |
| [14:55:49] | <billfish1> | ok, I will check out the Dojo. I think I know the video. However, in addition, I have one last "big picture" question. How do I intercept each element within the list view so I can set certian things up with <h1> tags, and edit spacing, etc. ? |
| [14:56:37] | * erifneerg has joined #drupal-support |
| [14:56:55] | * McGo has quit () |
| [14:57:25] | <nielsbom> | billfhish1: you can use themefunctions to override the output of all html, is that the answer to your question? |
| [14:57:38] | <nielsbom> | gonzorob: have you tried Googling it? |
| [14:58:11] | * MattKelly has joined #drupal-support |
| [14:58:14] | * afief__ has joined #drupal-support |
| [14:58:14] | <erifneerg> | can I override the value in module? would I do it in the template.php file? |
| [14:58:26] | <nielsbom> | billfish1: http://www.zshare.net/download/14516932d17add13/ here are the slides of the Dojo presentation |
| [14:58:28] | * daYZman-w has quit (Remote closed the connection) |
| [14:58:38] | * PatMac has quit (Read error: 110 (Connection timed out)) |
| [14:59:00] | <nielsbom> | erifneerg: I don't understand your question |
| [14:59:08] | <gonzorob> | nielsbom: yup, getting confused whether i ned to do it in apache or windows security |
| [14:59:35] | * Michelle2 has joined #drupal-support |
| [14:59:36] | <nielsbom> | well how do you reach your server? through a GUI FTP? |
| [14:59:45] | <nielsbom> | gonzorob: |
| [15:00:16] | * Michelle has quit (Nick collision from services.) |
| [15:00:18] | * Michelle2 is now known as Michelle |
| [15:00:45] | <gonzorob> | VNC |
| [15:00:52] | <gonzorob> | so gui |
| [15:01:52] | <erifneerg> | well in view bonus grid, it's set to be 4 items in each row. I want it to be 5 but I know that changing that value in the module would bad pratices |
| [15:02:20] | <erifneerg> | nielsbom: so I figured seting the value in template.php would the way i would do it |
| [15:02:36] | <nielsbom> | nicjasno: The pages are both doing some strange stuff with the floating items. It looks better if you change the CSS to say .node{margin-bottom:0px; |
| [15:02:38] | <nielsbom> | padding-bottom:0px;} |
| [15:02:58] | * andreaf has left #drupal-support () |
| [15:03:02] | <nicjasno> | hm.. |
| [15:03:09] | <nielsbom> | gonzorob: and then you're in Windows explorer? |
| [15:03:26] | <gonzorob> | yup |
| [15:04:10] | <nicjasno> | this fixes the issue with the nodes |
| [15:04:11] | * ekiczek has joined #drupal-support |
| [15:04:17] | <nicjasno> | thogh i don't know why |
| [15:04:29] | * xushi has quit (Read error: 104 (Connection reset by peer)) |
| [15:04:35] | <nielsbom> | nicjasno: It changed the layout of the upper items also |
| [15:04:40] | <nicjasno> | but the pics in the bottom block are still weird if viewed from the front page |
| [15:05:05] | * xushi has joined #drupal-support |
| [15:05:23] | * Ricco has left #drupal-support ("Leaving") |
| [15:05:27] | <nielsbom> | gonzorob: if you can FTP to the site it's possible |
| [15:05:48] | <nielsbom> | gonzorob: and probaly your host has a control panel |
| [15:05:58] | <nielsbom> | gonzorob: (probably) |
| [15:06:06] | <gonzorob> | Command: SITE CHMOD 770 files |
| [15:06:07] | <gonzorob> | Response: 504 Command not implemented for that parameter |
| [15:06:12] | <gonzorob> | i tried ftp first :( |
| [15:06:52] | * Ronin1234 has joined #drupal-support |
| [15:06:57] | * RoninBaka has quit (Read error: 104 (Connection reset by peer)) |
| [15:07:09] | * hpnadig has quit ("Ex-Chat") |
| [15:08:27] | * mukesh has quit ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]") |
| [15:08:36] | <danmurf> | can anyone help me create a user account with user_save so that it doesn't set the accessed time (i.e., show that the user has logged in before, when they haven't)? |
| [15:08:59] | * NeoID has joined #drupal-support |
| [15:09:10] | * ChrisCharlton has joined #drupal-support |
| [15:09:16] | * ChrisCharlton has left #drupal-support () |
| [15:09:41] | * mib_fwjaoq has joined #drupal-support |
| [15:09:49] | * bflora has joined #drupal-support |
| [15:10:08] | <bflora> | my site's working fine in FF but in IE i get "domain.com" is currently unavailable |
| [15:10:09] | <bflora> | help? |
| [15:10:09] | <Druplicon> | Read http://heine.familiedeelstra.com/coding-help-tips to get help with your code. |
| [15:10:14] | <bflora> | anyone ever seen this? |
| [15:10:42] | * davidstrauss has joined #drupal-support |
| [15:10:54] | * mib_fwjaoq has left #drupal-support () |
| [15:11:40] | * mikl has quit () |
| [15:13:30] | * NeoID has quit (Client Quit) |
| [15:13:42] | * NeoID has joined #drupal-support |
| [15:14:30] | * hunvreus has quit ("This computer has gone to sleep") |
| [15:15:01] | * cgardner has quit () |
| [15:16:38] | <erifneerg> | would anyone know how to change the information displayed in the thick box module? |
| [15:17:44] | * Zarabadoo has joined #drupal-support |
| [15:18:47] | <netron1234> | is it possible to change the contents of a block on the fly, depending on where you are in a drupal site. if i am on page X then i want block Y to display this string. what api function would you call to do this, if possible? |
| [15:18:58] | * maynards-girl has joined #drupal-support |
| [15:20:10] | * billfish1 has quit (Read error: 104 (Connection reset by peer)) |
| [15:20:44] | <nielsbom> | gonzorob: does your host have a control panel? |
| [15:21:02] | <nielsbom> | bflora: whats' the URL? |
| [15:22:32] | <nielsbom> | netron1234: that is possible, one way is to define it in a Block, hardcoded in PHP |
| [15:22:58] | * alvin_2 has joined #drupal-support |
| [15:23:14] | <alvin_2> | is there a function where you can get a cck field by name ? |
| [15:23:16] | <nielsbom> | netron1234: see these block settings-->Page specific visibility settings |
| [15:23:17] | <nielsbom> | Show block on specific pages: |
| [15:23:19] | <nielsbom> | Show on every page except the listed pages. |
| [15:23:20] | <nielsbom> | Show on only the listed pages. |
| [15:23:22] | <nielsbom> | Show if the following PHP code returns TRUE (PHP-mode, experts only). |
| [15:24:28] | <netron1234> | tricky... because the content of the block will be generated by my php code... |
| [15:24:36] | <netron1234> | rather than just returning true. |
| [15:24:42] | * flabberkenny has quit () |
| [15:24:59] | * roam has left #drupal-support () |
| [15:25:12] | * JBlaze has joined #drupal-support |
| [15:25:15] | <nielsbom> | netron1234: I don't understand |
| [15:27:16] | <netron1234> | nielsbom: in simple terms its a block that displays different things depending on where you are in the drupal site. |
| [15:28:01] | * DynV_ is now known as DynV |
| [15:28:19] | * joker2048_ has quit ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org") |
| [15:30:08] | <netron1234> | i basically need to figure out a way of saying to drupal, if you are on page X , then render block Y with this html... if your are on page BLAH, then render the same block with this BLAH content. |
| [15:30:27] | * Mek has quit ("Lost terminal") |
| [15:30:36] | <netron1234> | maybe its something in hook_nodeapi.... but that doesnt appear to apply to blocks? |
| [15:30:49] | * koolhead17 has joined #drupal-support |
| [15:30:59] | * ynn has joined #drupal-support |
| [15:31:16] | * munga has joined #drupal-support |
| [15:31:30] | <ynn> | anyone know how to solve overlay issues with video from thickbox? |
| [15:31:35] | <andb> | netron1234, there is a module that allows for really complex placement of blocks based on php conditions. It was developed for the New York Observer project, but dont remember the name. Might help you. |
| [15:31:56] | <netron1234> | yeah - that might help. |
| [15:31:57] | * afief__ has quit ("Leaving") |
| [15:31:59] | <andb> | sounds like you need different blocks, not to theme a single block |
| [15:32:06] | * Roelven has quit () |
| [15:32:14] | * ixlr8 has joined #drupal-support |
| [15:32:19] | <stella> | ynn: what sort of overlay issues? |
| [15:32:22] | <netron1234> | not really... goingthe different blocks route would be a nightmare to administer. |
| [15:32:29] | <nielsbom> | netron1234: that's right, you can generate other content in the same block, or display a different block |
| [15:32:30] | <stella> | ynn: i'm more familiar with lightbox2 though |
| [15:32:31] | <andb> | ynn, I use lighbox2 with youtube videos embeded via emfield, its great. |
| [15:32:36] | <andb> | hi stella |
| [15:32:40] | <stella> | heya |
| [15:32:50] | <ynn> | stella: the overlay goes under the embedded video |
| [15:33:04] | <nielsbom> | netron1234: I agree with andb to make different blocks and display X when condition Y, and display A when condition B |
| [15:33:19] | <stella> | ynn: yes... |
| [15:33:28] | <netron1234> | trouble is , the conditions are dynamic as well... |
| [15:33:29] | * bovasso has joined #drupal-support |
| [15:33:38] | <ynn> | stella: that's bad |
| [15:33:43] | <nielsbom> | netron1234: what kind of condtions? |
| [15:33:56] | <ynn> | stella: images are what is being loaded in the thickbox not vids |
| [15:33:56] | <stella> | ynn: the overlay is meant to go under the video |
| [15:34:14] | <netron1234> | taxonomy urls. |
| [15:34:44] | <netron1234> | basically the taxonomy is going to be mapped to openx zones... so depending on where you are, relevant openx adverts will be served up. |
| [15:34:48] | <ynn> | stella: one sec let me take a screen hsot |
| [15:34:56] | <netron1234> | and of course, the taxonomy will be changing and growing. |
| [15:35:22] | <netron1234> | thats why i figured that a dynamic block , using the openx api , would be the best course. |
| [15:36:33] | * amarrero has quit (Read error: 104 (Connection reset by peer)) |
| [15:36:46] | * AlexUA has joined #drupal-support |
| [15:36:48] | * netaust1n has joined #drupal-support |
| [15:36:55] | * p142 has joined #drupal-support |
| [15:37:03] | * p142 has quit (Client Quit) |
| [15:37:04] | <nielsbom> | netron1234: I'm not familiar with openX |
| [15:37:13] | <stella> | ynn: where's the video coming from? emfield module? or you creating the link manually? |
| [15:37:31] | * punz has joined #drupal-support |
| [15:37:34] | * amarrero has joined #drupal-support |
| [15:37:37] | * PatMac_ has quit () |
| [15:37:40] | * bovasso is now known as ultimatepacp |
| [15:37:44] | <ynn> | stella: its entered in as html |
| [15:37:45] | <netron1234> | nielsbom: its an ad serving platform. all that's going into the block is a blob of HTML.. nothing fancy. |
| [15:37:52] | * ultimatepacp is now known as ultimatepaco |
| [15:37:56] | <nielsbom> | netron1234: and the taxonomy, those variables are available in the page so you can test them |
| [15:38:06] | <ynn> | stella: but it has the wmode=transparent settings |
| [15:38:26] | <nielsbom> | netron1234: but if people add new tags you did not predict, you'll have to think about that |
| [15:38:53] | <stella> | ynn: does teh video open at all? |
| [15:39:16] | <netron1234> | nielsbom: indeed... logically it should be simple. "if you are on page X, render block with this blob of html" |
| [15:39:16] | <stella> | lightbox comparison? |
| [15:39:16] | <Druplicon> | lightbox comparison can be found at http://drupal.org/node/266126 |
| [15:39:22] | <ynn> | stella: the video isn't what's opening in the thickbox, its an image. |
| [15:39:45] | <ynn> | stella: when the image and the overlay load, you can see the videos above the overlay |
| [15:39:51] | <stella> | ynn: are u clicking on an image to open the video in thickbox? is it the same image? |
| [15:39:57] | <netron1234> | just trying to figure out how you can pre-render blocks... in kind of the same way as you can change forms on the fly with hook_form_alter |
| [15:39:59] | <ynn> | yeah |
| [15:40:32] | <stella> | ynn: yeah post a screenshot somewhere |
| [15:40:34] | <nielsbom> | netron1234: pre-rendering, what do you mean with that? |
| [15:41:00] | <ynn> | stella: give me a few minutes, a crisis has developed |
| [15:41:12] | <nielsbom> | netron1234: taxonomy_node_get_terms($node->nid) |
| [15:41:12] | <stella> | ynn: ok |
| [15:41:27] | <nielsbom> | netron1234: Maybe this'll help http://www.nicklewis.org/node/723 |
| [15:41:30] | <netron1234> | some way of saying b4 drupal outputs an entire page..."block X = this blob of html"... |
| [15:42:27] | <nielsbom> | netron1234: well Drupal first builds the content and only then applies theming so it does that already |
| [15:43:03] | <nielsbom> | netron1234: it's not like html gets added after the page is loaded (as can be the case with Javascript) |
| [15:43:31] | * JohnAlbin has joined #drupal-support |
| [15:43:41] | <koolhead17> | j_query calender breaks everythin :( |
| [15:43:42] | <nielsbom> | netron1234: and you have a finite amount of html blobs that are supposed to be printed? |
| [15:43:57] | <nielsbom> | netron1234: or is the html itself also dynamic? |
| [15:44:09] | <netron1234> | the html is dynamic... generated by openx. |
| [15:44:34] | <netron1234> | same kind of thing as a google adsense HTML blob that you'd put on your website. |
| [15:44:35] | <nielsbom> | netron1234: that's a whole other ball game, how does openx give you the html? |
| [15:44:44] | <nielsbom> | netron1234: through JS? |
| [15:44:58] | <netron1234> | nah.. via an API.. |
| [15:45:37] | * JohnAlbin has quit (Client Quit) |
| [15:45:38] | <netron1234> | generateTags() method, which returns a blob of html. |
| [15:45:40] | <nielsbom> | netron1234: well you could write the PHP to call that API with the arguments (taxonomy terms) in the block |
| [15:45:46] | <nielsbom> | netron1234: blocks accept PHP code |
| [15:45:51] | <netron1234> | they do? |
| [15:45:57] | <nielsbom> | netron1234: :D |
| [15:46:02] | <netron1234> | in block body? |
| [15:46:10] | <nielsbom> | netron1234:Show if the following PHP code returns TRUE (PHP-mode, experts only). |
| [15:46:20] | <nielsbom> | netron1234: oh no... |
| [15:46:31] | <netron1234> | oh right... that bit. |
| [15:46:38] | <nielsbom> | netron1234: You may post PHP code. You should include <?php ?> tags. |
| [15:46:46] | <nielsbom> | netron1234: so I was right |
| [15:46:59] | * PatMac has joined #drupal-support |
| [15:47:02] | <nielsbom> | netron1234: I just posted the wrong form text :D |
| [15:47:11] | <nielsbom> | netron1234: that solves your problem right? |
| [15:47:26] | <netron1234> | hopefully. |
| [15:47:33] | <netron1234> | that option is terribly worded... |
| [15:47:49] | <nielsbom> | netron1234: where are you reading that? |
| [15:47:50] | <netron1234> | implies that the block body can only been show if that php function returns true... |
| [15:48:03] | <netron1234> | "show if the following PHP code returns true" |
| [15:48:16] | <nielsbom> | netron1234: you are reading the "specifiy visibilty" form |
| [15:48:25] | <nielsbom> | netron1234: I mean the admin/build/block/add |
| [15:48:29] | <netron1234> | yeah. i am |
| [15:48:31] | <netron1234> | D6 |
| [15:48:40] | <nielsbom> | netron1234: and then "Input Format" |
| [15:48:51] | * okwichu has joined #drupal-support |
| [15:49:04] | <netron1234> | input format ? that has filtered html and full html |
| [15:49:07] | <nielsbom> | netron1234: it accepts filtered HTML, PHP, or FULL HTML |
| [15:49:27] | * Mek has joined #drupal-support |
| [15:49:44] | <netron1234> | PHP too? |
| [15:50:24] | <nielsbom> | netron1234: you can change the settings for that in admin/settings/filters |
| [15:50:25] | <netron1234> | gotcha |
| [15:50:25] | <nielsbom> | netron1234: be careful not to turn it on for non-admins |
| [15:50:25] | * nikkiana has joined #drupal-support |
| [15:50:30] | <andb> | I want to output block with a list of events, using cck date. I only want to print the start date. Advice on theming this date output? |
| [15:51:11] | <nielsbom> | andb: use Views, filter on the correct node type and show field: date |
| [15:51:13] | <NikLP> | netron1234: use used ryanair? |
| [15:51:24] | <andb> | this will show start date and finish date. |
| [15:51:39] | <netron1234> | nielsbom > in input filters, there's only html stuff. 4 options. no "PHP code" option |
| [15:51:40] | <nielsbom> | andb: isn't that splittable? |
| [15:51:46] | <NikLP> | netron1234: let me rephrase that :p have you booked via ryanair, ever? |
| [15:51:53] | <netron1234> | ryanair? no. never use them. |
| [15:51:56] | <andb> | has to be done in a theme function, Im pretty sure |
| [15:52:04] | <NikLP> | netron1234: on principal, or what? :p |
| [15:52:14] | <NikLP> | oh you're in london eh |
| [15:52:16] | <andb> | views outputs as the whole, as determined by the display funciton in the date module |
| [15:52:17] | <nielsbom> | netron1234: you can add an input format |
| [15:52:21] | <netron1234> | they have a crappy reputation... so i've never bothered with them |
| [15:52:57] | <stella> | they are crap, but unfortunately still irrestiably cheap |
| [15:53:14] | * JohnAlbin has joined #drupal-support |
| [15:53:31] | * brunodbo has quit ("Leaving.") |
| [15:53:38] | * stella can't type today |
| [15:53:56] | <gonzorob> | can you set drupal to email users if you change their role ? |
| [15:54:19] | <stella> | i think there's a contrib module that will do that for u |
| [15:54:42] | <gonzorob> | im using apply for role module |
| [15:54:42] | <nielsbom> | andb: http://drupal.org/node/62466 |
| [15:54:45] | <Druplicon> | http://drupal.org/node/62466 => Theming Individual CCK Fields => 14 IRC mentions |
| [15:54:57] | <andb> | nielsbom, thnx, checking |
| [15:55:04] | <gonzorob> | so people can apply for our beta test, i just want to be able to send out a mass email if we accept them |
| [15:55:14] | <netron1234> | how do you set up a php input filter to execute php code? |
| [15:55:23] | <nielsbom> | gonzorob: D6 can do that: triggers/actions |
| [15:55:52] | <nielsbom> | netron1234: admin/settings/filters/add |
| [15:56:25] | <netron1234> | hmmm.. but theres no "render php code" kind of option... |
| [15:56:46] | <gonzorob> | nielsbom: great! |
| [15:56:47] | <nielsbom> | netron1234: PHP evaluator "Runs a piece of PHP code. The usage of this filter should be restricted to administrators only!" |
| [15:56:50] | <gonzorob> | is that in the admin menu? |
| [15:57:13] | <nielsbom> | gonzorob: http://blip.tv/file/529950 |
| [15:57:20] | <netron1234> | oh - is that a plugin or add module? |
| [15:57:26] | <nielsbom> | gonzorob: but attention: that's for D6 |
| [15:57:40] | <nielsbom> | netron1234: it's core, which Drupal are you using? |
| [15:57:45] | <netron1234> | D6 |
| [15:57:52] | <nielsbom> | netron1234: are you logged in as admin? |
| [15:58:01] | <netron1234> | yeah. |
| [15:58:03] | <nielsbom> | netron1234: I'll test it locally |
| [15:58:08] | * Inferus has quit () |
| [15:58:13] | <netron1234> | ah .. maybe i need to turn it on...in settings maybe |
| [15:58:35] | <gonzorob> | if D6 i the default downloa,d thats what ive got ;) |
| [15:58:52] | * mrfree has joined #drupal-support |
| [15:58:56] | <gonzorob> | checks |
| [15:58:56] | <gonzorob> | yup |
| [15:59:05] | <mrfree> | hi all |
| [15:59:08] | <nielsbom> | netron1234: it's not on by default in D6 anymore, thats new for me |
| [15:59:35] | <netron1234> | where do i turn it on... modules? |
| [15:59:39] | <mrfree> | I'm trying to move my drupal5 website to drupal6, I noticed that image module views doesn't work anymore |
| [15:59:58] | <mrfree> | there aren't any default image_* view in the viewsUI |
| [16:00:12] | <netron1234> | FOUND IT... thanks nielsbom... |
| [16:00:19] | <nielsbom> | netron1234: yes there's a core module for that |
| [16:00:21] | <nielsbom> | Allows embedded PHP code/snippets to be evaluated. |
| [16:00:23] | <netron1234> | "Php filter" .. core module. off by default |
| [16:00:25] | <netron1234> | awesome. |
| [16:00:44] | <nielsbom> | netron1234: and we both know why it's off by default right? |
| [16:00:46] | <nielsbom> | :) |
| [16:01:01] | * nielsbom hopes someone wasn't hacked too hard |
| [16:01:08] | <netron1234> | indeed... |
| [16:01:11] | * swentel has quit ("Leaving") |
| [16:01:13] | * kenois has quit ("Leaving") |
| [16:01:40] | <nielsbom> | netron1234: you're welcome :) I feel good helping you :) |
| [16:01:50] | <nielsbom> | netron1234: are you going to DrupalCon? |
| [16:02:04] | * mortendk has quit () |
| [16:02:16] | <netron1234> | awesome that worked... "hello world" now in my block. dynamic blocks here i come... |
| [16:02:35] | <netron1234> | yeah - might be. busy at work though. will make plans later. |
| [16:02:54] | * ultimatepaco has quit () |
| [16:02:55] | <netron1234> | exit |
| [16:02:57] | * netron1234 has quit ("leaving") |
| [16:02:59] | * danmurf has quit () |
| [16:03:15] | <nielsbom> | netron1234: see ya! |
| [16:04:55] | * JBlaze has quit () |
| [16:05:20] | * narkotik84 has joined #drupal-support |
| [16:07:05] | * Michelle2 has joined #drupal-support |
| [16:07:40] | * bshumate has joined #drupal-support |
| [16:07:41] | * cgardner has joined #drupal-support |
| [16:07:42] | <nielsbom> | mrfree: can you explain a bit more? |
| [16:08:32] | <mrfree> | nielsbom, sure... I try :) using 5.x image module version it installs 3 default views to use with views module |
| [16:09:16] | * yareckon has joined #drupal-support |
| [16:09:23] | <narkotik84> | when posting, commenting, etc. the users picture doesnt show up next to the date and username, user pictures are enabled and in my node-templatename.tpl.php i do have the line <?php print picture ?>... any ideas as to why its not showing up? |
| [16:09:56] | <narkotik84> | i have also verified that the users posting do in fact have user pictures |
| [16:09:57] | <nielsbom> | mrfree: those are views RSS, theme wizard and UI, right? |
| [16:10:27] | * xgetc25 has joined #drupal-support |
| [16:10:35] | <ynn> | stella: http://imagebin.org/21830 |
| [16:10:43] | <mrfree> | nielsbom, using the ViewsUI module one can override the default look in a very simple way |
| [16:10:52] | <xgetc25> | how to add image field to profile - help me plz |
| [16:11:06] | * travisc has joined #drupal-support |
| [16:11:08] | <gonzorob> | hmm, you cant seem to send emails to users when you change their roles using actions |
| [16:11:21] | <gonzorob> | there's no option for 'roles' in the cofig |
| [16:11:38] | * JBlaze has joined #drupal-support |
| [16:11:44] | <stella> | narkotik84: i think it's a theme setting, administer > site building > themes > <your theme> > configure |
| [16:12:42] | <nielsbom> | mrfree: Views for D6 is not finally released |
| [16:12:43] | <ynn> | stella: sorry about the poor image quality... |
| [16:12:50] | <nielsbom> | mrfree: it's still in beta |
| [16:12:55] | * RoninBaka has joined #drupal-support |
| [16:13:02] | * Ronin1234 has quit (Read error: 104 (Connection reset by peer)) |
| [16:13:02] | <stella> | ynn: weird. i'd open a support request or bug report against the thickbox module |
| [16:13:17] | <narkotik84> | stella: you're the best, this has been bugging me for a while :) its always the simplest things plus im new to drupal |
| [16:13:20] | <ynn> | stella: cool thanks |
| [16:13:38] | <stella> | ynn: or you can try the lightbox2 module and i'd be able to help you more with that one. Not as familiar with thickbox |
| [16:13:46] | <mrfree> | nielsbom, I think those views presets should be installed by image module... http://drupal.org/node/207216 (section "Using Views to customize your galleries") |
| [16:13:52] | <Druplicon> | http://drupal.org/node/207216 => Creating image galleries => 7 IRC mentions |
| [16:13:52] | <stella> | narkotik84: no probs |
| [16:14:28] | <nielsbom> | mrfree: but if Views is not out of beta yet, how can you count on it? I don't understand I'm afraid |
| [16:14:57] | <ynn> | stella: would i have to change the classes for all the images or can i define a custom class so that i don't have to retag all my images? |
| [16:15:02] | <nielsbom> | mrfree: the link you sent is for 5.x |
| [16:15:03] | * nonsie has joined #drupal-support |
| [16:15:06] | * punz has quit (Read error: 104 (Connection reset by peer)) |
| [16:15:13] | <mrfree> | nielsbom, I think you're right. I'll wait ;) |
| [16:15:40] | * p142 has joined #drupal-support |
| [16:15:46] | <nielsbom> | mrfree: I'm also waiting, if I've got time, I'll try and help |
| [16:15:54] | <nielsbom> | mrfree: have a nice day! |
| [16:16:07] | <stella> | ynn: lightbox2 doesn't use classes, it requires rel="lightbox" or one of the others (lightshow, lightframe, lightvideo, lightmodal) |
| [16:16:16] | * travisc has quit () |
| [16:16:16] | <mrfree> | nielsbom, you too! |
| [16:16:19] | <stella> | ynn: so u can leave the class names alone |
| [16:16:33] | <nielsbom> | mrfree: thanks! |
| [16:16:38] | <ynn> | stella: i don't want to have to go back and edit 1000+ images |
| [16:16:42] | * Michelle has quit (Nick collision from services.) |
| [16:16:43] | * Michelle2 is now known as Michelle |
| [16:17:09] | * japerry has joined #drupal-support |
| [16:17:14] | <stella> | ynn: are the images manually created? or created using the image module or imagefield or similar? |
| [16:17:28] | <ynn> | imageassit |
| [16:17:50] | <ynn> | so the tags are all hard coded into the body |
| [16:17:56] | <ynn> | which is lame |
| [16:18:31] | <stella> | ynn: do they all have a certain class name? |
| [16:18:36] | <ynn> | yeah |
| [16:18:41] | <ynn> | class=thickbox |
| [16:18:55] | <nielsbom> | gonzorob: I'm looking |
| [16:19:32] | <stella> | lightbox2 allows you to configure automatic image handling for a list of class names u provide. Lightbox2 will then automatically add the rel="lightbox" to those links |
| [16:19:49] | <stella> | ynn: it will open the anchor href in the lightbox for those classes |
| [16:20:04] | <ynn> | nice |
| [16:20:11] | <ynn> | i'll give lb2 a shot |
| [16:20:20] | * p142_ has joined #drupal-support |
| [16:20:28] | * sutha has quit () |
| [16:20:42] | * p142_ has quit (Remote closed the connection) |
| [16:21:04] | * p142 has quit (Read error: 104 (Connection reset by peer)) |
| [16:21:13] | * p142 has joined #drupal-support |
| [16:22:24] | * Mek has quit (Connection timed out) |
| [16:22:39] | * canen has joined #drupal-support |
| [16:23:01] | <gonzorob> | for a total newbie, how do i use this : http://drupal.org/node/48738 |
| [16:23:02] | <Druplicon> | http://drupal.org/node/48738 => Send an email to everyone in a role group => 4 IRC mentions |
| [16:23:02] | * p142 has quit (Read error: 104 (Connection reset by peer)) |
| [16:23:02] | * mikl has joined #drupal-support |
| [16:23:15] | <gonzorob> | ohh , how do i see the mentions ? |
| [16:23:19] | * p142 has joined #drupal-support |
| [16:23:28] | * Lapith has joined #drupal-support |
| [16:23:35] | <nielsbom> | gonzorob: I'm beginning to doubt that what you want is possible with actions |
| [16:23:58] | <gonzorob> | yeah, that's what i discovered from playing with actions and triggers |
| [16:24:00] | * fo2sh_ has joined #drupal-support |
| [16:24:07] | <stella> | ynn: i'm heading off now, but if u have any probs, i'll be on irc again tomorrow |
| [16:24:10] | * p142_ has joined #drupal-support |
| [16:24:19] | <ynn> | stella: thanks a lot |
| [16:24:21] | <nielsbom> | gonzorob: the link you sent was for D4.7 |
| [16:24:30] | <gonzorob> | ack |
| [16:24:38] | <gonzorob> | *checks corner* oh yes... |
| [16:24:46] | * SiouxChief has joined #drupal-support |
| [16:25:06] | <gonzorob> | im using this : http://drupal.org/project/apply_for_role |
| [16:25:31] | <gonzorob> | you think i could ask the developer nicely to add an option to email a user if their role has been changed ? |
| [16:25:45] | * lucc has joined #drupal-support |
| [16:25:49] | * kvanderw has quit (Connection timed out) |
| [16:25:54] | <Lapith> | Hey all, quick question. I have a flash app that I need to limit to only those that are registered users to my drupal site, which isn't a problem as far as authentication goes. I am wondering what the best method of registration would be from the flash app. Meaning what is the best way to allow my users to register for my drupal site from an interface outside of Drupal itself? |
| [16:25:55] | <nielsbom> | gonzorob: http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-a... this commenter wants the same functionality as you do |
| [16:26:13] | <SiouxChief> | Anyone know how to change the labels in mysite? For example, I want to change "Add Web Feed" to "Add External Feed" |
| [16:27:35] | <nielsbom> | gonzorob: I think you're right in searching for that functionality in the user management modules corner |
| [16:27:55] | <nielsbom> | gonzorob: changing actions would be too big of a change |
| [16:28:06] | * kvanderw has joined #drupal-support |
| [16:28:09] | <gonzorob> | i agree |
| [16:28:18] | <nielsbom> | gonzorob: is there any documentation on apply_for_role? |
| [16:28:27] | <gonzorob> | a few lines |
| [16:28:32] | <gonzorob> | nothing that i can find |
| [16:28:38] | * xgetc25 has quit ("Galaxy Legend http://galaxylegend.ru") |
| [16:28:57] | * incorrect has joined #drupal-support |
| [16:29:42] | <nielsbom> | gonzorob: http://drupal.org/node/212540 |
| [16:29:43] | <Druplicon> | http://drupal.org/node/212540 => Actions Integration => Apply for role, Code, normal, active, 2 IRC mentions |
| [16:29:43] | * KentStation has joined #drupal-support |
| [16:30:10] | <KentStation> | Does anybody have any suggestions for moderating user-uploaded images? |
| [16:30:17] | <nielsbom> | gonzorob: that's kind of exactly what you need right? |
| [16:30:18] | * JBlaze has quit () |
| [16:30:38] | <KentStation> | I want to create a site where users can upload images and create image galleries, but they will need to be moderated |
| [16:30:51] | <gonzorob> | yup, looks like it i |
| [16:31:26] | <gonzorob> | hmm, no solution |
| [16:31:29] | <gonzorob> | shame... |
| [16:31:38] | <nielsbom> | gonzorob: well not yet anyway |
| [16:32:26] | <nielsbom> | gonzorob: but if your users aren't yet in the thousands, you could still do it manually, and maybe donate to the developer of "apply for role" to motivate him :) |
| [16:32:53] | <gonzorob> | if i knew how to code i'd do it in a shot... |
| [16:32:56] | <nielsbom> | Lapith: you want users to register to your Drupal site using Flash? |
| [16:33:01] | <KentStation> | Looks like the best practice would be to set user images as unpublished by default, then moderate by going through the unpublished image nodes |
| [16:33:26] | <nielsbom> | KentStation: yes, but user images probably aren't nodes |
| [16:33:51] | <nielsbom> | KentStation: so they won't have a status like published/unpublished |
| [16:34:07] | * Mek has joined #drupal-support |
| [16:34:23] | <gonzorob> | yeah, unfortunatly, we could have a flood of above 1000 users in the space of a few days |
| [16:34:33] | <gonzorob> | when we go to press lots of people are going to sign up |
| [16:34:44] | <Lapith> | nielsbom: that is the idea, the point is to make it easy for them to use the flash app if they have not registered for the site before, yet still require them to register. |
| [16:34:59] | <nielsbom> | SiouxChief: look into translating for that |
| [16:35:08] | <nielsbom> | SiouxChief: or Google on it some more |
| [16:35:33] | <SiouxChief> | nielsbom: translating? Is that a module? |
| [16:35:49] | <gonzorob> | the thing is the apply for role module works so well, if only i could work out a quick-fix i'd be a happy bunny :) |
| [16:36:00] | <gonzorob> | ill see what the developer says, |
| [16:36:09] | <gonzorob> | anyway - thanks for all the help nielsbom |
| [16:36:13] | * lucc has left #drupal-support () |
| [16:36:31] | * mrfree has quit ("Leaving") |
| [16:36:40] | * guardian has quit () |
| [16:36:47] | * fo2sh_ has quit (Read error: 60 (Operation timed out)) |
| [16:37:31] | * Benobo has joined #drupal-support |
| [16:40:24] | * p142 has quit (Read error: 110 (Connection timed out)) |
| [16:40:25] | <nielsbom> | gonzorob: what you could do is set up an emailaddress that forwards the email based on the content of the mail? |
| [16:40:40] | * Benobo has quit (Read error: 104 (Connection reset by peer)) |
| [16:41:04] | <gonzorob> | not following you.... |
| [16:41:10] | * Benobo has joined #drupal-support |
| [16:41:38] | * p142_ has quit (Remote closed the connection) |
| [16:42:07] | * fo2sh has quit (Connection timed out) |
| [16:42:10] | * p142 has joined #drupal-support |
| [16:43:23] | * mqueiros_ has joined #drupal-support |
| [16:44:20] | <KentStation> | nielsbom: Thanks! I'm planning on creating a CCK type to hold an image, description, date, place, etc... So they will be nodes |
| [16:46:28] | * p142_ has joined #drupal-support |
| [16:47:42] | * nicdc has quit ("Gone") |
| [16:47:59] | <gonzorob> | http://drupal.org/project/action_email_role |
| [16:48:02] | <gonzorob> | not for D6 |
| [16:48:09] | <gonzorob> | is there a meathod to convert |
| [16:48:46] | <gonzorob> | method |
| [16:49:06] | * Haza`` has quit (Read error: 113 (No route to host)) |
| [16:49:20] | * dprophit has joined #drupal-support |
| [16:49:24] | <dprophit> | hello all |
| [16:49:29] | <mikl> | gonzorob: yeah, edit the code |
| [16:49:44] | <gonzorob> | knew there was a simple way ;) |
| [16:49:56] | * deviantintegral has joined #drupal-support |
| [16:50:03] | <mikl> | gonzorob: the coder module can help you find out what needs to be change to get it working on Drupal 6 :) |
| [16:50:18] | <dprophit> | I'm creating a menu in 6 for just content writers and admins seperate from the default navigation. I do not understand what the "path" would be to link the admin main page? |
| [16:50:37] | * daYZman-w has joined #drupal-support |
| [16:50:55] | <daYZman-w> | hi |
| [16:50:55] | <Druplicon> | hello |
| [16:51:12] | <mikl> | gonzorob: also, it seems that you're wrong โ according to http://drupal.org/project/action_email_role the 6-branch is working |
| [16:51:29] | <mikl> | no, my mistake |
| [16:51:35] | <mikl> | can't read |
| [16:51:43] | <nielsbom> | KentStation: I'd take care not to avoid the user system |
| [16:51:46] | * Benobo has quit (Read error: 54 (Connection reset by peer)) |
| [16:51:54] | <nielsbom> | KentStation: it could make for a lot of work both wyas |
| [16:52:00] | <gonzorob> | http://drupal.org/node/271817 |
| [16:52:01] | <Druplicon> | http://drupal.org/node/271817 => incompatible with 6.2 => Action email role, Code, normal, postponed, 1 IRC mention |
| [16:52:43] | <dprophit> | What path do I specify to link to the admin frontpage? |
| [16:52:50] | <gonzorob> | :/ |
| [16:53:25] | <nielsbom> | gonzorob: I'm still thinking |
| [16:53:59] | <daYZman-w> | i'm trying to import data into CCK in d6, but i keep getting the error saying: "The following modules must be enabled for this import to work: field_about_me." where field_about_me is supposed to be a field's name. the code i'm using is at http://rafb.net/p/cu4Cya97.html |
| [16:55:42] | <KentStation> | nielsbom: What do you mean by the "user system"? |
| [16:56:11] | <nielsbom> | gonzorob: what you could do is change roles on the users you want to approve, and then make a View that only you can see with all the emailadresses for users with role X, then copy all the emailadresses, delete the ones you've already mailed and send them a message, it's not beautiful... |
| [16:56:40] | <gonzorob> | yeah, not perfect :) but it'd work |
| [16:57:17] | <gonzorob> | Could i send a mass provate message - then have it so it sends an email notifying users that they have a PM ? |
| [16:57:37] | * frando has quit (Remote closed the connection) |
| [16:58:16] | <gonzorob> | http://drupal.org/project/privatemsg - is working on it |
| [16:58:58] | <nielsbom> | KentStation: well the whole system with users in Drupal, users aren't nodes, but it's a good system |
| [16:59:09] | <nielsbom> | KentStation: I think this solves your problem http://drupal.org/project/avatarapproval |
| [17:00:21] | * nikkiana has quit ("Leaving") |
| [17:01:04] | * stephthegeeky has joined #drupal-support |
| [17:01:17] | * ragas_ has joined #drupal-support |
| [17:03:11] | * NikLP has quit ("back later, I hate ryanair") |
| [17:03:22] | * p142 has quit (Read error: 110 (Connection timed out)) |
| [17:03:35] | * nikkiana has joined #drupal-support |
| [17:03:58] | * Criticality|away is now known as Criticality |
| [17:04:34] | <daYZman-w> | i'm trying to import data into CCK in d6, but i keep getting the error saying: "The following modules must be enabled for this import to work: field_about_me." where field_about_me is supposed to be a field's name. the code i'm using is at http://rafb.net/p/cu4Cya97.html |
| [17:04:54] | <gonzorob> | right |
| [17:04:54] | <nielsbom> | gonzorob: I don't know that module, but if you can make it work :) |
| [17:05:02] | <gonzorob> | :) |
| [17:05:06] | <gonzorob> | well, im off home |
| [17:05:08] | <gonzorob> | ill fix this tomorrow |
| [17:05:12] | <gonzorob> | laters all |
| [17:05:15] | <gonzorob> | thanks again ... |
| [17:05:18] | * gonzorob has quit () |
| [17:05:20] | <nielsbom> | ur welcome! |
| [17:05:21] | * valcker has quit (Read error: 104 (Connection reset by peer)) |
| [17:05:24] | <nielsbom> | see ya! |
| [17:06:43] | * RockSoup has joined #drupal-support |
| [17:06:53] | * alvin_2 has quit (Read error: 104 (Connection reset by peer)) |
| [17:07:26] | <KentStation> | nielsbom: I misspoke, I meant user submitted images, not user images |
| [17:07:36] | <KentStation> | sorry for the confusion |
| [17:08:38] | <nielsbom> | KentStation: as long as the images uploaded are nodes, then they're standard publish/unpublish material |
| [17:08:40] | * bin has quit (Read error: 104 (Connection reset by peer)) |
| [17:09:09] | * Utter has joined #drupal-support |
| [17:09:14] | * trevortwining has joined #drupal-support |
| [17:09:37] | * munga has quit ("Leaving") |
| [17:10:50] | <bflora> | i'd like comments on my site to be only for signed in users |
| [17:10:54] | <bflora> | that's easy enough |
| [17:11:04] | * Bes` has quit ("power off") |
| [17:11:04] | <bflora> | but how do I put a message in their place explaining this to visitors? |
| [17:11:51] | <nielsbom> | daYZman-w: I'm thinking |
| [17:13:14] | * fredo has joined #drupal-support |
| [17:13:24] | * fredo has quit (Client Quit) |
| [17:13:31] | * Thomas_Zahreddin has left #drupal-support () |
| [17:14:59] | * Michelle2 has joined #drupal-support |
| [17:15:15] | * ragas has quit (Read error: 110 (Connection timed out)) |
| [17:15:40] | <nielsbom> | daYZman-w: field_about_me isn't a module |
| [17:15:50] | <nielsbom> | daYZman-w: can you take a screenshot of the error? |
| [17:16:53] | * selmanj has quit (Remote closed the connection) |
| [17:17:17] | <nielsbom> | bflora: use a block and set visibility to non-authenticated users |
| [17:17:20] | * Kaaskop has joined #drupal-support |
| [17:17:35] | <nielsbom> | blfora: set the visibility for comments on authenticated users |
| [17:17:40] | <daYZman-w> | nielsbom, sure. hold on a sec. |
| [17:18:02] | <Kaaskop> | I enabled the statistics module on my website about four weeks ago, but I'm still not seeing any statistics. All lists are empty |
| [17:18:48] | * nitrospectide has joined #drupal-support |
| [17:19:05] | <nielsbom> | Kaaskop: did you look in the DB? |
| [17:20:26] | <Kaaskop> | nielsbom: Hmm, the table is empty |
| [17:20:45] | * selmanj has joined #drupal-support |
| [17:20:54] | <nielsbom> | Kaaskop:then the module is not writing the statistics |
| [17:21:07] | <Kaaskop> | nielsbom: apparently. |
| [17:21:08] | * jenlampton has joined #drupal-support |
| [17:21:12] | <nielsbom> | KaasKop: are you Dutch btw?, so am I |
| [17:21:15] | <daYZman-w> | nielsbom, i've pasted the entire code i'm importing with: http://rafb.net/p/Le5xn235.html |
| [17:21:28] | <Kaaskop> | nielsbom: Any ideas as to why it doesn't save any data? |
| [17:21:31] | <Kaaskop> | nielsbom: I'm Dutch, yes |
| [17:21:45] | <nielsbom> | KaasKop: have you checked the issues at the project page for statistics? |
| [17:21:51] | <nielsbom> | KaasKop: and Googled for this problem? |
| [17:22:27] | <daYZman-w> | nielsbom, sending you a screenshot now. |
| [17:22:28] | * nitrospectide has quit (Client Quit) |
| [17:22:45] | * nitrospectide has joined #drupal-support |
| [17:22:52] | <Kaaskop> | nielsbom: as it's a core module, this looks like a critical bug (_if_ it's a bug) and as it's probably I'm just doing something wrong: no, i haven't googled or checked the issue queue yet |
| [17:22:56] | * sdboyer-laptop has joined #drupal-support |
| [17:23:21] | <Kaaskop> | nielsbom: aaaaargh |
| [17:23:22] | <nielsbom> | daYZman-W: I can't receive files through IRC (I think) |
| [17:23:23] | <Kaaskop> | nielsbom: got it |
| [17:23:27] | <daYZman-w> | nielsbom, it doesn't seem to be going. can i email it to you instead? |
| [17:23:31] | <nielsbom> | yes |
| [17:23:38] | <Kaaskop> | nielsbom: I had to enable the access log manually :S |
| [17:23:41] | <nielsbom> | niels.bom |
| [17:23:43] | <nielsbom> | and then gmail |
| [17:23:47] | <daYZman-w> | okay |
| [17:24:03] | <nielsbom> | KaasKop: bummer, but lekker dat je er dan nu achter komt |
| [17:24:08] | <Kaaskop> | nielsbom: :P |
| [17:24:52] | * okwichu has quit () |
| [17:24:53] | * Michelle has quit (Connection timed out) |
| [17:24:53] | <nielsbom> | KaasKop: where did you find the solution? |
| [17:25:11] | <Kaaskop> | nielsbom: by going to the settings page :') |
| [17:25:24] | <nielsbom> | Kaaskop: .... :S |
| [17:25:46] | * NeoID_ has joined #drupal-support |
| [17:25:53] | <Kaaskop> | nielsbom: Must have overlooked the setting last time I went there |
| [17:26:08] | * PatMac has quit (Read error: 104 (Connection reset by peer)) |
| [17:26:18] | <nielsbom> | Kaaskop: I've had that experience also, explaining a problem to someone and then while you're doing that, discovering a solution: "....ehm yeah...never mind! Bye!" |
| [17:26:31] | <Kaaskop> | nielsbom: same story |
| [17:26:40] | * PatMac has joined #drupal-support |
| [17:26:51] | <daYZman-w> | nielsbom, sent. thanks. |
| [17:28:09] | * dereine has left #drupal-support ("Leaving") |
| [17:28:20] | <nielsbom> | daYZman-w: I'll have a look |
| [17:28:59] | <daYZman-w> | nielsbom, thanks |
| [17:30:23] | * Mr_Drupal_Noob has joined #drupal-support |
| [17:30:25] | * Mr_Drupal_Noob has quit (Client Quit) |
| [17:32:27] | <nielsbom> | daYZman-w: do you have the CCK "text" module enabled? |
| [17:32:37] | <nielsbom> | daYZman-w: I think that's the problem |
| [17:33:05] | <daYZman-w> | nielsbom, ooh! actually no.. let me enable it. |
| [17:33:15] | <daYZman-w> | nielsbom, actually, no. it is enabled. |
| [17:33:21] | <daYZman-w> | just that somehow it's not ticked. |
| [17:33:27] | * AlexUA has quit (Read error: 110 (Connection timed out)) |
| [17:33:31] | * Arancaytar has quit (Read error: 104 (Connection reset by peer)) |
| [17:33:33] | <nielsbom> | daYZman-w: I'm curious |
| [17:33:33] | <daYZman-w> | nielsbom, the code i'm using is from d5. |
| [17:33:53] | <daYZman-w> | nielsbom, is the import code any different in d6? |
| [17:34:00] | <nielsbom> | daYZman-w: I don't know |
| [17:34:12] | <nielsbom> | daYZman-w: you're doing an import from what to what? |
| [17:34:21] | * murphy has quit ("http://www.mibbit.com ajax IRC Client") |
| [17:34:25] | * p142_ has quit (Remote closed the connection) |
| [17:34:41] | <nielsbom> | daYZman-w: have you tried the node import again after enabling text? |
| [17:34:57] | * p142 has joined #drupal-support |
| [17:35:21] | * Kaaskop has left #drupal-support () |
| [17:35:31] | * davexoxide has quit () |
| [17:35:50] | * ingo86 is now known as ingo86_away |
| [17:36:17] | * davexoxide has joined #drupal-support |
| [17:36:26] | <daYZman-w> | nielsbom, basically i'm following michelle's tutorial: http://shellmultimedia.com/tutorials/user-profiles-version-2 |
| [17:36:38] | <daYZman-w> | nielsbom, i know it's deprecated, but advprofile doesn't work in d6. |
| [17:36:50] | * NeoID has quit (Read error: 110 (Connection timed out)) |
| [17:37:09] | <nielsbom> | daYZman-w: I'll read it, w8 a sec |
| [17:37:17] | * akahn has joined #drupal-support |
| [17:37:18] | * jrbeeman has joined #drupal-support |
| [17:37:33] | <daYZman-w> | nielsbom, thanks. i'm in step2. |
| [17:38:16] | * Kaaskop has joined #drupal-support |
| [17:38:20] | <Kaaskop> | If I want to file a documentation issue at d.o I'm getting an error saying I didn't choose the right component (documentation). The Project I chose was 'documentation'. Is it just me or is it d.o that's doing something wrong? |
| [17:39:16] | * Themselve1 has joined #drupal-support |
| [17:39:36] | <akahn> | the project is what module it is (or drupal core) the component is what part of the module |
| [17:39:41] | * Shadowhand has joined #drupal-support |
| [17:39:57] | * deviantintegral_ has joined #drupal-support |
| [17:40:03] | <Shadowhand> | how can i publish a view as both a view and an rss feed? |
| [17:40:16] | <nielsbom> | daYZman-w: that's a pretty big tutorial, and it's deprecated, and it's for experts only (as it says), I'm no expert...are you? What do you want to accomplish exactly? |
| [17:40:55] | * sepeck_ has joined #drupal-support |
| [17:40:56] | * p142 has quit (Read error: 104 (Connection reset by peer)) |
| [17:40:58] | * markos__ has joined #drupal-support |
| [17:41:05] | <nielsbom> | Shadowhand: D6 or D5? |
| [17:41:08] | * p142 has joined #drupal-support |
| [17:41:15] | * bflora has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:15] | * MattKelly has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:15] | * Singularo has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * developerhealey has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * C00re has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * Bojhan has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * dtaylormi has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * markos_ has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * sparr has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * samrose has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * sepeck has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * pasc has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * theacolyte has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:16] | * manuee has quit (kornbluth.freenode.net irc.freenode.net) |
| [17:41:29] | <daYZman-w> | nielsbom, no i'm not. i'm just trying to setup some social network features. if i was on d5, i'd just give advprofile a go. |
| [17:42:06] | <Shadowhand> | i have a custom view that uses filters, and i can't find a way to get it to publish the list it generates as an rss feed |
| [17:42:08] | <nielsbom> | daYZman-w: maybe you can try adding them one at a time for now? |
| [17:42:17] | <Shadowhand> | nielsbom: D5 |
| [17:42:43] | <Kaaskop> | documentation isn't really part of a specific module ;) |
| [17:42:52] | <nielsbom> | Shadowhand: did you read this? http://drupal.org/node/83597 |
| [17:42:53] | <Druplicon> | http://drupal.org/node/83597 => RSS feeds for Views => 14 IRC mentions |
| [17:43:02] | * guardian has joined #drupal-support |
| [17:43:06] | <nielsbom> | This automatically creates an RSS feed for the view, and adds a feed icon at the bottom of the view. It also enables RSS autodiscovery for that view, so that you can just copy the URL of the view into the news reader (also some browsers will make note of the feed so that you can subscribe to it). |
| [17:43:06] | <daYZman-w> | nielsbom, yeah that might be the only option left. |
| [17:43:09] | <daYZman-w> | thanks anyway |
| [17:43:31] | <Shadowhand> | nielsbom: thanks |
| [17:43:48] | <Shadowhand> | somehow that didn't come up in "drupal rss documentation" on google :-\ |
| [17:43:52] | <nielsbom> | daYZman-w: you're welcome, |
| [17:44:01] | * bflora has joined #drupal-support |
| [17:44:01] | * MattKelly has joined #drupal-support |
| [17:44:01] | * Singularo has joined #drupal-support |
| [17:44:01] | * developerhealey has joined #drupal-support |
| [17:44:01] | * Bojhan has joined #drupal-support |
| [17:44:01] | * dtaylormi has joined #drupal-support |
| [17:44:01] | * markos_ has joined #drupal-support |
| [17:44:01] | * sparr has joined #drupal-support |
| [17:44:01] | * samrose has joined #drupal-support |
| [17:44:01] | * sepeck has joined #drupal-support |
| [17:44:01] | * pasc has joined #drupal-support |
| [17:44:01] | * theacolyte has joined #drupal-support |
| [17:44:01] | * manuee has joined #drupal-support |
| [17:44:03] | * pasc has quit (Read error: 113 (No route to host)) |
| [17:44:07] | <nielsbom> | Shadowhand: I Googled "drupal views rss" |
| [17:44:10] | * theacolyte has quit (Success) |
| [17:44:17] | <nielsbom> | Shadowhand: first hit btw ;) |
| [17:44:27] | * C00re has joined #drupal-support |
| [17:44:33] | * pasc has joined #drupal-support |
| [17:44:38] | * MattKelly has quit (SendQ exceeded) |
| [17:44:47] | * p142_ has joined #drupal-support |
| [17:44:53] | * p142 has quit (Read error: 104 (Connection reset by peer)) |
| [17:44:54] | * markos_ is now known as Guest90706 |
| [17:44:58] | <Shadowhand> | yah, i didn't have "views" in there |
| [17:45:11] | * markos__ is now known as markos_ |
| [17:45:16] | * MattKelly has joined #drupal-support |
| [17:45:27] | <C00re> | O_o, small netsplit |
| [17:45:34] | <Kaaskop> | If I want to file a documentation issue at d.o I'm getting an error saying I didn't choose the right component (documentation). The Project I chose was 'documentation'. Is it just me or is it d.o that's doing something wrong? |
| [17:45:50] | <Nikki_> | anyone have an idea why when I add the devel module I cant add the block? |
| [17:45:51] | <nielsbom> | The cool thing is I'm not that good with Drupal yet, I just know how to Google, but then still you have to know the right keywords, and for Drupal that's a whole other language..4 months ago, I didn't know what a node was :) |
| [17:46:23] | * evenix has joined #drupal-support |
| [17:46:24] | <evenix> | Hi all |
| [17:46:38] | * andreasma has joined #drupal-support |
| [17:46:40] | <nielsbom> | Kaaskop: akahn didn't answer your Q? |
| [17:46:52] | <evenix> | i got dat message : The following errors where encountered while reading the file's ID3 tags: * Next ID3v2 frame is also invalid, aborting processing. |
| [17:47:00] | <nielsbom> | Nikki_: I don't understand you |
| [17:47:01] | <evenix> | what should i do to fix it ? |
| [17:47:11] | <Kaaskop> | nielsbom: nope |
| [17:47:54] | <nielsbom> | Kaaskop: have you googled the error? (just checking) |
| [17:47:57] | <Nikki_> | nielsbom: I upgraded the Devel Module and now I cannot add the block to my site |
| [17:48:10] | * RockSoup_ has joined #drupal-support |
| [17:48:31] | <C00re> | you ran update.php ? |
| [17:48:38] | <Nikki_> | yes |
| [17:48:40] | * p142_ has quit (Read error: 104 (Connection reset by peer)) |
| [17:48:46] | <nielsbom> | No errors? |
| [17:48:48] | <Shadowhand> | nielsbom: thanks |
| [17:48:49] | * Shadowhand has left #drupal-support () |
| [17:48:55] | <C00re> | i learned myself to run update.php.. got mysql errors once :D |
| [17:49:00] | * p142 has joined #drupal-support |
| [17:49:02] | <C00re> | note to self: alway do :D |
| [17:49:06] | <nielsbom> | Shadowhand: you're welcome! |
| [17:49:11] | * netaust1n has quit (Read error: 54 (Connection reset by peer)) |
| [17:49:41] | * netaust1n has joined #drupal-support |
| [17:50:24] | <Nikki_> | when you guys serach for devel in your blocks table do you get two results? |
| [17:50:51] | * Mek has quit (Connection timed out) |
| [17:51:00] | <akahn> | Is there a way to view the code of a previous revision of a node (without diff)? I can view an older revision, but I need to look at some PHP that was in there. |
| [17:51:15] | * p142_ has joined #drupal-support |
| [17:51:23] | <evenix> | about the bug |
| [17:51:35] | <evenix> | someone got an answer ? |
| [17:52:01] | <Kaaskop> | nielsbom: I have, but as expected I found no proper results. I would hardly say this is something one would be able to find a solution for using Google ;) |
| [17:52:10] | * RockSoup___ has joined #drupal-support |
| [17:52:11] | <nielsbom> | evenix: can you give us more information on what youre trying to do |
| [17:52:39] | * Mek has joined #drupal-support |
| [17:53:59] | <C00re> | i wonder a bit about system requirement, whats the minimum cpu and ram to run drupal? at my home server which is a pentium 200 with 128mb ram, and the pages are created very slow "Page created in 19.3258 seconds." |
| [17:54:15] | <C00re> | php 4 |
| [17:54:19] | <nielsbom> | Kaaskop: you are trying to add an issue to the documentation module? I don't understand exactly |
| [17:54:25] | <C00re> | drupal 6 i run |
| [17:54:36] | <Kaaskop> | nielsbom: Go to d.o and try for yourself |
| [17:55:02] | * KentStation has quit (Read error: 110 (Connection timed out)) |
| [17:55:09] | <nielsbom> | Kaaskop: can you give me a url? |
| [17:55:09] | * KentStation has joined #drupal-support |
| [17:55:12] | <evenix> | i was trying to add a song with the audio module |
| [17:55:16] | <evenix> | and i got that message |
| [17:55:25] | <nielsbom> | evenix: have you googled alreadY? |
| [17:55:41] | * deviantintegral has quit (Read error: 110 (Connection timed out)) |
| [17:55:50] | <nielsbom> | evenix: have you tried more than 1 mp3 file? |
| [17:55:56] | <evenix> | im doing it |
| [17:56:00] | <nielsbom> | evenix: cause it looks a bit like a corrupt file |
| [17:56:12] | <evenix> | oh i see |
| [17:56:20] | <evenix> | maybe because of the file_name ? |
| [17:56:32] | * Michelle2 is now known as Michelle |
| [17:56:37] | <evenix> | because it said : while reading the file's ID3 tags |
| [17:56:45] | * RobLoac1 has quit (Client Quit) |
| [17:56:46] | * Guest90706 has quit (Connection timed out) |
| [17:56:52] | * RockSoup has quit (Read error: 110 (Connection timed out)) |
| [17:56:55] | * sepeck has quit (Connection refused) |
| [17:57:01] | * RockSoup___ is now known as RockSoup |
| [17:57:15] | <nielsbom> | evenix: ID3 tages are in the file itself, values like "artist", "genre" etc.. |
| [17:57:31] | <nielsbom> | evenix: try a few out, check if the error is in the module or in the file |
| [17:57:39] | <Michelle> | [12:36] <daYZman-w> nielsbom, i know it's deprecated, but advprofile doesn't work in d6. <-- Neither does that tutorial... |
| [17:58:44] | <evenix> | nielsbom : ok |
| [17:59:02] | <daYZman-w> | Michelle, yeah i knew that. i'm trying to tweak it to make it work. do you know what the best reference there is for d6? |
| [17:59:08] | * p142_ has quit (Remote closed the connection) |
| [17:59:14] | * Haza`` has joined #drupal-support |
| [17:59:19] | <Michelle> | D6 has a whole book on the new theme system |
| [17:59:22] | * p142 has quit (Read error: 104 (Connection reset by peer)) |
| [17:59:28] | <Michelle> | Handbook book, I mean |
| [17:59:39] | * p142 has joined #drupal-support |
| [17:59:41] | <evenix> | whats the "ID3v2 frame" ? |
| [17:59:46] | <daYZman-w> | Michelle, i mean, for social networking setup. |
| [18:00:00] | <Michelle> | Oh... Not that I know of. I don't recommend D6 for SN sites |
| [18:00:26] | <daYZman-w> | Michelle, hmm okay. |
| [18:00:42] | * jrbeeman has quit (Read error: 110 (Connection timed out)) |
| [18:01:45] | <nielsbom> | C00re: http://buytaert.net/drupal-performance |
| [18:01:57] | <nielsbom> | maybe you'll find some interesting stuff there |
| [18:01:57] | * Haza` has joined #drupal-support |
| [18:02:24] | <nielsbom> | C00re: you can also run YSlow (Firefox add-on) to check what is making the site slow. |
| [18:02:33] | <C00re> | hmm |
| [18:02:42] | <C00re> | okej |
| [18:02:46] | <webavant> | getting a WSOD on no specific page, but always on a Drupal site that affects multiple non-Drupal sites. any ideas? |
| [18:03:22] | <webavant> | once it triggers, several .php files on several non-Drupal sites also experience WSODs |
| [18:03:41] | <threexk> | exceeded max PHP memory? |
| [18:03:53] | <Kaaskop> | webavant:memory limit? |
| [18:04:17] | * Kaaskop has left #drupal-support () |
| [18:04:28] | <webavant> | really? |
| [18:04:41] | <webavant> | I don't see any errors with E_ALL enabled |
| [18:04:50] | <webavant> | wouldn't it show one? |
| [18:04:55] | <threexk> | webavant: that is a frequent cause of WSoDs... |
| [18:05:06] | <threexk> | webavant: not sure |
| [18:05:19] | <webavant> | that's helpful |
| [18:05:27] | <threexk> | webavant: you can just try increasing it in php.ini and see if it fixes |
| [18:05:46] | <threexk> | I usually have to set mine to 64MB. I've heard others with more modules have to go higher |
| [18:06:03] | <threexk> | Ubuntu 8.04 defaults to a sad 16MB |
| [18:06:10] | <webavant> | yeah imagecache demands 96M |
| [18:06:10] | * PatMac has quit () |
| [18:06:28] | * RockSoup_ has quit (Connection timed out) |
| [18:06:37] | <threexk> | wow. how do you know that? |
| [18:06:58] | * Haza` has quit (Read error: 104 (Connection reset by peer)) |
| [18:07:03] | <webavant> | in the new 2.x version, it adds a hook to the status log thingy that says so |
| [18:07:04] | * deviantintegral_ has quit (Remote closed the connection) |
| [18:07:44] | * deviantintegral has joined #drupal-support |
| [18:07:51] | <webavant> | and I am using imagecache on the site in question |
| [18:07:51] | <threexk> | ah. that's a lot! I wonder if it's written inefficiently, or it's just the nature of the module |
| [18:08:19] | * Haza` has joined #drupal-support |
| [18:08:50] | <webavant> | I think image-processing using GD is pretty memory intensive, right? |
| [18:10:02] | * patchak has joined #drupal-support |
| [18:10:07] | * mikl has quit (Read error: 104 (Connection reset by peer)) |
| [18:10:59] | * Bes` has joined #drupal-support |
| [18:11:01] | <akahn> | I was told by a co-worker that I should be able to code a simple Drupal module by a year from now! |
| [18:12:15] | * mikl has joined #drupal-support |
| [18:12:21] | <webavant> | oh wow though, the memory_limit is set to 128M |
| [18:12:27] | <webavant> | so that should be plenty |
| [18:12:46] | <webavant> | akahn: heh heh |
| [18:13:10] | * sammyfung has quit ("Ex-Chat") |
| [18:15:54] | * cirotix has quit (Read error: 113 (No route to host)) |
| [18:16:18] | * mikl has quit (Client Quit) |
| [18:16:55] | * SiouxChief has quit () |
| [18:18:26] | * catch has joined #drupal-support |
| [18:20:33] | * Haza`` has quit (Read error: 113 (No route to host)) |
| [18:22:14] | * stephthegeeky has quit ("Leaving") |
| [18:22:14] | * p142 has quit (Read error: 104 (Connection reset by peer)) |
| [18:22:42] | * p142 has joined #drupal-support |
| [18:22:46] | * maynards-girl has quit () |
| [18:23:04] | * maynards-girl has joined #drupal-support |
| [18:23:14] | * nicdc has joined #drupal-support |
| [18:23:33] | * ixlr8 has quit ("Leaving") |
| [18:25:45] | <nielsbom> | bye now! |
| [18:25:45] | * wichitard has quit (Read error: 104 (Connection reset by peer)) |
| [18:25:53] | * freebox has joined #drupal-support |
| [18:26:19] | <freebox> | Have an easy way to create an portfolio with drupal? (Image (may be a gallery) + title + Date + Description) |
| [18:26:28] | <freebox> | Or i need to do with cck, views and panels? |
| [18:26:41] | * nielsbom has quit ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]") |
| [18:27:30] | <C00re> | i think there is some gallery module |
| [18:28:11] | * SiouxChief has joined #drupal-support |
| [18:28:44] | <akahn> | freebox: image module is agruably easier |
| [18:28:49] | <akahn> | make sure to get lightbox |
| [18:29:04] | * seanr has joined #drupal-support |
| [18:29:09] | * nitrospectide_ has joined #drupal-support |
| [18:29:33] | <C00re> | lightbox2 tbh |
| [18:29:57] | <C00re> | its awsome |
| [18:30:05] | <C00re> | built on ajax |
| [18:30:22] | * Michelle2 has joined #drupal-support |
| [18:31:20] | * okwichu has joined #drupal-support |
| [18:31:46] | * nrpil has joined #drupal-support |
| [18:32:07] | * Michelle has quit (Nick collision from services.) |
| [18:32:08] | * Michelle2 is now known as Michelle |
| [18:32:45] | <akahn> | C00re: ajax? you sure about that? |
| [18:32:47] | * sutha has joined #drupal-support |
| [18:33:09] | * catch has quit (Remote closed the connection) |
| [18:33:20] | <C00re> | "no" :P |
| [18:33:46] | * catch has joined #drupal-support |
| [18:34:03] | * asimmonds has quit () |
| [18:34:08] | * okwichu has quit (Client Quit) |
| [18:34:09] | * Lapith has quit ("ChatZilla 0.9.82.1 [Firefox 3.0/2008052906]") |
| [18:34:10] | <akahn> | yeah, it uses jquery. i don't think it uses ajax |
| [18:34:27] | * p142_ has joined #drupal-support |
| [18:35:16] | <C00re> | what is jquery? |
| [18:35:43] | <ipwa> | jquery? |
| [18:35:43] | <Druplicon> | Please ask jQuery questions in #jquery, not here. See also: http://jquery.com/ and http://drupal.org/node/88978 and http://15daysofjquery.com/ |
| [18:36:23] | * cYu_ has joined #drupal-support |
| [18:36:36] | * McGo has joined #drupal-support |
| [18:36:40] | * travisc has joined #drupal-support |
| [18:39:03] | * esmerel-laptop has joined #drupal-support |
| [18:40:28] | * develCuy has quit ("Ex-Chat") |
| [18:41:15] | * jenlampton has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [18:42:02] | * e-anima has joined #drupal-support |
| [18:43:20] | * AlexUA has joined #drupal-support |
| [18:43:39] | * nitrospectide has quit (Connection timed out) |
| [18:44:51] | <evenix> | I have a bug in : ecommerce configuration > location |
| [18:45:02] | <evenix> | warning: Invalid argument supplied for foreach() in C:\wamp\www\drupal\includes\form.inc on line 949. |
| [18:45:31] | <evenix> | i tried to read the file but i can figure out what the problem is |
| [18:45:52] | * McGo has quit () |
| [18:47:28] | * seanr has quit (Remote closed the connection) |
| [18:47:32] | * earlmred has quit (Read error: 113 (No route to host)) |
| [18:47:43] | * kostly has joined #drupal-support |
| [18:48:00] | <kostly> | does anyone know how mature the ability to add video to drupal is? |
| [18:49:00] | <aaronwinborn> | kostly: it's there. file field + jquery media is my preferred method. with media mover to put it there. flash video if you need to convert to flv first. |
| [18:49:04] | <aaronwinborn> | there are other methods as well |
| [18:49:36] | <kostly> | codec handling? |
| [18:50:35] | * p142 has quit (Read error: 110 (Connection timed out)) |
| [18:50:42] | * flabberkenny has joined #drupal-support |
| [18:50:43] | <aaronwinborn> | flash video uses ffmpeg, which takes care of that |
| [18:51:00] | * netron1234 has joined #drupal-support |
| [18:51:05] | <aaronwinborn> | i think there are one or two other modules that do that as well, don't remember off the top of my head |
| [18:51:58] | * cYu has quit (No route to host) |
| [18:52:12] | * Bojhan has quit () |
| [18:52:32] | * pcorbett has joined #drupal-support |
| [18:53:18] | <pcorbett> | What's the "best" module for inline audio and video? |
| [18:53:43] | <Nikki_> | Hi Guys - I have a wierd issue, when I update a taxonomy term, it doesnt actually save in the DB...term_node is not getting updated |
| [18:53:47] | <aaronwinborn> | pcorbett: if it's external, embedded media field. |
| [18:54:01] | <aaronwinborn> | pcorbett: otherwise, i'd suggest file field + jquery media |
| [18:54:13] | <pcorbett> | aaronwinborn: hi aaron, can i embed that in a paragraph, for example? |
| [18:54:17] | * eean has joined #drupal-support |
| [18:54:26] | * jenlampton has joined #drupal-support |
| [18:54:36] | <eean> | my update.php is stuck on "Updating system module" |
| [18:54:42] | <eean> | is that normal? |
| [18:54:47] | <eean> | its been there like 5 minutes at least |
| [18:54:50] | * MediaDoneRight has joined #drupal-support |
| [18:54:56] | * tomdeb_ has joined #drupal-support |
| [18:54:58] | <aaronwinborn> | pcorbett: for inline embedding, there's an outstanding issue for emfield, but not there yet. there is another contrib module that does that. don't remember the name right now |
| [18:54:59] | <eean> | should I reload the page? |
| [18:55:47] | <aaronwinborn> | pcorbett: however, you could just use jquery media for inline audio/video just fine |
| [18:55:53] | * samtresler has quit (Remote closed the connection) |
| [18:55:59] | <pcorbett> | aaronwinborn: i love embedded, but my needs right now are for inline unfortunately... but i'll keep looking around... |
| [18:56:05] | <pcorbett> | aaronwinborn: ah, let me check that out |
| [18:56:14] | <aaronwinborn> | pcorbett: you'd just provide a link to the file, and make sure the plugin was loaded on that page |
| [18:56:14] | * eean is upgrading from drupal 5->drupal 6 |
| [18:56:24] | <pcorbett> | aaronwinborn: i see |
| [18:56:53] | <aaronwinborn> | i should actually add an inline/filter option for jquery media, now that you mention it. check back next week, pcorbett ;) |
| [18:57:21] | <pcorbett> | aaronwinborn: ooh, thanks :) |
| [18:58:15] | * nitrospectide_ has quit (Connection timed out) |
| [18:59:33] | <aaronwinborn> | eean: yes, that upgrade can take a really long time on a big site. hope you backed up the db first ;) |
| [18:59:47] | <eean> | aaronwinborn: yea I did |
| [18:59:51] | <eean> | it's not that big of a site |
| [18:59:57] | <eean> | I suspect the log might be really long though |
| [19:00:00] | <aaronwinborn> | that's odd then |
| [19:00:01] | <aaronwinborn> | ah |
| [19:00:02] | <eean> | stupid log :) |
| [19:00:04] | <aaronwinborn> | yeah, could be |
| [19:00:16] | <aaronwinborn> | i usually truncate the log before doing core upgrades |
| [19:00:19] | * bin has joined #drupal-support |
| [19:00:22] | <eean> | good idear! |
| [19:00:23] | <eean> | :) |
| [19:00:26] | * flabberkenny has quit () |
| [19:02:11] | * flabberkenny has joined #drupal-support |
| [19:04:24] | * jenlampton has quit ("ChatZilla 0.9.83 [Firefox 3.0/2008061004]") |
| [19:04:51] | * ynn has quit ("see ya") |
| [19:05:24] | * dereine has joined #drupal-support |
| [19:06:39] | * tomdeb has quit (Read error: 110 (Connection timed out)) |
| [19:06:52] | * hunvreus has joined #drupal-support |
| [19:08:52] | * Amitaibu has quit (Read error: 104 (Connection reset by peer)) |
| [19:11:12] | <akahn> | What's a smart way to develop locally in MAMP and then bring that to the live server without doing everything manually? Especially since i want to update content on the live server between pushes |
| [19:13:23] | * cYu_ has quit () |
| [19:13:31] | <bin> | hi guys |
| [19:13:59] | <bin> | i ahve a doubt in the user registraion part |
| [19:14:26] | <bin> | is it possible to add the payment module in the registration part |
| [19:14:59] | * Themselves has joined #drupal-support |
| [19:15:58] | * marcvangend has joined #drupal-support |
| [19:16:11] | <marcvangend> | hi people |
| [19:16:40] | <marcvangend> | I'm helping a colleague to get a site online |
| [19:17:03] | <marcvangend> | but we get a white screen of death |
| [19:17:49] | * cYu has joined #drupal-support |
| [19:18:06] | <marcvangend> | I enabled error reporting in the index.php file and set the php memory limit to 30M |
| [19:18:21] | <marcvangend> | ... but that does not work. |
| [19:19:17] | <nicdc> | Dose drupal require database maintenance? |
| [19:19:28] | * Special-T has joined #drupal-support |
| [19:19:38] | <marcvangend> | We put the site offline before moving it fro the test server to the production server. We do get the 'site offline' message sometimes, but example.com/?q=user remains WSOD |
| [19:19:50] | <marcvangend> | any thoughts? |
| [19:19:53] | * developerhealey has quit (Remote closed the connection) |
| [19:20:02] | <Special-T> | is there a function in drupal for finding out if client has js enabled? Or should I simply use get_browser()? |
| [19:20:43] | * mortendk has joined #drupal-support |
| [19:21:07] | <marcvangend> | Special-T: I think you can't check that in php, because js is client-side |
| [19:21:24] | <Special-T> | http://forums.digitaltrends.com/showthread.php?t=9402 |
| [19:21:33] | <Special-T> | this page suggest u can |
| [19:21:35] | <Special-T> | at the bottom |
| [19:21:38] | <Special-T> | or is it wrong? |
| [19:22:29] | * Themselve1 has quit (Read error: 60 (Operation timed out)) |
| [19:22:42] | <Special-T> | coz i just made a little ajax pager for use in blocks, but it uses a custom ajax pager which i only want to use if js is enabled on client's computer |
| [19:22:52] | <Special-T> | otherwise use theme('pager') |
| [19:22:54] | <Michelle> | I heard clear cache is built into D6... Anyone know where it is? |
| [19:25:26] | <aaronwinborn> | performance, maybe? |
| [19:26:01] | * NeoID_ is now known as NeoID |
| [19:26:04] | * Michelle2 has joined #drupal-support |
| [19:26:31] | * bowwowadmin has joined #drupal-support |
| [19:26:36] | <Michelle2> | Ah, there it is, thanks, aaronwinborn |
| [19:26:39] | <aaronwinborn> | np |
| [19:26:43] | * yoroy has joined #drupal-support |
| [19:26:44] | * Michelle has quit (Nick collision from services.) |
| [19:26:45] | * Michelle2 is now known as Michelle |
| [19:27:03] | <aaronwinborn> | lucky guess ;) |
| [19:27:05] | <marcvangend> | Special-T: yes, that page suggests that it is possible. Interesting. So - why look for it in a drupal function if that is exactly what you need? |
| [19:27:39] | <Michelle> | Taking a break from everything to set up my family site. It's simple enough that I can use D6 as long as I can live without images for a while |
| [19:28:29] | <bowwowadmin> | I am triing to use the voting and adv.poll and have anon users be able to vote but it is IP based any solutions? |
| [19:28:35] | <nicdc> | My drupal database is getting realy slow, how can i clean it up to make the site run faster? are their any good modules to do this? |
| [19:29:17] | <Michelle> | Baby's up. Off to the park |
| [19:29:38] | <bowwowadmin> | nicdc have you turned on caching |
| [19:29:43] | <Special-T> | marcvangend> i have to set up an ini file properly for that, also i don't know if the extra server requests is good for performance |
| [19:29:47] | <nicdc> | Nope |
| [19:30:13] | <bowwowadmin> | nicdc what is the address |
| [19:30:39] | * DarthclueWork has quit () |
| [19:30:52] | <Special-T> | i been looking at how to tweak a site for performance even down to sprites etc. There's a lot in drupal it seems that needs to be done to speed it up |
| [19:31:20] | <Special-T> | drupal here takes sometimes 3 seconds for each page to load and it's on a local server |
| [19:31:46] | <Special-T> | need to get rid of a lot of unused stuff like modules that have millions of functions i don't want |
| [19:31:58] | <bowwowadmin> | nicdc do you use the devel module ? |
| [19:32:05] | <nicdc> | No |
| [19:32:41] | <bowwowadmin> | ah instal it and youi can see what is taking long time to load and all the queries |
| [19:32:58] | <nicdc> | ok |
| [19:33:47] | <marcvangend> | Special-T I guess you will just have to try and see... |
| [19:33:59] | <bowwowadmin> | devel? |
| [19:33:59] | <Druplicon> | Devel is a useful module for getting extra information about your site, such as database calls and form element names. It's useful for developing themes and custom modules. Download is http://drupal.org/project/devel and docs are at http://drupal.org/node/174575 |
| [19:34:09] | <bin> | hi |
| [19:34:40] | <bin> | is there any way to integrate payment module in user regisration |
| [19:34:41] | <bin> | ? |
| [19:34:48] | * yoroy has quit () |
| [19:35:17] | <dereine> | bin: what means integrate |
| [19:35:56] | <bin> | i want a payment gateway in user registration |
| [19:36:21] | <bin> | any one like paypal |
| [19:38:21] | <SiouxChief> | Anyone know how to cusotmize labels in MySite? For example, I want to change "Add Web Feed" to "Add External Feed". I've tried several things now which don't seem to work |
| [19:38:34] | * Utter is now known as Utter|away |
| [19:39:41] | <bin> | SiouxChief, i think u can do that in the admin area |
| [19:41:19] | <SiouxChief> | bin: Really!??!?!? |
| [19:41:34] | <bin> | yes |
| [19:41:35] | * tz has joined #drupal-support |
| [19:41:39] | <SiouxChief> | I've looked all over for it and haven't seen it....obviously looking in the wrong place |
| [19:42:07] | * PatMac has joined #drupal-support |
| [19:42:07] | <bin> | ok |
| [19:42:11] | <SiouxChief> | bin: Would you mind hinting to what section of admin i go to to find that? |
| [19:42:15] | * pcorbett has quit ("http://www.mibbit.com ajax IRC Client") |
| [19:42:23] | <SiouxChief> | I mean, it's under admin -> mysite, right? |
| [19:42:26] | <SiouxChief> | from there, where? |
| [19:42:37] | <bin> | chk in the content type |
| [19:43:05] | <bin> | is that on is menu then menu section |
| [19:43:20] | <SiouxChief> | really?!?? on the content type?!? so not in mysite admin at all? |
| [19:43:21] | <SiouxChief> | whoa |
| [19:43:22] | <bin> | u can go to the content type pages |
| [19:43:23] | <SiouxChief> | lol |
| [19:43:32] | <bin> | no in admin area |
| [19:43:38] | <bin> | content type |
| [19:43:49] | <bin> | is ur site is up |
| [19:43:52] | * modular^ has joined #drupal-support |
| [19:44:09] | <SiouxChief> | just a sec....checking |
| [19:44:16] | * valcker has joined #drupal-support |
| [19:44:19] | <bin> | means if u give me the site url then i can tell exactly |
| [19:44:21] | <bin> | ok |
| [19:44:21] | * Slurpee- has quit (Read error: 110 (Connection timed out)) |
| [19:44:33] | * egoleo has quit (Remote closed the connection) |
| [19:44:55] | * Utter|away is now known as Utter |
| [19:45:55] | * eigentor has joined #drupal-support |
| [19:46:38] | * threexk has quit (Read error: 110 (Connection timed out)) |
| [19:48:11] | <tz> | hello |
| [19:48:11] | <Druplicon> | privet |
| [19:48:38] | <bin> | SiouxChief, do u know hoiw to add payment gate way in the user registrsion area |
| [19:48:40] | <SiouxChief> | bin: I wish I could have you look at it....I don't think they'll let me do that. |
| [19:48:55] | <SiouxChief> | bin: No |
| [19:48:59] | <bin> | ok |
| [19:49:24] | <bin> | are u a developer or |
| [19:49:42] | <bin> | can u come for private chat |
| [19:49:48] | * daYZman-w has quit (Remote closed the connection) |
| [19:49:53] | <SiouxChief> | bin: They are about to deploy this and they're very sensitive about it. Yes, I'm a developer. Done a lot with drupal but there's so much I don't know still. I thought I'd need to do form_alter or something |
| [19:50:09] | <SiouxChief> | I can do private chat.. |
| [19:50:23] | <bin> | yes] |
| [19:51:15] | <bin> | ohh its failed |
| [19:51:44] | * [alphex] has quit ("This computer has gone to sleep") |
| [19:53:47] | <bowwowadmin> | I am triing to use the voting and adv.poll and have anon users be able to vote but it is IP based any solutions? |
| [19:54:51] | * cirotix has joined #drupal-support |
| [19:55:05] | * [alphex] has joined #drupal-support |
| [19:55:55] | * e-anima has quit ("www.artwaves.de") |
| [19:56:35] | * nomad411 has joined #drupal-support |
| [19:58:09] | * RMuilwijk has joined #drupal-support |
| [19:59:10] | <JW> | Hello, how could I place ads directly after the <!--break--> in my stories? I checked out AdSense Injector but it only places ads at the top of my stories |
| [19:59:42] | <JW> | Drupal 5.7 |
| [20:00:43] | * izaak has joined #drupal-support |
| [20:01:04] | * e-anima has joined #drupal-support |
| [20:01:25] | <ipwa> | does anyone know how to remove the link to the user's blog at the bottom of the blog posts in D5.7? |
| [20:02:01] | <izaak> | any suggested way of handling a small image gallery (could be a page with inline images, a View of images, i.e. i'm flexible) in 6.x? |
| [20:02:39] | * mpare has joined #drupal-support |
| [20:02:56] | <izaak> | ipwa: hm, i would look at all the theme_* functions in blog.module, figure out which one to override. |
| [20:03:31] | <ipwa> | thanks izaak |
| [20:03:35] | * marcvangend has left #drupal-support () |
| [20:04:01] | * stevek has joined #drupal-support |
| [20:09:33] | * stevek has quit () |
| [20:09:35] | * cmanns_2 has joined #drupal-support |
| [20:09:40] | * cmanns has quit (Read error: 54 (Connection reset by peer)) |
| [20:09:41] | * KentStation has quit (Read error: 110 (Connection timed out)) |
| [20:10:16] | * stevek has joined #drupal-support |
| [20:11:22] | * freebox has quit () |
| [20:11:56] | * NeoID_ has joined #drupal-support |
| [20:12:02] | * p142_ has quit () |
| [20:12:13] | * stevek has quit (Client Quit) |
| [20:12:23] | * bin has quit ("Leaving") |
| [20:12:24] | * koolhead17 has quit (Excess Flood) |
| [20:12:42] | * grugnog_office has joined #drupal-support |
| [20:12:42] | * koolhead17 has joined #drupal-support |
| [20:12:53] | * cwgordon7 has joined #drupal-support |
| [20:13:14] | * darrenoh has quit () |
| [20:13:27] | * koolhead17 has quit (Client Quit) |
| [20:13:52] | * modular^ has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * nrpil has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * guardian has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * NeoID has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * canen has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * Zarabadoo has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * ekiczek has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * Criticality has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * MikeyLikesIt has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * Morbus has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * stella has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * threehz has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * EriSanWork has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:13:52] | * sebke has quit (kornbluth.freenode.net irc.freenode.net) |
| [20:14:00] | * erisan has joined #drupal-support |
| [20:15:27] | * modular^ has joined #drupal-support |
| [20:15:27] | * nrpil has joined #drupal-support |
| [20:15:27] | * guardian has joined #drupal-support |
| [20:15:27] | * NeoID has joined #drupal-support |
| [20:15:27] | * canen has joined #drupal-support |
| [20:15:27] | * Zarabadoo has joined #drupal-support |
| [20:15:27] | * ekiczek has joined #drupal-support |
| [20:15:27] | * Criticality has joined #drupal-support |
| [20:15:27] | * MikeyLikesIt has joined #drupal-support |
| [20:15:27] | * Morbus has joined #drupal-support |
| [20:15:27] | * EriSanWork has joined #drupal-support |
| [20:15:27] | * threehz has joined #drupal-support |
| [20:15:27] | * stella has joined #drupal-support |
| [20:15:27] | * sebke has joined #drupal-support |
| [20:16:54] | * jonnyg has joined #drupal-support |
| [20:18:03] | * dougvann has quit (Read error: 110 (Connection timed out)) |
| [20:18:16] | * xur1z has joined #drupal-support |
| [20:18:38] | * jenlampton has joined #drupal-support |
| [20:18:51] | <jonnyg> | I'm using a custom profile override in my template.php, and now when I try to click on another persons profile listing, they all go to mine. Even though the url says "localhost:8888/user/addie-black" it's administrator's content, because I'm logged in as admin. If I were logged in as addie black, it would all be addie's content on the profile. How can I fix this so that I can view other peoples profiles? |
| [20:18:52] | * tomdeb has joined #drupal-support |
| [20:20:14] | * balibalo has joined #drupal-support |
| [20:21:59] | * Nikki_ has quit (No route to host) |
| [20:22:43] | * VanDerKeen has joined #drupal-support |
| [20:22:54] | * akahn has quit ("Lost terminal") |
| [20:23:08] | * MattV has joined #drupal-support |
| [20:23:18] | <VanDerKeen> | May I did node without Header? |
| [20:25:24] | * NeoID has quit (Read error: 60 (Operation timed out)) |
| [20:28:27] | * sayers has quit (Remote closed the connection) |
| [20:30:07] | * tomdeb_ has quit (Read error: 113 (No route to host)) |
| [20:31:35] | * andreasma has quit ("Verlassend") |
| [20:32:00] | * sdondley has quit ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]") |
| [20:32:29] | * stBorchert has joined #drupal-support |
| [20:33:16] | * alefteris has joined #drupal-support |
| [20:34:39] | * futuresoon has joined #drupal-support |
| [20:34:50] | * Nikki_ has joined #drupal-support |
| [20:35:42] | * BrianJubal has joined #drupal-support |
| [20:36:15] | * stBorchert has quit (Client Quit) |
| [20:36:30] | * sdboyer-laptop is now known as sdboyer-laptop_ |
| [20:36:38] | * sdboyer-laptop_ is now known as sdboyer-laptop |
| [20:37:55] | <BrianJubal> | anyone know of a module that gives an option to "upload" a file that's already on the website rather than from your local directory? It'd be nice for me using node_import. |
| [20:38:09] | <VanDerKeen> | May I did node without Header? |
| [20:38:51] | * patchak has left #drupal-support () |
| [20:39:14] | <erifneerg> | VanDerKeen: not sure what ur asking |
| [20:39:43] | * [alphex] has quit ("This computer has gone to sleep") |
| [20:40:16] | * stevek has joined #drupal-support |
| [20:40:46] | * benobo has joined #drupal-support |
| [20:41:28] | * level09 has joined #drupal-support |
| [20:42:07] | * davexoxide has quit () |
| [20:42:57] | * [alphex] has joined #drupal-support |
| [20:43:07] | * stevek has quit (Client Quit) |
| [20:43:24] | * davexoxide has joined #drupal-support |
| [20:43:37] | * dtaylormi has quit ("Leaving") |
| [20:43:38] | <VanDerKeen> | <erifneerg> When I do new type of node, there are necessary field Header. Can I do new node without field Header? |
| [20:44:02] | * develCuy has joined #drupal-support |
| [20:44:40] | <level09> | u mean title |
| [20:44:52] | * alekzar2 has joined #drupal-support |
| [20:45:01] | <VanDerKeen> | yes, title |
| [20:45:06] | <VanDerKeen> | sorry |
| [20:45:09] | <level09> | no you cant |
| [20:45:12] | <level09> | title is required |
| [20:45:15] | <level09> | but what u can do is |
| [20:45:25] | <level09> | use a module that sets automatic titles |
| [20:45:28] | <level09> | and hide that field |
| [20:45:47] | <VanDerKeen> | what module? |
| [20:45:48] | * RockSoup___ has joined #drupal-support |
| [20:45:51] | <erifneerg> | yea, auto title node is perfect |
| [20:46:00] | <VanDerKeen> | thanks |
| [20:46:01] | <alekzar2> | hello |
| [20:46:01] | <Druplicon> | hello |
| [20:46:04] | <erifneerg> | Automatic Nodetitles? |
| [20:46:07] | * Thomas_Zahreddin has joined #drupal-support |
| [20:46:12] | <level09> | niihau |
| [20:46:13] | <erifneerg> | drupal.org/project/auto_nodetitle |
| [20:46:23] | <alekzar2> | how to aggregate news with the content only |
| [20:46:35] | * RockSoup___ has quit (Client Quit) |
| [20:46:36] | * llang has quit ("Trillian (http://www.ceruleanstudios.com") |
| [20:47:46] | * Roelven has joined #drupal-support |
| [20:47:55] | * Utter is now known as Utter|away |
| [20:48:37] | * RockSoup has quit (Read error: 110 (Connection timed out)) |
| [20:51:16] | * MediaDoneRight has quit (Remote closed the connection) |
| [20:53:10] | * Roelven has quit () |
| [20:54:05] | * sutha has quit () |
| [20:55:11] | * samtresler has joined #drupal-support |
| [20:56:49] | * markvandenborre has joined #drupal-support |
| [20:56:53] | * nicjasno has quit (Remote closed the connection) |
| [20:58:14] | * eigentor has left #drupal-support () |
| [20:58:21] | * izaak has quit ("Ex-Chat") |
| [20:58:25] | * mortendk has quit () |
| [21:00:21] | * chemmyone has joined #drupal-support |
| [21:00:30] | * Bunset has joined #drupal-support |
| [21:00:59] | <markvandenborre> | could anyone point me to detailed instructions for creating a multisite environment with drupal 6.2? |
| [21:01:13] | * _CitizenKane_ has quit (Remote closed the connection) |
| [21:01:24] | <markvandenborre> | I tried to follow the instructions from the beginners manual |
| [21:01:42] | <markvandenborre> | setting up only one was dead easy |
| [21:02:07] | <alekzar2> | you want to have two langauge versions? |
| [21:02:09] | <markvandenborre> | creating a db for a second one, and copying the default settings directory too |
| [21:02:31] | <markvandenborre> | alekzar2: no, two sites with separate db's and separate content and theming, but fairly standard modules |
| [21:02:53] | <markvandenborre> | it's just really confusing how to initialise the second db |
| [21:03:00] | * tomdeb_ has joined #drupal-support |
| [21:03:03] | <markvandenborre> | can't seem to find any reference to that in the manual |
| [21:03:07] | <markvandenborre> | so I now have it set up |
| [21:03:26] | * [alphex] has quit ("This computer has gone to sleep") |
| [21:03:40] | <markvandenborre> | but there's no clear explanation on how to create the necessary tables in the db |
| [21:03:52] | <markvandenborre> | for the second db in this multisite setup |
| [21:04:18] | * mikl has joined #drupal-support |
| [21:04:47] | * jucallme has joined #drupal-support |
| [21:04:50] | <markvandenborre> | that probably means I'm doing something wrong |
| [21:05:02] | <markvandenborre> | and also that the docs could be clearer there |
| [21:05:02] | <futuresoon> | when you run the install script it creates the tables |
| [21:05:10] | <markvandenborre> | futuresoon: indeed |
| [21:05:21] | <markvandenborre> | but how do I convince it to run the install script? |
| [21:05:32] | * jwbuzz has joined #drupal-support |
| [21:05:38] | * evenix has quit () |
| [21:05:40] | <futuresoon> | i'm having a multisite issue too----what's your OS, server environment, etc? |
| [21:06:03] | <markvandenborre> | debian gnu/linux lenny |
| [21:06:09] | * cYu has left #drupal-support () |
| [21:06:13] | <futuresoon> | i'm on similar----ubuntu hardy |
| [21:06:16] | <futuresoon> | what are the symptoms? |
| [21:06:33] | <markvandenborre> | I'm probably something not really well documented |
| [21:06:42] | <markvandenborre> | I could probably just point the thing at install.php |
| [21:06:44] | * Bunset has left #drupal-support ("Leaving.") |
| [21:06:53] | <futuresoon> | did you point it at install.php? |
| [21:06:58] | <futuresoon> | cause that's what you're supposed to do at some point |
| [21:07:29] | <markvandenborre> | the docs don't say so |
| [21:07:39] | <markvandenborre> | I just did this, right before you suggested me to do so |
| [21:07:44] | <markvandenborre> | and this seems to be working |
| [21:07:52] | <futuresoon> | well awesome |
| [21:07:57] | <futuresoon> | that's what that install script is for |
| [21:08:28] | * VanDerKeen has quit (Read error: 110 (Connection timed out)) |
| [21:08:47] | <jwbuzz> | I'm using OG for node access on a custom content type. I've recently updated some modules on my test server and now the audience field shows up as check boxes for the admin user but as a select list for everyone else. Can someone point me to some info on this? |
| [21:09:01] | * tomdeb has quit (Read error: 113 (No route to host)) |
| [21:09:43] | <markvandenborre> | futuresoon: it's not needed for the first site in a multisite install |
| [21:10:04] | <markvandenborre> | it's not that much that I don't get how to get through, just that some docs are missing |
| [21:10:07] | * McGo has joined #drupal-support |
| [21:10:12] | <markvandenborre> | from the multisite stuff |
| [21:10:12] | <futuresoon> | it's not "needed" for any of them, but it can be used for all of them |
| [21:10:18] | * BrianJubal has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [21:10:23] | <futuresoon> | the docs are terrible for multisite |
| [21:10:26] | <futuresoon> | a complete shambles |
| [21:10:29] | <markvandenborre> | apparently |
| [21:10:31] | <markvandenborre> | pity |
| [21:10:38] | <markvandenborre> | hm, I should file a request then |
| [21:10:43] | * VanDerKeen has joined #drupal-support |
| [21:10:49] | * chemical_ has quit (Read error: 110 (Connection timed out)) |
| [21:10:55] | <markvandenborre> | with some extra info, like I already did for a typo in the single site one |
| [21:10:57] | <futuresoon> | there's bigger problems than that |
| [21:11:03] | * alekzar2 has left #drupal-support () |
| [21:11:14] | <futuresoon> | it's not a question of getting the right info out there, it's a matter of everyone having only part of the puzzle |
| [21:11:41] | <futuresoon> | you didn't really have a multisite issue, you had an install.php issue |
| [21:12:02] | <VanDerKeen> | How can I did node without 'Posted June 2nd, 2008 by Dem'? |
| [21:12:44] | <futuresoon> | good question----IIRC it's in the theme pages |
| [21:12:46] | <futuresoon> | let me check |
| [21:13:39] | * jonnyg has quit () |
| [21:13:59] | <futuresoon> | vanderkeen: admin/build/themes/settings |
| [21:14:02] | * sodani has joined #drupal-support |
| [21:14:08] | * netron1234 has quit ("Lost terminal") |
| [21:14:52] | <sodani> | what's the easiest way to inspect the value of a variable? |
| [21:15:08] | * Zarabadoo has quit (Read error: 54 (Connection reset by peer)) |
| [21:15:20] | <VanDerKeen> | <futuresoon> Can I delete only date? |
| [21:15:27] | <futuresoon> | for some variables at least (all for all i know) <?php print $the_variable ?> |
| [21:16:13] | <sodani> | futuresoon: where would the best place to run that? |
| [21:16:15] | <sodani> | inside a node? |
| [21:16:17] | <futuresoon> | vanderkeen: you could delete the whole line and then just print the author i guess |
| [21:16:50] | <futuresoon> | sodani: ok so if you want to print a list of variables <?php print_r($node) ?> inside the node is supposed to do something |
| [21:16:57] | * Arancaytar has joined #drupal-support |
| [21:18:10] | * Zarabadoo has joined #drupal-support |
| [21:18:14] | <sodani> | futuresoon: yeah, it just seems kind of cumbersome to create a node each time I want to test a variable |
| [21:18:32] | <futuresoon> | sodani: yeah you don't have to |
| [21:18:48] | <futuresoon> | by the way, i'm no php expert |
| [21:20:03] | <sodani> | I could put it into the module I'm working on, but then it has to go in the right hook |
| [21:21:26] | * grndlvl____ has joined #drupal-support |
| [21:21:51] | * wichitard has joined #drupal-support |
| [21:22:41] | * milian has quit (Read error: 104 (Connection reset by peer)) |
| [21:23:08] | * narkotik84 has quit () |
| [21:25:04] | * erifneerg has left #drupal-support () |
| [21:25:47] | <alefteris> | do you know of a way to present cck field items on the same row with the field-label? |
| [21:26:21] | * develCuy_ has joined #drupal-support |
| [21:26:28] | * Arancaytar has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * develCuy has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * valcker has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * Michelle has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * catch has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * maynards-girl has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * Bes` has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * netaust1n has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * nonsie has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * luison has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * cctoide has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * Dieterbe has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * jascott has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * tarkus has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * JLM` has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * infernix has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * esmerel has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * mzenner has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * Flusher has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * Ein2015b has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:28] | * yasai has quit (kornbluth.freenode.net irc.freenode.net) |
| [21:26:39] | * nrpil has quit ("leaving") |
| [21:26:41] | * develCuy_ is now known as develCuy |
| [21:26:51] | * nrpil has joined #drupal-support |
| [21:27:00] | * catch has joined #drupal-support |
| [21:27:00] | * Arancaytar has joined #drupal-support |
| [21:27:00] | * valcker has joined #drupal-support |
| [21:27:00] | * Michelle has joined #drupal-support |
| [21:27:00] | * maynards-girl has joined #drupal-support |
| [21:27:00] | * Bes` has joined #drupal-support |
| [21:27:00] | * netaust1n has joined #drupal-support |
| [21:27:00] | * nonsie has joined #drupal-support |
| [21:27:00] | * luison has joined #drupal-support |
| [21:27:00] | * cctoide has joined #drupal-support |
| [21:27:00] | * tarkus has joined #drupal-support |
| [21:27:00] | * Dieterbe has joined #drupal-support |
| [21:27:00] | * jascott has joined #drupal-support |
| [21:27:00] | * JLM` has joined #drupal-support |
| [21:27:00] | * infernix has joined #drupal-support |
| [21:27:00] | * esmerel has joined #drupal-support |
| [21:27:00] | * mzenner has joined #drupal-support |
| [21:27:00] | * Flusher has joined #drupal-support |
| [21:27:00] | * yasai has joined #drupal-support |
| [21:27:00] | * Ein2015b has joined #drupal-support |
| [21:28:02] | * maynards-girl has quit (Remote closed the connection) |
| [21:28:31] | * maynards-girl has joined #drupal-support |
| [21:29:14] | * oadaeh has joined #drupal-support |
| [21:29:21] | * bshumate has quit ("*poof*") |
| [21:31:18] | * nielsbom has joined #drupal-support |
| [21:33:41] | <alefteris> | do you know of a way to present cck field items on the same row with the field-label? |
| [21:34:16] | * Slurpee has quit (Read error: 101 (Network is unreachable)) |
| [21:34:50] | * kthomas_vh has joined #drupal-support |
| [21:34:55] | * darrenoh has joined #drupal-support |
| [21:36:27] | <esmerel-laptop> | alefteris, change the label to inline? |
| [21:37:22] | * flabberkenny has quit () |
| [21:37:24] | <esmerel-laptop> | alefteris, content types > node type > display fields > Label -> inline |
| [21:37:36] | * esmerel-laptop is using d6 though, doesn't know what d5 looks like :/ |
| [21:37:58] | <oadaeh> | It's pretty close to the same, if not exact. |
| [21:39:34] | * negonicrac has joined #drupal-support |
| [21:41:03] | <alefteris> | esmerel-laptop, thanks a lot :) I'm at 99% where I want to be. Now I have to figure a solution for the multiple values that are not getting displayed in the same row |
| [21:43:01] | * designerbrent has quit () |
| [21:43:21] | * McGo has quit () |
| [21:43:55] | * mpare has quit () |
| [21:44:17] | <alefteris> | drupal (or content_taxonomy) is inserting a <br> between the 2 taxonomy terms :( |
| [21:45:38] | * NeoID_ has quit (Connection reset by peer) |
| [21:45:50] | <markvandenborre> | what is the simplest drupal photo module? |
| [21:46:11] | <markvandenborre> | best maintained, cleanest code, 6.2 compatible? |
| [21:46:18] | <oadaeh> | simple in what context? |
| [21:46:30] | <markvandenborre> | simple in minimal code base, well maintained |
| [21:46:42] | <oadaeh> | Probably Image. |
| [21:46:58] | <markvandenborre> | I just need to add a few photos here and there |
| [21:47:00] | <oadaeh> | Or CCK+Views+Image Field. |
| [21:47:06] | <markvandenborre> | and _maybe_ a really simple album |
| [21:47:17] | * mpare has joined #drupal-support |
| [21:47:23] | <markvandenborre> | really, the simpler the better |
| [21:47:47] | <oadaeh> | Adding can be as simple as uploading the file, hiding the attachment and using the <img /> tag. |
| [21:48:07] | <oadaeh> | But that won't get you any albums. |
| [21:48:13] | <markvandenborre> | oadaeh: no need |
| [21:48:30] | <markvandenborre> | but I'd love to have the feature accessible to non-geek users |
| [21:48:55] | <markvandenborre> | so that would mean some WYSIWYG module, if that even exists |
| [21:49:01] | <oadaeh> | You could also try Image Assist. |
| [21:49:26] | <markvandenborre> | oadaeh: thx |
| [21:49:30] | <markvandenborre> | googling for it now |
| [21:49:34] | <oadaeh> | That has some level of WYSIWYG. |
| [21:49:43] | <oadaeh> | img_assist? |
| [21:49:43] | <Druplicon> | img_assist is http://drupal.org/project/img_assist |
| [21:49:50] | <oadaeh> | image? |
| [21:49:50] | <Druplicon> | http://drupal.org/project/image |
| [21:49:58] | <oadaeh> | image_field? |
| [21:50:15] | <markvandenborre> | hm, this is still all beta software |
| [21:50:15] | <C00re> | anyone know if its possible to tell tinymce to only show on specific fields, instead of on every field on a page? havent found anything yet.. just "(dont) show tinymce only on the following pages" |
| [21:50:20] | <markvandenborre> | (except for image maybe) |
| [21:50:28] | <markvandenborre> | when it comes to d6 I mean |
| [21:50:45] | <oadaeh> | Yeah, I don't know the version status of any of them, but I've used them all. |
| [21:50:46] | <markvandenborre> | does that mean "live dangerously" |
| [21:51:09] | <oadaeh> | That means, if it works, be careful when updating. |
| [21:51:14] | <markvandenborre> | I know that debian testing is stable enough to run on low risk production servers |
| [21:51:16] | * Thomas_Zahreddin has quit (Read error: 104 (Connection reset by peer)) |
| [21:51:19] | * Zarabadoo1 has joined #drupal-support |
| [21:51:32] | <oadaeh> | "stable" is in the eye of the beholder. |
| [21:51:35] | <oadaeh> | :^) |
| [21:51:38] | <markvandenborre> | but I'm not comfortable enough with using beta software that I don't know enough |
| [21:51:48] | <markvandenborre> | especially not when it's written in php |
| [21:52:07] | <markvandenborre> | (please don't take that as an offense) |
| [21:52:21] | * _CitizenKane_ has joined #drupal-support |
| [21:52:27] | <markvandenborre> | I hugely respect the drupal effort for the effort to create clean php code! |
| [21:52:38] | <oadaeh> | C00re, I don't use it, so I don't know for sure, but I thought I remembered someone saying you could by modifying code. |
| [21:52:59] | <markvandenborre> | oh man, even Image is still beta |
| [21:53:09] | <C00re> | code? as in modifying the module code? |
| [21:53:29] | <oadaeh> | markvandenborre, that's fine. No offense taken. Not everyone's comfortable with everything. |
| [21:53:29] | <markvandenborre> | is there any stable image thingie for 6.2 yet? |
| [21:53:35] | * Haza` has quit (Read error: 104 (Connection reset by peer)) |
| [21:53:50] | <oadaeh> | Hmm, I thought Image had a 6.x version. |
| [21:54:00] | <markvandenborre> | it does, just not a released one |
| [21:54:01] | <C00re> | is anything stable for 6.2 xD |
| [21:54:05] | <markvandenborre> | as in non-beta |
| [21:54:07] | <oadaeh> | C00re, yes, or in the tinymce code. |
| [21:54:15] | <C00re> | okay |
| [21:54:36] | <oadaeh> | C00re, but I'm not 100% sure, so I may be totally wrong. |
| [21:54:37] | * robomalo has joined #drupal-support |
| [21:54:54] | <oadaeh> | markvandenborre, okay. |
| [21:55:03] | <markvandenborre> | oadaeh: any idea how stable tinymce for 6.2 is? |
| [21:55:30] | <C00re> | less buggy than fckeditor |
| [21:55:47] | * nielsbom is now known as certainly |
| [21:55:47] | * valcker has quit (Read error: 104 (Connection reset by peer)) |
| [21:55:49] | <oadaeh> | No idea. I've never used it. And it went through some rocky episode about this time last year making me not want to try it at all. |
| [21:55:56] | <C00re> | i tried both at work |
| [21:56:10] | <markvandenborre> | any other, more stable wysiwyg thingie? |
| [21:56:18] | <markvandenborre> | again, doesn't have to do much |
| [21:56:30] | <markvandenborre> | just make non-geeks more comfortable entering text |
| [21:56:35] | <C00re> | fckeditor or tinymce i think is the best |
| [21:56:41] | * infernix has quit ("Leaving") |
| [21:56:45] | * futuresoon has quit ("Ex-Chat") |
| [21:57:03] | <C00re> | however fckeditor tend to get blank on the pages :D |
| [21:57:19] | <markvandenborre> | :) |
| [21:57:19] | <C00re> | but a refresh solves it |
| [21:57:20] | * protitude has joined #drupal-support |
| [21:57:46] | <markvandenborre> | right, manual <img> tags it will be then |
| [21:58:04] | <markvandenborre> | and no content entered by users |
| [21:58:09] | <markvandenborre> | for the time being |
| [21:58:16] | <markvandenborre> | bit of a shame |
| [21:58:17] | * sirkitree has quit () |
| [21:58:33] | * JoaoCarneiro has joined #drupal-support |
| [21:58:37] | <markvandenborre> | but can live with that, rather than having to fiddle with a lot of stuff when upgrading |
| [21:58:53] | * designerbrent has joined #drupal-support |
| [21:59:08] | * dougvann has joined #drupal-support |
| [21:59:16] | * m0oman has quit () |
| [21:59:17] | <markvandenborre> | thx for the hints everyone! |
| [21:59:22] | * fago has quit (Read error: 110 (Connection timed out)) |
| [21:59:36] | * EKS has joined #drupal-support |
| [22:00:21] | * CrookedNumber has joined #drupal-support |
| [22:00:31] | * SiouxChief has quit () |
| [22:01:03] | <JoaoCarneiro> | hey, just came over from #drupal |
| [22:01:14] | <JoaoCarneiro> | someone mentioned this place |
| [22:01:36] | <AlexUA> | you must be looking for help :D |
| [22:01:39] | * sirkitree has joined #drupal-support |
| [22:01:40] | <AlexUA> | if so this is the right place |
| [22:01:44] | <AlexUA> | ...I hope! ;-) |
| [22:01:57] | <JoaoCarneiro> | i want to make a nice site with forums with access control and images/gallery's with access control |
| [22:02:09] | <JoaoCarneiro> | AlexUA, any ideas on nice modules? |
| [22:02:12] | * infernix has joined #drupal-support |
| [22:02:25] | <JoaoCarneiro> | i can show you the site i have been working on |
| [22:02:33] | * certainly is now known as nielsbom |
| [22:02:36] | <AlexUA> | for the forums you should stick with core |
| [22:03:03] | <AlexUA> | you can use a few different access control modules to do the ac |
| [22:03:10] | <AlexUA> | ...but only use 1 at a time! |
| [22:03:28] | <AlexUA> | for the image/galleries you should use cck+imagefield+views |
| [22:03:42] | <AlexUA> | + views bonus pack (for the grid view) |
| [22:03:45] | <jucallme> | images def go with imagecache, imagecache_actions |
| [22:04:07] | * maynards-girl has quit () |
| [22:04:15] | <AlexUA> | imagecache as well (duh) |
| [22:04:39] | <JoaoCarneiro> | for the access control you meant the ACL module? |
| [22:04:42] | * ingo86_away has quit () |
| [22:04:49] | <AlexUA> | not necessarily |
| [22:05:17] | <JoaoCarneiro> | aep17.org |
| [22:05:20] | <JoaoCarneiro> | there |
| [22:05:23] | <JoaoCarneiro> | take a look |
| [22:05:34] | <JoaoCarneiro> | i put a lot of modules on that installation |
| [22:05:43] | <JoaoCarneiro> | and even tryed gallery2 |
| [22:05:54] | <oadaeh> | forum_access? |
| [22:05:54] | <Druplicon> | forum_access: Implementation of hook_access(). => forum_access($op, $node, $account) => http://api.drupal.org/api/function/forum_access/6 |
| [22:05:56] | <JoaoCarneiro> | but i still have some issues with gallery2 |
| [22:06:08] | <oadaeh> | Um, not that one. |
| [22:06:09] | * harurenu has quit ("Leaving") |
| [22:06:34] | * arriviste has joined #drupal-support |
| [22:06:35] | <oadaeh> | http://drupal.org/project/forum_access |
| [22:06:38] | <oadaeh> | That one. |
| [22:06:44] | <JoaoCarneiro> | :) |
| [22:06:58] | <sodani> | what's an easy way to allow an admin to administer a database table? |
| [22:07:10] | <sodani> | for example, add and delete rows |
| [22:07:15] | <EKS> | Can i change the link a Taxonomy item has by default ? |
| [22:07:26] | <oadaeh> | It worked pretty well the last time I used it (quite a while ago) and gives fairly good control. |
| [22:07:38] | <JoaoCarneiro> | oadaeh, i'll try it |
| [22:07:47] | <JoaoCarneiro> | i think i'll restart from scratch |
| [22:07:54] | <JoaoCarneiro> | this is a pet project |
| [22:08:01] | <JoaoCarneiro> | the local scouts group site |
| [22:08:16] | * Mek has quit (Read error: 110 (Connection timed out)) |
| [22:08:18] | <JoaoCarneiro> | haven't played with it in a while |
| [22:08:39] | <JoaoCarneiro> | it's still not in production |
| [22:08:54] | <AlexUA> | JoaoCarneiro: I've never used Gallery2 |
| [22:09:01] | <AlexUA> | what's wrong with imagefield/imagecache/views? |
| [22:09:06] | * Zarabadoo has quit (No route to host) |
| [22:09:18] | <JoaoCarneiro> | so forum_access imagecache, imagecache_actions cck imagefield views |
| [22:09:25] | * matkeane has joined #drupal-support |
| [22:09:32] | <AlexUA> | JoaoCarneiro: maybe not forum_access |
| [22:09:33] | <AlexUA> | try it out |
| [22:09:34] | <JoaoCarneiro> | let's try the recype |
| [22:09:43] | <AlexUA> | but acl is usually the best, imo |
| [22:10:10] | <JoaoCarneiro> | AlexUA, have you used it recently? |
| [22:10:16] | <oadaeh> | JoaoCarneiro, you might find some tips here: http://groups.drupal.org/scouting-guiding |
| [22:10:30] | <JoaoCarneiro> | oadaeh, cool, thanks |
| [22:10:37] | <oadaeh> | Hmm, well maybe not. |
| [22:10:56] | <oadaeh> | Looks like there's been no activity in nearly two years. |
| [22:11:08] | <oadaeh> | Maybe it's time to wake it up. :^) |
| [22:11:36] | <JoaoCarneiro> | organic groups? what is that? |
| [22:12:35] | <oadaeh> | It's kind of a site within a site. |
| [22:12:56] | <dougvann> | ok. i need to change the allowed time for queries but i can't seem to find my php.ini it's not in root/etc where else can i look? |
| [22:13:10] | <oadaeh> | It allows people with sub interests to communicate w/o interferring with everyone else. |
| [22:13:39] | <JoaoCarneiro> | hum, like leaf sites?it might be overkill, no? |
| [22:13:46] | <oadaeh> | dougvann, what do you mean by allowed time for queries? |
| [22:14:00] | * Mek has joined #drupal-support |
| [22:14:08] | <oadaeh> | JoaoCarneiro, yes, especially if it's all new to you. |
| [22:14:09] | <JoaoCarneiro> | dougvann, cat php.ini| grep maximum |
| [22:14:33] | <dougvann> | sorry oadaeh bad choice of words : ini_set("max_execution_time",200000) |
| [22:14:53] | <oadaeh> | JoaoCarneiro, I setup http://www.troop256.com w/o it. I use taxonomy when I need something similar. |
| [22:15:52] | <JoaoCarneiro> | oadaeh, what are you using for the events stuff? |
| [22:16:19] | * _DT has joined #drupal-support |
| [22:16:52] | * threexk has joined #drupal-support |
| [22:16:53] | <oadaeh> | dougvann, look for max_execution_time in your php.ini file. It should be under the heading of ; Resource Limits ; |
| [22:17:21] | <oadaeh> | dougvann, if you don't see it, look for memory_limit. It would be near that. |
| [22:17:36] | <oadaeh> | JoaoCarneiro, just the event module. |
| [22:17:41] | <JoaoCarneiro> | cool |
| [22:17:48] | <oadaeh> | I'll check real quick and let you know what else. |
| [22:17:54] | <JoaoCarneiro> | and that calendar is provided by it? |
| [22:18:12] | <dougvann> | oadaeh: i cant find my php.ini. JoaoCarneiro the "cat php.ini| grep maximum" gave me "no such..." |
| [22:19:06] | <dougvann> | yay... i found it in /usr/local/lib |
| [22:19:09] | * ekiczek has quit () |
| [22:19:11] | * develCuy has quit ("Ex-Chat") |
| [22:19:15] | <oadaeh> | dougvann, what operating system are you useing? |
| [22:19:22] | <oadaeh> | using |
| [22:19:41] | <dougvann> | centOS |
| [22:19:41] | <JoaoCarneiro> | dougvann, it should be under /etc/... (distribution dependable) |
| [22:19:45] | * Slurpee- has joined #drupal-support |
| [22:20:00] | <dougvann> | w/ a whm/cpanel environment |
| [22:20:48] | * nielsbom has quit ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]") |
| [22:20:50] | <oadaeh> | JoaoCarneiro, Event, Basic event (part of Event), Event Views and Event Repeat. |
| [22:21:43] | <oadaeh> | dougvann, I'm not familiar w/RedHat based distros any more, but it should still be under /etc/php*, like JoaoCarneiro says. |
| [22:21:59] | <dougvann> | nope its in /usr/local/lib |
| [22:22:09] | <dougvann> | im editing it now |
| [22:22:15] | <JoaoCarneiro> | dougvann, i guess you could circumvent that via a .htaccess file as long as you can override de default conf from there |
| [22:22:39] | <oadaeh> | I had to do it that way with the Troop 256 site. |
| [22:23:03] | * NateSide has joined #drupal-support |
| [22:23:15] | <dougvann> | do i add "ini_set("max_execution_time",200000)" or do i edit an existing declaration? i didnt find any "ini_set" when i searched the doc |
| [22:24:04] | <JoaoCarneiro> | quite francly i do not know the sintax, but google does, let me see if i can help |
| [22:24:17] | <NateSide> | any one here know anything about css sprites, im trying to replace some images in my theme with a sprite I generated with the sprite generator module |
| [22:24:43] | <oadaeh> | dougvann, just add something like "max_execution_time = 30" on a blank line. |
| [22:24:46] | <JoaoCarneiro> | http://pt.php.net/manual/en/function.ini-set.php |
| [22:25:08] | <JoaoCarneiro> | oadaeh, better for him to find that entry |
| [22:25:13] | * AlexUA has quit ("I don't love you anymore.") |
| [22:25:15] | <JoaoCarneiro> | or it will be arbitrary |
| [22:27:54] | * xamox has joined #drupal-support |
| [22:28:49] | * xamox has quit (Client Quit) |
| [22:29:04] | * RMuilwijk has quit (Read error: 104 (Connection reset by peer)) |
| [22:29:09] | * ghosting has joined #drupal-support |
| [22:29:24] | * e-anima has quit (Connection timed out) |
| [22:29:32] | * ghosting is now known as RMuilwijk |
| [22:29:32] | * Zarabadoo1 has quit (Connection reset by peer) |
| [22:30:22] | * level09 has quit (Read error: 104 (Connection reset by peer)) |
| [22:30:31] | * level09 has joined #drupal-support |
| [22:30:43] | * davidstrauss has quit (Remote closed the connection) |
| [22:31:37] | <jucallme> | Im looking to find out some information on the slide show that was demo'ed in lesson 24 of the drupaldojo, the jQuery side of it. Can any one help? |
| [22:32:10] | <JoaoCarneiro> | drupaldojo? |
| [22:32:13] | * hunvreus has quit ("This computer has gone to sleep") |
| [22:32:13] | <JoaoCarneiro> | url? |
| [22:32:13] | <Druplicon> | It will do path aliasing automatically; always use the "real" Drupal URL, not the path alias! |
| [22:32:13] | <Druplicon> | url: Generate a URL from a Drupal menu path. Will also pass-through existing URLs. => url($path = NULL, $options = array()) => http://api.drupal.org/api/function/url/6 |
| [22:32:49] | <jucallme> | http://drupaldojo.com/lesson/theming-views-table |
| [22:33:25] | * hunvreus has joined #drupal-support |
| [22:34:29] | * Zarabadoo has joined #drupal-support |
| [22:34:44] | <oadaeh> | Okay, I need to get some paid work done. |
| [22:35:05] | <oadaeh> | If furibondox ever shows up, tell him to look in admin/settings/filters |
| [22:36:36] | * yareckon has quit () |
| [22:37:28] | <level09> | i'm confused about whether using the same vocab for many content types or making duplicates |
| [22:38:23] | * japerry has quit () |
| [22:41:52] | <JoaoCarneiro> | oadaeh, thanks :) |
| [22:42:39] | <NateSide> | how do you remove an element from an array? |
| [22:43:00] | * bshumate has joined #drupal-support |
| [22:43:20] | * nikkiana has quit ("This computer has gone to sleep") |
| [22:43:40] | <level09> | unset |
| [22:43:44] | <level09> | unset? |
| [22:43:50] | * magicspark has joined #drupal-support |
| [22:44:27] | * canen has quit (Read error: 54 (Connection reset by peer)) |
| [22:44:27] | <NateSide> | i look it up, thanks |
| [22:44:34] | <markvandenborre> | hm, this is strange |
| [22:44:39] | <markvandenborre> | a second level piece of content |
| [22:44:50] | <markvandenborre> | doesn't seem to appear anywhere in the menu structure |
| [22:45:06] | <markvandenborre> | maybe it's the theme, because it's there for sure |
| [22:45:51] | <markvandenborre> | any ideas? |
| [22:48:18] | <NateSide> | drupal_set_messag($array) just prints Array (this is for debugging) |
| [22:49:10] | * alefteris has quit ("?????????") |
| [22:49:10] | <NateSide> | how can i print the contents of the array in a message (print_r adds an extra step, have to refresh the page) |
| [22:50:44] | * nomad411 has quit ("Back to the unreal world...") |
| [22:51:21] | * PatMac has quit () |
| [22:53:09] | * Mek has quit (Read error: 110 (Connection timed out)) |
| [22:53:11] | * Michelle2 has joined #drupal-support |
| [22:53:35] | * Michelle has quit (Nick collision from services.) |
| [22:53:36] | * Michelle2 is now known as Michelle |
| [22:53:46] | * trew has quit ("brb") |
| [22:53:52] | * trew has joined #drupal-support |
| [22:54:21] | * Boris_Barowski has joined #drupal-support |
| [22:54:38] | <Boris_Barowski> | hi all |
| [22:54:52] | * RMuilwijk has quit ("Konversation terminated!") |
| [22:54:54] | <Boris_Barowski> | anyone experience with writing modules to change the database ? :p |
| [22:54:57] | * protitude has quit ("http://www.mibbit.com ajax IRC Client") |
| [22:56:14] | <matkeane> | NateSide: print_r should work in drupal_set_message, but you can also just dump it in your code and it will be output at the top of the page - bit messy obviously, but tidier when you view the source |
| [22:56:43] | * xushi has quit () |
| [22:58:25] | * ins\\ has joined #drupal-support |
| [22:58:33] | * Singularo has quit ("Ex-Chat") |
| [22:59:01] | <markvandenborre> | I have a main menu structure like music - dance |
| [22:59:23] | <markvandenborre> | and then beneath music items like guitar, piano, flute,... |
| [22:59:29] | * |igor_ has joined #drupal-support |
| [22:59:40] | <markvandenborre> | but I can't seem to make these visible in the menu structure |
| [22:59:50] | * jucallme has quit () |
| [22:59:54] | <markvandenborre> | while in the admin interface I can see they're there |
| [22:59:56] | <NateSide> | ahha, my hook_taxonomy is getting out of memory error in the actions module |
| [22:59:59] | <markvandenborre> | any suggestions please? |
| [23:00:18] | * protitude has joined #drupal-support |
| [23:01:14] | * nikkiana has joined #drupal-support |
| [23:01:48] | <markvandenborre> | it's probably something very simple |
| [23:02:18] | <markvandenborre> | but even finding decent search words for this is not too simple |
| [23:02:26] | <level09> | admin/user/access |
| [23:02:33] | * level09 has quit ("ChatZilla 0.9.83 [Firefox 2.0.0.14/2008040413]") |
| [23:04:09] | <NateSide> | level09: that module i was working on yesterday, i think i know whats going on, i need to take the elements from array that I need and put them in a new array and pass that |
| [23:04:34] | * nikkiana has quit (Client Quit) |
| [23:05:32] | * corsair_ has quit ("Konversation terminated!") |
| [23:08:02] | <NateSide> | how do I copy elements from one array into a new array |
| [23:08:19] | <markvandenborre> | sorry for repeating, just trying to make sure that anyone who wants to help knows what my problem is |
| [23:09:11] | <NateSide> | markvandenborre: did you set the parent items expanded? |
| [23:09:45] | <markvandenborre> | NateSide: double checking |
| [23:09:52] | * NikLP has joined #drupal-support |
| [23:10:06] | * jyg has quit ("ircII EPIC4-2.4 -- Are we there yet?") |
| [23:10:31] | <NateSide> | markvandenborre: if the parent isnt expanded, the children will only show after you click on the parent |
| [23:10:47] | <markvandenborre> | they don't even show if I click the parent... |
| [23:10:48] | * sirkitree has quit () |
| [23:10:54] | <markvandenborre> | that is, if we're talking the same thing |
| [23:11:00] | * halcyonCorsair has joined #drupal-support |
| [23:11:11] | <markvandenborre> | what exactly do you mean by "set expanded"? |
| [23:11:28] | <NateSide> | markvandenborre: you using the menu module right? |
| [23:11:39] | <markvandenborre> | I think I understand English fairly well, but I'm not sure what you meant by that |
| [23:11:40] | * level09 has joined #drupal-support |
| [23:11:43] | * ins\away has quit (Connection timed out) |
| [23:12:01] | <markvandenborre> | (using the NL translation here) |
| [23:12:38] | * davidstrauss has joined #drupal-support |
| [23:13:09] | <markvandenborre> | NateSide: just to make sure: you mean /admin/build/menu-customize/primary-links right? |
| [23:13:12] | <NateSide> | markvandenborre: when you go to admin/build/menu there is a check box for expanded, if you check that box the children of that menu item will be visable weather or not you are on the page of that item |
| [23:13:39] | <NateSide> | sorry let me rephase that, left something important out |
| [23:14:10] | <markvandenborre> | NateSide: I had the ones with child nodes set to expand |
| [23:14:15] | <NateSide> | markvandenborre: when you go to admin/build/menu and click edit on a menu item there is a check box for expanded, if you check that box the children of that menu item will be visable weather or not you are on the page of that item |
| [23:15:01] | <markvandenborre> | admin/build/menu is empty |
| [23:15:08] | * mfer has joined #drupal-support |
| [23:15:11] | <markvandenborre> | (except for description of |
| [23:15:13] | <markvandenborre> | "navigation" |
| [23:15:19] | <markvandenborre> | "primary links" |
| [23:15:22] | <markvandenborre> | secundary links" |
| [23:15:24] | <markvandenborre> | ) |
| [23:16:09] | <markvandenborre> | I had made my most important pieces of content "primary links" |
| [23:16:11] | * brainycat has quit (Read error: 110 (Connection timed out)) |
| [23:16:12] | <markvandenborre> | is that wrong? |
| [23:16:51] | <markvandenborre> | ah... |
| [23:16:53] | <NateSide> | markvandenborre: that only works for the navigation menu, primary links only shows one level, if you set secondary links to the the same menu as primary-links, then after you click on a primary link its children will show beneath the primary links in secondary links, but only if your theme supports secondary links |
| [23:16:59] | <markvandenborre> | I see what's wrong |
| [23:17:05] | * davidstrauss has quit (Client Quit) |
| [23:17:09] | <markvandenborre> | http://academieninove.be/admin/build/block |
| [23:17:37] | * jackson- has joined #drupal-support |
| [23:17:38] | <markvandenborre> | I need to switch secondary links on in the side menu, right? |
| [23:17:47] | <markvandenborre> | otherwise, I won't see anything... |
| [23:18:26] | * sarah_p has joined #drupal-support |
| [23:19:47] | <markvandenborre> | NateSide: so I need to make these a different type of links than Primary, right? |
| [23:19:49] | * kthomas_vh has quit (Read error: 104 (Connection reset by peer)) |
| [23:20:54] | * cgardner has quit () |
| [23:21:01] | <markvandenborre> | sorry for not seeing this, please point me at a relevant url if the questions I'm asking are too boring |
| [23:21:14] | <kostly> | what is the best starting bsic theme |
| [23:21:27] | * halcyonCorsair has quit (Remote closed the connection) |
| [23:23:17] | * Singularo has joined #drupal-support |
| [23:23:24] | <NateSide> | kostly: best starting theme for customization; zen |
| [23:23:28] | <matkeane> | markvandenborre: like NateSide said - primary and secondary links are processed and themed in a specific way. if you create a new menu from scratch you can be a bit more flexibile in how you set things up. |
| [23:24:14] | * mlsamuelson has quit () |
| [23:24:17] | <markvandenborre> | matkeane: sorry for being a bit slow |
| [23:24:59] | <matkeane> | markvandenborre: no, I can see why you went that route - primary links for main content - but it has its limitations |
| [23:25:34] | <markvandenborre> | what exactly do I do to attache the "important, comes first" content to permanently visible "labels" (whatever they're called) |
| [23:25:35] | * JW has quit (Read error: 110 (Connection timed out)) |
| [23:25:59] | <markvandenborre> | then have some substructure "labels" visible when one of these is clicked |
| [23:26:00] | * protitude has quit ("http://www.mibbit.com ajax IRC Client") |
| [23:26:07] | <markvandenborre> | (or hovered over, would be even better) |
| [23:26:32] | * amarrero has quit (Read error: 113 (No route to host)) |
| [23:26:52] | <matkeane> | markvandenborre: what are your menu items? taxonomy terms, book pages, plain old nodes? |
| [23:27:17] | <NateSide> | markvandenborre: at admin/build/menu/settings set Menu containing primary links and Menu containing secondary links to Primary links, then set up your secondary links as children of the primary item, and they will only show up after youve clicked (and go to the page of) the primary item |
| [23:28:11] | * xur1z has quit () |
| [23:28:28] | <NateSide> | markvandenborre: if you want the same secondary links all the time, create a new Menu, and call that secondary links or whatever you want to call it, and on admin/build/menu/setting set that meny to the secondary links and they will show up all the time there |
| [23:29:05] | <NateSide> | does any one know how to copy 2 or more elements out of an array into a new array? |
| [23:29:14] | <markvandenborre> | NateSide, I did this, it worked, and I'm starting to understand |
| [23:29:20] | <markvandenborre> | thanks a lot! |
| [23:29:50] | <NateSide> | no problem |
| [23:30:16] | <NateSide> | im pretty sure its in the docs some where |
| [23:32:14] | * catch has quit (Remote closed the connection) |
| [23:33:20] | * dereine has quit (Remote closed the connection) |
| [23:34:45] | * catch has joined #drupal-support |
| [23:35:08] | * catch has quit (Remote closed the connection) |
| [23:36:28] | * catch has joined #drupal-support |
| [23:37:33] | <eean> | is their a guide somewhere on upgrading internatlization from drupal 5 to drupal 6? |
| [23:39:29] | <_DT> | i18n? |
| [23:39:29] | <Druplicon> | Drupal 6 contains some internationalization features, like content translation but menu items, taxonomy terms and variables will need contrib modules like http://drupal.org/project/i18n |
| [23:39:59] | <_DT> | eean ^^ |
| [23:40:31] | <_DT> | quote: The module layout and dependencies have important changes, so it is advised to disable all the modules an then re-enable them after Drupal 6 core upgrade. |
| [23:40:46] | <eean> | well I did that |
| [23:40:53] | <eean> | looks like I have to use this module |
| [23:41:08] | <eean> | and then be screwed by drupal 7 since contrib modules never have good update paths |
| [23:41:10] | <eean> | >.< |
| [23:41:48] | * davexoxide has quit () |
| [23:42:30] | * luison has quit ("Ex-Chat") |
| [23:43:31] | * halcyonCorsair has joined #drupal-support |
| [23:44:04] | * halcyonCorsair has quit (Remote closed the connection) |
| [23:45:03] | * halcyonCorsair has joined #drupal-support |
| [23:45:26] | * maynards-girl has joined #drupal-support |
| [23:45:29] | * jonhattan has quit ("Ex-Chat") |
| [23:46:51] | * Boris_Barowski has quit () |
| [23:48:00] | * josedazagz has joined #drupal-support |
| [23:48:19] | * hunvreus_ has joined #drupal-support |
| [23:48:28] | * Zarabadoo has quit (Read error: 104 (Connection reset by peer)) |
| [23:50:08] | * matkeane has left #drupal-support () |
| [23:51:01] | * cgardner has joined #drupal-support |
| [23:51:58] | <level09> | I really prefer the localizer module |
| [23:52:14] | <level09> | i18n seems to have many issues |
| [23:52:36] | <level09> | on D5 |
| [23:52:53] | <NikLP> | level09: eh? same thing no? |
| [23:52:58] | <NikLP> | nvm :p |
| [23:53:07] | <level09> | lol |
| [23:53:46] | <level09> | i was shocked when I found out that i18n for D5 and i18n for D6 are not related |
| [23:54:47] | * josedazagz has left #drupal-support () |
| [23:55:17] | * josedazagz has joined #drupal-support |
| [23:56:10] | * level09 has quit (Read error: 104 (Connection reset by peer)) |
| [23:56:23] | * josedazagz has quit ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org") |
| [23:57:23] | * JoaoCarneiro has quit ("Leaving") |
| [23:57:36] | * JoaoCarneiro has joined #drupal-support |
| [23:57:50] | * hunvreus has quit (Read error: 110 (Connection timed out)) |
| [23:59:08] | * ins\\ is now known as ins\away |