Cannot process definition to array for type tinytext on Magento 2.3.0Magento2.3 setup:upgrade errorMagento 2.3 Install failed … Invalid Index using addColumn methodArgument in DI.xml cannot resolve 'array' to a type definition for element 'argument'Magento 2. Make soap response as arrayMagento 2.3.0 installation errorMagento 2.3.0 not workingMagento 2.2.7 to 2.3.0 Check Component Dependency ProblemProblems after upgrate magento 2.2.5 to 2.3.0Constraint “email_order_to_sales_order” references table that does not existCompilation from source on static-content deploy in magento 2.3.0 when upgraded from magento 2.2.2Magento 2.3.0 - Transactional Email > Logo Image upload not workingMagento 2.3.0 product image cache not created when resizing images
Questions of the type "What do you think other people would think?"
What is better: yes / no radio, or simple checkbox?
Why is my explanation wrong?
Can a Mimic (container form) actually hold loot?
How spaceships determine each other's mass in space?
Are healthy patients an appropriate control group?
Align equations with text before one of them
Why would the IRS ask for birth certificates or even audit a small tax return?
Why do we call complex numbers “numbers” but we don’t consider 2 vectors numbers?
What is Tony Stark injecting into himself in Iron Man 3?
ESPP--any reason not to go all in?
What is the meaning of option 'by' in TikZ Intersections
Does the US political system, in principle, allow for a no-party system?
Does the in-code argument passing conventions used on PDP-11's have a name?
Professor forcing me to attend a conference
How do you make a gun that shoots melee weapons and/or swords?
PTIJ: Aliyot for the deceased
Ultrafilters as a double dual
Custom javascript not working
Should I use HTTPS on a domain that will only be used for redirection?
Why do phishing e-mails use faked e-mail addresses instead of the real one?
Paper published similar to PhD thesis
I've given my players a lot of magic items. Is it reasonable for me to give them harder encounters?
Is there a way to find out the age of climbing ropes?
Cannot process definition to array for type tinytext on Magento 2.3.0
Magento2.3 setup:upgrade errorMagento 2.3 Install failed … Invalid Index using addColumn methodArgument in DI.xml cannot resolve 'array' to a type definition for element 'argument'Magento 2. Make soap response as arrayMagento 2.3.0 installation errorMagento 2.3.0 not workingMagento 2.2.7 to 2.3.0 Check Component Dependency ProblemProblems after upgrate magento 2.2.5 to 2.3.0Constraint “email_order_to_sales_order” references table that does not existCompilation from source on static-content deploy in magento 2.3.0 when upgraded from magento 2.2.2Magento 2.3.0 - Transactional Email > Logo Image upload not workingMagento 2.3.0 product image cache not created when resizing images
I'm getting following error "Cannot process definition to array for type tinytext"
on Magento 2.3.0 when executing setup:upgrade
command.
Thanks
magento2 magento2.3 magento2.3.0 setup-upgrade
add a comment |
I'm getting following error "Cannot process definition to array for type tinytext"
on Magento 2.3.0 when executing setup:upgrade
command.
Thanks
magento2 magento2.3 magento2.3.0 setup-upgrade
Has a solution already been found? I have the same problem. Thanks Chris
– Christoph
Dec 1 '18 at 12:16
This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review
– sv3n
Dec 1 '18 at 13:04
add a comment |
I'm getting following error "Cannot process definition to array for type tinytext"
on Magento 2.3.0 when executing setup:upgrade
command.
Thanks
magento2 magento2.3 magento2.3.0 setup-upgrade
I'm getting following error "Cannot process definition to array for type tinytext"
on Magento 2.3.0 when executing setup:upgrade
command.
Thanks
magento2 magento2.3 magento2.3.0 setup-upgrade
magento2 magento2.3 magento2.3.0 setup-upgrade
edited Mar 4 at 5:06
Aasim Goriya
3,9191938
3,9191938
asked Nov 30 '18 at 7:18
Pradeep SankuPradeep Sanku
7,90113157
7,90113157
Has a solution already been found? I have the same problem. Thanks Chris
– Christoph
Dec 1 '18 at 12:16
This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review
– sv3n
Dec 1 '18 at 13:04
add a comment |
Has a solution already been found? I have the same problem. Thanks Chris
– Christoph
Dec 1 '18 at 12:16
This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review
– sv3n
Dec 1 '18 at 13:04
Has a solution already been found? I have the same problem. Thanks Chris
– Christoph
Dec 1 '18 at 12:16
Has a solution already been found? I have the same problem. Thanks Chris
– Christoph
Dec 1 '18 at 12:16
This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review
– sv3n
Dec 1 '18 at 13:04
This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review
– sv3n
Dec 1 '18 at 13:04
add a comment |
4 Answers
4
active
oldest
votes
You are getting this error because "data type" of any third party extension's table's column is tinytext.
So you need to find out column name using debug in following file.
Open this file /vendor/magento/framework/Setup/Declaration/Schema/Db/DefinitionAggregator.php and check this fromDefinition() method and then add debug code to find column name.
public function fromDefinition(array $data)
$type = $data['type'];
if (!isset($this->definitionProcessors[$type]))
/* Add Code for Debug */
echo "<pre>";
print_r($data); exit();
/* Code End */
throw new InvalidArgumentException(
sprintf("Cannot process definition to array for type %s", $type)
);
$definitionProcessor = $this->definitionProcessors[$type];
return $definitionProcessor->fromDefinition($data);
After that please run setup:upgrade
command and you will get array of column data in console. so from this array you will get the name of column from your third party extension table.
Now from that table please change column's data type "tinytext" to "text" and issue will be fixed.
SECOND METHOD
Please export the database and search for keywords tinytext, you will found a table which use this format, Now changed it to TEXT and the problem solved.
Note : You might also get issues from ENUM, TIME and MEDIUMINT data type as well, so do the same steps if get any other data type issue.
thanks for your clue. i had found that colum and i am sharing the answer how i resolved. +1 vote
– Pradeep Sanku
Dec 5 '18 at 9:38
2
This is clearly a regression and a bug. Any table declared in the magento database with a type of ENUM, TINYTEXT or MEDIUMINT will cause this problem even if it's not managed by magento. It should be possible to have magento and wordpress share the same database. They even suppord table prefixes for this reason. Has a bug been reported about this?
– David Stone
Dec 14 '18 at 23:52
@PradeepSanku please accept my ans if its usefull to you, so it will help others for this type of issues. and let me know if you have any question. Thanks!
– Aasim Goriya
Dec 31 '18 at 5:37
add a comment |
In my case, Wordpress was being used with the Fishpig integration. In wp_comments
, the comment_author
was set to TINYTEXT
. The problem was resolved by changing that column declaration.
add a comment |
A handy little SQL script if anyone wants to know which columns have tinytext types defined.
SELECT TABLE_NAME,
`COLUMNS`.`COLUMN_NAME` AS `name`, `COLUMNS`.`COLUMN_DEFAULT` AS `default`,
`COLUMNS`.`DATA_TYPE` AS `type`, IF(IS_NULLABLE = "YES", true, false) AS `nullable`,
`COLUMNS`.`COLUMN_TYPE` AS `definition`, `COLUMNS`.`EXTRA` AS `extra`,
IF(COLUMN_COMMENT = "", NULL, COLUMN_COMMENT) AS `comment`
FROM `information_schema`.`COLUMNS`
WHERE (TABLE_SCHEMA = '<table_schema>') AND (`COLUMNS`.`DATA_TYPE` = 'tinytext');
Helped me find the offending third-party module quickly.
add a comment |
Magento 2.3 developers will not add support for tinytext
data type. varchar
type is recommended to use instead of tinytext
.
What about TIME?
– Ricardo Martins
6 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f251920%2fcannot-process-definition-to-array-for-type-tinytext-on-magento-2-3-0%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are getting this error because "data type" of any third party extension's table's column is tinytext.
So you need to find out column name using debug in following file.
Open this file /vendor/magento/framework/Setup/Declaration/Schema/Db/DefinitionAggregator.php and check this fromDefinition() method and then add debug code to find column name.
public function fromDefinition(array $data)
$type = $data['type'];
if (!isset($this->definitionProcessors[$type]))
/* Add Code for Debug */
echo "<pre>";
print_r($data); exit();
/* Code End */
throw new InvalidArgumentException(
sprintf("Cannot process definition to array for type %s", $type)
);
$definitionProcessor = $this->definitionProcessors[$type];
return $definitionProcessor->fromDefinition($data);
After that please run setup:upgrade
command and you will get array of column data in console. so from this array you will get the name of column from your third party extension table.
Now from that table please change column's data type "tinytext" to "text" and issue will be fixed.
SECOND METHOD
Please export the database and search for keywords tinytext, you will found a table which use this format, Now changed it to TEXT and the problem solved.
Note : You might also get issues from ENUM, TIME and MEDIUMINT data type as well, so do the same steps if get any other data type issue.
thanks for your clue. i had found that colum and i am sharing the answer how i resolved. +1 vote
– Pradeep Sanku
Dec 5 '18 at 9:38
2
This is clearly a regression and a bug. Any table declared in the magento database with a type of ENUM, TINYTEXT or MEDIUMINT will cause this problem even if it's not managed by magento. It should be possible to have magento and wordpress share the same database. They even suppord table prefixes for this reason. Has a bug been reported about this?
– David Stone
Dec 14 '18 at 23:52
@PradeepSanku please accept my ans if its usefull to you, so it will help others for this type of issues. and let me know if you have any question. Thanks!
– Aasim Goriya
Dec 31 '18 at 5:37
add a comment |
You are getting this error because "data type" of any third party extension's table's column is tinytext.
So you need to find out column name using debug in following file.
Open this file /vendor/magento/framework/Setup/Declaration/Schema/Db/DefinitionAggregator.php and check this fromDefinition() method and then add debug code to find column name.
public function fromDefinition(array $data)
$type = $data['type'];
if (!isset($this->definitionProcessors[$type]))
/* Add Code for Debug */
echo "<pre>";
print_r($data); exit();
/* Code End */
throw new InvalidArgumentException(
sprintf("Cannot process definition to array for type %s", $type)
);
$definitionProcessor = $this->definitionProcessors[$type];
return $definitionProcessor->fromDefinition($data);
After that please run setup:upgrade
command and you will get array of column data in console. so from this array you will get the name of column from your third party extension table.
Now from that table please change column's data type "tinytext" to "text" and issue will be fixed.
SECOND METHOD
Please export the database and search for keywords tinytext, you will found a table which use this format, Now changed it to TEXT and the problem solved.
Note : You might also get issues from ENUM, TIME and MEDIUMINT data type as well, so do the same steps if get any other data type issue.
thanks for your clue. i had found that colum and i am sharing the answer how i resolved. +1 vote
– Pradeep Sanku
Dec 5 '18 at 9:38
2
This is clearly a regression and a bug. Any table declared in the magento database with a type of ENUM, TINYTEXT or MEDIUMINT will cause this problem even if it's not managed by magento. It should be possible to have magento and wordpress share the same database. They even suppord table prefixes for this reason. Has a bug been reported about this?
– David Stone
Dec 14 '18 at 23:52
@PradeepSanku please accept my ans if its usefull to you, so it will help others for this type of issues. and let me know if you have any question. Thanks!
– Aasim Goriya
Dec 31 '18 at 5:37
add a comment |
You are getting this error because "data type" of any third party extension's table's column is tinytext.
So you need to find out column name using debug in following file.
Open this file /vendor/magento/framework/Setup/Declaration/Schema/Db/DefinitionAggregator.php and check this fromDefinition() method and then add debug code to find column name.
public function fromDefinition(array $data)
$type = $data['type'];
if (!isset($this->definitionProcessors[$type]))
/* Add Code for Debug */
echo "<pre>";
print_r($data); exit();
/* Code End */
throw new InvalidArgumentException(
sprintf("Cannot process definition to array for type %s", $type)
);
$definitionProcessor = $this->definitionProcessors[$type];
return $definitionProcessor->fromDefinition($data);
After that please run setup:upgrade
command and you will get array of column data in console. so from this array you will get the name of column from your third party extension table.
Now from that table please change column's data type "tinytext" to "text" and issue will be fixed.
SECOND METHOD
Please export the database and search for keywords tinytext, you will found a table which use this format, Now changed it to TEXT and the problem solved.
Note : You might also get issues from ENUM, TIME and MEDIUMINT data type as well, so do the same steps if get any other data type issue.
You are getting this error because "data type" of any third party extension's table's column is tinytext.
So you need to find out column name using debug in following file.
Open this file /vendor/magento/framework/Setup/Declaration/Schema/Db/DefinitionAggregator.php and check this fromDefinition() method and then add debug code to find column name.
public function fromDefinition(array $data)
$type = $data['type'];
if (!isset($this->definitionProcessors[$type]))
/* Add Code for Debug */
echo "<pre>";
print_r($data); exit();
/* Code End */
throw new InvalidArgumentException(
sprintf("Cannot process definition to array for type %s", $type)
);
$definitionProcessor = $this->definitionProcessors[$type];
return $definitionProcessor->fromDefinition($data);
After that please run setup:upgrade
command and you will get array of column data in console. so from this array you will get the name of column from your third party extension table.
Now from that table please change column's data type "tinytext" to "text" and issue will be fixed.
SECOND METHOD
Please export the database and search for keywords tinytext, you will found a table which use this format, Now changed it to TEXT and the problem solved.
Note : You might also get issues from ENUM, TIME and MEDIUMINT data type as well, so do the same steps if get any other data type issue.
edited 4 hours ago
Ricardo Martins
636520
636520
answered Dec 5 '18 at 6:34
Aasim GoriyaAasim Goriya
3,9191938
3,9191938
thanks for your clue. i had found that colum and i am sharing the answer how i resolved. +1 vote
– Pradeep Sanku
Dec 5 '18 at 9:38
2
This is clearly a regression and a bug. Any table declared in the magento database with a type of ENUM, TINYTEXT or MEDIUMINT will cause this problem even if it's not managed by magento. It should be possible to have magento and wordpress share the same database. They even suppord table prefixes for this reason. Has a bug been reported about this?
– David Stone
Dec 14 '18 at 23:52
@PradeepSanku please accept my ans if its usefull to you, so it will help others for this type of issues. and let me know if you have any question. Thanks!
– Aasim Goriya
Dec 31 '18 at 5:37
add a comment |
thanks for your clue. i had found that colum and i am sharing the answer how i resolved. +1 vote
– Pradeep Sanku
Dec 5 '18 at 9:38
2
This is clearly a regression and a bug. Any table declared in the magento database with a type of ENUM, TINYTEXT or MEDIUMINT will cause this problem even if it's not managed by magento. It should be possible to have magento and wordpress share the same database. They even suppord table prefixes for this reason. Has a bug been reported about this?
– David Stone
Dec 14 '18 at 23:52
@PradeepSanku please accept my ans if its usefull to you, so it will help others for this type of issues. and let me know if you have any question. Thanks!
– Aasim Goriya
Dec 31 '18 at 5:37
thanks for your clue. i had found that colum and i am sharing the answer how i resolved. +1 vote
– Pradeep Sanku
Dec 5 '18 at 9:38
thanks for your clue. i had found that colum and i am sharing the answer how i resolved. +1 vote
– Pradeep Sanku
Dec 5 '18 at 9:38
2
2
This is clearly a regression and a bug. Any table declared in the magento database with a type of ENUM, TINYTEXT or MEDIUMINT will cause this problem even if it's not managed by magento. It should be possible to have magento and wordpress share the same database. They even suppord table prefixes for this reason. Has a bug been reported about this?
– David Stone
Dec 14 '18 at 23:52
This is clearly a regression and a bug. Any table declared in the magento database with a type of ENUM, TINYTEXT or MEDIUMINT will cause this problem even if it's not managed by magento. It should be possible to have magento and wordpress share the same database. They even suppord table prefixes for this reason. Has a bug been reported about this?
– David Stone
Dec 14 '18 at 23:52
@PradeepSanku please accept my ans if its usefull to you, so it will help others for this type of issues. and let me know if you have any question. Thanks!
– Aasim Goriya
Dec 31 '18 at 5:37
@PradeepSanku please accept my ans if its usefull to you, so it will help others for this type of issues. and let me know if you have any question. Thanks!
– Aasim Goriya
Dec 31 '18 at 5:37
add a comment |
In my case, Wordpress was being used with the Fishpig integration. In wp_comments
, the comment_author
was set to TINYTEXT
. The problem was resolved by changing that column declaration.
add a comment |
In my case, Wordpress was being used with the Fishpig integration. In wp_comments
, the comment_author
was set to TINYTEXT
. The problem was resolved by changing that column declaration.
add a comment |
In my case, Wordpress was being used with the Fishpig integration. In wp_comments
, the comment_author
was set to TINYTEXT
. The problem was resolved by changing that column declaration.
In my case, Wordpress was being used with the Fishpig integration. In wp_comments
, the comment_author
was set to TINYTEXT
. The problem was resolved by changing that column declaration.
answered Jan 7 at 18:22
bassplayer7bassplayer7
1,5781120
1,5781120
add a comment |
add a comment |
A handy little SQL script if anyone wants to know which columns have tinytext types defined.
SELECT TABLE_NAME,
`COLUMNS`.`COLUMN_NAME` AS `name`, `COLUMNS`.`COLUMN_DEFAULT` AS `default`,
`COLUMNS`.`DATA_TYPE` AS `type`, IF(IS_NULLABLE = "YES", true, false) AS `nullable`,
`COLUMNS`.`COLUMN_TYPE` AS `definition`, `COLUMNS`.`EXTRA` AS `extra`,
IF(COLUMN_COMMENT = "", NULL, COLUMN_COMMENT) AS `comment`
FROM `information_schema`.`COLUMNS`
WHERE (TABLE_SCHEMA = '<table_schema>') AND (`COLUMNS`.`DATA_TYPE` = 'tinytext');
Helped me find the offending third-party module quickly.
add a comment |
A handy little SQL script if anyone wants to know which columns have tinytext types defined.
SELECT TABLE_NAME,
`COLUMNS`.`COLUMN_NAME` AS `name`, `COLUMNS`.`COLUMN_DEFAULT` AS `default`,
`COLUMNS`.`DATA_TYPE` AS `type`, IF(IS_NULLABLE = "YES", true, false) AS `nullable`,
`COLUMNS`.`COLUMN_TYPE` AS `definition`, `COLUMNS`.`EXTRA` AS `extra`,
IF(COLUMN_COMMENT = "", NULL, COLUMN_COMMENT) AS `comment`
FROM `information_schema`.`COLUMNS`
WHERE (TABLE_SCHEMA = '<table_schema>') AND (`COLUMNS`.`DATA_TYPE` = 'tinytext');
Helped me find the offending third-party module quickly.
add a comment |
A handy little SQL script if anyone wants to know which columns have tinytext types defined.
SELECT TABLE_NAME,
`COLUMNS`.`COLUMN_NAME` AS `name`, `COLUMNS`.`COLUMN_DEFAULT` AS `default`,
`COLUMNS`.`DATA_TYPE` AS `type`, IF(IS_NULLABLE = "YES", true, false) AS `nullable`,
`COLUMNS`.`COLUMN_TYPE` AS `definition`, `COLUMNS`.`EXTRA` AS `extra`,
IF(COLUMN_COMMENT = "", NULL, COLUMN_COMMENT) AS `comment`
FROM `information_schema`.`COLUMNS`
WHERE (TABLE_SCHEMA = '<table_schema>') AND (`COLUMNS`.`DATA_TYPE` = 'tinytext');
Helped me find the offending third-party module quickly.
A handy little SQL script if anyone wants to know which columns have tinytext types defined.
SELECT TABLE_NAME,
`COLUMNS`.`COLUMN_NAME` AS `name`, `COLUMNS`.`COLUMN_DEFAULT` AS `default`,
`COLUMNS`.`DATA_TYPE` AS `type`, IF(IS_NULLABLE = "YES", true, false) AS `nullable`,
`COLUMNS`.`COLUMN_TYPE` AS `definition`, `COLUMNS`.`EXTRA` AS `extra`,
IF(COLUMN_COMMENT = "", NULL, COLUMN_COMMENT) AS `comment`
FROM `information_schema`.`COLUMNS`
WHERE (TABLE_SCHEMA = '<table_schema>') AND (`COLUMNS`.`DATA_TYPE` = 'tinytext');
Helped me find the offending third-party module quickly.
answered Jan 22 at 4:26
Nathaniel RogersNathaniel Rogers
9316
9316
add a comment |
add a comment |
Magento 2.3 developers will not add support for tinytext
data type. varchar
type is recommended to use instead of tinytext
.
What about TIME?
– Ricardo Martins
6 hours ago
add a comment |
Magento 2.3 developers will not add support for tinytext
data type. varchar
type is recommended to use instead of tinytext
.
What about TIME?
– Ricardo Martins
6 hours ago
add a comment |
Magento 2.3 developers will not add support for tinytext
data type. varchar
type is recommended to use instead of tinytext
.
Magento 2.3 developers will not add support for tinytext
data type. varchar
type is recommended to use instead of tinytext
.
answered Feb 19 at 16:42
Alex GusevAlex Gusev
1,01411028
1,01411028
What about TIME?
– Ricardo Martins
6 hours ago
add a comment |
What about TIME?
– Ricardo Martins
6 hours ago
What about TIME?
– Ricardo Martins
6 hours ago
What about TIME?
– Ricardo Martins
6 hours ago
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f251920%2fcannot-process-definition-to-array-for-type-tinytext-on-magento-2-3-0%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Has a solution already been found? I have the same problem. Thanks Chris
– Christoph
Dec 1 '18 at 12:16
This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review
– sv3n
Dec 1 '18 at 13:04