PHP 5 Released

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Surrix
    Senior Member
    • Jan 2002
    • 290
    • 3.0.0 Beta 5

    PHP 5 Released

    Well the much anticipated release has come. Check it out at: www.php.net

    Also release is PHP 4.3.8
    Surrix.net: Computer help forums/articles

    The person in my avatar is Elisha Cuthbert she plays on Fox's 24
  • MrNase
    Senior Member
    • Jun 2003
    • 3575
    • 3.8.x

    #2
    Damned, i updated my webserver yesterday and it took me 2 hours... Now i have to do it again
    That's the end of that!

    Comment

    • Dean C
      Senior Member
      • Mar 2002
      • 4571
      • 3.5.x

      #3
      Great news. I read a tutorial about running PHP4 and 5 in parallel but it confused me. Maybe i'll give it a try again
      Dean Clatworthy - Web Developer/Designer

      Comment

      • Merjawy
        Senior Member
        • Sep 2002
        • 2613

        #4
        install for dummies is all you need
        I had two veriosn installed and both running and each one is needed.. not that I knew or done for a reason.. it just happend
        To be or not to be... Where the hell is the question????
        My psychiatrist told me I was crazy and I said I want a second opinion. He said okay, you're ugly too

        Live vBulletin 4.2.0 Multilingual * Alpha/Beta vB 4 - vB 5 Tier 1A
        CentOS 6.2 - Apache:2.2.15(Apache2Handler) - PHP:5.3.3 - MySQL:5.1.61
        Xampp/Win-XP - Apache v2.2.21(Apache2Handler) - PHP:5.3.8 - MySQL:5.5.16

        Comment

        • Ksilebo
          Senior Member
          • May 2001
          • 848
          • 3.0.1

          #5
          The real question is, does vB work on it? I know some other things have problems with it.

          http://i.ksilebo.com/ksicom_button.png
          http://i.ksilebo.com/simpli_button.png

          Comment

          • MrNase
            Senior Member
            • Jun 2003
            • 3575
            • 3.8.x

            #6
            vB3 will run on it. vbulletin.com may prove that and update from PHP 4.3.6 to PHP 5 ^^
            That's the end of that!

            Comment

            • Scott MacVicar
              Former vBulletin Developer
              • Dec 2000
              • 13286

              #7
              No, we saw a performance drop with PHP5 and also a bug that would break the members area and phpMyAdmin.



              This will stop most people from installing it.
              Scott MacVicar

              My Blog | Twitter

              Comment

              • M1th
                Senior Member
                • Jul 2003
                • 527
                • 3.6.x

                #8
                Originally posted by Scott MacVicar
                No, we saw a performance drop with PHP5 and also a bug that would break the members area and phpMyAdmin.



                This will stop most people from installing it.

                Hmm, it says that its fixed in the CVS snapshot.
                Chamber of Secrets - The Ultimate Harry Potter Community!

                Comment

                • filburt1
                  Senior Member
                  • Feb 2002
                  • 6606

                  #9
                  Originally posted by Ksilebo
                  The real question is, does vB work on it? I know some other things have problems with it.
                  Unless Jelsoft took it in mind quite intentionally while designing vB, I am sure there will be minor issues. The reasoning: everything is passed by reference now instead of by value, and if a function or method modifies a function/method argument, then it may cause erratic problems later during the script's execution.
                  --filburt1, vBulletin.org/vBulletinTemplates.com moderator
                  Web Design Forums.net: vB Board of the Month
                  vBulletin Mail System (vBMS): webmail for your forum users

                  Comment

                  • Colin F
                    Senior Member
                    • May 2004
                    • 17689

                    #10
                    Originally posted by filburt1
                    Unless Jelsoft took it in mind quite intentionally while designing vB, I am sure there will be minor issues. The reasoning: everything is passed by reference now instead of by value, and if a function or method modifies a function/method argument, then it may cause erratic problems later during the script's execution.
                    Umm... what
                    Best Regards
                    Colin Frei

                    Please don't contact me per PM.

                    Comment

                    • filburt1
                      Senior Member
                      • Feb 2002
                      • 6606

                      #11
                      Passing by reference:
                      PHP Code:
                      function foo($bar)
                      {
                          
                      $bar++;
                      }

                      $i 12;
                      foo($i);
                      echo 
                      $i
                      In PHP4, that prints 12 as a local copy of $bar is created. In PHP5, it will print 13 as a reference is passed and when $bar is changed, it is referenced to point to $i and $i will change.

                      So, if in vB, something like what happens in foo() is used, unforseen problems could arise.
                      --filburt1, vBulletin.org/vBulletinTemplates.com moderator
                      Web Design Forums.net: vB Board of the Month
                      vBulletin Mail System (vBMS): webmail for your forum users

                      Comment

                      • chrispadfield
                        Senior Member
                        • Aug 2000
                        • 5366

                        #12
                        Filburt, thats only for OOP; not functional code; and vb dosen't use much OOP; in PHP 5, that code would still print 12, in both PHP4 and PHP5 you would need:

                        function foo(&$bar) {

                        to make it print 13.
                        Christopher Padfield
                        Web Based Helpdesk
                        DeskPRO v3.0.3 Released - Download Demo Now!

                        Comment

                        • Wayne Luke
                          vBulletin Technical Support Lead
                          • Aug 2000
                          • 74166

                          #13
                          Originally posted by Ksilebo
                          The real question is, does vB work on it? I know some other things have problems with it.
                          I have vBulletin 3.0.3 running under PHP5 on my local machine.
                          Translations provided by Google.

                          Wayne Luke
                          The Rabid Badger - a vBulletin Cloud demonstration site.
                          vBulletin 5 API

                          Comment

                          • ManagerJosh
                            Senior Member
                            • Jun 2002
                            • 9922

                            #14
                            Originally posted by Wayne Luke
                            I have vBulletin 3.0.3 running under PHP5 on my local machine.
                            and? :P
                            ManagerJosh, Owner of 4 XenForo Licenses, 1 vBulletin Legacy License, 1 Internet Brands Suite License
                            Director, WorldSims.org | Gaming Hosting Administrator, SimGames.net, Urban Online Entertainment

                            Comment

                            • Wayne Luke
                              vBulletin Technical Support Lead
                              • Aug 2000
                              • 74166

                              #15
                              Originally posted by ManagerJosh
                              and? :P
                              And what? I haven't encountered any problems as of yet. No email on the machine though so I might install an SMTP server to test out email.
                              Translations provided by Google.

                              Wayne Luke
                              The Rabid Badger - a vBulletin Cloud demonstration site.
                              vBulletin 5 API

                              Comment

                              widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
                              Working...