Re: HABTM saving problem - solved (I think)

2009-07-20 Thread seb
(); But where does that $category come from? Is it the $this-data ['Category']? In which case should it be $category[Candidate] [CandidateItem]? Seb On Jul 14, 10:02 pm, cc_humbry conrad.cramp...@gmail.com wrote: Finally sorted this for anyone else who has the sameproblem... iterate over my

Re: blog tutor not working

2008-05-08 Thread seb
http://localhost/ points to /var/www/html/blog http://localhost/posts/ And what about localhost/blog/posts ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to

Re: OT: Shitty Community

2008-05-08 Thread seb
I feel that if someone comes to the group with a question, EVEN IF IT'S BEEN ASKED BEFORE, it deserves an answer, or at least a _polite_ point in the direction of the answer Well, IMHO, if the guys are not up to browse the list thru Google Groups to find the answer, I think they should stop

Re: blog tutor not working

2008-05-08 Thread seb
seb wrote: http://localhost/ points to /var/www/html/blog http://localhost/posts/ And what about localhost/blog/posts ? Ouch. Made a mistake. Forget it. Do you have a posts_controller.php file in your controllers folder ? --~--~-~--~~~---~--~~ You

Re: Getting Cake build version?

2008-05-08 Thread seb
Mathew Nik Foscarini wrote: I hope this isn't a stupid question, but how can I check what version of Cake 1.2. is installed? There's a version.txt file located in cake core files folder. I also need to update my Cake 1.2 install with the latest version. When copying files over top my

RSS feeds : Something is wrong with Thunderbird

2008-05-07 Thread seb
Hi all bakers outta here ! I've built a RSS feed with the RequestHandler trick. Works like a charm in Firefox ! Using the same feed address with Thunderbird fails as it just displays the very last article I inserted in my database and not the 10 latest ones like in Firefox. What's wrong ?

Re: RSS feeds : Something is wrong with Thunderbird

2008-05-07 Thread seb
Sliv (Tim MacAleese) wrote: I think your subject is the answer? :P Damn ! :D Well, I do not use TB a lot, at all I must admit, for RSS feeds and I just wanted to check is everything was okay. Obvisouly, there's a gremlins hidden somewhere. Opera also fails the same way than Thunderbird A

Re: RSS feeds : Something is wrong with Thunderbird

2008-05-07 Thread seb
Sliv (Tim MacAleese) wrote: Have you run this through a feed validator like http://validator.w3.org/feed/ It might flag something... Yes ! Thanxx for giving me the tip :) I am displaying my news in their complete form on my index page, I do not need any 'view' action for each news. So all

Re: CakePHP and Oracle... Can't get it to work :(

2008-05-07 Thread seb
Fatal error: Call to undefined function oci_connect() in XAMPPLite \htdocs\cake\cake\libs\model\datasources\dbo\dbo_oracle.php on line 144 What am I doing wrong here ? This means that you don't have the Oracle client libraries installed.

Re: drop down question

2008-04-29 Thread seb
Conceptually, this can be done this way : For the options your users should enter, enclose a textarea field inside a DIV that is by default on visibility:hidden CSS style. On the dropdown, trigger the onChange Javascript event to check out if the 'dropdown' option is selected. If yes, change

Re: Can Cake Do Calculated Ordered List SQL Queries?

2008-04-26 Thread seb
Thanks - for what it's worth, I have given your post a 5* rating on Google. Definitely switching from raw PHP to Cake! Thanxx for it. The best way to start is to study the official Cookbook doc found here : http://manual.cakephp.org/ The simple blog tutorial just rocks

Re: Routing to RSS feed

2008-04-25 Thread seb
my only idea would be creating an rss controller and then redirect to main/index.rss obviously that is not really pretty Well, that's an idea but it still sounds as a workaround. For the moment, I've created an empty rss folder at the server root and a .htaccess with a redirect permanent

Re: problem making a select box

2008-04-25 Thread seb
rtanz wrote: hi i would like to make a select box with a label and dropdown, default value 'Yes' and no empty value. I am trying this code but its not working as i want to, can you help me out? With Cake 1.2, you should try this : echo

Re: Form data not available in controller

2008-04-25 Thread seb
Sorry, I just meant the error message I added in my controller (the flash message in the else clause) i.e. cakephp doesn't think there's anything in $this-data. In your controller, did you try this : $this-Model-create(); $this-Model-save($this-data); instead of :

Re: problem making a select box

2008-04-25 Thread seb
rtanz wrote: tried that and got this error Parse error: syntax error, unexpected T_DOUBLE_ARROW in /home/jpgalea/ public_html/survey/app/views/surveys/edit.ctp on line 9 Sorry for that, I should have done a cut paste from my own code. Made a typo by forgetting to enclose all things

Re: Can Cake Do Calculated Ordered List SQL Queries?

2008-04-25 Thread seb
Mark Lawton wrote: Hi Everyone, I would like to switch to using Cake, but looking at http://manual.cakephp.org/view/66/models , I don't see an obvious way to ask for a calculated ordered list from a database - and these are indispensable to our website. Suppose, for example, one wanted the

Cake 1.2 final release date

2008-04-25 Thread seb
Well, this might have been asked a few times before but does anybody have any idea when 1.2 will be available as stable release ? Yes I know When it's done :D --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: problem making a select box

2008-04-25 Thread seb
rtanz wrote: cheers that worked perfectly, another thing while we're at it, i am noticing that the code works the same whether you use single or double quotes, is one or the other better? Sorry might be a php thing and nothing related to cake, im not an expert in php itself either. thanks

Re: Cake 1.2 final release date

2008-04-25 Thread seb
And looking at the bug list in trac, I wouldn't say there are any major changes in the pipeline either. Going from 1.1 to 1.2 isn't totally trivial, so the sooner you get started on such a transition the better. If you are waiting for a final release before making that change, I would

Routing to RSS feed

2008-04-24 Thread seb
Hi all bakers I succeded in generating RSS feeds following the marvelous tutorial from Jiri Johannes Kupiainen found on webarchives. I'm still stuck with one thing, though. I want to route mydomain.com/app/rss to mydomain/app/index.php/main/index.rss I'm trying this :

Re: Displaying in Input Field Value of Parent Element

2008-04-24 Thread seb
In my bill add view i've currently this entry: echo $form-input('member_id'); The result is a dropdownlist with all the ID's available in the Members table. But here i don't want to see the ID, i want to see the lastname from the lastname column. In your controller, setup the $names

Re: Form data not available in controller

2008-04-24 Thread seb
When I submit the form, the controller branches to display the error message in my view, along with the following: 1 query took 2 ms NrQuery Error AffectedNum. rows Took (ms) 1 DESCRIBE `contacts` 6 6 2 Well, *which* error message ? It

Re: Routing to RSS feed

2008-04-24 Thread seb
MarcS wrote: try Router::connect('/rss',array('controller'='main','action'='index', 'ext' = 'rss)); I guess this ought to work This does not work. Gives me 404 :( --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

AppController methods in CakePHP 1.2

2008-01-30 Thread Seb
inherit function properly from their parent objects... Please help! Thanks Seb --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com

Re: AppController methods in CakePHP 1.2

2008-01-30 Thread Seb
/controllers/app_controller.php and that didn't work either...) Thanks! Seb On Jan 30, 10:07 am, Seb [EMAIL PROTECTED] wrote: Hi! I'm just thinking about moving an App i'm working on to CakePHP 1.2 so that I can enjoy some of the new features... I seem to have fallen at the first hurdle

Re: AppController methods in CakePHP 1.2

2008-01-30 Thread Seb
OK, now I'm confused. I've just got the latest nightly, put app_controller.php in /app/ app_controller.php and it seems to be working - looks like there's something broke in the new year's build?! Thanks for the help anyway - i'll pseudo protect my functions from now on :D Seb On Jan 30, 10

Displaying error messages fro validation in element

2008-01-20 Thread seb
Hi all bakers The problem is : I have 2 columns site layout where a mailing list subscription block can be seen on all the pages. So I put it into en element. Basically, this is just a form with text input and subscribe button, so I have built a mailinglist model and a mailinglist controller

Re: finAll with recursive associated models

2008-01-08 Thread seb
francky06l wrote: You can use the fields option in the relation declaration (you can also use bindModel prior to your findAll), or use the Bindable behavior from Mariano in the Bakery. hth Thanks Franck, I will investigate this way ! --~--~-~--~~~---~--~~

Nested items with HABTM

2008-01-07 Thread Seb
for a articles_articles table (which i don't think (correct me if i'm wrong) i want nor need) Any help would be greatly appreciated! Thanks Seb Maynard --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post

Re: Nested items with HABTM

2008-01-07 Thread Seb
named elements, then mapped them specifically to Article - i've just tried this and it seems to work! Thanks for the help - if you can offer any more explanation of why/how this works, that would be great :D Thanks Seb On Jan 7, 1:22 pm, grigri [EMAIL PROTECTED] wrote: If your structure

Re: Nested items with HABTM

2008-01-07 Thread Seb
Just to clarify, what i'd done (with both just pointing to Article) didn't work and borked out with an error non-unique key Article or something similar... Seb On Jan 7, 1:28 pm, Seb [EMAIL PROTECTED] wrote: This is interesting - I'd previously tried without using the HABTM part: class

Re: {n} in generateList : What does that mean ?

2008-01-07 Thread seb
Try checking out this link, it might explain it better: http://www.thinkingphp.org/2007/02/24/cake-12s-set-class-eats-arrays-for-breakfast/ Thanks for this link ! It's much more clearer for me now. --~--~-~--~~~---~--~~ You received this message because you

Re: Calling core devs for a quick brief on Admin Routing in 1.2

2007-09-19 Thread Seb
Right on! Cake is getting sweeter every day! :) Would it help for me to raise a TRAC ticket or is it all under control? Thanks Chris! Seb. On Sep 19, 10:45 pm, Chris Hartjes [EMAIL PROTECTED] wrote: On 9/19/07,Seb[EMAIL PROTECTED] wrote: The error is; You are seeing this error because

Re: Calling core devs for a quick brief on Admin Routing in 1.2

2007-09-19 Thread Seb
Mmmm.. quick enough! fixed in r5672 by phpnut! Thanks heaps! Seb. On Sep 20, 11:28 am, Seb [EMAIL PROTECTED] wrote: Right on! Cake is getting sweeter every day! :) Would it help for me to raise a TRAC ticket or is it all under control? Thanks Chris! Seb. On Sep 19, 10:45 pm, Chris

Calling core devs for a quick brief on Admin Routing in 1.2

2007-09-18 Thread Seb
on this? Cheers, Seb. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more

Re: Calling core devs for a quick brief on Admin Routing in 1.2

2007-09-18 Thread Seb
in the appcontroller, which includes admin_index. The results is that protected_action error... saying I can't access admin_index directly... Cheers for the inputs! Seb. On Sep 18, 5:18 pm, Seb [EMAIL PROTECTED] wrote: Hi guys, I'd be interested to hear any of the core developers (nate, nut, gwoo

Re: Calling core devs for a quick brief on Admin Routing in 1.2

2007-09-18 Thread Seb
Hi Adam, Good point you're raising! Though we've been updating from that branch for as long as the project has been going (~6months now) and it't proved pretty good! Now that's broken more than unstable. But yeah.. awesome point.. I'll give that a try in the morning!! Cheers mate! Seb. On Sep

Cake admin routing in 1.2.x.x DEV

2007-09-09 Thread Seb
where we want it...! ;) Anyway... any input? Cheers, Seb. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group

Re: Cake admin routing in 1.2.x.x DEV

2007-09-09 Thread Seb
All right... fixed! The configuration was changed from defining CAKE_ADMIN to calling Configure::write('Routing.admin', 'admin'); and our coufig was not updated for some reason. Works like a charm now! Hope this helps anyone! Thanks ladies! ;) Seb. On Sep 10, 12:04 pm, Seb [EMAIL PROTECTED

Re: How to reset a form when using an AJAX helper?

2007-04-12 Thread Seb
anyone else... Seb. On Apr 7, 5:45 am, Andres Monroy-Hernandez [EMAIL PROTECTED] wrote: I have a form with a textarea and a submitbuttongenerated with theAJAXhelper. When clicking on the submitbuttonI want to send the request to the server, update the corresponding HTML element *and* clear

Re: how to deal with $this-User-findById('3')['User']['name']

2007-04-07 Thread Seb
something like this instead; extracts only the username... instead of the whole user obj... $foo = $this-get($this-User- findbyId('3',array('name')),'User.name'); Hope this helps! Seb. On Apr 7, 5:33 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: when code in cake,I always encounter the situation

Re: CakePHP, mod_rewrite and mod_vhost_alias

2007-04-04 Thread Seb
According to http://manual.cakephp.org/chapter/installing DocumentRoot should be /path_to_cake/app/webroot and not just / path_to_cake/app helps? Seb. On Apr 5, 1:49 am, Jason [EMAIL PROTECTED] wrote: I am running into some issues regarding mod_rewrite, mod_vhost_alias and cake. I am using

Re: Proposal for killer app

2007-03-29 Thread Seb
... don't bother flaming! Seb. *** coming back to the code and contributing... judging by the length of posts, some of us CAN write here. Personally, a while ago I was even willing to put a few hours a week, sometimes a day to push things forward. But the process of convincing 'the project

Re: Proposal for killer app

2007-03-29 Thread Seb
a vision! Successful businesses are a lot about taking risk? no! Businesses are a lot about taking intelligent/knowledgeable risks! Same here... build it?! build what? we don't even know what we're building! anyway... not flaming here, just explaining my views! ;) :oÞ Cheers, Seb

Re: Link / URL Best Practices

2007-03-29 Thread Seb
that everyone know! Seb. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED

Re: Proposal for killer app

2007-03-28 Thread Seb
and 350 000$ by outsourcing companies, and so this will go forward. Any feed back welcome! Seb. On Mar 29, 5:00 am, digital spaghetti [EMAIL PROTECTED] wrote: Another point I forgot to make is I see a lot of people re-inventing the wheel. How many different Auth components are there out

Re: Proposal for killer app

2007-03-28 Thread Seb
to add it, or have someone to. The point is they got started with Cake and will keep using it. Anyway, I realize the project I posted above might be too big ... anyways.. my 2c! Seb. On Mar 29, 5:02 am, John David Anderson [EMAIL PROTECTED] wrote: On Mar 28, 2007, at 12:49 PM, digital spaghetti

Re: Proposal for killer app

2007-03-28 Thread Seb
Oh.. and.. last point, last post... Tane, I second retty much everything you said so far. You and I have the same vision of IT, system design and collaborative work apparently! ;) SEb. --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: How to measure Loading time in AJAX for each div

2007-03-27 Thread Seb
for the response to come back. I've been using that Profiler for a while.. and I'd doubt you'd need a custom profiler! ;) Hope this help! Seb. On Mar 28, 2:01 pm, skyblueink [EMAIL PROTECTED] wrote: Next snippet is supposed to show 10 divs, each displays the loading time. Loading time

(My)SQL functions in 1.2.0.4605alpha

2007-03-20 Thread Seb
. My question is... is that something I'm doing wrong from 4605 or is this a bug.. (the same code use to work like a beauty in previous releases. Can anyone comment that? I've raised a ticket last week.. with no feedbak/comment/log/attention https://trac.cakephp.org/ticket/2256 Cheers, Seb

Re: (My)SQL functions in 1.2.0.4605alpha

2007-03-20 Thread Seb
Additionally, could any one else using the latest SVN try that out... to see if i'm just freaking out...?! Thx! On Mar 21, 2:58 pm, Seb [EMAIL PROTECTED] wrote: I've been pulling my hair out for a few days trying to find out whether I was doing something wrong... I have this 'records

Re: Multiple Paths for Models/Views/Controllers in paths.php

2007-02-23 Thread Seb
for the record... in bootstrap.php, you can use $modelPaths $viewPaths $controllerPaths $helperPaths $componentPaths $behaviorPaths To add one or more paths to be looked up. I've submitted a patch (dams simple) to add additional paths for vendors (so that a vendor be reused across multiple

Re: best practice multiple checkboxes

2007-02-23 Thread Seb
the overflow scroll (auto). Looks like this; http://img341.imageshack.us/my.php?image=untitledes0.png Hope this helps! Seb ' On Feb 23, 9:56 pm, szeta [EMAIL PROTECTED] wrote: Does anybody have an idea here? Every hint is appreciated. :-) Regards Ralph On 22 Feb., 10:23, szeta [EMAIL

Re: Custom Validate

2007-02-21 Thread Seb
Hey, You might want to give this article from the bakery a look; http://bakery.cakephp.org/articles/view/55 I've been using it and extending it for months now and it works like a charm! Hope this helps! Seb. Grant Cox wrote: I haven't really looked at the new Validation options

Re: pagination component / question / typo

2007-02-21 Thread Seb
paginator from 1.2, so I can't say if it provides what you are looking for. Anyone? I don't mind sending you my code if you want to look into it, however there is very little new stuff.. mostly duplicating+adating the current SortBy stuff. Hope this helps! Seb. jyrgen wrote: i installed

Re: hasMany/belongsTo

2007-02-21 Thread Seb
(models, views and tbl structure) and we'll see what we can do! Hope it helps! Seb./ Kathrin wrote: Hello, ich have Problems to save data in a hasMany/belonsto Users_ProfilesTable. Sie Array is OK. My source: View User: ?php // echo $html-hidden('User/user_id', array('value' = $post['User

Re: filesystem browser with cakephp

2007-02-15 Thread Seb
group, I render on configuration, disallowing for instance file deletion. Hope this helps! Seb. On Feb 16, 2:57 pm, Fedya [EMAIL PROTECTED] wrote: i'm new to cakephp and have yet to try to create anything with it. i need to create a file browser and am considering using cake, but i can't see

Re: Help! Invalid argument supplied for foreach() dbo_mysql.php

2007-02-14 Thread Seb
on Win and made them live on a nux box...! never userd the table prefix though... Cheers, Seb. On Feb 12, 3:50 pm, DominiqueM [EMAIL PROTECTED] wrote: Hi Seb, Just tried accessing the Linux maching with Putty, MySql worked fine. The DB on the Server is already configured by a collegue of mine

Re: Help with a $hasMany, $belongsTo association...

2007-02-13 Thread Seb
@alexxwiz.. and make sure you read Eric's post about $recursive! ;) S. On Feb 13, 11:27 pm, alexxwiz [EMAIL PROTECTED] wrote: I have same problem. Two tables: CREATE TABLE `maincats` ( `id` int(10) unsigned NOT NULL auto_increment, `title` varchar(255) default NULL, `visible`

Re: Help with a $hasMany, $belongsTo association...

2007-02-13 Thread Seb
= array('Blog'); Hope that helps! Cheers, Seb. On Feb 13, 11:27 pm, alexxwiz [EMAIL PROTECTED] wrote: I have same problem. Two tables: CREATE TABLE `maincats` ( `id` int(10) unsigned NOT NULL auto_increment, `title` varchar(255) default NULL, `visible` tinyint(4) NOT NULL default '1

Re: beforeSave return false, what with afterFind...?!

2007-02-11 Thread Seb
. I'll keep looking into it! Cheers, Seb. On Jan 22, 4:51 pm, nate [EMAIL PROTECTED] wrote: Sorry, didn't see you the first time. Okay, as I see it, there are 4 ways to solve your problem, 3 of which are basically variations on the same theme. The first three ways are these: // Controller: re

Re: Help! Invalid argument supplied for foreach() dbo_mysql.php

2007-02-11 Thread Seb
credentials as the cake app, and see if you can run the sql manually. Again.. that's very likely to be a mySQL server prob. Hope that helps! Seb. On Feb 12, 1:58 pm, DominiqueM [EMAIL PROTECTED] wrote: Hija, Problem: Deployment of a functional App (Windows XAMP PHP 4) to a Suse Linux Server causes

Re: A Virtual Fields solution using afterFind

2007-01-22 Thread Seb
As per the php doc... As of PHP 5, this function returns the name of the methods as they were declared (case-sensitive). In PHP 4 they were lowercased. Seb. On Jan 22, 9:55 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Crap, I'm stupid. The example method should be... function

Re: beforeSave return false, what with afterFind...?!

2007-01-21 Thread Seb
mmm... are ^^BUMPS^^ ok in google groups...?! ;) Seb. On Jan 8, 10:06 am, Seb [EMAIL PROTECTED] wrote: Hey Nate, Thanks for your time! What I'm trying to do evolves around virtual fields. For instance in the user model, the afterFind() method creates 2 virtual fields, one named name_lf

Re: beforeSave return false, what with afterFind...?!

2007-01-07 Thread Seb
according to the manual return false; } end code So.. yeah... I don't think I'm doing anything wrong... and am just wondering why this all could be... Cheers! Seb. On Jan 6, 5:09 am, nate [EMAIL PROTECTED] wrote: Ummm. beforeSave() and afterFind() are normally completely

beforeSave return false, what with afterFind...?!

2007-01-04 Thread Seb
(because the data is not pulled off, resonably!).. but then any virtual fields are GONE! Any thoughts welcome! Cheers, SEb. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group

1.1x to 1.2x and backward compat...

2007-01-02 Thread Seb
Guys... anybody has any idea why was the function strip_plugin() removed from basics.php in 1.2.x... or where it's gone...? I can easily work around it, but I'm just intrigued as to why is it gone...?! cheers, Seb. --~--~-~--~~~---~--~~ You received

Re: 1.1x to 1.2x and backward compat...

2007-01-02 Thread Seb
, Seb. On Jan 3, 12:50 pm, Seb [EMAIL PROTECTED] wrote: Guys... anybody has any idea why was the function strip_plugin() removed from basics.php in 1.2.x... or where it's gone...? I can easily work around it, but I'm just intrigued as to why is it gone...?! cheers, Seb

Re: $html-tableHeaders using the colspan for a single TH

2006-12-14 Thread Seb
) column 3 is labeled Status, is sortable (...) and has a fixed width of 150px; and finally column 4 is labeled Actions, and will be generated a class=actions attribute. Hope this helps... Seb. On Dec 15, 10:22 am, Falagar [EMAIL PROTECTED] wrote: The html Helper does not implement

Re: Helpers scope in Elements...

2006-12-13 Thread Seb
-_viewVars['paging']); } $this-initialized = true; } } then in every other function of the helper, I added $this-init(); Hope this helps anyone else! Anyhow... if somebody could confirm how right or wrong I am.. I'd appreciate! Cheers, Seb. On Dec 13, 5:06 pm

Helpers scope in Elements...

2006-12-12 Thread Seb
$html-submit('Create');? I call the element like this; echo $this-renderElement('index' /*no parameters*/ ) ); Both of the helpers are defined in the app_controler.php again.. am I going crazy?!! Cheers for any input! SEb. --~--~-~--~~~---~--~~ You received

Re: custom html helper

2006-12-04 Thread Seb
Dude!! loadHelper('html'); is what I was missing! cheers for that! Braces... I'll take a good note of it! ;) Cheers! Seb. On Dec 5, 9:04 am, Mariano Iglesias [EMAIL PROTECTED] wrote: Extend the helper this way: 1. Create a file called myhtml.php on your app/views/helpers directory. 2

manually update datetime field...

2006-12-04 Thread Seb
thoughts welcome! Cheers, Seb. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL

formatting model values

2006-09-20 Thread seb
Hello, I got one issue with cake and would need your help. I have a model called Spot with different attribut. For example, one of its variable is type. In my database type is an integer, but when I display the data on the web page, I want to map each value with a specific text : db value / value

Re: install cakephp; Rootserver needed?

2006-09-03 Thread Seb-el
Cool, thanks. It was just the Zip file that I put into the html folder. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe

install cakephp; Rootserver needed?

2006-09-02 Thread Seb-el
/phptmp /restore I cannot create a folder in this level. Where do I have to put which above mentioned file? Sorry for asking those basic questions. I searched already a lot but had not found answers, tutorials or anything concerning them. Cheers, Seb-el

Re: stats for cakephp

2006-06-30 Thread Seb
phpMyVisites is great too (http://www.phpmyvisites.net) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group,