Awesome Tutorial!!! Straightforward and learned a lot. Thank you
@anothermagentodev91612 жыл бұрын
Glad it was helpful!
@wd70803 жыл бұрын
Thank you for this tutorial! I struggled with the virtual hosts (i.e., Nginx configuration file) when I installed Magento 2 in a subfolder. Any pointer or tutorial about installing Magento in a subfolder is highly appreciated!
@anothermagentodev91612 жыл бұрын
It all depends what's in the main root folder how come it's in a subfolder?
@kresosusec12 жыл бұрын
Greeting from Croatia,. i need help. Can you link me tutorial on how to make this. 2. Create a module that adds an arbitrary one to the product setting (attribute) type: custom description. (which means that it is necessary to add this attribute programmatically, not user) 3. Call the custom description on the frontend and display it. This should be called in one of the .phtml of the topic. 4. Make this description red. some style (CSS) should be applied This module needs to be buried and sent. Thanks
@anothermagentodev91612 жыл бұрын
Not 💯 sure on this one pal sorry
@_kie3 жыл бұрын
Hello, can you please create tutorial how to setup grunt with several themes?
@anothermagentodev91613 жыл бұрын
Yes, soon as I get round to it I'm planning. Grunt, and Laravel Mix theming
@captivedigitalza95112 жыл бұрын
Awesome tutorial - environment is setup 100% - I am however unable to upload product data from my template - I have increased size for Max_file uploads and Post_max size however am getting error on import screen - "Request Entity Too Large". hope you can share some insight on this - server is setup on nginx and valet installed
@anothermagentodev91612 жыл бұрын
That does indeed sound like an obscure nginx setting so I’m not too sure. Make sure you are editing the php file for the correct version of php you are using and restart your servers. Failing that checkout my tutorial on a better way to upload product data using firebear extension through google sheets. Then file size becomes irrelevant.
@anothermagentodev91612 жыл бұрын
Take a look Better Magento Product imports kzbin.info/www/bejne/fZ-kcn6if9Vlr5o
@captivedigitalza95112 жыл бұрын
@@anothermagentodev9161 thanks will do
@anothermagentodev91612 жыл бұрын
All the best of luck!
@imedox_dz2 жыл бұрын
Fix somme error: 9:55 if you got plugin error: use mysql; update user set plugin="mysql_native_password" where User='root'; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root'; 14:35 if you got error Your requirements could not be resolved to an installable set of packages. composer global require genesisweb/valet-linux-plus --ignore-platform-reqs
@anothermagentodev91612 жыл бұрын
Thanks for this!
@luciosaldivar99602 жыл бұрын
hi, so i am getting a blank screen. everything installed right and i'm getting no errors but when i go to magento.test its a blank white page.
@anothermagentodev91612 жыл бұрын
Check your ‘valet links’ and also make sure you have ‘valet secure magento’
@Johnny-je1kf2 жыл бұрын
why do you use Ubuntu 14.04, why not 20.04? I have tried to install magento 2.4.3 into ubutntu 20.04, but failed. The error message is "Cannot instantiate interface PsrExt\Log\LoggerInterface", do you know this?
@anothermagentodev91612 жыл бұрын
Im pretty certain im running ubuntu 20 ➜ ~ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.4 LTS Release: 20.04 Codename: focal
@malafalx912 жыл бұрын
hi, thanks for the video. I have a question. Is it possible to install another website on the same machine? If so, how do you do it with elasticsearch?
@anothermagentodev91612 жыл бұрын
Yes, you can, All you need to do is set elastci search to different index names like this: site one 'elasticsearch7_index_prefix' => 'magento2', site two 'elasticsearch7_index_prefix' => 'another_magento2',
@the_what2 жыл бұрын
For anyone in minute 29:30 fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; proxy_buffer_size 128k; proxy_buffers 4 256k; proxy_busy_buffers_size 256k;
@anothermagentodev91612 жыл бұрын
Love this! Thankyou!
@alvarooliveira42472 жыл бұрын
Hey! I was trying to run the command valet install but it can't connect to the mysql server but when I run mysql -u root -p I can connect. Do you know how to fix it?
@anothermagentodev91612 жыл бұрын
Its hard to know with not much information. However log into mysql and check your root user has full privileges and is set to root@localhost too
@gopalenparasuraman49602 жыл бұрын
Hey, i ran into the same problem but fixed it by doing the following: - ignore the error that valet cannot connect to MYSQL etc. - run this command in your terminal: mysqladmin -u root --password='' password root (You might want to login first to mysql with your root user and password before running the command) - then just run valet db:list That works for me. Hope it does for you.