Anyone had any mysql /php issues since the upgrade to 4.3.10?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Hamtramck Rick
    Junior Member
    • Oct 2004
    • 15

    #1

    Anyone had any mysql /php issues since the upgrade to 4.3.10?

    I find all my hand coded php is unable to access mysql. I have not had a chance to look at it yet. I'm just posting this in case some else already has experienced this problem.
  • coder
    Junior Member
    • Apr 2004
    • 9

    #2
    Yes, I have had some minor problems since the PHP upgrade that involve ionCube encoded files.

    Some features in PHP5 have been back-ported into 4.3.10 which have caused some problems in the ioncube loaders that I use on some licensed scripts. There is an updated loader available from www.ioncube.com which resolves the problems.

    This only affects people that are using php scripts that have been encoded with ioncube.

    Comment

    • sdjl
      Senior Member
      • Mar 2004
      • 502

      #3
      I had issues with PHPMyAdmin on my local server.
      This was related to the Zend Optimiser.

      David
      -----
      Do you fear the obsolescence of the metanarrative apparatus of legitimation?

      Comment

      • Pedja
        Senior Member
        • Mar 2004
        • 329

        #4
        I also noticed some small glitches. Since it was in code we developed it was not problem to fix. However, who knows if there are some issues we did not notice yet.

        Comment

        • Dan
          Member
          • Mar 2004
          • 99

          #5
          Everything I have seen has stated that Zend Optimizer needs to be upgraded at the same time the PHP upgrade is done...

          Comment

          • Hamtramck Rick
            Junior Member
            • Oct 2004
            • 15

            #6
            I am using an open source routine called getID3 to return info about mp3 files. It is throwing so many errors I am just remming it out and forgetting about it for now.

            I noticed in my own code that

            This no longer works when it is within a larger foreach loop:

            foreach ($MyArrayOfArrays as $ASimpleArray)
            {
            x$ = $ASimpleArray['AColumnFromMySQL'];
            }

            It returns nothing in x$

            But this does work:

            foreach ($MyArrayOfArrays as $key => $ASimpleArray)
            {
            x$ = $ASimpleArray['AColumnFromMySQL'];
            }

            Weird!

            Comment

            Working...