respect for time between clients and developers should be mutual- its a 2 way street...

re: this post on drupal.org, here- http://drupal.org/node/1013370
as a distance worker- it is important to work with clients that understand and appreciate the services you can provide them

over the years i have learned that there are many people that will never be on the same page with you- and that's totally ok, its a free world and people should wake up every day happy and do good work, and roll with those that want to roll with you

so its a two way street-
but the post above shows that this client thinks it's his way, or the highway

and in his efforts to determine a method to find or rate a reliable developer-
based on whether or not they want to deal with him- and his particular way of doing business-

he might want to get a clue...
and understand that real developers and distance workers already have such a system-
for dealing with prospective, current and former clients

its called mutual respect-
for time and work, both clients and developers

and it works pretty good... as in if there isn't any mutual respect-
then there isn't going to be any good work, either

i invested time and effort to try to help this client-
learn about this job and see if i was going to be able to obtain the desired results-

  • and then did some good work at the start-
  • fixed his theme as he requested, perfectly

Error on Editing a page

Hi,

I encountered a problem on my site during editing a simple page but before it was working fine.
Below is the error that shows.

Fatal error: Call to undefined method InsertQuery_mysql::condition() in D:\projects\xampp\xampp\htdocs\working\sites\all\modules\panels\panels_node\panels_node.module on line 305

I'm using d7 rc1, Panels 7.x-3.0-alpha1, Rules 7.x-2.x-dev, Views 7.x-3.x-dev.
I'm really new to drupal and I have no idea of the cause of the error, maybe a module?or code?
Please help me on this.

Looking Forward,
John

Drupal 7 apache solr search module not supported CCK fields for filteration

Hi,
I am using drupal 7.0-alpha7 for testing apachesolr search integration module. I got success in installing this with connection of apache solr server. Even I have added some CCK fields(text field, image field, file field..) and now I want that fields will come in the filter list of apache solr settings page.

In the apache solr search integration information they are given that they also support for CCK fields for filtration.
but in drupal 7 we are not able to find such feature in it.

updating the Form Block Module from 6.x to 7.x and multiple hook_block_view calls

Ok. I am pretty green to this stuff and am attempting to update a module. I've posted to the module's issue thread but it isn't too active and I want to learn as much as I can to help out around here.

I am wanting a block that displays the node creation form for a custom content type in drupal 7.

MORE DETAIL THAT IS UNNECESSARY -- It's basically a 'enter your email here' that sends reminder emails with rules or something (need to get this first before I can even start on the problems with getting it to send periodic emails with relation to the node creation date). I'm even interested in making this into its own module and use the experience as a tool to learn php and drupal - quite a task!

Here is the code I have now:
<?php
// $Id: formblock.module,v 1.4.2.2 2008/12/10 02:42:39 mikeyp Exp $

/**
* Implementation of hook_block_info().
*/

function formblock_block_info() {
foreach (node_type_get_names() as $type => $name) {
if (variable_get('formblock_expose_' . $type, 0)) {
$blocks[$type] = array(
'info' => t('@name form block', array('@name' => $name)),
);
}
}
$blocks['user_register'] = array(
'info' => t('User registration form'));
if (module_exists('contact')) {
$blocks['contact_site'] = array(
'info' => t('Site-wide contact form'));
}
return $blocks;
}

/**

Inconsistencies with comment and node 'created' times.

function theme_preprocess_node(&$vars) {
  $vars['created']; // contains "1289327678" as value
}
function theme_preprocess_comment(&$vars) {
  $vars['created']; // contains "Mon, 01/03/2011 - 15:44" as value
}

Why do these not contain the same date format? Thanks.

After hours of searching.. How do you display the Article nodes on pages other than the front page?

Alright, so I've looked up how to do this in many different ways, and have yet to come to a conclusive solution.

All I want to do is display the articles that show up on the frontpage, in drupal, on another page that I created called News.

I know the $page['content'] is different on each page node, but I just want to know a simple way to display the articles on that page. I'll even go as far as inserting PHP code on the page--node, because that's honestly what I've been doing to get things to work.

Anyway, any help is appreciated.

Thanks

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x