Install 1.2.4 fails at setting admin password  Bottom

  • Error! Spaces and special characters are not allowed in a user name. Please correct your entry and try again.
    If use manual install cannot log in.
    Is it something to do with encryption methods, or character sets
    Any ideas appreciated
  • I'm facing the same problem;
    Even after modifying the code and bypass the "uservalidatefailed" error, I still can't login.

    I have request a new password, and then tried with it, also, not working.

    Any help?



    Edited by sidahmed on Sep 01, 2010 - 04:56 AM.
  • Please check out this topic:
    http://community.zikula.org/module-Forum-viewtopic-topic-58145-start-0.htm
    It helped for me...

    - Igor
  • Thanks very much Igor,

    My problem is solved using the solution in the link you have posted.

    thanks,
    Sidahmed
  • You're welcome.
    Glad it also worked for you, it seems they're working on the issue.

    Greetings,
    - Igor
  • Thanks for your quick response.
    as suggested in other thread I
    changed line 890 in includes\pnAPI.php
    from
    if (preg_match('/[^\p{L}\p{N}_\.]/u', $var)) {
    to
    if (strstr($var, chr(160)) || strstr($var, chr(173))) {
    Installation proceeded and could log on.

    This thread then has discussions about which characters are/should be allowed. Before this change, I couldn't find any combination of very basic characters that would work.
    Warren
  • Warren,

    Your PHP installation does not have PCRE Unicode Properties support. In 1.2.5 we will work around not having this, but it will be required in 1.3. You should work with your hosting provider to get that enabled.

    --
    - Robert

    Ohloh profile for Robert Burkhead

    Stack Overflow profile for RobertB at Stack Overflow, Q&A for professional and enthusiast programmers
  • rmburkhead

    Warren,

    Your PHP installation does not have PCRE Unicode Properties support. In 1.2.5 we will work around not having this, but it will be required in 1.3. You should work with your hosting provider to get that enabled.


    I know it's nice from a developer's view, but not all hosting providers supports it. Any CentOS-based solution requires manual recompilation of PCRE.

    Regards,
    Eduardo
    http://eduardo.costa.nom.br
  • 0 users

This list is based on users active over the last 60 minutes.