Project

General

Profile

Administration Tool problems » History » Version 1

Amber Herold, 04/15/2010 10:04 AM

1 1 Amber Herold
h1. Administration Tool problems
2
3
4
5
6
7
8
* <link linkend="InstT_Appl_xml">Application xml files can not be imported</link>.
9
10
11
* <link linkend="InstT_php_display_error">Something is not showing in the administration
12
tool components</link>
13
14
15
16
17
18
19
20
h2. Incomplete xml-imported application
21
22
23
24
25
26
<title>Why:</title>
27
*  This is a random error that happens ocassionally.
28
29
30
How do you know it is imcomplete? <link linkend="Admin_app_view">view the
31
application</link> saved in the database in the web admin tool
32
33
34
35
36
Solution: Try it again with a new version number in the xml file.
37
38
39
40
41
*  check your xml file. It should end with something like this:
42
43
44
45
<pre>    </sqltable>
46
<!-- bindingspecdata -->
47
<!-- launchedapplicationdata -->
48
<!-- nodespecdata --></pre>
49
50
51
52
If not, you need to download the correct xml file again.
53
54
55
*  edit the correct xml file. For example, you have MSI-T.xml, then you need
56
to change
57
58
59
60
<pre> - Application :MSI-T (1.6)
61
- Version     :1</pre>
62
63
64
65
To<pre> - Application :MSI-T (1.6)
66
- Version     :2</pre>
67
68
69
AND, more importantly,
70
71
72
73
<pre>  <!-- ApplicationData -->
74
<sqltable name="ApplicationData" >
75
<field name="DEF_id" >331</field>
76
<field name="DEF_timestamp" >2005-05-26 14:16:36</field>
77
<field name="name" >MSI-T (1.6)</field>
78
<field name="version" >1</field>
79
</sqltable></pre>
80
81
82
83
To<pre>  <!-- ApplicationData -->
84
<sqltable name="ApplicationData" >
85
<field name="DEF_id" >331</field>
86
<field name="DEF_timestamp" >2005-05-26 14:16:36</field>
87
<field name="name" >MSI-T (1.6)</field>
88
<field name="version" >2</field>
89
</sqltable></pre>
90
91
92
*  import this xml file to your dbem again.
93
94
95
*  check the result by refreshing the web browser and then <link
96
linkend="Admin_app_view">select the new version of the application to view on
97
screen</link>.