Are you a pro Drupal coder? Let's connect for future projects

Hello,

I own a small digital ageny in Munich, Germany. And my workload is growing. I'd like to get in touch with top Drupal coders for future commercial partnerships. Among my past clients were UNAIDS and Playboy (for local projects). More interesting work is coming, like Rotary International, Dubai clients etc.

Drop me a line! (via my contact tab)

Preferably people who can speak more languages than just English! My projects are always multilingual, sometimes even mixed LTR-RTL stuff. I need people who are comfortable with that. Coding geniouses with time to kill.

I want to build some long-term connections with top coders. Dont expect any work right now. We need to 'grow' together. I don't believe in get rich quick schemes.

I will also visit DrupalCon San Francisco 2010 - let me know if we can meet up there.

My commercial focus is to acquire top clients, and to literally give the finger to the rest. I seriously cant be fucked with neither average clients, nor average coders. That's not my business.

Mathijs,
Morningtime Digital Agency
www.morningtime.com

500 Internal Server Error

I am working on a clients website who has a few problems with their drupal configuration. The site works fine, for the most part. There are however two geo-location pages for /us (USA) and for /ca (Canada) pages which return 500 Internal Server Errors yet the page still loads. I'm extremely confused on what exactly has happened here.

The client does have pathauto installed and I thought there was possibly a duplication on the URL Alias for /us or /ca but I could not find any.

Has anyone experienced something like this before? Any solutions?

CentOS - Drupal 7.x install fail.

Drupal: http://ftp.drupal.org/files/projects/drupal-7.0-alpha2.tar.gz

i have this problem:
===============
http://picasaweb.google.com/lh/photo/hRvdg7UBbZH5DE8Ifpj5LA?feat=directlink

Permission/file is in right place:
=======================
[root@www drupal]# uname -a
Linux www.....be 2.6.18-164.11.1.el5 #1 SMP Wed Jan 20 07:39:04 EST 2010 i686 i686 i386 GNU/Linux
[root@www drupal]# pwd
/var/www/html/drupal
[root@www drupal]# tree -p
.
|-- [-rwxrwxrwx] CHANGELOG.txt
|-- [-rwxrwxrwx] COPYRIGHT.txt
|-- [-rwxrwxrwx] INSTALL.mysql.txt
|-- [-rwxrwxrwx] INSTALL.pgsql.txt
|-- [-rwxrwxrwx] INSTALL.sqlite.txt
|-- [-rwxrwxrwx] INSTALL.txt
|-- [-rwxrwxrwx] LICENSE.txt
|-- [-rwxrwxrwx] MAINTAINERS.txt
|-- [-rwxrwxrwx] UPGRADE.txt
|-- [-rwxrwxrwx] authorize.php
|-- [-rwxrwxrwx] cron.php
|-- [drwxrwxrwx] includes
| |-- [-rwxrwxrwx] actions.inc
| |-- [-rwxrwxrwx] ajax.inc
| |-- [-rwxrwxrwx] archiver.inc
| |-- [-rwxrwxrwx] authorize.inc
| |-- [-rwxrwxrwx] batch.inc
| |-- [-rwxrwxrwx] batch.queue.inc
| |-- [-rwxrwxrwx] bootstrap.inc
| |-- [-rwxrwxrwx] cache-install.inc
| |-- [-rwxrwxrwx] cache.inc
| |-- [-rwxrwxrwx] common.inc
| |-- [drwxrwxrwx] database
| | |-- [-rwxrwxrwx] database.inc
| | |-- [-rwxrwxrwx] log.inc
| | |-- [drwxrwxrwx] mysql
| | | |-- [-rwxrwxrwx] database.inc

Will Drupal Do this for me

Well before I start using Drupal I would like to find out if it will work for what I have in mind, hope this is in the correct area. Anyway I need a web site that is going to be a bit multifunctional. It will need to be able to do the following.
1. Firstly I need members to be able to post articles in the different area I will have. They would also need to be able to attach files to said articles. Also images may need to be inserted into the articles. Comments also need to be posted to these articles.
2. I would also need a photo gallery that would be able to support members making sub categories to the main categories. they would also need to be able to mass upload images.
3. I would also need some type of a file vault that software and documents could be uploaded to for future downloading. This would need an easy search function as it would contain a huge volume of documentation. The same idea as the gallery where members could create sub categories if needed. Also if possible to have private areas in the file vault that would only be accessible by flagged members.

That would be my main features that I would need. Just a few other questions I need to ask.

Is Drupal compatible with IE and how is the support structure here if I need help if any bugs or problems occur.

D7: PDOException: SQLSTATE[42000]

Hello,

i now get following error:

PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''5'' at line 1: select (t1.team_name)home_team_name,(t2.team_name)away_team_name, m.home_team_id, m.away_team_id, m.home_goals, m.away_goals from {sf_match} as m left outer join {sf_team} as t1 on t1.team_id=m.home_team_id left outer join {sf_team} as t2 on t2.team_id=m.away_team_id where (m.match_day<:matchday1 or (m.match_day=:matchday2 and m.match_time<=:matchtime2)) and(m.home_team_id=:hteam or m.away_team_id=:ateam) order by m.match_day desc, m.match_time desc limit 0,:limit1; Array ( [:matchday1] => 1 [:matchday2] => 1 [:matchtime2] => 13 [:hteam] => 1 [:ateam] => 1 [:limit1] => 5 )  in _block_last_match() (line 17 of T:\xampp\htdocs\drupal7\sites\all\modules\soccerfusion\includes\block\last_match.php).

The Bug is described there: http://bugs.php.net/bug.php?id=40740

Problem is, that :limit is replaced quoted.

I solved it by using the dynamic queries:

<?php
$query = db_select('sf_match','m');
$t1alias = $query->join('sf_team', 't1', 't1.team_id=m.home_team_id');
$t2alias = $query->join('sf_team', 't2', 't2.team_id=m.away_team_id');

D7: page callback return array

Hello,

yes.. me.. again :)

I read, that page callbacks and blocks return arrays instead of HTML-text.
http://drupal.org/node/224333#menu_callback_array

In D6 it was possible to just output a single line, here "Infotext".
Converted to D7 it doesn't work

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x