Danil

Results 15 comments of Danil

Hi @paynterf it is case-sensitive by default. For example, try to search for `wordpress` and `WordPress`. Have you got some wrong result?

I tried search for `A_circ` and replace it with word `A_replace`. What I got: Row | Column | Old value | New value -- | -- | -- | --...

I've checked, current S&R version while `Create SQL file` always return `''` for DB table field value `NULL` because of this statement (it doesn't check for NULL) ``` foreach (...

@bueltge I will check it more carefully and then will sent.

I was wrong, my suggestion doesn't help and make other problem. So, I can suggest only just add one more `elseif` for to avoid turning `NULL` into `' '` while...

Hi @damonbeals, could you write here what version of WP, S&P plugin do you use?

I checked function test_recursive_unserialize_replace(ReplaceTest.php) for a, O, C, o, s, S, +, ; (as it described in medium link). Then I added to serializedDataProvider() some data for checking and it...

Hi @bueltge, Sure, I will try.

I checked `$s = "s:+3:\"grr\";"; let out s:3:\”grr\”;`. Current version of `recursive_unserialize_replace()` for `'s:+3:\”grr\”;'`, return `'s:18:"s:+3:\”grr\”;";'`, that is correct, according suggested rules in Medium post. `'s:+3:\”grr\”;'` is not wp serialized...

Hi @widoz, I'm sorry for unclear explanation. `'s:+3:\”grr\”;` is not wp serialized value. If I understand correctly, one of main idea in Medium post that the `recursive_unserialize_replace` should not perform...