I have installed the vtiger 5.4.0 in my pc and I want create a webform to Contact Module ... How I will be able to select another module (only exists Leads) when I create a webform?
Module : Select a module in which records should be captured. Vtiger only supports capturing leads.
reference: https://wiki.vtiger.com/vtiger6/index.php/Webforms
Related
i followed this solution to run customer django command programmatically , but it is limited for just one database connection.
I have django app configured with multiple database , is it possible to run custom django command using specific database connection?
exactly like when we use connections["DB_NAME_CONNECTION"].cursor() to execute an sql query
thanks a lot for your help!
One option is to create a new settings module (here's a guide) that contains your specific database connection configuration, and then use that settings module when using call_command():
management.call_command('mycommand', '--settings=mysite.settings.specificconnection')
Odoo10 / Windows
I installed a module "my_app" in Odoo10, and want to change the model : app_model.py following this steps :
add field to app_model.py and save it
restart the odoo server form windows "services"
Activate developper mode
Update the application list
Upgrade the application
The problem is that when i open my app model in the configuration menu=>Database structure=>models , the added field doesn't appear
I tried to uninstall the app (to install it later with the new model), but Odoo didn't remove the app_model from the list of models (after app list update, restart service and even retart the server).
did i miss something ?
I finally found the problem, it was due to an Indentation error.
When i added the field, i used linebreak in the editor, so it was at the same level of the other fields. But the editor used automatically tab when the other fields were indented with spaces.
It was that simple, but gave me a headache.
I created a custom module in vtiger crm version 6.5. The module was created successfully but the problem is when I click the module name a blank page appears in the view=List page.
I put the contents of vtiger version folder to module folder also language folder and change file name and class name with my module name, but how can I create view model action files according to our need?
I found some interesting tutorial in making entity module this is the link. http://community.vtiger.com/help/vtigercrm/developers/extensions/examples/entity-module.html and it is working. can you please use it
You can also create module from command line using below steps:
open the cmd prompt, go to the vtlib/tools folder and execute the Console.php file:
>cd {YourPathToCRM}/vtlib/tools
>php -f console.php
After run the command you get steps for creating various things for your CRM:
Welcome to vTigercrm Creator.
This tool will enable you to get started with developing extensions with ease.
Have a good time. Press CTRL+C to "quit".
Choose the options below:
1. Create New Module.
2. Create New Layout.
3. Create New Language Pack.
4. Create Test Language Pack.
5. Import Module.
6. Update Module.
7. Remove Module.
Enter your choice:
Use technical documentation for create new vTiger modules:
https://www.vtiger.com/products/crm/help/5.2.0/VtigerCRM_5.2.0_Vtlib.pdf
I've installed October cms on Wamp with Composer. All seemed ok- I have tables in my database, but can't enter /backend. When I type file:///C:/wamp/www/october/backend (place of my project) I get blank page.
In order to access the PHP compiler you MUST run your site as if it were on the internet i.e. using the browser address bar and NOT click on the php file using explorer. Like this
localhost/october
or
localhost/october/backend
If you dont go via Apache then nothing will spot the <?php tags. It is Apache that recognises these tags and passes the script to PHP for interpretation and execution.
I constructed my opencart shop on localhost, then i tried to move it on my public host.
I created new DB on my server, i imported the DB from my computer to my server. I copied all my opencart site from computer to web hosting. I corrected both config.php files.
Everything seemed be good, but i can'y access the most important part,
admin panel - settings - edit shop
it gives me this message:
Notice: Error: Unknown column 'name' in 'order clause'
Error No: 1054
SELECT * FROM customer_group ORDER BY name ASC in /homepages/32/d367271145/htdocs/opencart/system/database/mysql.php on line 49
somebody has the idea what am i doing wrong?
thankx
marekova#alumni.uv.es
Check your database and ensure you have entries under 'name' in customer_group.
It sounds like you've tried to use a database with the wrong version. Be sure your opencart versions are identical.
If they are, then the only possible way it would work on one and not the other is if like cleverbot has said, the database table doesn't contain the "name" column. You can check that in phpMyAdmin or whatever other DB admin tool you used to upload the database. The simplest solution would be to simply export customer_group from your localhost and re-import it into your live version