Hi,
first of all: there is indeed an error for the designers admin page (if you
don't use ldap) .... can you imagine nobody even saw it? To fox it: change
at the beginning of the file admin/include/where/admdesigners.inc the lines:
if($GLOBALS['ESPCONFIG']['auth_type'] != 'ldap_both' &&
$GLOBALS['ESPCONFIG']['auth_type'] != 'ldap_resp' &&
$GLOBALS['ESPCONFIG']['auth_type'] != 'ldap_des' &&
$_SESSION['acl']['superuser'] != 'Y' &&
count($_SESSION['acl']['pgroup']) == 0) &&
!auth_no_access(_('to access this form')) {
return;
}
to
if($GLOBALS['ESPCONFIG']['auth_type'] != 'ldap_both' &&
$GLOBALS['ESPCONFIG']['auth_type'] != 'ldap_resp' &&
$GLOBALS['ESPCONFIG']['auth_type'] != 'ldap_des' &&
$_SESSION['acl']['superuser'] != 'Y' &&
count($_SESSION['acl']['pgroup']) == 0 &&
!auth_no_access(_('to access this form'))) {
return;
}
(just the line with "count" and "auth_no_access" changed). It's fixed in CVS
now as well.
For the others: I'll look into it if you mail exact error messages, so I can
trace these and fix them asap ... (I'll also try to reproduce these) .
Please also mail the result of admin/test.php
For the condition function: I just tried it and it seems to work just fine,
what doesn't work according to you?
Franky
On Dec 17, 2007 3:33 PM, 272 adc <ad...@gm...> wrote:
> Hello everyone
>
> Does anyone has issues on phpesp 2.0.1
> Now I'm installing phpesp 2.0.1 on Apache 2.2.6 + mysql 5.1 + php 5.2.5
> and I met some issues.
>
> 1. After selecting "Manage designer account" on manage display, select add
> accounts then nothing displayed.
> 2. After inputting "general" tab, at "questions" tab sometimes, error
> messages shows up.
> (for example, after inputting "section text" and "Rate", when inputting
> next question, error message shows up. db error code is 0 )
> (and sometimes, When inputting nothing into field name, long name is
> inputted more than 30 character like L_I_S_A_******* this.)
> 3. "Condition function" does not work.
>
> I'm glad to meet helpman Thanks. mag
>
>
>
> -------------------------------------------------------------------------
> SF.Net email is sponsored by:
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services
> for just about anything Open Source.
>
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> _______________________________________________
> phpESP-general mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/phpesp-general
>
>
|