This is a user group of drupal developers of Pune, India
Drupal Developer | E-nova Technologies Pvt. Ltd.
E-nova Technologies is an Indo-French vibrant company based in Delhi and working mainly with clients in Europe. We are specialized in Magento & Drupal websites and OpenERP Solutions. We also created a unique French E-learning portal - Click On French (www.clickonfrench.com).
We are a member of the Indo-French Chamber of Commerce and offer our customers a wide range of outsourcing services, from offshore web design to the creation of e-commerce platforms, Search Engine Optimization (SEO) or the implementation of total ERP systems. We always base the projects on Open-Source.
How to create custom add/edit/delete module in D7 ?
Hello,
Did anyone know how to create custom module in D7 for simple add/edit/delete. I am new to module development. Need to create one content type which have add/edit/delete functionality. CCK is not a option for us as lots of additional functionality needed here. We have already checked http://drupal.org/node/361112 but this is only for creating block.
Anyone have proper links to share or custom module created which will be helpful for review will be great help.
Thank you
Tejas Mehta
Drupal Developers | CityIT Solutions Private Limited
Hello members,
We currently have following positions available in our Pune office:
1. Team Lead
- Person should have experience of handling team of 5-7 web developers.
- Person should have overall experience of 4-6 years and preferably 1+ year of team management.
Other responsibilities include:
- Requirement gathering, defining project scope, client communication and project execution / delivery.
2. Sr. Drupal Developers / Sr. PHP Developers
Read moreSenior Drupal Developer | Red Hat
Red Hat is expanding it's use of Drupal and growing our development team in Pune to meet those needs. We're looking for candidates who are already active in the Drupal community and want an opportunity to continue to participate while joining the world's largest open-source software company.
The role will be a part of a global team and focus on creating great software for Red Hat's customer portal (http://access.redhat.com) and global support services organization. We are hiring a small team and have opportunities for both front-end and back-end developers.
Full details are here:
Read moreDrupal Developer/Lead for Europe | Encora Inc
• SOA Architecture and competences (SOAP, REST, JSON,…)
• Continuous Integration / Deployment by using:
o Unit Testing and mainly Test-Driven development
o Functional Testing & Mock-services
o If possible knowledge of Cucumber and Capibara
o Selenium as an automatic functional test framework
• Drupal 6 & Drupal 7
o Entitities to enable and support volatile data aggregation
o Multi-Site solutions and integrations
o Views as a presentation layer and a SOA producer
o Drush as a command-line Drupal configurator
Video Module video conversion error
Installed Video Module nd Flowplayer Module and configured as per guidelines.
Configured flowplayer for "flv" files.
Created video content type , then created content, on uploading video it show thumbnails that mean ffmpeg is working fine.
But when i submit videos other than "flv", it's not getting converted and flowplayer showing "200 stream not found error".
When i check drupal log it shows some ffmpeg command executed, which when runn from command line does not convert video.
I think thats why video not getting converted and flowplyer cannot find it in folder.
Hi node_load_multiple() taking too much time.
Hi All,
I am using Drupal 7.
In a page for loading a node of particular content type, I am using node_load_multiple().
Due to some unknown reason, the page is taking too time that the page never loads.
Can somebody please tell me what must have gone wrong?
Looking forward for help from somebody.
Thanks.
Hi node_load_multiple() taking too much time.
Hi All,
I am using Drupal 7.
In a page for loading a node of particular content type, I am using node_load_multiple().
Due to some unknown reason, the page is taking too time that the page never loads.
Can somebody please tell me what must have gone wrong?
Looking forward for help from somebody.
Thanks.
looking for a pune based drupal developer.
looking for a pune based drupal developer.
Hi node_load_multiple() taking too much time.
Hi All,
I am using Drupal 7.
In a page for loading a node of particular content type, I am using node_load_multiple().
Due to some unknown reason, the page is taking too time that the page never loads.
Can somebody please tell me what must have gone wrong?
Looking forward for help from somebody.
Thanks.
drupal developer pune | symanto software solutions LLP
Need experienced technical expert for PHP/MySQL and Drupal with minimum 2 years experience for pune location.
He or she will be responsible for making the multimedia websites for our clients.
The approximate duration of the project is 2 months part time and will be a contract project.
email me your CV to symanto.resume at gmail dot com, Please mention in the subject line Drupal developer.
Remove default <html> and other headers from drupal theme.
Hi all,
I am stuck in a problem in drupal theming.
I have created a theme in drupal 7.
I have also created template suggestion for a content type.
But, problem is that when drupal 7 loading the suggested template, it is adding ... and much more.
Also, adding some html in footer.
I need only me theme's (template's) HTML and not anything from Drupal.
Can somebody help me?
Thanks in advance,
Amol
Drupal Meetup
This is a call for the monthly drupal meetup at SICSR, some of the things we wanna discuss:
1> Possibility of a drupal camp in coming 5-6 months.
2> Drupal 7 contrib status
3> General networking and Q/A
4> Ad hoc
Venue:
Room no. 706
Symbiosis Institute of Computer Studies and Research,
1st Floor, Atur Centre, Gokhale Cross Road,
Model Colony, Pune - 411016.
Message me via contact form if you need to know more.
Sr. Developer | Syscon Infoway Pvt. Ltd.
We are looking for 1yr+ experienced candidates proficient in PHP/MySQL for web application development using Drupal modules.
The desired candidate is expected to be capable of handling projects independently as well as with team.
Brief Job Description:
- HTML, CSS, Javascript, AJAX
- PHP, MYSQL
- Drupal CMS
Skills
-Ability to Learn quickly
-Excellent communication and problem solving skills
Type: Full Time Job
Please send across your below mentioned details:
-Resume
-Current CTC
-Expected CTC
-Notice Period
Contact Details:-
Interview Address:
experienced drupal/php/sql developer team | Simplified Computing
Hi All,
We are a german company, looking for a experienced drupal/php/sql developer team to support the development of our projects.
If you have good experience with drupal coding standards, PHP and SQL contact us.
Drupal / PHP developer | OpenWeb
Need experienced technical expert for PHP/MySQL and Drupal with minimum 2 years experience.
The Technical experts will be responsible for making the website for a client in Australia.
No Travel to Australia is required.
The approximate duration of the project is 3 months part time and will be a contract project.
email me your CV.
mandar_thosar@hotmail.com
The Project will start this week. So only send emails if you can work starting next monday, i.e. Monday 21st March 2011
Add content type CCK field to join with custom table field in drupal view 2
Hi,
I have following table structure:
CREATE TABLE IF NOT EXISTS views_price (
nid int(11) NOT NULL,
price float NOT NULL,
UNIQUE KEY nid (nid)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
In order to expose my price field in view, I wrote following code
function mymodule_views_api() {
return array(
'api' => 2,
'path' =>
drupal_get_path('module', 'mymodule'),
);
}
function mymodule_views_data() {
$data['views_price'] = array(
'table' => array(
'group' => 'My Custom Data',
'title' => 'views_price',
'join' => array(
'node' => array(
'left_field' => 'nid',
DrupalCon in South Asia? 2013?
Is the South Asian community ready to take on a DrupalCon, perhaps as soon as January 2013?
If so, now would be the perfect time to start discussing it. It would be great to open this discussion before DrupalCon Chicago, next month. Of course, if you are going to Chicago, we can have a very informal meeting there.
To be clear, there has been no discussion, let alone a decision of any kind by the Drupal Association. This is strictly a fact-finding mission by me to gauge the level of interest in your communities.
Read morePHP/Drupal Professionals! | Initiative 31
Please provide your profile at neha.verma94@yahoo.com
About Initiative31
Read moreDrupal monthly meetup
Hi,
This is the call for monthly drupal meetup at SICSR, agenda for this meetup will be:
1> Discuss drupal sessions at GNUNIFY.
2> General drupal query discussion.
3> Drupal networking.
Please come up with ideas for GNUNIFY as that will be the focus of this meetup.
venue:
Room no. 706
Atur Centre, Gokhale Cross Road, 411016
Model Colony, Shivaji Nagar, Pune, Maharashtra 411016, India
Cheers

