Magento 2 Class *Factory does not exist The 2019 Stack Overflow Developer Survey Results Are...
Does duplicating a spell with Wish count as casting that spell?
Does light intensity oscillate really fast since it is a wave?
How are circuits which use complex ICs normally simulated?
Can't find the latex code for the ⍎ (down tack jot) symbol
The difference between dialogue marks
"What time...?" or "At what time...?" - what is more grammatically correct?
Should I use my personal or workplace e-mail when registering to external websites for work purpose?
Is "plugging out" electronic devices an American expression?
What are my rights when I have a Sparpreis ticket but can't board an overcrowded train?
Are there any other methods to apply to solving simultaneous equations?
aging parents with no investments
Why is the maximum length of OpenWrt’s root password 8 characters?
Carnot-Caratheodory metric
Should I write numbers in words or as numerals when there are multiple next to each other?
What does Linus Torvalds mean when he says that Git "never ever" tracks a file?
In microwave frequencies, do you use a circulator when you need a (near) perfect diode?
Is it possible for the two major parties in the UK to form a coalition with each other instead of a much smaller party?
Pristine Bit Checking
Output the Arecibo Message
What is the motivation for a law requiring 2 parties to consent for recording a conversation
Deadlock Graph and Interpretation, solution to avoid
CiviEvent: Public link for events of a specific type
What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?
Dual Citizen. Exited the US on Italian passport recently
Magento 2 Class *Factory does not exist
The 2019 Stack Overflow Developer Survey Results Are InCustom module factory not working (method is undefined)Error: Class PbuploadMediaGridDataProvider does not existClass MagentoCatalogInventoryModelStockRegistryStorage does not existMagento 2 - while saving product from admin getting error as Class MagentoConfigurableProductModelProductVariationHandler does not existgetting error: Class MagentoIndexerModelResourceModelIndexerStateCollectionFactory does not existOrder saving error: Class NamespaceModuleObserverOrderCancelled does not existException after bin/magento setup:di:compile and adding virtualTypeGeneration does not existMagento 2 Error: Class does not existHow to fix: Class from deleted module does not exist (Magento 2.3)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I was trying to install a plugin and I removed var/generation and var/cache/*. I've checked the MAGE_MODE and I'm in developer but now when I access the front-end and the admin I get random errors saying mean things like:
Class MagentoCustomerModelCustomerFactory does not exist
Class MagentoSalesModelResourceModelReportOrderFactory does not exist
Some of the classes are being created, but not all. I've tried clearing cache again, and the generation folder but then I just get the same errors.
Any ideas?
magento2
add a comment |
I was trying to install a plugin and I removed var/generation and var/cache/*. I've checked the MAGE_MODE and I'm in developer but now when I access the front-end and the admin I get random errors saying mean things like:
Class MagentoCustomerModelCustomerFactory does not exist
Class MagentoSalesModelResourceModelReportOrderFactory does not exist
Some of the classes are being created, but not all. I've tried clearing cache again, and the generation folder but then I just get the same errors.
Any ideas?
magento2
1
check the rights on the var/generation folder
– Marius♦
Feb 24 '16 at 16:08
it says drwxrwxrw- 5
– jstrez77
Feb 24 '16 at 16:16
I had to clean the var/generation folder a few times, go to the home page first, the clean, then admin, then login, then clean... and it worked...?? I don't understand this
– jstrez77
Feb 24 '16 at 17:00
add a comment |
I was trying to install a plugin and I removed var/generation and var/cache/*. I've checked the MAGE_MODE and I'm in developer but now when I access the front-end and the admin I get random errors saying mean things like:
Class MagentoCustomerModelCustomerFactory does not exist
Class MagentoSalesModelResourceModelReportOrderFactory does not exist
Some of the classes are being created, but not all. I've tried clearing cache again, and the generation folder but then I just get the same errors.
Any ideas?
magento2
I was trying to install a plugin and I removed var/generation and var/cache/*. I've checked the MAGE_MODE and I'm in developer but now when I access the front-end and the admin I get random errors saying mean things like:
Class MagentoCustomerModelCustomerFactory does not exist
Class MagentoSalesModelResourceModelReportOrderFactory does not exist
Some of the classes are being created, but not all. I've tried clearing cache again, and the generation folder but then I just get the same errors.
Any ideas?
magento2
magento2
edited Feb 24 '16 at 16:20
Amit Bera♦
59.8k1676178
59.8k1676178
asked Feb 24 '16 at 16:07
jstrez77jstrez77
3901721
3901721
1
check the rights on the var/generation folder
– Marius♦
Feb 24 '16 at 16:08
it says drwxrwxrw- 5
– jstrez77
Feb 24 '16 at 16:16
I had to clean the var/generation folder a few times, go to the home page first, the clean, then admin, then login, then clean... and it worked...?? I don't understand this
– jstrez77
Feb 24 '16 at 17:00
add a comment |
1
check the rights on the var/generation folder
– Marius♦
Feb 24 '16 at 16:08
it says drwxrwxrw- 5
– jstrez77
Feb 24 '16 at 16:16
I had to clean the var/generation folder a few times, go to the home page first, the clean, then admin, then login, then clean... and it worked...?? I don't understand this
– jstrez77
Feb 24 '16 at 17:00
1
1
check the rights on the var/generation folder
– Marius♦
Feb 24 '16 at 16:08
check the rights on the var/generation folder
– Marius♦
Feb 24 '16 at 16:08
it says drwxrwxrw- 5
– jstrez77
Feb 24 '16 at 16:16
it says drwxrwxrw- 5
– jstrez77
Feb 24 '16 at 16:16
I had to clean the var/generation folder a few times, go to the home page first, the clean, then admin, then login, then clean... and it worked...?? I don't understand this
– jstrez77
Feb 24 '16 at 17:00
I had to clean the var/generation folder a few times, go to the home page first, the clean, then admin, then login, then clean... and it worked...?? I don't understand this
– jstrez77
Feb 24 '16 at 17:00
add a comment |
8 Answers
8
active
oldest
votes
Magento 2 generates Factory classes inside var/generation
directory. So, if there is folder permission issue or folder owner issue with that directory then the factory class cannot be generated and you get such error.
When you clear var/generation
directory and set appropriate permission to it then this error should be solved.
See more on Code generation in Magento 2
Could be alsovar/di
orvar/cache
, see devdocs.magento.com/guides/v2.2/install-gde/trouble/…
– Yvan
Sep 28 '18 at 10:44
add a comment |
For me, i removed var/generation
folder then i ran magento setup:di:compile
which generated all necessary classes.
(in my case : Then i was encountered with cache issue, i removed initial cache folder.)
Then it solved my issue. Cheers !!
1
needed to change files owner at the end
– moshe beeri
Oct 9 '16 at 20:45
add a comment |
In magento new versions like 2.2.2 and above this code generation path changed to
<Magento root folder>/generated
so you need to check permissions for this folder as well. You need to run following command at the root of Magento installation directory will resolve this issue:
sudo chmod -R 777 generated/
clear cache as well in start
– Hassan Ali Shahzad
Sep 3 '18 at 8:13
its work for me
– matinict
Sep 24 '18 at 6:33
add a comment |
Definitely permissions within 'var/generation' folder.
add a comment |
It's just var folder permission issue. in CLI mode follow the following command
sudo chmod -R 777 var/
add a comment |
Magento 2 creates the factory classes in the var/generation
folder and if you add a new parameter in your __construct()
and it's Factory class does not exists then Magento 2 throws the above error message. Even though there are few solutions give already for you question, i can suggest you another solution which does not require you to clear your generation folder. Please use the below command after any change is made related to Factory classes:
bin/magento setup:di:compile
This command can be more useful on production server.
add a comment |
The following commands are needed to be executed:
sudo php -f bin/magento setup:di:compile
sudo rm -rf pub/static/*/*; sudo rm -rf var/*/*;
sudo php -f bin/magento setup:static-content:deploy -f
sudo php bin/magento cache:clean
Also, proper permission is needed. If on production, you need to execute proper permissions. But, on local machine, you can run full permission:
sudo chmod -R 777 *
add a comment |
Class ...Factory does not exist means your model class not loaded.
As Magento 2 based on modular programming so we need to specify the model class where we want to use explicitly.
We can use our model class in two types:
1.by "use"
use MagentoCustomerSetupCustomerSetupFactory;
public function __construct(CustomerSetupFactory $customerSetupFactory)
{
$this->customerSetupFactory = $customerSetupFactory;
}
Directly
public function __construct(MagentoCustomerSetupCustomerSetupFactory $customerSetupFactory){
$this->customerSetupFactory = $customerSetupFactory;
}
When you hit the URL(http://domain.com/your module frontname) of your plugin on browser than the Magento generate the code for your module as below:
vargenerationYour Vendor DirectoryYour Module DirectoryController
vargenerationYour Vendor DirectoryYour Module DirectoryModel
In your case you need to check the "CustomerFactory" and "OrderFactory" is used as above format or not.
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%2f103312%2fmagento-2-class-factory-does-not-exist%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
8 Answers
8
active
oldest
votes
8 Answers
8
active
oldest
votes
active
oldest
votes
active
oldest
votes
Magento 2 generates Factory classes inside var/generation
directory. So, if there is folder permission issue or folder owner issue with that directory then the factory class cannot be generated and you get such error.
When you clear var/generation
directory and set appropriate permission to it then this error should be solved.
See more on Code generation in Magento 2
Could be alsovar/di
orvar/cache
, see devdocs.magento.com/guides/v2.2/install-gde/trouble/…
– Yvan
Sep 28 '18 at 10:44
add a comment |
Magento 2 generates Factory classes inside var/generation
directory. So, if there is folder permission issue or folder owner issue with that directory then the factory class cannot be generated and you get such error.
When you clear var/generation
directory and set appropriate permission to it then this error should be solved.
See more on Code generation in Magento 2
Could be alsovar/di
orvar/cache
, see devdocs.magento.com/guides/v2.2/install-gde/trouble/…
– Yvan
Sep 28 '18 at 10:44
add a comment |
Magento 2 generates Factory classes inside var/generation
directory. So, if there is folder permission issue or folder owner issue with that directory then the factory class cannot be generated and you get such error.
When you clear var/generation
directory and set appropriate permission to it then this error should be solved.
See more on Code generation in Magento 2
Magento 2 generates Factory classes inside var/generation
directory. So, if there is folder permission issue or folder owner issue with that directory then the factory class cannot be generated and you get such error.
When you clear var/generation
directory and set appropriate permission to it then this error should be solved.
See more on Code generation in Magento 2
answered Mar 24 '16 at 18:20
Mukesh ChapagainMukesh Chapagain
3,88612343
3,88612343
Could be alsovar/di
orvar/cache
, see devdocs.magento.com/guides/v2.2/install-gde/trouble/…
– Yvan
Sep 28 '18 at 10:44
add a comment |
Could be alsovar/di
orvar/cache
, see devdocs.magento.com/guides/v2.2/install-gde/trouble/…
– Yvan
Sep 28 '18 at 10:44
Could be also
var/di
or var/cache
, see devdocs.magento.com/guides/v2.2/install-gde/trouble/…– Yvan
Sep 28 '18 at 10:44
Could be also
var/di
or var/cache
, see devdocs.magento.com/guides/v2.2/install-gde/trouble/…– Yvan
Sep 28 '18 at 10:44
add a comment |
For me, i removed var/generation
folder then i ran magento setup:di:compile
which generated all necessary classes.
(in my case : Then i was encountered with cache issue, i removed initial cache folder.)
Then it solved my issue. Cheers !!
1
needed to change files owner at the end
– moshe beeri
Oct 9 '16 at 20:45
add a comment |
For me, i removed var/generation
folder then i ran magento setup:di:compile
which generated all necessary classes.
(in my case : Then i was encountered with cache issue, i removed initial cache folder.)
Then it solved my issue. Cheers !!
1
needed to change files owner at the end
– moshe beeri
Oct 9 '16 at 20:45
add a comment |
For me, i removed var/generation
folder then i ran magento setup:di:compile
which generated all necessary classes.
(in my case : Then i was encountered with cache issue, i removed initial cache folder.)
Then it solved my issue. Cheers !!
For me, i removed var/generation
folder then i ran magento setup:di:compile
which generated all necessary classes.
(in my case : Then i was encountered with cache issue, i removed initial cache folder.)
Then it solved my issue. Cheers !!
answered Aug 20 '16 at 9:03
Suman K.CSuman K.C
789627
789627
1
needed to change files owner at the end
– moshe beeri
Oct 9 '16 at 20:45
add a comment |
1
needed to change files owner at the end
– moshe beeri
Oct 9 '16 at 20:45
1
1
needed to change files owner at the end
– moshe beeri
Oct 9 '16 at 20:45
needed to change files owner at the end
– moshe beeri
Oct 9 '16 at 20:45
add a comment |
In magento new versions like 2.2.2 and above this code generation path changed to
<Magento root folder>/generated
so you need to check permissions for this folder as well. You need to run following command at the root of Magento installation directory will resolve this issue:
sudo chmod -R 777 generated/
clear cache as well in start
– Hassan Ali Shahzad
Sep 3 '18 at 8:13
its work for me
– matinict
Sep 24 '18 at 6:33
add a comment |
In magento new versions like 2.2.2 and above this code generation path changed to
<Magento root folder>/generated
so you need to check permissions for this folder as well. You need to run following command at the root of Magento installation directory will resolve this issue:
sudo chmod -R 777 generated/
clear cache as well in start
– Hassan Ali Shahzad
Sep 3 '18 at 8:13
its work for me
– matinict
Sep 24 '18 at 6:33
add a comment |
In magento new versions like 2.2.2 and above this code generation path changed to
<Magento root folder>/generated
so you need to check permissions for this folder as well. You need to run following command at the root of Magento installation directory will resolve this issue:
sudo chmod -R 777 generated/
In magento new versions like 2.2.2 and above this code generation path changed to
<Magento root folder>/generated
so you need to check permissions for this folder as well. You need to run following command at the root of Magento installation directory will resolve this issue:
sudo chmod -R 777 generated/
edited Sep 27 '18 at 13:02
Nadeem0035
593411
593411
answered Sep 3 '18 at 8:11
Hassan Ali ShahzadHassan Ali Shahzad
734317
734317
clear cache as well in start
– Hassan Ali Shahzad
Sep 3 '18 at 8:13
its work for me
– matinict
Sep 24 '18 at 6:33
add a comment |
clear cache as well in start
– Hassan Ali Shahzad
Sep 3 '18 at 8:13
its work for me
– matinict
Sep 24 '18 at 6:33
clear cache as well in start
– Hassan Ali Shahzad
Sep 3 '18 at 8:13
clear cache as well in start
– Hassan Ali Shahzad
Sep 3 '18 at 8:13
its work for me
– matinict
Sep 24 '18 at 6:33
its work for me
– matinict
Sep 24 '18 at 6:33
add a comment |
Definitely permissions within 'var/generation' folder.
add a comment |
Definitely permissions within 'var/generation' folder.
add a comment |
Definitely permissions within 'var/generation' folder.
Definitely permissions within 'var/generation' folder.
answered Jul 20 '17 at 15:33
Travis van der FontTravis van der Font
1012
1012
add a comment |
add a comment |
It's just var folder permission issue. in CLI mode follow the following command
sudo chmod -R 777 var/
add a comment |
It's just var folder permission issue. in CLI mode follow the following command
sudo chmod -R 777 var/
add a comment |
It's just var folder permission issue. in CLI mode follow the following command
sudo chmod -R 777 var/
It's just var folder permission issue. in CLI mode follow the following command
sudo chmod -R 777 var/
answered Mar 19 '18 at 3:41
AnwarAnwar
3910
3910
add a comment |
add a comment |
Magento 2 creates the factory classes in the var/generation
folder and if you add a new parameter in your __construct()
and it's Factory class does not exists then Magento 2 throws the above error message. Even though there are few solutions give already for you question, i can suggest you another solution which does not require you to clear your generation folder. Please use the below command after any change is made related to Factory classes:
bin/magento setup:di:compile
This command can be more useful on production server.
add a comment |
Magento 2 creates the factory classes in the var/generation
folder and if you add a new parameter in your __construct()
and it's Factory class does not exists then Magento 2 throws the above error message. Even though there are few solutions give already for you question, i can suggest you another solution which does not require you to clear your generation folder. Please use the below command after any change is made related to Factory classes:
bin/magento setup:di:compile
This command can be more useful on production server.
add a comment |
Magento 2 creates the factory classes in the var/generation
folder and if you add a new parameter in your __construct()
and it's Factory class does not exists then Magento 2 throws the above error message. Even though there are few solutions give already for you question, i can suggest you another solution which does not require you to clear your generation folder. Please use the below command after any change is made related to Factory classes:
bin/magento setup:di:compile
This command can be more useful on production server.
Magento 2 creates the factory classes in the var/generation
folder and if you add a new parameter in your __construct()
and it's Factory class does not exists then Magento 2 throws the above error message. Even though there are few solutions give already for you question, i can suggest you another solution which does not require you to clear your generation folder. Please use the below command after any change is made related to Factory classes:
bin/magento setup:di:compile
This command can be more useful on production server.
answered Sep 27 '18 at 13:12
Sourabh Kumar SharmaSourabh Kumar Sharma
671316
671316
add a comment |
add a comment |
The following commands are needed to be executed:
sudo php -f bin/magento setup:di:compile
sudo rm -rf pub/static/*/*; sudo rm -rf var/*/*;
sudo php -f bin/magento setup:static-content:deploy -f
sudo php bin/magento cache:clean
Also, proper permission is needed. If on production, you need to execute proper permissions. But, on local machine, you can run full permission:
sudo chmod -R 777 *
add a comment |
The following commands are needed to be executed:
sudo php -f bin/magento setup:di:compile
sudo rm -rf pub/static/*/*; sudo rm -rf var/*/*;
sudo php -f bin/magento setup:static-content:deploy -f
sudo php bin/magento cache:clean
Also, proper permission is needed. If on production, you need to execute proper permissions. But, on local machine, you can run full permission:
sudo chmod -R 777 *
add a comment |
The following commands are needed to be executed:
sudo php -f bin/magento setup:di:compile
sudo rm -rf pub/static/*/*; sudo rm -rf var/*/*;
sudo php -f bin/magento setup:static-content:deploy -f
sudo php bin/magento cache:clean
Also, proper permission is needed. If on production, you need to execute proper permissions. But, on local machine, you can run full permission:
sudo chmod -R 777 *
The following commands are needed to be executed:
sudo php -f bin/magento setup:di:compile
sudo rm -rf pub/static/*/*; sudo rm -rf var/*/*;
sudo php -f bin/magento setup:static-content:deploy -f
sudo php bin/magento cache:clean
Also, proper permission is needed. If on production, you need to execute proper permissions. But, on local machine, you can run full permission:
sudo chmod -R 777 *
answered 2 mins ago
AgiloxAgilox
1306
1306
add a comment |
add a comment |
Class ...Factory does not exist means your model class not loaded.
As Magento 2 based on modular programming so we need to specify the model class where we want to use explicitly.
We can use our model class in two types:
1.by "use"
use MagentoCustomerSetupCustomerSetupFactory;
public function __construct(CustomerSetupFactory $customerSetupFactory)
{
$this->customerSetupFactory = $customerSetupFactory;
}
Directly
public function __construct(MagentoCustomerSetupCustomerSetupFactory $customerSetupFactory){
$this->customerSetupFactory = $customerSetupFactory;
}
When you hit the URL(http://domain.com/your module frontname) of your plugin on browser than the Magento generate the code for your module as below:
vargenerationYour Vendor DirectoryYour Module DirectoryController
vargenerationYour Vendor DirectoryYour Module DirectoryModel
In your case you need to check the "CustomerFactory" and "OrderFactory" is used as above format or not.
add a comment |
Class ...Factory does not exist means your model class not loaded.
As Magento 2 based on modular programming so we need to specify the model class where we want to use explicitly.
We can use our model class in two types:
1.by "use"
use MagentoCustomerSetupCustomerSetupFactory;
public function __construct(CustomerSetupFactory $customerSetupFactory)
{
$this->customerSetupFactory = $customerSetupFactory;
}
Directly
public function __construct(MagentoCustomerSetupCustomerSetupFactory $customerSetupFactory){
$this->customerSetupFactory = $customerSetupFactory;
}
When you hit the URL(http://domain.com/your module frontname) of your plugin on browser than the Magento generate the code for your module as below:
vargenerationYour Vendor DirectoryYour Module DirectoryController
vargenerationYour Vendor DirectoryYour Module DirectoryModel
In your case you need to check the "CustomerFactory" and "OrderFactory" is used as above format or not.
add a comment |
Class ...Factory does not exist means your model class not loaded.
As Magento 2 based on modular programming so we need to specify the model class where we want to use explicitly.
We can use our model class in two types:
1.by "use"
use MagentoCustomerSetupCustomerSetupFactory;
public function __construct(CustomerSetupFactory $customerSetupFactory)
{
$this->customerSetupFactory = $customerSetupFactory;
}
Directly
public function __construct(MagentoCustomerSetupCustomerSetupFactory $customerSetupFactory){
$this->customerSetupFactory = $customerSetupFactory;
}
When you hit the URL(http://domain.com/your module frontname) of your plugin on browser than the Magento generate the code for your module as below:
vargenerationYour Vendor DirectoryYour Module DirectoryController
vargenerationYour Vendor DirectoryYour Module DirectoryModel
In your case you need to check the "CustomerFactory" and "OrderFactory" is used as above format or not.
Class ...Factory does not exist means your model class not loaded.
As Magento 2 based on modular programming so we need to specify the model class where we want to use explicitly.
We can use our model class in two types:
1.by "use"
use MagentoCustomerSetupCustomerSetupFactory;
public function __construct(CustomerSetupFactory $customerSetupFactory)
{
$this->customerSetupFactory = $customerSetupFactory;
}
Directly
public function __construct(MagentoCustomerSetupCustomerSetupFactory $customerSetupFactory){
$this->customerSetupFactory = $customerSetupFactory;
}
When you hit the URL(http://domain.com/your module frontname) of your plugin on browser than the Magento generate the code for your module as below:
vargenerationYour Vendor DirectoryYour Module DirectoryController
vargenerationYour Vendor DirectoryYour Module DirectoryModel
In your case you need to check the "CustomerFactory" and "OrderFactory" is used as above format or not.
answered Jul 14 '16 at 6:18
Suman SinghSuman Singh
604614
604614
add a comment |
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%2f103312%2fmagento-2-class-factory-does-not-exist%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
1
check the rights on the var/generation folder
– Marius♦
Feb 24 '16 at 16:08
it says drwxrwxrw- 5
– jstrez77
Feb 24 '16 at 16:16
I had to clean the var/generation folder a few times, go to the home page first, the clean, then admin, then login, then clean... and it worked...?? I don't understand this
– jstrez77
Feb 24 '16 at 17:00