Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to upload Logo, Magento 2.3.0 Beta18 #18688

Closed
davegog opened this issue Oct 18, 2018 · 27 comments
Closed

Unable to upload Logo, Magento 2.3.0 Beta18 #18688

davegog opened this issue Oct 18, 2018 · 27 comments
Assignees
Labels
Component: Theme Event: mm19in Fixed in 2.3.x The issue has been fixed in 2.3 release line Issue: Clear Description Gate 2 Passed. Manual verification of the issue description passed Issue: Confirmed Gate 3 Passed. Manual verification of the issue completed. Issue is confirmed Issue: Format is valid Gate 1 Passed. Automatic verification of issue format passed Issue: Ready for Work Gate 4. Acknowledged. Issue is added to backlog and ready for development Partner: Redkiwi Progress: PR Created Indicates that Pull Request has been created to fix issue

Comments

@davegog
Copy link

davegog commented Oct 18, 2018

Summary of the issue : Unable to upload logo via browser (Firefox)
Environment: Magento C.E 2.3.0 Beta18, PHP7.2, Apache 2.4.29 OS Ubuntu 18.04.1 LTS, Mysql Server version: 5.7.23, Server charset: UTF-8 Unicode (utf8) (External RDS instance)

The webserver has been setup for TLS 1.2 communication.

Expected and actual results: Ability to change the logo, Unable to upload logo 
Error message :" A technical problem with the server created an error. Try again to continue what you were   doing. If the problem persists, try again later."

Preconditions (*)

  1. Magento 2.3.x

Steps to reproduce (*)

  1. Content -> Design -> Configuration
  2. Edit any Default Store View
  3. Other Settings -> Header
  4. Upload a favicon or logo

Expected result (*)

  1. Favicon or logo is uploaded and "filled in the form"

Actual result (*)

  1. Error message :" A technical problem with the server created an error. Try again to continue what you were doing. If the problem persists, try again later."
  2. image
@magento-engcom-team magento-engcom-team added the Issue: Format is not valid Gate 1 Failed. Automatic verification of issue format is failed label Oct 18, 2018
@magento-engcom-team
Copy link
Contributor

Hi @davegog. Thank you for your report.
To help us process this issue please make sure that you provided the following information:

  • Summary of the issue
  • Information on your environment
  • Steps to reproduce
  • Expected and actual results

Please make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, please, add a comment to the issue:

@magento-engcom-team give me $VERSION instance

where $VERSION is version tags (starting from 2.2.0+) or develop branches (for example: 2.3-develop).
For more details, please, review the Magento Contributor Assistant documentation.

@davegog do you confirm that you was able to reproduce the issue on vanilla Magento instance following steps to reproduce?

  • yes
  • no

@davegog
Copy link
Author

davegog commented Oct 18, 2018

Hi I have given all the required information above,
New install of Magento via composer,

Steps to reproduce

Setup Apache on an EC2 Ubuntu instance
Create an external RDS database
Ensure connectivity etc
Install CE edition via composer

composer create-project --repository=https://repo.magento.com/ magento/project-community-edition=2.3.* --stability=beta /var/www/html/

#Set pre-installation permissions
cd /var/www/html

find var generated vendor pub/static pub/media app/etc -type f -exec chmod g+w {} ;
find var generated vendor pub/static pub/media app/etc -type d -exec chmod g+ws {} ;
chown -R :www-data .
chmod u+x bin/magento

Setup Magento via browser: Everything went through without any issues.

Afer magento installation:
php bin/magento cron:install
php bin/magento cron:install
chmod 555 /var/www/html/app/etc

Hope this help, If needed I can setup a remote session for you to have a look.

Cheers,
Dave

@RickDBCN
Copy link

Hi,

Any error logs in the log files?

@davegog
Copy link
Author

davegog commented Oct 23, 2018

Hi Rick,

There were no errors in the log files. I've tried 2.2.6 with the same setup, and php 7.1x and it works perfectly. For the time being I've reverted back to 2.2.6 .

@wiardvanrij wiardvanrij self-assigned this Oct 26, 2018
@magento-engcom-team
Copy link
Contributor

magento-engcom-team commented Oct 26, 2018

Hi @wiardvanrij. Thank you for working on this issue.
In order to make sure that issue has enough information and ready for development, please read and check the following instruction: 👇

  • 1. Verify that issue has all the required information. (Preconditions, Steps to reproduce, Expected result, Actual result).

    DetailsIf the issue has a valid description, the label Issue: Format is valid will be added to the issue automatically. Please, edit issue description if needed, until label Issue: Format is valid appears.

  • 2. Verify that issue has a meaningful description and provides enough information to reproduce the issue. If the report is valid, add Issue: Clear Description label to the issue by yourself.

  • 3. Add Component: XXXXX label(s) to the ticket, indicating the components it may be related to.

  • 4. Verify that the issue is reproducible on 2.3-develop branch

    Details- Add the comment @magento-engcom-team give me 2.3-develop instance to deploy test instance on Magento infrastructure.
    - If the issue is reproducible on 2.3-develop branch, please, add the label Reproduced on 2.3.x.
    - If the issue is not reproducible, add your comment that issue is not reproducible and close the issue and stop verification process here!

  • 5. Verify that the issue is reproducible on 2.2-develop branch.

    Details- Add the comment @magento-engcom-team give me 2.2-develop instance to deploy test instance on Magento infrastructure.
    - If the issue is reproducible on 2.2-develop branch, please add the label Reproduced on 2.2.x

  • 6. Add label Issue: Confirmed once verification is complete.

  • 7. Make sure that automatic system confirms that report has been added to the backlog.

@wiardvanrij
Copy link
Contributor

  1. Use magento2.3 development branche
  2. Content -> Design -> Configuration -> edit any Default Store View
  3. Other Settings -> Header -> try to upload a favicon or logo

With the change of "fileuploader" to "imageuploader" the correct formElement was not updated to match the new "imageuploader".

Created PR.

@wiardvanrij wiardvanrij added Issue: Clear Description Gate 2 Passed. Manual verification of the issue description passed Reproduced on 2.3.x The issue has been reproduced on latest 2.3 release Issue: Confirmed Gate 3 Passed. Manual verification of the issue completed. Issue is confirmed labels Oct 26, 2018
@magento-engcom-team
Copy link
Contributor

magento-engcom-team commented Oct 26, 2018

@wiardvanrij Thank you for verifying the issue.

Unfortunately, not enough information was provided to created internal ticket. Please consider adding the following:

Once all required information is added, please add label "Issue: Confirmed" again.
Thanks!

@magento-engcom-team magento-engcom-team removed the Issue: Confirmed Gate 3 Passed. Manual verification of the issue completed. Issue is confirmed label Oct 26, 2018
@wiardvanrij wiardvanrij added Issue: Confirmed Gate 3 Passed. Manual verification of the issue completed. Issue is confirmed Partner: Redkiwi labels Oct 26, 2018
@magento-engcom-team
Copy link
Contributor

magento-engcom-team commented Oct 26, 2018

@wiardvanrij Thank you for verifying the issue.

Unfortunately, not enough information was provided to created internal ticket. Please consider adding the following:

Once all required information is added, please add label "Issue: Confirmed" again.
Thanks!

@magento-engcom-team magento-engcom-team removed the Issue: Confirmed Gate 3 Passed. Manual verification of the issue completed. Issue is confirmed label Oct 26, 2018
@davegog
Copy link
Author

davegog commented Oct 27, 2018

What more information do you need to confirm the issue when all information has been provided, "Update issue content to follow format required by Issue Reporting Guidelines", well people don't have the time to follow your guidelines. Either you accept that there is an issue and open a ticket internally or you can be very pedantic and ignore the issue.Your choice! Version 2.2.6 doesn't have the same issue within the same setup!

@magento-engcom-team magento-engcom-team added Issue: Format is valid Gate 1 Passed. Automatic verification of issue format passed and removed Issue: Format is not valid Gate 1 Failed. Automatic verification of issue format is failed labels Oct 27, 2018
@wiardvanrij
Copy link
Contributor

@davegog
I understand your "frustration" but it would be easier if you did not remove the mandatory guidelines for writing an issue. I personally updated your issue with the "guidelines" as an example. I also made the fix yesterday (see PR).

I hope you understand that when dealing with a huge community there is some automation in place which focuses on formatting for easy management. It is not perse about your issue content being bad, just simply not having the mandatory rules in it.

Thanks for your effort in making the issue, please check the PR for the fix if you want to hotfix it in the meantime ;)

@wiardvanrij wiardvanrij added the Issue: Confirmed Gate 3 Passed. Manual verification of the issue completed. Issue is confirmed label Oct 27, 2018
@magento-engcom-team
Copy link
Contributor

@wiardvanrij Thank you for verifying the issue. Based on the provided information internal tickets MAGETWO-95949 were created

@magento-engcom-team magento-engcom-team added the Issue: Ready for Work Gate 4. Acknowledged. Issue is added to backlog and ready for development label Oct 27, 2018
@wiardvanrij wiardvanrij added the Progress: PR Created Indicates that Pull Request has been created to fix issue label Oct 27, 2018
@okorshenko okorshenko added the Fixed in 2.3.x The issue has been fixed in 2.3 release line label Oct 31, 2018
@okorshenko
Copy link
Contributor

Hi @davegog. Thank you for your report.
The issue has been fixed in #18851 by @wiardvanrij in 2.3-develop branch
Related commit(s):

The fix will be available with the upcoming 2.3.1 release.

@ghost ghost removed the Reproduced on 2.3.x The issue has been reproduced on latest 2.3 release label Nov 13, 2018
@ghost ghost closed this as completed Nov 13, 2018
@ghost ghost reopened this Nov 13, 2018
@ghost
Copy link

ghost commented Nov 30, 2018

Hi @davegog , thank you for you report, this issue has already fixed in 2.3-develop branch, and will be available on 2.3.1 release.

@proman77
Copy link

I've got the same problem while trying to upload a watermark:

A technical problem with the server created an error. Try again to continue what you were doing. If the problem persists, try again later.

@DanielRuf
Copy link
Contributor

@proman77 it should be already fixed in the 2.3-develop branch.

@DanielRuf
Copy link
Contributor

@magento-engcom-team give me 2.3-develop instance

@magento-engcom-team
Copy link
Contributor

Hi @DanielRuf. Thank you for your request. I'm working on Magento 2.3-develop instance for you

@magento-engcom-team
Copy link
Contributor

Hi @DanielRuf, here is your Magento instance.
Admin access: https://i-18688-2-3-develop.instances.magento-community.engineering/admin
Login: admin Password: 123123q
Instance will be terminated in up to 3 hours.

@DanielRuf
Copy link
Contributor

@proman77 please test using the link from #18688 (comment)

@proman77
Copy link

proman77 commented Dec 28, 2018

Done. Can't reproduce this issue there, It works correctly! @magento-engcom-team, I'm waiting for the fixing code here :)

@DanielRuf
Copy link
Contributor

@magento-engcom-team give me 2.2-develop instance

@magento-engcom-team
Copy link
Contributor

Hi @DanielRuf. Thank you for your request. I'm working on Magento 2.2-develop instance for you

@DanielRuf
Copy link
Contributor

If you use 2.2.x: #18688 (comment)

@magento-engcom-team
Copy link
Contributor

Hi @DanielRuf, here is your Magento instance.
Admin access: https://i-18688-2-2-develop.instances.magento-community.engineering/admin
Login: admin Password: 123123q
Instance will be terminated in up to 3 hours.

@proman77
Copy link

@DanielRuf I've tried 2.2.8 already. It's OK. No issue.

@abhaykhatariya
Copy link

#mm19in

@magento-engcom-team
Copy link
Contributor

@abhaykhatariya thank you for joining. Please accept team invitation here and self-assign the issue.

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Component: Theme Event: mm19in Fixed in 2.3.x The issue has been fixed in 2.3 release line Issue: Clear Description Gate 2 Passed. Manual verification of the issue description passed Issue: Confirmed Gate 3 Passed. Manual verification of the issue completed. Issue is confirmed Issue: Format is valid Gate 1 Passed. Automatic verification of issue format passed Issue: Ready for Work Gate 4. Acknowledged. Issue is added to backlog and ready for development Partner: Redkiwi Progress: PR Created Indicates that Pull Request has been created to fix issue
Projects
None yet
Development

No branches or pull requests

8 participants