> The site is built on cakephp framework. > I had a guy build the site, he is still working on the back end. Probably it would be a nice idea to simply ask that guy which is still working on your site?
> I want to add pages of information about what we do. > The site is currently at velocity.phpmydev.com You can put static information into your views folder. Let me give you 1 example: You can modifiy the content from "http://velocity.phpmydev.com/ members/" in /app/views/members/index.ctp If you want to create something like http://velocity.phpmydev.com/about/ you have to create a new view: /app/views/about/index.ctp As CakePHP works with MVC, you also should create a controller and a model. When you open in your browser http://velocity.phpmydev.com/about/ , you receive onscreen instructions how to do that. See also: http://book.cakephp.org/view/890/Understanding-Model-View-Controller You have also the possibility to create static pages without controller and model See: http://www.google.at/search?q=static+content+with+routes+cakephp&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:de:official&client=firefox-a > I simply cannot figure out where content for the site is located, e.g. where > the text body content here is. In what file in what folder etc. You can find the layout in /app/views/layouts probably your layout is named default.ctp. > Also, what tool is used to develop sites like this, Dreamweaver or something > else? That depends on your personal needs. (personally I use simply notepad+ + or vim) I recommed you to read through http://book.cakephp.org and test around with tutorials and examples /chapter 11 Hopefully I was able to help you. That's my first post here ;) Rene On 29 Aug., 14:33, Ashley Gibbon <[email protected]> wrote: > The site is built on cakephp framework. > I had a guy build the site, he is still working on the back end. > > I want to add pages of information about what we do. > The site is currently at velocity.phpmydev.com > > I simply cannot figure out where content for the site is located, e.g. where > the text body content here is. In what file in what folder etc. > > If I could only figure this out I may be able to move ahead. > > Also, what tool is used to develop sites like this, Dreamweaver or something > else? > > Thanks. Ashley. > On Aug 29, 2011 8:07 AM, "Zaky Katalan-Ezra" <[email protected]> wrote: > > > > > > > > > How it relate to cake? > > What do you have now on your site? > > What content do you want to add? > > etc. > > > On Sat, Aug 27, 2011 at 6:02 PM, Binkoba M24 414 <[email protected]> > wrote: > > >> Hi > > >> I need some help figuring out how to edit and add pages to a site I > >> had built. I have the ftp access, but it does not seem to be a normal > >> http site, and I cannot find where to put content. > > >> Site address ishttp://velocity.phpmydev.com > > >> I may be interested in paying for the advice I need, I want to be able > >> to do the work myself from now on. > > >> Ashley > > >> -- > >> Our newest site for the community: CakePHP Video Tutorials > >>http://tv.cakephp.org > >> Check out the new CakePHP Questions sitehttp://ask.cakephp.organd help > >> others with their CakePHP related questions. > > >> To unsubscribe from this group, send email to > >> [email protected] For more options, visit this group > >> athttp://groups.google.com/group/cake-php > > > -- > > Our newest site for the community: CakePHP Video Tutorials > > http://tv.cakephp.org> Check out the new CakePHP Questions > sitehttp://ask.cakephp.organd help > > others with their CakePHP related questions. > > > To unsubscribe from this group, send email to > > [email protected] For more options, visit this group > > athttp://groups.google.com/group/cake-php -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
