Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

General Inquiry Magento 1. x / Magento 2. x CMS Problem Inquiry Post It Here

mazestricks

Proficient
Advanced Member
Messages
290
Reaction score
2
Points
28
Just post your questions with regards to Magento CMS in here. I will try to answer them to the extent of my skills.

Just follow this kind of format below.
So that if, I have some free time to help and try to answer your questions.

Preconditions (*)

Steps to reproduce (*)

Expected result (*)

  1. [Screenshots, logs, or description]

Actual result (*)

  1. [Screenshots, logs, or description]

Useful Links:
Magento Quality Patch Github Official
Magento Support

How to set up a local environment server using windows? (Note: You can install Magento 2 or any other CMS's using WinNMP)
Try this one: WinNMP - Nginx MariaDB MongoDB Redis Php 8 development stack for Windows
(Note: I don't recommend running Magento 2 using WinNMP, But you can still try it out from your end if you like)

How to set up Magento 2 local environment server using Docker? (Note: Just follow the instructions from that GitHub repo)

Try this one: markshust/docker-magento

Respect post friends!👨‍💻
 
Last edited:
Ok ba yan winmp? Mabilis naman sya pag may magento ka sa windows?
Hello po, Okay lang sya sa winmp running lang sya. Peru mai na encounter ako na issue dyan before. Yong symlink not working since sa Windows walang symlink.
Para mag work sya sa windows kahit papaano.

Try this: app/etc/di.xml
Code:
From this ang default is naka set to Symlink
<virtualType name="developerMaterialization" type="Magento\Framework\App\View\Asset\MaterializationStrategy\Factory">
    <arguments>
        <argument name="strategiesList" xsi:type="array">
            <item name="view_preprocessed" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink</item>
            <item name="default" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink</item>
        </argument>
    </arguments>
</virtualType>

Update mo change to "Copy" ang default.
<virtualType name="developerMaterialization" type="Magento\Framework\App\View\Asset\MaterializationStrategy\Factory">
    <arguments>
        <argument name="strategiesList" xsi:type="array">
            <item name="view_preprocessed" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink</item>
            <item name="default" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Copy</item>
        </argument>
    </arguments>
</virtualType>



Magento 2 is only for Linux. Not supported ang Windows
https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html1649689962459.png
 
Back
Top Bottom