Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - fr0x

Pages: [1]
1
Installation problems / Re: Call to undefined function mb_substr()
« on: February 23, 2009, 07:45:11 pm »
Yea, this was the same problem that was breaking our install:
http://forums.opengoo.org/index.php?topic=956.0

2
Well, we got it fixed thanks to one of the IT guys here.

The issue is with this line of code:
environment/classes/localization/Localization.class.php:241:
$names['M'][$i] = mb_substr($names['F'][$i], 0, 3, 'UTF-8');

Our install of php did not have mb_substr installed so it would fail here.

Chaging that line of code to:
$names['M'][$i] = substr($names['F'][$i], 0, 3, 'UTF-8');

fixed our issues.


3
Redhat / Apache so unfortunately no common thread there :(

4
I went back and pulled back down the Beta2 build and reupped it (overwriting everything but the config and upload folders).

I'm back to a working build again (albeit Beta2 instead of the latest release build).

Is there anything I can do or try to help narrow this issue down?

5
https://xxx.xxx.xxx.xxx/opengoo/index.php is the URL I'm loading up :(

6
This is the source from the page it loads:

Code: [Select]
<script type="text/javascript">
var cant_tips = 0;
var tips_array = [];

function addTip(div_id, title, bdy) {
tips_array[cant_tips++] = new Ext.ToolTip({
target: div_id,
        html: bdy,
        title: title,
        hideDelay: 1500,
        closable: true
});
}
</script>


<div id="og_1234827491_828645-db" style="padding:7px;">
<div class="dashboard" style="width:100%;">

<div class="dashWorkspace">
<span class="name">
All workspaces</span><span class="description">
</span>
</div>

<div class="dashActions"">
<a class="internalLink" href="#" onclick="og.switchToOverview(); return false;">
<div class="viewAsList">View as list</div></a>
</div>





<table style="width:100%">
<tr><td colspan=2>
<div class="dashCalendar">
<table style="width:100%">
<col width=12/><col /><col width=12/><tr>
<td colspan=2 rowspan=2 class="dashHeader"><div class="dashTitle">Upcoming events, milestones and tasks</div></td>
<td class="coViewTopRight"></td></tr>
<tr><td class="coViewRight" rowspan=2 colspan=2 ></td></tr>

<tr><td colspan=2>

7
Upgraded from the 1.2 Beta 2 client to the 1.2.0.1 release.

Uploaded and overwrote everything but my config and upload folders.

Login screen looked and worked fine.

Now when I'm logged in I get:


If I click on the "List" link it will throw a java script error ('og is undefined').

Not sure what I'm missing.  Per reading some of the other threads I shouldn't have to run the update script (although I did anyways) and the issue still persists.  Tried reuploading the entire thing again to no avail.

Any help would be greatly appreciated.

Pages: [1]