Is it possible to use accounts created by ZfcUser zf1 in zf2 project ?
Actually, I have a users list created by ZFCuser module (zf1) and i want use the same list with zf2 project.
If it's possible , How ?
Related
I am create small demo in AngularJs with mvc. i want create login module in demo using membership asp.net c#.but i am not aware with membership provider so any one help and know how to use memebrship provider and create login module with it.
I have an umbraco application. I want to integrate angular2 sub directory as a part of umbraco application. If some one type UmbracoURL/Inventory, I want to show angular2 Inventory application. Can any one provide me a solution please...?
Is the Angular2 app a single page app? In that case you can integrate it as part of the Umbraco application.
You'll need to create a template in Umbraco with you Angular2 application, perhaps introduce a new documenttype called Inventory? Then create a new node called Inventory at root level in the Content tree, set the template to new Inventory template. And you should be able to access the angular2 app through the /inventory url.
If you want to use the content of a physical directory in Umbraco, you'll probably have to change the Umbraco/MVC routing
I downloaded the Zend 2 Skeleton Application which comes with the module "Application". This module is the central point of the "Framework".
Now I want to add some routes/pages like "terms", "contact" etc. That brings me to the essential question:
Is it best practise to customize the "Application" module or am I supposed to create my own module? Especially if I want to add some static pages? If I'm gonna customize the Application module I can't update the Framework via composer anymore, I guess.
Thanks for everyone's help.
It depends. If you wanna edit this "static pages" via wysiwyg make separate module for pages (CMS ?)
If you will have pure static pages just add new controllers to Application.
Current trend is to make API in backend and use some frontend framework for front (so front-end will be responsible for load proper views)
I have a Umbraco website and an MVC application and I would like to use Umbraco login/administration to secure my MVC application. Does anyone know how I can do this?
Thanks
The latest versions of Umbraco works right along side managing members with membership, with the standard System.Web.Security. I use Umbraco 6 but it was added after 4.1 I think. A brief summary of setting it up.
Create some login forms in Umbraco using the Windows membership code in your controller, (there are many tutorials on the internet).
Add a member type in the Umbraco admin members section.
Set the defaultMemberTypeAlias to your member type in your web.config.
Set up public access by clicking right on your pages in the Umbraco admin content panel.
Login and you should see your member in the members section.
Add some code to your menu to show and hide member pages.
There is a very nice NuGet package with the code to get you started:
PM> Install-Package CWS.Umbraco.Standard.Membership
I want to make a modular CMS in Zend Framework 2 . Like News module , Gallery module and etc...
How to make independent module in zf2 ? My biggest challenge in this case is configuring other modules like Zfcadmin and BjyAuthorize modules.
How Can I set all configurations in my own module ? Is it possible ?
You can config other modules in your module. For example you can add child route of ZfcAdmin in your news module . There is no obligation to configure each module in its module.config.php file. Remember modules are just namespaces
You should definitely have a look at ensemble if you want to develop your own CMS. Ensemble is built on top of ZfcAdmin so you can hook into both if you want to.
Disclaimer: I am the author of both Ensemble and ZfcAdmin
With regard to the configuration of ZfcAdmin, you should definitely start with the documentation. It's provided in the repository of ZfcAdmin. There is also a single page document about BjyAuthorize how to configure the module.
If you are not familiar with ZF2 and modules of ZF2 in general, I suggest to follow the user guide first.