ispCP - Board - Support
Ispcp v1.0.3 testers needed - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Development Area (/forum-1.html)
+--- Forum: Announcements (/forum-6.html)
+--- Thread: Ispcp v1.0.3 testers needed (/thread-7707.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


RE: Ispcp v1.0.3 testers needed - Roland - 11-22-2009 02:11 AM

that IS the version I DID installed, maybe you forgot to archive tar gz or something im sure that is the version I have.
I just double checked:

Please enter administrator e-mail address: admin-pr@cc.btn.ro

E-mail address not valid!
Please enter administrator e-mail address:


both errors are there. using http://www.isp-control.net/downloads/snapshots/ispcp-omega-trunk-20091121.tar.gz


RE: Ispcp v1.0.3 testers needed - Nuxwin - 11-22-2009 03:10 AM

(11-22-2009 02:11 AM)Roland Wrote:  that IS the version I DID installed, maybe you forgot to archive tar gz or something im sure that is the version I have.
I just double checked:

Please enter administrator e-mail address: admin-pr@cc.btn.ro

E-mail address not valid!
Please enter administrator e-mail address:


both errors are there. using http://www.isp-control.net/downloads/snapshots/ispcp-omega-trunk-20091121.tar.gz

No, the latest changes are into the branch omega-1.0.3, not in trunk. I'll merged the latest changes later. Wink

Code:
# aptitude update && aptitude install subversion
# cd ~
# svn export http://isp-control.net/ispcp_svn/branches/omega-1.0.3 ./ispcp-omega-1.0.3

You understand ?


RE: Ispcp v1.0.3 testers needed - Roland - 11-22-2009 05:18 AM

yes, also there is another huge bug in debian squeeze, postgrey is not starting by default, therefore no email is received, postfix returns errors.
i don't know if it's debian fault, but I kind of think it is.
try to reproduce and see.


RE: Ispcp v1.0.3 testers needed - Roland - 11-22-2009 04:39 PM

new bug:

http://domain.tld/orderpanel/

when client clicks for more info gets You do not have permission to access this interface!


RE: Ispcp v1.0.3 testers needed - chems - 11-23-2009 04:31 AM

I installed ispCP v.1.0.3 (Nightly Build 21.11.2009). It seems to be running without any problems. I will report if there are upcoming probs in the future Smile

Good work team !


RE: Ispcp v1.0.3 testers needed - Nuxwin - 11-23-2009 04:52 AM

(11-22-2009 04:39 PM)Roland Wrote:  new bug:

http://domain.tld/orderpanel/

when client clicks for more info gets You do not have permission to access this interface!

Hello ;

This is not a bug. This is normal behavior. Indeed, there may be several resellers, each with their own hosting plans.

You must submit the link that is attached to the reseller:

Example:

http://192.168.0.130/orderpanel/index.php?user_id=2

where '2' is the id of my first reseller. Understand ?


RE: Ispcp v1.0.3 testers needed - aseques - 11-24-2009 07:31 PM

We found a bug in the accounting system for POP3 mails in dovecot.
It's related to the closed ticket #1597, the problem with that solution is that it doesn't work with people leaving the mail on the server.
So instead of checking the size=number field we should check the retr=x/number
We did a patch that is already on our servers, that changes this behavior to a correct one, it shouldn't affecte courier accounting meanwhile fixing dovecot.
The patch is attached

Cheers


RE: Ispcp v1.0.3 testers needed - Jillian - 12-06-2009 10:46 PM

Is there information about 1.0.3 publish date?


RE: Ispcp v1.0.3 testers needed - Nuxwin - 12-07-2009 12:16 AM

When is done.


RE: Ispcp v1.0.3 testers needed - Jillian - 12-07-2009 12:37 AM

I found little bug from 1.0.3.
In traffic bar at /admin/index.php is missing images.
Location is /themes/omega_original/images/stats_left.png and /themes/omega_original/images/stats_right.png, should be /themes/omega_original/images/bars/stats_right.png and /themes/omega_original/images/bars/stats_left.png.
I coudn't find image /themes/omega_original/images/stats_progress.png

File: gui/themes/omega_original/admin/index.tpl, lines 165-173. (Fixed to this)
Code:
<tr>
<td width="3"><img src="{THEME_COLOR_PATH}/images/bars/stats_left.png" width="3" height="20"></td>
<td width="405" class="stats"><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="statsBar"><img src="{THEME_COLOR_PATH}/images/stats_progress.png" width="{BAR_VALUE}" height="20"></td>
</tr>
</table></td>
<td width="3"><img src="{THEME_COLOR_PATH}/images/bars/stats_right.png" width="3" height="20"></td>
</tr>