We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 28307
    • 9 Posts
    Thanks vhollo. I tried the new version, and it worked perfectly with two instances. But it still send two mails when reset a password. Any ideas?
      • 30524
      • 22 Posts
      hey

      i found the WebloginPe Service "messageuser".

      But I cant find any Documentation or example. just a post from scotty in which the says this feature is not implemented yet (post was a long time ago).

      Is there a plan to add this feature to wple?

      matic
        • 1169
        • 312 Posts
        Hi traedamatic

        I have been working on WLPE to update various fixes and enhancements.

        Yesterday I was workinkg with list users.

        There is an option there to message user dont know if it works yet as I found some problems with that section but should be working in upcomming version 1.3.2 Beta.

        If I had not found these problems it would have beeen ready for Beta testing.
        Should not be too long +/- one week. I said that last week. The week just gets longer.

        I will be posting Beta in the WebloginPE child board when ready.

          DEVELOPMENT ENV:- Ubuntu 12.04 | MODx Revolution 2.2.8 | LAMP 2i Apache 2.2.22 | Php 5.3.10 | Mysql 5.5.31 MySQL client version: 5.5.31
          • 21827
          • 11 Posts
          Hello!

          At me why that at password restoration comes 2 messages with an activation code on email.
            • 12983
            • 108 Posts
            Quote from: allanb at Mar 20, 2010, 02:16 PM
            I will be posting Beta in the WebloginPE child board when ready.

            Hi allanb, interesting, thanks for your efforts. Can you explain where’s the "WebloginPE child board" you speak of, where we can monitor your (eventual) updates? It would be great having a renewed shiny WebloginPE.
              • 1169
              • 312 Posts
              You are in the child board.

              Unfortunately I have hit some snags in code and at home and am working on both not enough time for everything.

              All coding is done just still busy testing.

              Nothing much new just some updates and XHTML errors fixed taking way longer than anticipated.

              About 75% through testing.

              Testing taking a lot longer than expected trying to test everything I can
                DEVELOPMENT ENV:- Ubuntu 12.04 | MODx Revolution 2.2.8 | LAMP 2i Apache 2.2.22 | Php 5.3.10 | Mysql 5.5.31 MySQL client version: 5.5.31
                • 12983
                • 108 Posts
                I understand - that’s something more than nothing, and so it’s just ok wink Bye
                  • 31471
                  • 206 Posts
                  Quote from: allanb at May 14, 2010, 03:48 PM

                  All coding is done just still busy testing.
                  Nothing much new just some updates and XHTML errors fixed taking way longer than anticipated.

                  Hi Allan!

                  What PHP version are you testing against?
                  In 5.3 function ereg is deprecated:
                  http://php.net/manual/en/reference.pcre.pattern.posix.php

                  I’ve changed some of this functions in the class to preg.

                  In webloginpe.class.php r84, line 2979:
                  if (!eregi("^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,7}$", $Email)) // pixelchutes
                  should be:
                  if (!preg_match(’/^[^@]+@[a-zA-Z0-9._-]+\.[a-zA-Z]+$/’, $Email)) // vhollo
                  (Source: http://php.net/manual/en/function.preg-match.php#96910)

                  Line 2998:
                  if (ereg("^220", $Out = fgets($Connect, 1024)))
                  should be:
                  (??? - Could somebody help plz?)

                  Line 3009:
                  if (!ereg("^250", $From) || !ereg("^250", $To))
                  should be:
                  (??? - Could somebody help plz?)

                  And if Susan didn’t remove, line 795:
                  //$notification = ereg_replace(’\[\+post\.+[a-zA-Z]+\+\]’, ’’, $notification); remove sottwell
                  should be:
                  //$notification = preg_replace(’@\[\+post\.+[a-zA-Z]+\+\]@’, ’’, $notification); // vhollo // remove sottwell

                  As a thumb rule, preg needs a delimiter character at the beginning and at the end of the pattern. This can be anything not used in the pattern itself, otherwise in the pattern it must be escaped.
                    • 1169
                    • 312 Posts
                    Thanks @vhollo

                    Am checking against PHP 5.3

                    I have changed :-

                    In webloginpe.class.php r84, line 2979:
                    if (!eregi("^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,7}$", $Email)) // pixelchutes
                    should be:
                    if (!preg_match(’/^[^@]+@[a-zA-Z0-9._-]+\.[a-zA-Z]+$/’, $Email)) // vhollo

                    Will check others. If someone can help.

                      DEVELOPMENT ENV:- Ubuntu 12.04 | MODx Revolution 2.2.8 | LAMP 2i Apache 2.2.22 | Php 5.3.10 | Mysql 5.5.31 MySQL client version: 5.5.31
                      • 19850
                      • 3 Posts
                      Does WebloginPE in Evo 1.03 also come up against a 5000 page limit?

                      i.e. could I have 100,000 users of a website using WebloginPE?