 |
| << | September 2010 | >> |
| Su |
Mo |
Tu |
We |
Th |
Fr |
Sa |
| |
|
|
1 |
2 |
3 |
4 |
| 5 |
6 |
7 |
8 |
9 |
10 |
11 |
| 12 |
13 |
14 |
15 |
16 |
17 |
18 |
| 19 |
20 |
21 |
22 |
23 |
24 |
25 |
| 26 |
27 |
28 |
29 |
30 |
|
|
|
|
|
 |
 |
|
| Goto page 1, 2, 3 Next |
rhoobler Post subject: joomla component for vTiger web forms 5.0.2
|
Wed Jan 24, 2007 5:09 pm Posts: 40
|
| |
|
Attached is a component directory that works in Joomla. It didn't take long to create a vtwebform mod and update the vtiger files...
You also need to add this to your joomla database:
INSERT INTO `jos_components` ( `id` , `name` , `link` , `menuid` , `parent` , `admin_menu_link` , `admin_menu_alt` , `option` , `ordering` , `admin_menu_img` , `iscore` , `params` )
VALUES (
NULL , 'vtwebform', 'option=com_vtwebform', '0', '0', '', '', 'com_vtwebform', '0', '', '0', ''
);
Copy the com_vtwebform to joomla's /components directory and add a menu item selecting the component com_vtwebform. That's it.
A .zip install file will be available soon :)
| Description: |
| version 1. Easily add webforms to your joomla 1.0 install. |
|
 Download |
| Filename: |
com_vtwebform.zip |
| Filesize: |
305.08 KB |
| Downloaded: |
1014 Time(s) |
|
|
|
|
|
 |
greggster Post subject: joomla component for vTiger web forms 5.0.2
|
Tue Feb 06, 2007 2:58 am Posts: 66 Location: San Francisco
|
| |
|
Is this meant to work with the joomla-vtiger intregration modules? I am trying this but there is no place to specify the vtiger server - I am not integrating this particular joomla install with vtiger, just want the lead capture part...
Thanks
Gregg
_________________ Mochabomb - Web Design and Hosting for Geeks
|
|
|
|
rhoobler Post subject: Re: joomla component for vTiger web forms 5.0.2
|
Tue Feb 06, 2007 3:32 am Posts: 40
|
| |
|
Yes. This is just the lead capture part.
The only thing you "should" have to do is change the portal server around line 25 in /components/com_vtwebform/vtwebform.php. Sorry I left this out before. I had thought about it but didn't change the post.
On Line 26 you can set to show Leads or Contacts. The current value is Leads.
Thanks,
Roy
|
|
|
|
greggster Post subject: Re: joomla component for vTiger web forms 5.0.2
|
Tue Feb 06, 2007 3:43 am Posts: 66 Location: San Francisco
|
| |
|
Thanks for the reply - so if I do not have the integration components, can I still use this module, and what tweaks would be needed?
Thanks,
Gregg
_________________ Mochabomb - Web Design and Hosting for Geeks
|
|
|
|
greggster Post subject: Re: joomla component for vTiger web forms 5.0.2
|
Tue Feb 06, 2007 8:13 am Posts: 66 Location: San Francisco
|
| |
|
Once I removed my .htaccess file that I blocked the public and the webform with, it worked flawlessly - thanks for such a great component!!
_________________ Mochabomb - Web Design and Hosting for Geeks
|
|
|
|
rhoobler Post subject: Re: joomla component for vTiger web forms 5.0.2
|
Tue Feb 06, 2007 1:57 pm Posts: 40
|
| |
|
| greggster wrote: | Thanks for the reply - so if I do not have the integration components, can I still use this module, and what tweaks would be needed?
Thanks,
Gregg |
You don't need to download the webforms from vtiger. They are included in this download. I modified them to work with Joomla.
Other comments are posted here. Just one file to change (vtwebform.php I think).
|
|
|
|
greggster Post subject: Re: joomla component for vTiger web forms 5.0.2
|
Thu Feb 15, 2007 9:13 pm Posts: 66 Location: San Francisco
|
| |
|
First of all, thanks for this component, works wonderfully!!
I had a problem with form throwing a error:
PHP Fatal error: Cannot redeclare checkinputarray()
when I submitted with fields empty here are the details and fix:
in send_data.php I had to add the absolute path to index.php - it was including the joomla index.php, instead of the one for the Lead webform:
change: include("index.php");
to: include("/full/unix/path/to/com_vtwebform/Lead/index.php");
ex: include("/home/someuser/public_html/joomla/components/com_vtwebform/Lead/index.php");
|
|
|
|
greggster Post subject: Re: joomla component for vTiger web forms 5.0.2
|
Sat Mar 03, 2007 8:06 am Posts: 66 Location: San Francisco
|
| |
|
See post below.
_________________ Mochabomb - Web Design and Hosting for Geeks
Last edited by greggster on Sat Mar 03, 2007 8:18 pm; edited 1 time in total
|
|
|
|
greggster Post subject: Re: joomla component for vTiger web forms 5.0.2
|
Sat Mar 03, 2007 8:33 am Posts: 66 Location: San Francisco
|
| |
|
First of all, thanks to the vtiger group for all their work and time - VTiger is a killer app!! Also, thanks to vtiger forum user "rhoobler" for making the vtiger webforms into a Joomla component.
In this update - contributed some codework - added some features to the Lead form: validation, tableless css driven, email confirmation, fat-java-fu, etc.
A demo can be seen http://mochabomb.com/Demo/cms/index.php?option=com_vtwebform&Itemid=26
Documentation is online at http://mochabomb.com/Docs/VTiger-webforms-Lead.html and attached in this post. It covers install, config, how it works, what files and changes are to be made, adding custom fields, dropdown examples, etc.
The standalone version is the vtiger webforms Lead component.
** Note - read this post *************************** http://forums.vtiger.com/viewtopic.php?t=13412 about Joomla install - and the README with the Joomla component zipfile - this vital step is NOT in attached doc I created.
OpenSource is awesome - enjoy!!
********** Note - in send_data.php there is a typo - visitoremailto is spelled vistoremailto - an "i" is missing - I noticed first when in my test set-up the visitor did not get an email and httpd error logs. Apologies for any frustration.
| Description: |
| Documentation for vtiger webforms |
|
 Download |
| Filename: |
VTiger-webforms-Lead.html |
| Filesize: |
28.36 KB |
| Downloaded: |
1878 Time(s) |
| Description: |
| Updated Webform Lead - standalone |
|
 Download |
| Filename: |
Lead-RC1-standalone.zip |
| Filesize: |
84.4 KB |
| Downloaded: |
686 Time(s) |
| Description: |
| Updated Corrected Joomla component |
|
 Download |
| Filename: |
com_vtwebform.zip |
| Filesize: |
394.83 KB |
| Downloaded: |
818 Time(s) |
_________________ Mochabomb - Web Design and Hosting for Geeks
Last edited by greggster on Tue May 01, 2007 11:25 pm; edited 3 times in total
|
|
|
|
Balduin Post subject: Re: joomla component for vTiger web forms 5.0.2 Senior Member
|
Sat Mar 03, 2007 10:52 am Posts: 2898 Location: Berlin
|
| |
|
Awesome! What I like most is the fact that you provided a well written documentation with the code.
Please vtiger team make this a part of your core product release.
_________________ http://www.crm-now.de --> professional vtiger CRM based SaaS for Europeans
http://www.illuminetic.com--> professional vtiger CRM based SaaS for USA
http://www.vtigerserver.com --> sophisticated vtiger CRM hosting
|
|
|
|
|
|
| |