(Issue summary updated after comments from #17 and below)
Many users report after updating or migrating to a Drupal version like Drupal core 9.5.7 or above, the following error gets reported in different shades of it in detail:
TypeError: htmlspecialchars(): Argument #1 ($string) must be of type string, array given in htmlspecialchars() (line 432 of core\lib\Drupal\Component\Utility\Html.php)
As of Drupal 11.0.0, a similar experience occurs if a value given to Html::escape() is NULL:
Drupal\Component\Utility\Html::escape(): Argument #1 () must be of type string, null given, called in /var/www/html/web/core/lib/Drupal/Component/Render/FormattableMarkup.php on line 238
This issue has been modified and converted into a feature request for core handling. The original reporter provided an error output showing that some Views field formatting has caused the error in his case. Others reported to have a WSOD now making the site not maintainable no more caused by other contrib modules.
Some see this after generating content with the Devel module (GitLab issue): TypeError: Drupal\Component\Utility\Html::escape(): Argument #1 ($text) must be of type string, null given.
(Note: Use the patch provided here to make your site operable again and help by uncommenting the check code to find out your individual cause).
Summary
After collecting some user reports it finally turned out soon, that this issue can quickly turn into a misinforming collection basin for the same TypeError message. For different reasons and causes in each of the cases. Reason for this TypeError caused in escape{} is that Arguments of Type Array accidently get handed over to Html.php escape{} and run thru htmlspecialchars(), where Type String is mandatory. Why this happens NOW so often in different individual cases and what has changed so that this collusion happens and suddently becomes obvious in such mass occurance is different in each scenario and should be cleared in the respective issue queues of the subsystems or contrib projects repsonsible for this Array send to escape().
What this issue is now about
How we deal with this flood in core for all upcoming cases to prevent WSOD or sites being unoperable? But keep track on the issue? How to help informing about the reasns and more details about the Array passed since this Error is very generic and tells not much about the root cause. After disussions on Slack I came to the conclusion: What this issue should be about is to add an informal way of dealing with this error in case if Argument is Array like started from #30 and below without interrupting (breaking site/code) since this is not a dangerous issue. First patches provide already the functionality and error handling to make sites operable again. In further discussions it became obviuous: best way would be to add an Exception to deal with this.
Users stumbling over this issue by searching for a fix should read carefully from #17 and below how to test what this TypeError has caused in each individual case and should report it in the respective issue queue of the project causing this.
(This starting issue summary has been rcompletely rewritten for the solution oriented context now by @diqidoq in favour of a new issue, to keep track of the initial reports. Thanks for the original report and all the reports helping to find a clear goal for this.)
Issue fork drupal-3352384
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
pandurengan.jegadeesan commentedOriginal function is
and changed to below function and it is working but with a warning message
Warning: Array to string conversion in core\lib\Drupal\Component\Render\FormattableMarkup.php on line 274
is it the correct one or need to change it?
Comment #3
ranjit1032002Created a patch for the issue mention, please review.
Thank You.
Comment #4
cilefen commentedThanks for posting a patch, and for posting a backtrace. We have had many workaround patches but absent the steps to reproduce these are not usually incorporated into Drupal.
This is something to do with a view. Are the words "Attempt to add" in a view field or custom template on that site?
Comment #5
smustgrave commentedMoving to PNMI
#4 is correct we need steps to reproduce this.
Not sure the fix is the right approach as this may be masking a large issue.
There will need to be a test case.
Comment #6
danreb commentedAlso experiencing this error on Webform submission. Here's the complete stack trace, PHP 8.1 and Drupal 9.5.9 combo
Comment #7
totten commentedOver at CiviCRM.org, we have an E2E test-suite for checking the integration between Civi and D9/D7/BD/et al. Following yesterday's release, some of the D9-Civi tests have been raising a red-flag for this issue. I can give steps-to-reproduce, but they are specific to Civi, so it's probably more useful to describe the situation.
Breadcrumb Scenario - General description
/civicrm/dev/fake-error. (Note: Routes are mapped between Civi and D9 via Drupal\civicrm\Routing\Routes.)"TypeError: htmlspecialchars(): Argument #1 ($string) must be of type string, array given".$request->attributes->get("_raw_variables")tot(...$args...).This seems to be the conflict:
"args") which are not intended for page-titles, and they are not referenced by page-titles, and are not simple strings.In short, invisible metadata is getting copied-around and unnecessarily subjected to escaping-rules that it doesn't pass and doesn't need to pass.
Perhaps the simplest change would be to update
FormattableMarkup::placeholderFormat()to apply escaping lazily? e.g. usepreg_replace_callback()instead ofstrtr()?Breadcrumb Scenario - Specifics
I observed this problem while debugging a failure in CiviCRM's E2E\Core\ErrorTest.
The purpose of the test is to provoke errors and confirm that the Civi-Drupal integration displays those errors in a semi-sensible way. If you have an environment that's configured for running this test-suite, then the way to execute is:
(I'm not sure if this specific test is easy to run from a Drupal POV. Many Civi tests require some setup. OTOH, E2E tests don't require as much setup. If it's necessary/helpful, I can come up with more pointers for running it or provide a temporary VM for running it.)
Comment #8
marvs5 commentedI am having issues similar to @totten. The D9 pages work fine for me. The CiviCRM pages throw the error.
Comment #9
hansrossel commentedComment #10
smustgrave commentedNow that there are steps to reproduce it will need a test case to show the problem.
Comment #11
totten commentedIt's possible that the "Breadcrumb Scenario (CiviCRM)" is a little different from the original filing on this issue. In particular, the initial description talks of a problem experienced in 9.5.7 with cron jobs. For the Breadcrumb/CiviCRM scenario, 9.5.7 was OK -- problem begain in 9.5.9.
Related discussion: https://www.drupal.org/project/drupal/issues/3277784
Comment #12
jensschuppe commentedThe patch in #3 is not really handling the root of the problem, as things ending up in
htmlspecialchars()might not be cast-able to a string, because route defaults are not restricted to any set of data types.The bug seems to be in the
TitleResolverclass, which just copies all route parameters, and those include all route defaults whose key does not start with an underscore_since Drupal 9.5.9. At least there's a mismatch of assumptions now that route default arguments automatically become route parameters and route parameters have been considered safe as title translation arguments.You can reproduce the issue with Drupal 9.5.9 by declaring a new
Routeobject with an array in itsdefaultargument, e.g.in a module's
modulename.routing.yml:in the module's
src/Routing/Routes.php:TitleResolverwill then do this (for routes without a_title_callbackand with a_title):and consequently:
And this is the very place the
['some' => 'array']will eventually be passed intohtmlspecialchars()which expects a string, but any type might get passed in, potentially not cast-able to string.This was not the case prior to Drupal 9.5.9, as defaults from the route with a key not known to Drupal have not been copied as route parameters and would thus not have been inside
$request->attributes->get('_raw_variables').The commit introducing that new behavior is
a894a04b.I would say this is at least Major, as this might be considered a regression, and affected modules end up with no workaround. Also quoting @larowlan in #3277784:
Comment #13
jensschuppe commentedRealised this might be a different bug, so created a new issue for that: #3358402.
Comment #14
chris64Just a remark. Before
htmlspecialchars(), common to both #0 and #6, line 216 incore/lib/Drupal/Component/Render/FormattableMarkup.phpinplaceholderFormat()means a key beginning by @, and the problem means an array as placeholder value instead of a string. Some thing like to use map string => array in the php functionstrtr(). Quite doubtful.Comment #16
chris64Question: did the arrays in the pure Drupal problems #0 and #6 are of form 1)
'@A' => ['a',]or 2)'@A' => ['a', 'b', ...]? If 1), it should be'@A' => 'a'instead.Comment #17
dqdThis issue feels badly cluttered with a "dead end" and many reports came from different scenarios, where it is not finally clear, if they are even connected to each other. The error message is a very general one which can be caused from many corner cases.
Can some one who is involved in this issue here please summarize or clear up what's really up?(I did it already.) Otherwise we have another postponed forever issue collecting users all having this error over the years, joining, reporting without any idea what this exact issue is about. I also would recommend tostart a new issueconvert this issue into a core "Feature request" to get a better error message here to exactly know from where it has been caused since error message can be found in many issues on D.O.Comment #18
dqd@totten: are you maintainer of the issue related project part or division here? If not I would strongly recommend - in non contrib scenarios - to leave it up to the maintainers to set "maintainers need more info" because this tag is very opinionated and can lead to maintainers keeping out of this in the belief that they set it by their self and wait until somebody comes up with something to read thru. Since there are many of such errors popping up lately here on D.O. after core updates we maybe need some more opinions how to go forward. It feels to me like it has been caused by a more strict handling of badly formatted template or field markup. We need a quick way out here since some admin areas are not accessible no more because of this error like many reported to us. Maybe a reason to raise a flag.
Comment #19
smustgrave commentedTypically needs to be investigated is this is masking a larger issue. Just putting an isset() or !empty() check doesn't work.
But a test case showing the issue will be needed.
Comment #20
dqd... Agreed. Thanks for chiming in so quick. As we spoke on Slack we have dozens of such issues regarding this error, obviously coming in from different scenarios, where the changed strict type check all finally leads to this error now. Most of them after updating Drupal, some of them after updating PHP. And we need a point to start at for now to prevent further reports with missing details since non of them show the root of their scenario. Can someone familiar with this type of issue maybe guide us to a way how to track down to the individual cause of this error, so that users can refine their reports?
And - as I sad - some of them lead to WSOD in admin area so the Drupal project isn't maintainable on more. As we spoke and confirmed on Slack we should temporary change prio to Major for now until we have quick workarounds for them for how to access their projects again.
Comment #21
dqd@smustgrave came up with a good idea on #Slack for those who humble over this but don't know how to track down the real issue causing this TypeError message:
That's a pretty good idea since the error message at least tells us where this TypeError gets initiated, so the code could be placed around that spot and log the array passed and informations about its source.
Comment #22
dqdI am not at the dev place at the moment but free from my memory we are around that place?
The patch in #3 is exactly pointing to that spot, but I am not sure what he wanted to achieve with that (string) implementation before $text. Looks like masking the actual error behind. And now I see that @smustgrave already commented on this. But I think this would be a good place to put a "check if array then log details" kind of thing (patch) to track down the source of evil.
But at least the patch in #3 could be a temporary fix for those who need to get rid of WSOD and reach admin path again. Just do not forget to remove that later...
Comment #23
dqdI was able to help one user by adding an if_array() there at first place in the function and a var_dump($text) to find out that in his case the toolbar_language_switcher seem to cause this issue. I am pretty sure if everybody follows smustgrave's suggestion to add a check and print array there we can finally bring all root sources for this error into the proper issue queues. here is the link to the issue I have created to help the maintainers over there fixing this: https://www.drupal.org/project/toolbar_language_switcher/issues/3378536
Comment #24
dqdCan anyone of the previous reporters test/confirm that their occurrences of that TypeError is def. caused by a Drupal core code source by using the hints we provided above to check that? Which - if so - would keep this issue relevant in the way it is now. But if not, the reports should be moved to the proper issue queues and this issue here could be maybe changed/converted into a useful FR for Drupal handling of such cases.
My first thought was: maybe like an Exception following https://www.drupal.org/docs/develop/coding-standards/php-exceptions with notice warning message so that code maintainers can solve this without breaking the site?
Comment #25
dqdComment #26
chris64May be meditate this issue?:#3169593 (see patch).
Comment #27
namisha jadhav commentedCan #3 patch will affect anything else?
Comment #28
dqd#26: not sure how this link contributes to this issue.
#27: please read the last comments regarding where this issue goes. #3 is not a fix and just masking the real issues under the hood.
At this state this issue is just an accidentally collecting basin of many different issues showing all the same TypeError. As I sad before: users could really help a lot by checking on their projects which part is causing this error by adding a "var dump in case of array" at the line and then report in the proper issue queues for that so that maintainers can change their codebase to respect the new strict Type handling in their projects.
This issue here should turn into an FR for core(Done!) where we should discuss what to do with all these TypeErrors, which will surely become even more next time. One suggestion discussed in Slack was to add an Exception into core with a notice warning message so that WSOD can be prevented. Feel free to join the discussion on Slack in #contribute https://drupal.slack.com/archives/C1BMUQ9U6/p1690729458145389 or try to contribute to the issue here. Thanks for understanding.Comment #29
dqdFor those who need help on this (what I wrote above) here is a small and still very "dirty" patch (click here to get down to the version passing the tests below) (had no more time on the road so forgive me the lousy Drupal coding standards and comments). The patch provides all you need to go on and check by yourself where this error has been caused (by removing the // commenting out chars of the print part of the patch after being applied). If you just need to get rid of WSOD just apply the patch without any other changes. It will make your site accessible again but prints an error message in the message region with more details and creates an error log, so this problem is not masked.
The patch also includes already a raw model of how a future Exception could look like placed in the right order of first checking if array and if then throwing the Exception, then checking if null and if none of them running the default.
Comment #30
dqdSince I quickly wrote this at night on the road forgive me the trailing whitespaces (caused by terminal vim), but why it says directory does not exist surprises me. From which root dir the tests run? from web ? web/core/?
... another try.
Comment #31
dqdForgot comments inside functions or classes etc should be // instead of /**/ in the rush. OK, tried to clean it up a bit for tests to pass. (hopefully now)
Comment #32
dqdJesus! OK, it's pretty hard on the road in vim terminal on an external server instead of a local env to get it right. Sorry for the noise.
Comment #33
dqdWell I usually would leave indention as it should be even if not commented out, but the parsers wants me to keep only one white space after comment out mark. And I have to add /core manually to the path since the patch has been created in /core/ where we have git HEAD to patch against.
EDIT: Jesus! Finally. Test passed. OK I will link to this one in the first comment where I explain what this patch is good for.
Comment #34
dqdComment #35
andypostI think it should be link to change record
else is superfluous
Comment #36
dqdThanks @andypost!
1.
Yeah - ifelse is too, actually. Since return already stops further steps. Wasn't sure what we prefer here for this temporary patch its readability, that's why. Which by the way isn't the final route since this issue will be converted soon so do not waste too much spare time for patch reviews yet. But thanks for your quick response!
2.
We would be happy to have the change record. The reason why it took so long to realize what to do with this issue is that we didn't knew the point things have been changed clearly or if it was maybe PHP only. Than the messages would be clearer too, regarding the Drupal version.
PS: I did it all on the road in the last days because of many user reports popping up on this error message. So please forgive me some quick decisions I made on the rush.
Comment #37
dqdNot sure what the initial report tries to tell us with this huge not formatted code pasted, but from the follow up comments further down especially from #6 and below we see that we mainly are discussing the first part of the output provided in the starting post about
htmlspecialchars(): Argument #1 ($string) must be of type string, array givenSo let's change the starting post to something useful with some context and maybe let's change it to a useful core issue like discussed before here and on Slack.
Comment #38
dqdComment #39
dqdFollowing point 2. in #35 and respecting logical conclusion in point 1. of #36 so turning if-ifelse-else into if-if-x reduces the patch size and numbers of lines and removes the lines discussed in #35, since last part of
public static function escape($text): string {is now like before.Comment #40
chris64To follow an maybe wrong idea (I1).
The new test and warning about array (T1) look like the test and warning about
null(T0) in the same function (F0).This one, T0, refers to an information, #3318826, where this function and few others are evoked.
This information is evoked in an other function,
FormattableMarkup::placeholderFormat(F1), in a similar test and warning aboutnull.Question 1:does the new test and warning T1 should concern these few others functions too?
Question 2:when function F0 is called with warning T1, does the function F1 is called?
Comment #41
dqd@all: Updated patch #41
@Chris64:
.
No, the handling of if NULL is fine like it is IMHO since it doesn't cause issues like if Array does.
Since all if() parts own a return the other parts won't be passed from my understanding. So if Array is given, if NULL and the other lines below won't be executed no more. if Array is TRUE then we return the string converted Array with the error message and error log to stop WSOD and other issues caused by that to keep sites functional while code contributors are informed that they have to change their Argument given from Array to string in future updates. As explained in the patch code comments.
Comment #42
smustgrave commentedPutting into NW while this is being worked on. Great work!
Comment #43
dqdStill trying to make error message better and consistent to similar Drupal error messages in core. And I think I am a step further for now. :)
Apart from that, do we have a better method to convert/pass invalid Array to htmlspecialchars() than to use "string" which simply returns "Array"? Would like to hear thoughts on this (please note this is for an upcoming Exception to keep being executable while informing that it needs to be fixed).
My suggestion for the Exception discussed in Slack and here is:
This way we can use it for other places in Html.php where we maybe run into the same issue.
Comment #44
dqdQueued for testing ...
Comment #45
dqdComment #46
dqdComment #47
dqdComment #48
chris64@diqidoq, to follow idea #40 I1 and answer to #41.
- Q1:
Not to change the handling of if NULL, but to to mimic handling of if Array on it. May be it doesn't cause issues like if Array does. You you are sure of that. Personally I don't know that, but when I see such a message I think it will be fatal.
- Q2:To be more explicit, in FormattableMarkup::placeholderFormat,
with no return after the warning message. Hence no stop here. Maybe after, to do it as you said. (But here, the error is corrected, hence no reason to stop the process. Correction could be an other solution to avoid WSOD or other error.)
Yes, there is a big difference between Array and NULL:easy to convert NULL to a valid string (
$value = '';), but generally no such a thing exists for an Array.Your approach sends a message from the place of the fatal error. Upper information could be useful. It is the idea of a similar message from
FormattableMarkup::placeholderFormatas done for if NULL (but with no correction and no stop).To be more explicit, the goal of this other message, i.e. in
placeholderFormat, is to get an information upper. If M is a message, indices 0 forplaceholderFormat, 1 forescape, warning messages sequences M1, M0 or M0 M1 have not the same meaning. Maybe be wrong, but I believe that M0 M1 will be obtained.Comment #49
dqd@Chris64: Thanks for trying to explain your thoughts further more. I am still not sure if I got it all 100% on a rush (on the road) here yet, since we both do not talk in native tongue here but ta least your try to point "a level up" before we go down to Html:escape has reeached me :) and makes absolutely sense to consider. Put it on needs review for more thoughts on it.
Comment #50
chris64@diqidoq, yes indeed. A problem is the gap between the bug and its source, and a goal is to identify the source.
Comment #51
dqdYes and no, again: Yes because (look at the second commented out part of the patch) and no because: the sources are different for the same error and will not be handled in this issue. This issue here (for now) only tries to cover a new core behaviour/ or "handling" in any case of when the error occures to keep sites functional. F.e. to prevent WSOD and similar.
Comment #52
smustgrave commentedSo I don't think we can include that dpm() and devel stuff in code. Maybe could be recommended in the change record.
Would look at other trigger_errors in core for word pattern to sue.
Comment #53
namisha jadhav commentedBy applying patch #43 I am getting below error
"Passing Argument of Type Array to Drupal\Component\Utility\Html::escape will trigger a PHP TypeError in drupal:9.5.7 and higher. Pass a string instead. See https://www.drupal.org/node/3352384 for more. To find out more about the Array given instead of String, use var_dump() or Devel dpm() by uncommenting line 440-447 in \Drupal\Component\Utility\Html.php."
Also there are multiple warnings displayed in logs as follows:
"Warning: Array to string conversion in Drupal\Component\Utility\Html::escape() (line 451 of /var/www/mis/docroot/core/lib/Drupal/Component/Utility/Html.php)"
Comment #54
chris64@Namisha Jadhav is it possible to have
1) the argument? By uncommenting (see patch #43),
2) the stack trace? At leat #0 to #10.
Comment #55
namisha jadhav commentedPlease find below screenshot after uncommenting the given lines above:
array(21) { [0]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(29) "web/AYBYsubmissions/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [1]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(16) "web/OK/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [2]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(22) "web/OKsweeps/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [3]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(23) "web/PoGCovers/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [4]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(26) "web/RollerSweeps/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [5]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(27) "web/albumplayback/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [6]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(33) "web/anniversarygiveaway/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [7]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(27) "web/coloringpages/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [8]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(21) "web/connect/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [9]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(34) "web/flexiPicturesofGirls/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [10]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(23) "web/headcount/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [11]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(18) "web/help/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [12]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(26) "web/mailing-list/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [13]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(19) "web/music/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [14]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(33) "web/nothinghappensgame/index.html" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [15]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(22) "web/playlist/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [16]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(31) "web/playlistgenerator/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [17]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(42) "web/pleaserliveatatlanticstudios/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [18]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(18) "web/tour/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [19]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(20) "web/videos/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [20]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(18) "web/vote/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } } array(21) { [0]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(29) "web/AYBYsubmissions/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [1]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(16) "web/OK/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [2]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(22) "web/OKsweeps/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [3]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(23) "web/PoGCovers/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [4]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(26) "web/RollerSweeps/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [5]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(27) "web/albumplayback/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [6]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(33) "web/anniversarygiveaway/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [7]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(27) "web/coloringpages/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [8]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(21) "web/connect/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [9]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(34) "web/flexiPicturesofGirls/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [10]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(23) "web/headcount/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [11]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(18) "web/help/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [12]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(26) "web/mailing-list/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [13]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(19) "web/music/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [14]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(33) "web/nothinghappensgame/index.html" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [15]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(22) "web/playlist/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [16]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(31) "web/playlistgenerator/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [17]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(42) "web/pleaserliveatatlanticstudios/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [18]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(18) "web/tour/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [19]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(20) "web/videos/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } [20]=> array(2) { [0]=> string(60) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitAddChanges" [1]=> array(4) { [0]=> string(18) "web/vote/index.php" [1]=> object(GitWrapper\GitWorkingCopy)#2283 (3) { ["cloned":"GitWrapper\GitWorkingCopy":private]=> NULL ["directory":"GitWrapper\GitWorkingCopy":private]=> string(21) "/efs/wallowsmusic-com" ["gitWrapper":"GitWrapper\GitWorkingCopy":private]=> object(GitWrapper\GitWrapper)#2373 (5) { ["gitBinary":"GitWrapper\GitWrapper":private]=> string(12) "/usr/bin/git" ["timeout":"GitWrapper\GitWrapper":private]=> int(700) ["env":"GitWrapper\GitWrapper":private]=> array(3) { ["GIT_SSH"]=> string(63) "/var/www/mis/vendor/cpliakas/git-wrapper/bin/git-ssh-wrapper.sh" ["GIT_SSH_KEY"]=> string(48) "/var/mis/..2023_11_24_05_35_54.2659517321/id_rsa" ["GIT_SSH_PORT"]=> int(22) } ["outputEventSubscriber":"GitWrapper\GitWrapper":private]=> NULL ["eventDispatcher":"GitWrapper\GitWrapper":private]=> object(Symfony\Component\EventDispatcher\EventDispatcher)#2459 (3) { ["listeners":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["sorted":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } ["optimized":"Symfony\Component\EventDispatcher\EventDispatcher":private]=> array(0) { } } } } [2]=> string(16) "wallowsmusic-com" [3]=> string(4) "7722" } } } array(6) { ["title"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#2469 (5) { ["string":protected]=> string(32) "Pushing changes to production..." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["operations"]=> array(0) { } ["init_message"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#2474 (5) { ["string":protected]=> string(12) "Preparing..." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["progress_message"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#2384 (5) { ["string":protected]=> string(41) "Processed @current out of @total changes." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["error_message"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#1845 (5) { ["string":protected]=> string(40) "An error occurred while pushing changes." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["finished"]=> string(63) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitCommitChanges" } array(6) { ["title"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#2469 (5) { ["string":protected]=> string(32) "Pushing changes to production..." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["operations"]=> array(0) { } ["init_message"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#2474 (5) { ["string":protected]=> string(12) "Preparing..." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["progress_message"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#2384 (5) { ["string":protected]=> string(41) "Processed @current out of @total changes." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["error_message"]=> object(Drupal\Core\StringTranslation\TranslatableMarkup)#1845 (5) { ["string":protected]=> string(40) "An error occurred while pushing changes." ["arguments":protected]=> array(0) { } ["translatedMarkup":protected]=> NULL ["options":protected]=> array(0) { } ["stringTranslation":protected]=> NULL } ["finished"]=> string(63) "\Drupal\mis_git\Form\PushSiteChangesForm::batchGitCommitChanges" } The website encountered an unexpected error. Please try again later.
Comment #56
chris64Thank you @Namisha Jadhav for the information. Well. To big. Could you cut your message? I think it is better. Hereafter a summary of the message. In this way your information is preserved. No stack trace? Like in #6.
A look at the message shows some repeats: 2x2 + 2x2 + 1: two double block plus a comment. Arrays of size 21 and 6. For a better reading only 1 element of the first block and the second block are given. The elements are different only by the associate
indexfile.The website encountered an unexpected error. Please try again later.Object exists 63 = 3x21 in the first block and 4 in the second. Their types are,
object(Drupal\Core\StringTranslation\TranslatableMarkup)What to said about this? Nothing to do here. The last object type look like a
toString()missing. The stack trace is necessary to know what's happened before. There is some thing wrong somewhere. This kind of problem should be prevented and cut off. I think before in the code.Comment #58
cosmicdreams commentedHello all, I found this issue while trying to understand the issues I'm having throughout my site's use of text editors and why it is no longer filtering out spaces ( ).
I think most of the issue I'm seeing can be explained by this discovery, documented https://www.drupal.org/project/drupal/issues/3409587#comment-15366524
an excerpt:
Drupal 10.1:
Drupal 10.2:
So now I'm looking for any issue that might seek to address this issue in Html::normalize and I found this issue.
Are you aware of this issue?
Comment #59
dqd@Chris64 and others: Sorry that I lost track of this issue while being busy and on business travel. Will hopefully get back on it soon. Thanks for the link @cosmicdreams, will take a look.
Comment #60
bbu23Hi,
I'm using Drupal 11.0.0-beta1, I installed only a few modules. Sometimes I get the following error that looks similar:
it appeared a bit random initially, but this last time it even blocked me from saving a newly created Views page. After saving the Views page with JS disabled, when trying to access the page, I get the above error.

If I dump the
$variablesin theUtility/LinkGenerator.phpI can see that the link is intended for a taxonomy term, and the text seems to be null:Update:
It seems that devel generate created some terms with no label. But I'm pretty sure that I was getting this or similar prior to installing devel generate.
Comment #61
joshuautley commentedI found this issue with a fresh install of Drupal 11.0.4 running PHP 8.3.8.
When the "Sender name" and/or "Subject" input field(s) are disabled under "Manage Form Display," an error is triggered after submitting a custom Contact form (core module).
Thank you to everyone who's working towards core solutions.
-------- Begin ERROR ---------------------
The website encountered an unexpected error. Try again later.
TypeError: Drupal\Component\Utility\Html::escape(): Argument #1 ($text) must be of type string, null given, called in /chroot/home/plhscentenial/plhs100.com/html/core/lib/Drupal/Component/Render/FormattableMarkup.php on line 256 in Drupal\Component\Utility\Html::escape() (line 431 of core/lib/Drupal/Component/Utility/Html.php).
Drupal\Component\Render\FormattableMarkup::placeholderEscape() (Line: 205)
Drupal\Component\Render\FormattableMarkup::placeholderFormat() (Line: 195)
Drupal\Core\StringTranslation\TranslatableMarkup->render() (Line: 15)
Drupal\Core\StringTranslation\TranslatableMarkup->__toString() (Line: 142)
contact_mail()
call_user_func_array() (Line: 407)
Drupal\Core\Extension\ModuleHandler->invoke() (Line: 273)
Drupal\Core\Mail\MailManager->doMail() (Line: 181)
Drupal\Core\Mail\MailManager->Drupal\Core\Mail\{closure}() (Line: 593)
Drupal\Core\Render\Renderer->executeInRenderContext() (Line: 180)
Drupal\Core\Mail\MailManager->mail() (Line: 114)
Drupal\contact\MailHandler->sendMailMessages() (Line: 223)
Drupal\contact\MessageForm->save()
call_user_func_array() (Line: 105)
Drupal\Core\Form\FormSubmitter->executeSubmitHandlers() (Line: 43)
Drupal\Core\Form\FormSubmitter->doSubmitForm() (Line: 589)
Drupal\Core\Form\FormBuilder->processForm() (Line: 321)
Drupal\Core\Form\FormBuilder->buildForm() (Line: 48)
Drupal\Core\Entity\EntityFormBuilder->getForm() (Line: 92)
Drupal\contact_storage\ContactFormViewBuilder->view() (Line: 45)
Drupal\contact_storage\Controller\ContactStorageController->contactSitePage()
call_user_func_array() (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 593)
Drupal\Core\Render\Renderer->executeInRenderContext() (Line: 121)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext() (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 183)
Symfony\Component\HttpKernel\HttpKernel->handleRaw() (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle() (Line: 53)
Drupal\Core\StackMiddleware\Session->handle() (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle() (Line: 28)
Drupal\Core\StackMiddleware\ContentLength->handle() (Line: 32)
Drupal\big_pipe\StackMiddleware\ContentLength->handle() (Line: 106)
Drupal\page_cache\StackMiddleware\PageCache->pass() (Line: 85)
Drupal\page_cache\StackMiddleware\PageCache->handle() (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle() (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle() (Line: 36)
Drupal\Core\StackMiddleware\AjaxPageState->handle() (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle() (Line: 709)
Drupal\Core\DrupalKernel->handle() (Line: 19)
------------ End ERROR ----------------
Additional gripe: collecting the first and last names separately for later use as Dear [first_name] is common. Collecting the full sender name as a single input is not required. Additionally, being unable to alter the label of the default "Sender email" within the "Manage fields" display is not ideal, as most people are used to seeing "Email Address" as the label.
Related Issue: https://www.drupal.org/project/drupal/issues/2753253
Regarding sending as HTML under "Contact settings", there are instructions that we need to use Swiftmailer, which is the only module Drupal has tested. However, if a person visits the Swiftmailer module project page, they will find that the module is not supported due to a security issue.
https://www.drupal.org/sa-contrib-2024-006
I realize I'm describing a few issues here and that they should be addressed separately. My apologies. However, with the issue queues showing little to no activity or progress towards solutions on Contact form specific problems, I feel it's good to list these issues here in the hopes that someone can escalate the need for attention regarding a most basic yet complex feature of the Internet (contact forms).
Comment #62
enchufeI had a similar error:
[error] TypeError: Drupal\Component\Utility\Html::escape(): Argument #1 ($text) must be of type string, null given, called in /var/www/html/xyz/docroot/core/lib/Drupal/Component/Render/FormattableMarkup.php on line 256 in Drupal\Component\Utility\Html::escape() (line 431 of /var/www/html/xyz/docroot/core/lib/Drupal/Component/Utility/Html.php)That I solved with this patch, if it helps anyone.
Comment #63
pacproduct commentedHi all.
I faced this issue when trying to display the "Status report" page (
/admin/reports/status) on our site.Turned out, that was because Drupal was failing at displaying the string "
%profile_name (%profile-%version)" with the following parameters:%profile_name:<em class="placeholder">Our Custom Installer</em>%profile:<em class="placeholder">custom_installer</em>%version:NULLIt fails because of the
NULLvalue.Solving it was trivial in the end, we simply added the missing
versionkey to our installation profilecustom_installer.info.ymlfile. But it feels like it should probably behave in a more graceful way :)Comment #64
guezs commented¡Gracias! enchufe.
This worked for me!
Comment #65
smulvih2Patch in #62 fixed my issue using core 11.1.2
Comment #68
ressaThanks @enchufe your patch in #64 works well. Like bbu23 in #60, I believe I got the error after generating content with Devel Generate, maybe some terms lacked labels? Under a node "Tags" field, I can see this: "Importunus occuro paulatim tation (1), (4), (4)"
PS. I tried making a fresh branch, but I think I still got Drupal 9 ... see https://www.drupal.org/docs/develop/git/using-gitlab-to-contribute-to-dr...
Comment #69
mlncn commentedPreventing WSOD's by catching an exception here has become increasingly important with something that changed in Drupal 11.1 or in PHP 8.4. Something that did not used to be a noticeable warning on the status page is now a fatal error on the status page with a "White Screen Of Death", and a stack trace that starts with:
"Drupal\Component\Utility\Html::escape(): Argument #1 () must be of type string, null given, called in /var/www/html/web/core/lib/Drupal/Component/Render/FormattableMarkup.php on line 238"
And then leads the perplexed site maintainer or developer on a journey through
TranslatableMarkupandTwig\Template->display()andtwig_template_renderandDrupal\Core\Render\Renderer->doRenderamong other less notable stops, with the template and rendering stuff all showing up twice. But not once does the stacktrace give a hint of what code actually started the problem.Using a debugger one can go a few steps down (up?) the stack to
Drupal\Core\StringTranslation\TranslatableMarkupand find the variables passed into it. These made clear that the underlying problem is that a custom profile has no version string. (OK, and looking at this, separate issue from this one, probablystatus_report_groupedshould be taking care not to require information that is not required?)(OK i must have been wrong about their being no error, i see escape() used to have this code:
@trigger_error('Passing NULL to ' . __METHOD__ . ' is deprecated in drupal:9.5.0 and will trigger a PHP error from drupal:11.0.0. Pass a string instead. See https://www.drupal.org/node/3318826', E_USER_DEPRECATED);. But that does not change the fact that Drupal has increased the ways a fatal error can take down a site in ways that can have many sources and be hard to track down.)Strict typing is great for coding. But there are too many ways a non-string can end up handed to HTML::escape() to take down a site over it.
Comment #70
mlncn commentedComment #71
carma03 commentedI was facing the same issue as per #63 comment.
I solved this just adding the line
version: VERSIONinto mycustom_profile.info.ymlfile.Thanks pacproduct!
Comment #72
ressaAdding link to the Devel issue on GitLab TypeError: Drupal\Component\Utility\Html::escape(): Argument #1 ($text) must be of type string, null given in the Issue Summary.
Comment #73
rovoThe issue was related to Devel Generate terms for me also. It generated an Article and populated the Tags field with a term that doesn't exist. I cleared the Tags field, saved the node, and the site loaded fine.
Comment #74
onion commented@enchufe's patch in #62 fixed our issue here as well. Beautiful and thank you!
Comment #75
vishal-ydv commentedOn Drupal 11.1.6 and PHP 8.3.2, I encountered this error on the /admin/reports/dblog page. The patch in #62 fixed it for me.
Comment #76
jrbeemanRe-rolled patch from #62 against latest 11.x (Drupal core 11.2.2 as of today) as I was receiving errors from Composer patches due to drift in the line numbers being patched.
Comment #77
dillix commented#76 Fixed my issues in custom entity edit form.
Comment #78
luco commented#76 fixed D11 after creating sample content with Devel Generate.
thank you so much!
Comment #79
joelstein commentedIn case this helps anyone else, I ran into this issue with custom entity types with base field definitions like this:
We need to set the field label starting with Drupal 11. Without it, Drupal will die when accessing it as part of a translated string parameter.
Comment #80
donquixote commentedThe main scenario is that FormattableMarkup::__construct() allows ['@placeholder' => NULL] values in $arguments, but FormattableMarkup::__toString() blows up if $this->arguments contains such values.
This is a regression. because in older Drupal versions this silently worked (first I think with a notice, later with a deprecation warning).
The problem is that the error is separated from its cause, because the translatable string can travel far before it causes the error.
The cause can be an entity label being NULL. E.g. in MediaForm::form() we have this:
Where $entity->label() is technically allowed to return NULL, and it is possible to programmatically create a media entity without a title.
---------------
There are two directions where we can take this:
Both FormattableMarkup::placeholderFormat() and Html::escape() are static methods, so we cannot cleanly inject a logger.
But we could just `@trigger_error(.., E_USER_NOTICE)`. Or we restore the deprecation.
In the past we did deprecate NULL for FormattableMarkup::placeholderFormat() and Html::escape(), but we failed to deprecate it for FormattableMarkup::__construct(), so our old deprecation was worthless.
Comment #81
hamza_niaziI m using drpal 11.2.5
Try again later.TypeError: Drupal\\Component\\Utility\\Html::escape(): Argument #1 ($text) must be of type ?string, array given, called in /var/www/html/web/core/modules/views/src/Plugin/views/HandlerBase.php on line 226 in Drupal\\Component\\Utility\\Html::escape() (line 433 of core/lib/Drupal/Component/Utility/Html.php).
Comment #82
rajab natshahComment #88
rajab natshahComment #89
smustgrave commentedStill appears to need test coverage.
Also summery could use an updating
Title too doesn’t match the latest MR.
CR may still be needed not 100%
Comment #90
rajab natshahNoted;
Thanks, Stephen for following up.
Following with your last comment.