Re: [development] [support] Is it possible to upload FILE without a form ?

2012-12-07 Thread Austin Einter
t; > > On 12/6/2012 8:02 PM, Austin Einter wrote: > > Dear All > I am struggling to upload word documents to our drupal 7 site without > having a form. > > It is easy when you have a form (just can use file_save_upload api), but > think of a situation you have excel sh

[development] Is it possible to upload FILE without a form ?

2012-12-06 Thread Austin Einter
Dear All I am struggling to upload word documents to our drupal 7 site without having a form. It is easy when you have a form (just can use file_save_upload api), but think of a situation you have excel sheet at server, where 100 file names are mentioned, and you want to get the files one by one.

Re: [development] Learning More on Apache Solr Attachments

2012-10-16 Thread Austin Einter
Dear All Looks whole list is silent in this regard (apache solr file attachment). If you can share whatever idea you have on below queries, it will help me to great extent. Thanks Austin On Tue, Oct 16, 2012 at 6:22 AM, Austin Einter wrote: > Dear All > I want to learn more on apache sol

Re: [development] SQL Query Doubt

2011-04-16 Thread Austin Einter
anks a lot for helping me. Regards Austin. On Sat, Apr 16, 2011 at 5:17 PM, Robbie The Geek wrote: > > SELECT EmployeeID FROM {tablename} WHERE Skill IN ( 'PHP', 'Java'); > > > - Reply message - > From: "Austin Einter" > To: > Cc: "J

Re: [development] SQL Query Doubt

2011-04-16 Thread Austin Einter
Sat, 16 Apr 2011 16:09:59 +0530 > Austin Einter wrote: > > > Hi All > > > > Lets say I have one table in below format. > > > > EmployeeID.. Skill > > -- > > 1.

[development] SQL Query Doubt

2011-04-16 Thread Austin Einter
Hi All Lets say I have one table in below format. EmployeeID.. Skill -- 1...PHP 1...SQL 1...Java 1VoIP 2

[development] Doubts on VIEWS & DATA module - please help me

2011-04-08 Thread Austin Einter
Hi All I have around 5 different tables containing employee records (Name, skill set , current company, years of experience etc). I am trying to show the employee records for different kind of search. One seacrh may be, show all the employees having knowledge on PHP and must have 5+ years of expe

Re: [development] How to get the auto-increment value

2011-03-28 Thread Austin Einter
Is there any way to find the maximum number of rows present in a table. If it is possible, that should solve my problem. - Austin On Mon, Mar 28, 2011 at 4:29 PM, Austin Einter wrote: > Thanks Nancy. > Do you mean that in my code I should not put the value for "cid". That >

Re: [development] How to get the auto-increment value

2011-03-28 Thread Austin Einter
to provide the value for an auto increment field. > "Db_last_insert_id()" is how you get the value *after* the insert, if you > need it at all. > > > *Nancy* > > > > Injustice anywhere is a threat to justice everywhere. -- Dr. Martin L. > King, Jr. > > &g

[development] How to get the auto-increment value

2011-03-28 Thread Austin Einter
Hi All I have a table, where 'cid' field is of type "serial". Schema declaration is -> *"'cid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE, ),"* Aim is to have an incremented value for it. The code is as below *$lastid = 0; for($delta = 0; $delta < $all_companies; $del

Re: [development] problem with theme form drupal_render

2011-03-25 Thread Austin Einter
Instead of "print $messages", please try "drupal_set_message($message)" Thanks Austin. On Sat, Mar 26, 2011 at 3:25 AM, Damian Adriel Perez Valdes < damian.adr...@gmail.com> wrote: > hi: > > i have a problem. I have a theme for my form, but I can't show the message > error. What can I do ? > >

[development] Doubt on Index and Primary key

2011-03-17 Thread Austin Einter
HI All In .install file, in hook_schema unction, we are mentioning index field and primary key field. I am wondering, how to choose which one should be index and which one should be primary key. Does that affect the performance (in search, add, delete of records). What I am thinking at this point

Re: [development] Module install / database schema doubt

2011-03-17 Thread Austin Einter
schema should be named resume_submit_schema and you should call > drupal_(un)install_schema('resume_submit') as the parameter is the module > name whos schema is being (un)installed. It's fine to leave the table name > as resume_table. > > Dave Reid > d...@davereid.net

Re: [development] Module install / database schema doubt

2011-03-16 Thread Austin Einter
? > If so, it would be worth uninstalling the module and reinstalling it. > (Uninstalling is not disabling it). > Devel module provides a nice utility to let you easily uninstall and > reinstall a module to aid with debugging your install files. > > Lee > > On Thu, 2011-03

[development] Module install / database schema doubt

2011-03-16 Thread Austin Einter
Hi All I have a small install file as below. * array( 'uid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'name' => array('type' => 'varchar', 'not null' => TRUE, 'default' => ''), 'email' => array('type' => 'varchar', 'not null' => TRUE, 'defau

Re: [development] Form textfield data retreive

2011-03-15 Thread Austin Einter
, Austin Einter wrote: > Hi All > I have a small working custom module. Code is as below. > > It's a simple form. > > In one line I have 4 fields (company, start date, end date, checkbox). > Below I have "add/remove more companies" button. > > If user clicks &

[development] Form textfield data retreive

2011-03-15 Thread Austin Einter
Hi All I have a small working custom module. Code is as below. It's a simple form. In one line I have 4 fields (company, start date, end date, checkbox). Below I have "add/remove more companies" button. If user clicks "add/remove more companies" button, it adds one more line having company, star

Re: [development] AHAH Questions

2011-03-11 Thread Austin Einter
h. If you build a form starting with that > foundation, then please come back for help at that point. > > Thanks, > -Randy > > On Thu, Mar 10, 2011 at 9:10 PM, Austin Einter > wrote: > > Hi All > > I am quite new to AHAH, strugling to find how it works. I referred >

[development] AHAH Questions

2011-03-10 Thread Austin Einter
Hi All I am quite new to AHAH, strugling to find how it works. I referred documentation and poll module. I want 3 fields in a fieldset, *Company, Start-Date, End-Date*. I have a button "*Add More Company*", if clicked, it should add a new row having *Company, Start-Date, End-Date *dynamically. How

Re: [development] Huge Database Operation

2011-03-06 Thread Austin Einter
; > *Nancy* > > > > Injustice anywhere is a threat to justice everywhere. -- Dr. Martin L. > King, Jr. > > > -- > *From:* Larry Garfield > > Assuming your number is in fact 70 million records > > The degree to which you need to

[development] Huge Database Operation

2011-03-06 Thread Austin Einter
Hi I am looking at storing huge data in database (approximately 70,000,00 records). Each record consists of 1. Name 2. Contact number 3. Resume (may vary from 50KB to 150KB) 4. Skill set And when a user(having role based permission) wants to search database and retreive those user's record having

Re: [development] How to make Dynamic webpage

2011-01-26 Thread Austin Einter
age. Regards Austin. On Wed, Jan 26, 2011 at 9:48 AM, nan wich wrote: > You don't need Panels for this. All you need is a simple form. Webform > might even do it. > > > *Nancy* > > Injustice anywhere is a threat to justice everywhere. -- Dr. Martin L. > King,

[development] How to make Dynamic webpage

2011-01-25 Thread Austin Einter
Hi All I am quite new to Drupal, and trying hard to learn Drupal. My apologize to all, if I am asking a silly question here. I want to implement a dynamic web page for employee work report track purpose using Drupal. 1) At the top of page I want a view (in table format), that will show existing

[development] Ctools install issue in Drupal7

2011-01-20 Thread Austin Einter
Hi All I am trying to install CTools 7.x-1.0-alpha2in Drupal 7. It is not installing. One time appache server crashed, one time found error as mentioned below. ( ! ) Fatal error: Maximum execution time of 30 seconds exceeded in C:\MyWeb\www\necs\modules\system\sys

[development] Security and Drupal

2011-01-09 Thread Austin Einter
Hi All I just made a site using Drupal6.2 and in front page I have kept "user login" block. I hosted this site using some third party web server. I tried to login to new site from my PC using my user name and password and prior to that I was capturing the packets those were being send/received by