|
Rank: Administration Groups: Administration
, Member
Joined: 12/30/2004 Posts: 1,674 Points: 1,824 Location: Wageningen (NL)
|
A Cuyahoga installation can contain multiple sites. Each site is identified with a unique url (for example http://localhost/cuyahoga). Cuyahoga examines the url at each request and then tries to find the corresponding site.
A site has nodes. The nodes have a hierarchical structure. Each node will appear as a link in the navigation. Currently a node is similar to a page, but it's likely that in the future, nodes are going to be extended so that they can contain for example links to other sites.
A node can have multiple sections. Each section needs to have an associated module that is responsible for the content. You can position a section in any available placeholder (ASP.NET placeholder control that serves as a content region) that is in your template.
Cuyahoga does only have one physical .aspx page that is responsible for displaying content (Default.aspx with UI/PageEngine.cs as codebehind) . This page examines the url, loads the appropriate site, node and sections and merges the content with the template.
To enable better visibility for search engines and site analysis tools Cuyahoga creates and uses friendly urls. During page execution these friendly urls are rewritten to an url that points to the default page with different parameters. For example http://localhost/cuyahoga/1/view.aspx is rewritten to http://localhost/cuyahoga/Default.aspx?NodeId=1 and means as much as: "please build a page for the site that belongs to http://localhost/cuyahoga and display the content that belongs to the node with ID=1 and its related sections".
The minimum steps to take for putting content online are: 1. Go to the adminstration module (for example http://localhost/cuyahoga/Admin) and log in. 2. Create a site. 3. Add a root node to the site. 4. Add a section to root node (you have to choose any of the available modules here). 5. Set authorization. 6. Go to the url that you associated with the site (view current site). You'll see an empty page with an edit button/link that belongs to the first section you just added. 7. Edit the content of the section. The way you can edit content depends on how the module that is associated to the section handles this but it's fairly straightforward. 8. That's it!
|
|
Rank: Newbie Groups: Member
Joined: 1/5/2006 Posts: 2 Points: 0
|
i am a newbie i want to know what is a password to admin page. user name :admin password :?
|
|
Rank: Administration Groups: Administration
, Member
Joined: 12/30/2004 Posts: 1,674 Points: 1,824 Location: Wageningen (NL)
|
From 0.9.0 the admin password is entered by yourself in the installer, so only you yourself know what it is.
|
|
Rank: Newbie Groups: Member
Joined: 1/5/2006 Posts: 2 Points: 0
|
martijnb wrote:From 0.9.0 the admin password is entered by yourself in the installer, so only you yourself know what it is. OK !! after i have sourcecode i has create database and run sql from install.sql and 0.9.0.sql from install directory. now i create new database with another name and edit web.config to new database name and then run install again. It's work !!!.
|
|
Rank: Newbie Groups: Member
Joined: 5/13/2006 Posts: 5 Points: 0
|
I just install the 1.0.0version of cuyahoga,but in the login page, I don't know the password of the admin user.So raise such a question :What is the default password of admin when running the installing sql? It seems to be encrypted by MD5.
|
|
Rank: Administration Groups: Administration
, Member
Joined: 12/30/2004 Posts: 1,674 Points: 1,824 Location: Wageningen (NL)
|
If you did a normal installation, you had to enter the admin password during installation. Perhaps this should be stated more clearly that this is the password you need for the first login. There is no default admin password anymore since 0.9.
|
|
Rank: Newbie Groups: Member
Joined: 12/18/2008 Posts: 1 Points: 3
|
I am newbie. I had downloaded Cuyahoga-1.5.2-bin.zip and Cuyahoga-1.5.2-src.zip files and unzipped to my drive. Then i had created a project and added the Cuyahoga-1.5.2-src file( i mean whole folder) to the created project. when i builded the project , it got builded successfully. But when i tried to run the project , it throw the exception of "Access denied for the user cvns\jsingh45". Can u plz help me ! How , can i get the Cuyahoga Editor(UI) initially , so that i can start creating content for my pages (or pages ) ?
|
|
Rank: Administration Groups: Administration
, Member
Joined: 12/30/2004 Posts: 1,674 Points: 1,824 Location: Wageningen (NL)
|
jaiprakashsingh1981 wrote: But when i tried to run the project , it throw the exception of "Access denied for the user cvns\jsingh45". Can u plz help me ! How , can i get the Cuyahoga Editor(UI) initially , so that i can start creating content for my pages (or pages ) ? It looks like your account (cvns\jsingh45) doesn't have permissions to access the SQL Server database.
|
|
Rank: Newbie Groups: Member
Joined: 5/5/2009 Posts: 1 Points: 3
|
Hello...i have a question regarding how to add a new web site to cuyahoga. What url i should put to the new website, if i'm working on a localhost server. I've put the same url for the new one with the cuyahoga sample site and i'm getting this error "query did not return a unique result: 2" - SiteStructureDao.cs.
|
|
Rank: Administration Groups: Administration
, Member
Joined: 12/30/2004 Posts: 1,674 Points: 1,824 Location: Wageningen (NL)
|
If you want to use multiple sites on your box, you have to use IIS locally and multiple sites or multiple virtual directories.
|
|
Rank: Newbie Groups: Member
Joined: 10/6/2009 Posts: 3 Points: 9
|
Oh, I had so much trouble with the install because I wasn't using the right cuyahoga version! v1.5.0!
|
|
Guest |