Some bugs..

I'll post here what I find..

1.The first error came when I tried to register a user name.. it says i'm not allowed non-latin characters.. but latin characters is what I only used.. tested on firefox and safari.. so is not some browser issue..

Quote · 8 Jul 2009

Please specify what version of PHP installed on your server ?

Rules → http://www.boonex.com/terms
Quote · 9 Jul 2009

I had the same issue as noted in this thread. 11'th post down. As well as one other person that i know of.

http://www.boonex.com/unity/forums/topic/Dolphin-7-Beta-Bugs-Discussion.htm

My php version is 5.1.6

https://www.deanbassett.com
Quote · 9 Jul 2009

Please specify what version of PHP installed on your server ?

It's 5.1.6..

Quote · 9 Jul 2009

I had the same issue as noted in this thread. 11'th post down. As well as one other person that i know of.

http://www.boonex.com/unity/forums/topic/Dolphin-7-Beta-Bugs-Discussion.htm

My php version is 5.1.6

Please refer to the comment on this page: http://php.net/manual/de/regexp.reference.php

On RedHat Linux 5, PHP 5.1.6 is compiled with PCRE 6.6.
So you cannot use the Unicode character property.

If you want to use Unicode character property, you should uninstall RPM and install Tar ball.

Rules → http://www.boonex.com/terms
Quote · 9 Jul 2009

I had the same issue as noted in this thread. 11'th post down. As well as one other person that i know of.

http://www.boonex.com/unity/forums/topic/Dolphin-7-Beta-Bugs-Discussion.htm

My php version is 5.1.6

That worked, thanks..

ok now i finally can enter my license code while im trying to login into the admin section.. the boonex banner is gone... ok perfect it works.... BUT i try to create an account and i cant!!!!   its always says : Your username must contain only latin symbols..... but i use   webmaster   as a nickname.... it is chinese symbol???  i got the same problem while im testing the alpha.... and i told about this bug on the blog and into the forum... i cant understand why this MAJOR bug was not fixed for the beta version.... or am i the only one who got this error????   i try anything such as nickname... and got always the same error... so i cant create another account... so i only can test the website with the admin username... not very useful for testing the IM function and all the other messaging function....

Ah. Had that one written down.

Admin -> Builder -> Field Builders.

Edit the Join Form.

Click on Nickname to edit.

Go to the Advanced Section.

The code in the check field here is wrong. The code should be something like this.

return (bool)( preg_match( '/^[a-zA-Z0-9_-]+$/u', $arg0 ) and !file_exists( $dir['root'] . $arg0 ) );

Quote · 9 Jul 2009

PHP 5.2.8 (cli) (built: Dec  8 2008 04:38:12)
Copyright (c) 1997-2008 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies
with the ionCube PHP Loader v3.1.32, Copyright (c) 2002-2007, by ionCube Ltd.

And i have the same problem with the join :( i can`t register a new username... what to do ?

Quote · 16 Jul 2009

See Above post....

You can go into your Admin panel and choose builders.  Then choose profile fields.  When the builder loads click on the Nickname field (the field name is actually a link)

This will bring up a java dialog box for making changes specific to the nickname field.  Click on the advanced tab and then in the box labeled Check replace the contents with the following:

return ( preg_match( '/^[a-zA-Z0-9_-]+$/', $arg0 ) and !file_exists( $dir['root'] . $arg0 ) );

After this remember to press the save button.

That should fix your sign-up problem.

Shared Dolphin Hosting w/RMS
Quote · 16 Jul 2009

You might try this:

  • Go to plugins/phpids/IDS/monitor.php
  • Locate this line : $prefilter = '/[^\w\s\/@!?,\.]+|(?:\.\/)|(?:@@\w+)/';
  • change this line into : $prefilter = '/^[a-zA-Z0-9_-]+$/u';

It looks like my problems are gone now so I hope this might help others as well.

Quote · 5 Jan 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.