You are not logged in.
After the instalation of GLPI i created a new user but i can't associate a profile to it. The principal page (home) appear in blank. I using glpi user (default) but in the top right corner don't appear (Sys-glpi) in this case appear (glpi). I have configured another glpi site and appear more information on the principal page , for example, personal view, global view, group view and everybody. I don't know what to do to resolve this.
I would greatly appreciate your help
Offline
I explain to get more detail about the problem. The site and the database are in diferent servers. I configured firstly in two deployment servers succesfully. However I configured another glpi site in service server and the problem appear. The problem is that the main page is not displayed completely. It page not show the information in the page's central area, i think that is in java sript. But in my browser (firefox) the first site in the develop server the central page was showed succesfully. In others pages in this site appear the same problem.
I would greatly appreciate your help
Offline
more details
In the area where the page does not display information and instead only see a white background the firebug reports the following:
<div id="page">
<div style="background-image: url('/front/cron.php');"></div>
<div id="tabspanel" class="center-h"></div>
<script type="text/javascript">
var tabpanel = new Ext.TabPanel({
applyTo: 'tabspanel',
width:950,
enableTabScroll: true,
resizeTabs: false,
collapsed: true,
plain: true,
plugins: [{
ptype: 'tabscrollermenu',
maxText : 50,
pageSize : 30
}],
items: [{
title: "Vista personal",
id: 'Central$1',autoLoad: {url: '/ajax/common.tabs.php',
scripts: true,
nocache: true, params: 'target=/front/central.php&itemtype=Central&glpi_tab=Central$1&id=0'}, listeners:{ // Force glpi_tab storage
beforeshow : function(panel) {
/* clean content because append data instead of replace it : no more problem */
/* Problem with IE6... But clean data for tabpanel before show. Do it on load default tab ?*/
/*tabpanel.body.update('');*/
/* update active tab*/
Ext.Ajax.request({
url : '/ajax/updatecurrenttab.php?itemtype=Central&glpi_tab=Central%241',
success: function(objServerResponse) {
//alert(objServerResponse.responseText);
}
});
}
}},{
title: "Vista de grupo",
id: 'Central$2',autoLoad: {url: '/ajax/common.tabs.php',
scripts: true,
nocache: true, params: 'target=/front/central.php&itemtype=Central&glpi_tab=Central$2&id=0'}, listeners:{ // Force glpi_tab storage
beforeshow : function(panel) {
/* clean content because append data instead of replace it : no more problem */
/* Problem with IE6... But clean data for tabpanel before show. Do it on load default tab ?*/
/*tabpanel.body.update('');*/
/* update active tab*/
Ext.Ajax.request({
url : '/ajax/updatecurrenttab.php?itemtype=Central&glpi_tab=Central%242',
success: function(objServerResponse) {
//alert(objServerResponse.responseText);
}
});
}
}},{
title: "Vista global",
id: 'Central$3',autoLoad: {url: '/ajax/common.tabs.php',
scripts: true,
nocache: true, params: 'target=/front/central.php&itemtype=Central&glpi_tab=Central$3&id=0'}, listeners:{ // Force glpi_tab storage
beforeshow : function(panel) {
/* clean content because append data instead of replace it : no more problem */
/* Problem with IE6... But clean data for tabpanel before show. Do it on load default tab ?*/
/*tabpanel.body.update('');*/
/* update active tab*/
Ext.Ajax.request({
url : '/ajax/updatecurrenttab.php?itemtype=Central&glpi_tab=Central%243',
success: function(objServerResponse) {
//alert(objServerResponse.responseText);
}
});
}
}},{
title: "Todos",
id: '-1',autoLoad: {url: '/ajax/common.tabs.php',
scripts: true,
nocache: true, params: 'target=/front/central.php&itemtype=Central&glpi_tab=-1&id=0'}, listeners:{ // Force glpi_tab storage
beforeshow : function(panel) {
/* clean content because append data instead of replace it : no more problem */
/* Problem with IE6... But clean data for tabpanel before show. Do it on load default tab ?*/
/*tabpanel.body.update('');*/
/* update active tab*/
Ext.Ajax.request({
url : '/ajax/updatecurrenttab.php?itemtype=Central&glpi_tab=-1',
success: function(objServerResponse) {
//alert(objServerResponse.responseText);
}
});
}
}}]});/// Define view pointtabpanel.expand();// force first load
function loadDefaultTab() {
tabpanel.body=Ext.get('tabcontent');
// See before
tabpanel.body.update('');
tabpanel.setActiveTab('Central$1');}// force reload
function reloadTab(add) {
var tab = tabpanel.getActiveTab();
var opt = tab.autoLoad;
if (add) {
if (opt.params)
opt.params = opt.params + '&' + add;
else
opt.params = add;
}
tab.getUpdater().update(opt);}
</script>
Offline
The firebug report in the site 1 (the error don't appear)
<html class=" ext-strict">
<head>
<body class=" ext-gecko ext-gecko3">
However in the site 2 (the error appeard)
<html>
<head>
<body>
Offline
In the server where the error appeard are installed PHP Version 5.3.3-7+squeeze8 and GLPi version 0.83
Offline