साथ Symfony2 में UserManager का विस्तार मैं इस linkFOSUserBundle
मेरी सेवा के अनुसार सही ढंग से पता चला है FOS की UserManager का विस्तार करने की कोशिश की, लेकिन मैं एक त्रुटि मैं हल नहीं किया जा सकता है:
ErrorException: Catchable Fatal Error: Argument 1 passed to FOS\UserBundle\Entity\UserManager::__construct() must be an instance of Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface, none given, called in
MyUserManager:
namespace ChoupsCommerce\UserBundle\Model;
use FOS\UserBundle\Entity\UserManager;
use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
class MyUserManager extends UserManager
{
public function loadUserByUsername($username)
{
$user = $this->findUserByUsernameOrEmail($username);
if (!$user) {
throw new UsernameNotFoundException(sprintf('No user with name "%s" was found.', $username));
}
return $user;
}
}
आपको वह मिल जाए एक कामकाज? मुझे भी ठीक यही समस्या है। धन्यवाद। – Creasixtine
वास्तव में, मैं बस एफओएस का उपयोग करना बंद कर देता हूं और मैं बस सिम्फनी 2 लॉगिन सिस्टम का उपयोग करता हूं। – Wifsimster
क्या आपने मेरा समाधान आजमाया? – gilden