Hello, I'm trying to create a Drupal site. When I went to create the admin account I got the error: <quote> warning: Compilation failed: characters with values > 255 are not yet supported in classes at offset 27 in /home/ingots/public_html/drupal/modules/user.module on line 243. </quote> The offending part of the code is: <quote> if (preg_match('/[\x{80}-\x{A0}'. // Non-printable ISO-8859-1 + NBSP '\x{AD}'. // Soft-hyphen '\x{2000}-\x{200F}'. // Various space characters '\x{2028}-\x{202F}'. // Bidirectional text overrides '\x{205F}-\x{206F}'. // Various text hinting characters '\x{FEFF}'. // Byte order mark '\x{FF01}-\x{FF60}'. // Full-width latin '\x{FFF9}-\x{FFFD}]/u', // Replacement characters $name)) { // <---- **OFFENDING LINE** <-- <-- return t('The username contains an illegal character.'); } </quote> But the name I entered was just "admin". It shouldn't have caused any problems. Does anyone know what's wrong and how I can fix it? Best, Daniel. -- /\/`) http://opendocumentfellowship.org /\/_/ /\/_/ ...and starting today, all passwords must \/_/ contain letters, numbers, doodles, sign / language and squirrel noises.
/home/ingots/public_html/drupal/modules/user.module on line 243.
You are using a version of PHP that is lower than the minimum required version specified in INSTALL.txt. -- Morbus Iff ( all of the above - the only checkbox worth checking ) Technical: http://www.oreillynet.com/pub/au/779 Culture: http://www.disobey.com/ and http://www.gamegrene.com/ icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus
Morbus Iff wrote:
/home/ingots/public_html/drupal/modules/user.module on line 243.
You are using a version of PHP that is lower than the minimum required version specified in INSTALL.txt.
Hmmm... I have 4.3.2 and Drupal says 4.3.3 :-( Hard to believe that a *micro* version would make a difference... Cheers, Daniel. -- /\/`) http://opendocumentfellowship.org /\/_/ /\/_/ ...and starting today, all passwords must \/_/ contain letters, numbers, doodles, sign / language and squirrel noises.
Hard to believe that a *micro* version would make a difference...
It does. The search.module of Drupal does UTF-8-based searching, and that is not supported in 4.3.2 PCRE engine - only in 4.3.3. -- Morbus Iff ( small pieces of morbus loosely joined ) Technical: http://www.oreillynet.com/pub/au/779 Culture: http://www.disobey.com/ and http://www.gamegrene.com/ icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus
Morbus Iff wrote:
Hard to believe that a *micro* version would make a difference...
It does. The search.module of Drupal does UTF-8-based searching, and that is not supported in 4.3.2 PCRE engine - only in 4.3.3.
I see. I've asked the sysadmin if he can install something newer than 4.3.2. I guess that in theory I could just not have a search box, but I'd rather not risk it. This is for a production site, I want it to work. Thank you for the help. Cheers, Daniel. -- /\/`) http://opendocumentfellowship.org /\/_/ /\/_/ ...and starting today, all passwords must \/_/ contain letters, numbers, doodles, sign / language and squirrel noises.
participants (2)
-
Daniel Carrera -
Morbus Iff