Jump to content

Upgrade 3.4 to 4.6.9 error converting UTF8


Go to solution Solved by Stuart Silvester,

Recommended Posts

                                if ( $batchBytes > ( $this->_data['max_allowed_packet'] - ( ( $this->_data['max_allowed_packet'] / 100 ) * ( \count( $batch ) * 0.3 ) ) ) )
                                {
                                        /* Remove last row */
                                        $nextBatch = array_pop( $batch );

                                        static::log( "Max packet hit with " . $batchBytes . 'b with ' . \count( $batch ) . ' rows' );
                                }

                                /* If we have moved the only row from $batch to $nextbatch, then process that now */
                                if ( \count( $nextBatch ) and ! \count( $batch ) )
                                {
                                        $batch     = $nextBatch;
                                        $nextBatch = array();
                                }

 

Link to comment
Share on other sites

2 minutes ago, dutchsnowden said:

Can I skip somehow UTF8 conversion and do it later? Convert manually?

No, if you skip UTF8 conversion your entire site will be unreadable.

Try changing

if ( \count( $nextBatch ) and ! \count( $batch ) )

to

if ( \is_array( $nextBatch ) and \count( $nextBatch ) and ! \count( $batch ) )

 

Link to comment
Share on other sites

image.png.4bc8c5546e35d701af8434738f07e561.png

Keep fingers crossed. AND HUGE THANK YOU!

For me it's now or never. I cannot go to sleep until I upgrade.

 

5 minutes ago, Stuart Silvester said:

Your screenshot doesn't show the same issue, did you click convert and continue the UTF8 conversion?

Changed as you instructed, hit refresh at convert and it started as normal.

image.thumb.png.c6cb869a736c508f74b66433b5506bb4.png

Not sure, I did something wrong? I definitely hope not.

 

Edited by dutchsnowden
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...