Setting up a Development Environment » History » Version 26
Max Milbers, 05/11/2011 07:43 PM
1 | 1 | Rick Glunt | h1. Setting up a Development Environment |
---|---|---|---|
2 | |||
3 | h2. Introduction |
||
4 | |||
5 | If you start developing for the project or just with VirtueMart you may have already set up a development environment with an IDE and a SVN program. |
||
6 | |||
7 | If you haven't done so or if you want to know what to do better, you can follow the instructions given on this page. |
||
8 | |||
9 | The following programs are recommended for working with VirtueMart and synchronizing the working directory with the local SVN repository: |
||
10 | |||
11 | 16 | Max Milbers | * SmartSVN or TortoiseSVN http://tortoisesvn.net/downloads.html |
12 | * Eclipse for php or aptana (very good PHP IDE and free!) |
||
13 | 1 | Rick Glunt | |
14 | 12 | Max Milbers | Of course there are other programs that can do the same as the ones mentioned above, but remember: these are just recommendations. You need in everycase jdump installed. |
15 | 1 | Rick Glunt | |
16 | h2. Setup an IDE and SVN |
||
17 | |||
18 | If you want to join the project it is important that you have a similar environment like the other devs, so it makes it easier for everyone to help each other. |
||
19 | |||
20 | 23 | Max Milbers | Please use NOT the standard jos_ prefixed, please use something new, here in the exampel we still use jos_. This helps to find hardcoded prefixes. At best is everyone uses another one. |
21 | 1 | Rick Glunt | |
22 | 23 | Max Milbers | You should also install your joomla in a domain with a subdomain and path, for exampel shop.localhost/vm2/. This helps to find path problems. |
23 | |||
24 | Setup up an IDE, I suggest you follow the explanations here: http://docs.joomla.org/Setting_up_your_workstation_for_Joomla!_development |
||
25 | |||
26 | 15 | Oscar van Eijk | For development and testing we use JDump (http://extensions.joomla.org/extensions/miscellaneous/development/1509). In official releases (beta, RC and, of course, final), all dump() calls are removed or outcommented, but for SVN checkouts of development releases this extension is required. |
27 | 1 | Rick Glunt | |
28 | 6 | Max Milbers | h3. SVN-Basics: |
29 | 1 | Rick Glunt | |
30 | 6 | Max Milbers | For pure installation information look at the chapter "Installation of virtuemart into your IDE". The SVN folder structure is setup with 3 root folders; trunk, tags and branches. The trunk folder is used for curent active development. The tags folder is used for public releases. The branches folder can be used for code branches. |
31 | |||
32 | 1 | Rick Glunt | The structure found under these root folders mimic the structure in a typical Joomla installation, however, only contain the VirtueMart code. This gives us the ability to easily commit and checkout directly from a Joomla installation as described above. |
33 | |||
34 | There are 3 different folders for backend, frontend and modules |
||
35 | 17 | Max Milbers | |
36 | 1 | Rick Glunt | * trunk/virtuemart/administrator/components/com_virtuemart ;pure vm |
37 | 17 | Max Milbers | * trunk/virtuemart/administrator/language ;mixed |
38 | 23 | Max Milbers | * trunk/virtuemart/components/com_virtuemart ;pure vm |
39 | 17 | Max Milbers | * trunk/virtuemart/language ;mixed |
40 | * trunk/virtuemart/plugins ;mixed |
||
41 | * trunk/virtuemart/plugins/vmpayment ;pure vm |
||
42 | * trunk/virtuemart/modules/ ;mixed |
||
43 | 1 | Rick Glunt | |
44 | The /trunk is your joomla base root = jRoot. |
||
45 | |||
46 | 6 | Max Milbers | At best is if you have a joomla installation and make 1 checkout for back and frontend. Use for checkout on the joomla base root: |
47 | 1 | Rick Glunt | |
48 | 2 | Rick Glunt | svn co https://dev.virtuemart.net/svn/virtuemart/trunk/virtuemart |
49 | 1 | Rick Glunt | |
50 | After updating you should have the newest version of VirtueMart |
||
51 | |||
52 | If you want to check the mails you may want to use hamster as mailserver |
||
53 | |||
54 | h2. Installation of virtuemart into your IDE |
||
55 | 6 | Max Milbers | |
56 | Now there are three ways. Be aware that the joomla installation should work. |
||
57 | 1 | Rick Glunt | |
58 | h3. Use the virtuemart installer to set the right entries for using virtuemart. |
||
59 | |||
60 | 23 | Max Milbers | My preferred method is at the end, the manual installation! But it needs manual executing of sql (provided though). So when you want to avoid phpmyadmin, try one of the first two ways. |
61 | 22 | Max Milbers | |
62 | 23 | Max Milbers | try this steps: |
63 | 22 | Max Milbers | # Transfer Joomla files in a directory (example: directory called Joomla) |
64 | # Install Joomla to create the database |
||
65 | # Install VM with the installer to install VM tables in the database [[Create virtuemart installer]]. |
||
66 | # Download also the all-in-one payment plugin installer at http://dev.virtuemart.net/projects/virtuemart/files |
||
67 | # Checkout VM in an empty directory (You need to call that directory virtuemart to fit the name from SVN directory structure)), |
||
68 | # Transfer Joomla files in the directory called virtuemart |
||
69 | 1 | Rick Glunt | # change Joomla configuration file with the database name given on step 2, and give the correct tmp path. |
70 | 22 | Max Milbers | |
71 | Advantage: you can use the virtuemart installers |
||
72 | Disadvantage: you need to handle two different directory in your http directory and edit the configuration file |
||
73 | |||
74 | 23 | Max Milbers | or use them: |
75 | 22 | Max Milbers | This method just needs that you manually delete the virtuemart files after the installation to be able to perform the checkout (most svn clients dont overwrite existing files). |
76 | 6 | Max Milbers | # This means download or create the installer of virtuemart and install it in joomla [[Create virtuemart installer]]. |
77 | 1 | Rick Glunt | # Download also the all-in-one payment plugin installer at http://dev.virtuemart.net/projects/virtuemart/files |
78 | 6 | Max Milbers | # Before you can checkout the svn you should delete the files that are installed by the vm installer. Just delete this directories |
79 | 1 | Rick Glunt | * administrator/components/com_virtuemart |
80 | * components/com_virtuemart |
||
81 | 6 | Max Milbers | * plugins/vmpayment |
82 | 1 | Rick Glunt | and to prevent warnings the language files named en-GB.com_virtuemart.ini in |
83 | * administrator\language |
||
84 | 23 | Max Milbers | * language |
85 | 4. AFTER that configure the SVN, directly into your joomla base directory. |
||
86 | |||
87 | 22 | Max Milbers | Advantage: you can use the virtuemart installers |
88 | Disadvantage: you need to delete the right files |
||
89 | |||
90 | 23 | Max Milbers | h3. Use manual installation and the right sql to inform joomla that virtuemart exists. |
91 | 1 | Rick Glunt | and here my preferred method |
92 | 24 | Max Milbers | |
93 | 22 | Max Milbers | # Open your IDE and make a project (call it for exampel vm2) |
94 | 5 | Max Milbers | # Set httpd directory to the parent directory (workspace) and best with subdomain like shop.localhost/vm2 |
95 | 6 | Max Milbers | # Checkout the svn |
96 | # copy joomla files into workspace/vm2 (of course just merge the directories, when it is asking. There must be a merge, but no override of files) |
||
97 | # Use the right sql to inform joomla that virtuemart exists. |
||
98 | 23 | Max Milbers | # Execute the following sql commands with phpmyadmin. Be aware that these sql assume that you use the prefix jos for your tables. |
99 | 1 | Rick Glunt | |
100 | 21 | Max Milbers | This is for virtuemart: |
101 | 1 | Rick Glunt | with joomla 1.5 |
102 | 21 | Max Milbers | <pre> |
103 | 1 | Rick Glunt | INSERT INTO `jos_components` (`id`, `name`, `link`, `menuid`, `parent`, `admin_menu_link`, `admin_menu_alt`, `option`, `ordering`, `admin_menu_img`, `iscore`, `params`, `enabled`) VALUES |
104 | 25 | Max Milbers | (NULL, 'VirtueMart', 'option=com_virtuemart', 0, 0, 'option=com_virtuemart', 'VirtueMart', 'com_virtuemart', 0, '../components/com_virtuemart/assets/images/vmgeneral/menu_icon.png', 0, '', 1); |
105 | 21 | Max Milbers | </pre> |
106 | 19 | Max Milbers | |
107 | 1 | Rick Glunt | with joomla 1.6 |
108 | 21 | Max Milbers | <pre> |
109 | 1 | Rick Glunt | INSERT INTO `jos_extensions` (`extension_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES |
110 | 21 | Max Milbers | (10007, 'virtuemart', 'component', 'com_virtuemart', '', 0, 1, 0, 0, '{"legacy":true,"name":"VirtueMart","type":"component","creationDate":"May 2011","author":"The VirtueMart Development Team","copyright":"\\tCopyright (C) 2011 The Virtuemart Team. All rights reserved.","authorEmail":"soeren|at|virtuemart.net","authorUrl":"http:\\/\\/www.virtuemart.net","version":"2.0.0","description":"Online-Shop \\/ Complete E-Commerce system for Joomla 1.6","group":""}', '{}', '', '', 0, '0000-00-00 00:00:00', 0, 0); |
111 | </pre> |
||
112 | |||
113 | and |
||
114 | <pre> |
||
115 | INSERT INTO `jos_menu` (`id`, `menutype`, `title`, `alias`, `note`, `path`, `link`, `type`, `published`, `parent_id`, `level`, `component_id`, `ordering`, `checked_out`, `checked_out_time`, `browserNav`, `access`, `img`, `template_style_id`, `params`, `lft`, `rgt`, `home`, `language`, `client_id`) VALUES |
||
116 | (465, 'main', 'VirtueMart', 'virtuemart', '', 'virtuemart', 'index.php?option=com_virtuemart', 'component', 0, 1, 1, 10007, 0, 0, '0000-00-00 00:00:00', 0, 1, '../components/com_virtuemart/assets/images/vmgeneral/menu_icon.png', 0, '', 277, 278, 0, '', 1); |
||
117 | </pre> |
||
118 | 1 | Rick Glunt | |
119 | 26 | Max Milbers | after that use */administrator/index.php?option=com_virtuemart&view=updatesmigration&task=refreshCompleteInstall* to install the virtuemart tables. |
120 | |||
121 | |||
122 | 7 | Max Milbers | For information on adding the plugins, please refer to [[Plugin system]]. |
123 | 17 | Max Milbers | |
124 | 18 | Max Milbers | For information on adding the modules, please refer to [[Modules system]]. |