Strange error within a controller action

2013-11-26 Thread Pierre
Good evening I am using responsiveFilemanager9 http://www.responsivefilemanager.com/with cakePHP to manage the image. It's great tools and it work excepted with the TinyMCE. From tinyMCE when I would like to to add a image, filemanager9 is opening and I got an error message as this Missing

Re: Strange error within a controller action

2013-11-26 Thread Reuben
I'm assuming that the URL that is being called is supposed to find a real file, provided by the filemanager. What URL is actually being called by the browser? My guess is, it looks something like admin/filemanager/dialog.php. Examples in the documentation look like this: a

MeioUpload strange error on the remote server

2012-03-02 Thread Salines
Hello, after upgrading site to cakephp 2.1 i found some problems with uploading files on the remote server. On localhost site works without problems, but if i try to upload images to the live site i have this error message. ### *Warning* (2):

Re: MeioUpload strange error on the remote server

2012-03-02 Thread Salines
Fix: https://github.com/jrbasso/MeioUpload/issues/87#issuecomment-1703200 -- 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

Strange error in unit test with Model::delete on associated models

2011-12-23 Thread Vincent Oord (Springest.com)
While writing a unit test for a Model::delete in our application, I got some errors (see attached errors.txt). The point is that at some point Cake tries to execute the following query: SELECT FROM AS `User` JOIN `users_institutes` AS `UsersInstitute` ON (`UsersInstitute`.`institute_id` =

Re: Strange error passing from windows to linux

2011-04-10 Thread Mariano C.
You were right, in related table (carriers) there's not an id field. That's why the table is just a joining table. Matter of fact id field never been present in this table, and never this has been adviced as warning. Models are setted in this way: Carrier belongsTo Season, Team, Player Season,

Re: Strange error passing from windows to linux

2011-04-09 Thread Mariano C.
Wherever I put this debug($this-MyModel::schema()) i get: T_PAAMAYIM_NEKUDOTAYIM php error :( On 8 Apr, 21:23, cricket zijn.digi...@gmail.com wrote: On Fri, Apr 8, 2011 at 2:28 PM, Mariano C. mariano.calan...@gmail.com wrote: I suppose, I've just made a dump What is the primary key for the

Re: Strange error passing from windows to linux

2011-04-09 Thread Miloš Vučinić
I just read this so I might say something that has already been said.. The key difference in web programing between windows and linux is that linux is case sensetive and windows is not. Especialy when it comes to database. I know that because I had some java project in windows and lost a whole day

Re: Strange error passing from windows to linux

2011-04-09 Thread cricket
On Sat, Apr 9, 2011 at 5:40 AM, Mariano C. mariano.calan...@gmail.com wrote: Wherever I put this debug($this-MyModel::schema()) i get: T_PAAMAYIM_NEKUDOTAYIM php error :( You shouldn't use the double colon syntax like that. debug($this-MyModel-schema()); -- Our newest site for the community:

Re: Strange error passing from windows to linux

2011-04-08 Thread Mariano C.
Disparity among DB' structure and? On 8 Apr, 03:25, cricket zijn.digi...@gmail.com wrote: On Thu, Apr 7, 2011 at 4:47 PM, Mariano C. mariano.calan...@gmail.com wrote: I starting developing my app on windows on Apache/MySQL/PHP environment, today i've copied my htdocs directory returned on my

Re: Strange error passing from windows to linux

2011-04-08 Thread cricket
On Fri, Apr 8, 2011 at 4:11 AM, Mariano C. mariano.calan...@gmail.com wrote: Disparity among DB' structure and? Are the databases identical? -- 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

Re: Strange error passing from windows to linux

2011-04-08 Thread Mariano C.
I suppose, I've just made a dump On 8 Apr, 19:40, cricket zijn.digi...@gmail.com wrote: On Fri, Apr 8, 2011 at 4:11 AM, Mariano C. mariano.calan...@gmail.com wrote: Disparity among DB' structure and? Are the databases identical? -- Our newest site for the community: CakePHP Video Tutorials

Re: Strange error passing from windows to linux

2011-04-08 Thread cricket
On Fri, Apr 8, 2011 at 2:28 PM, Mariano C. mariano.calan...@gmail.com wrote: I suppose, I've just made a dump What is the primary key for the model? Is it id? The error is telling you that the model thinks the PK is id but that the database is saying something else. Put

Strange error passing from windows to linux

2011-04-07 Thread Mariano C.
I starting developing my app on windows on Apache/MySQL/PHP environment, today i've copied my htdocs directory returned on my ubuntu, again under AMP environment (and paste my htdocs). Every things work quite good, but sometimes I have error like: Notice(8) Undefined index: id

Re: Strange error passing from windows to linux

2011-04-07 Thread cricket
On Thu, Apr 7, 2011 at 4:47 PM, Mariano C. mariano.calan...@gmail.com wrote: I starting developing my app on windows on Apache/MySQL/PHP environment, today i've copied my htdocs directory returned on my ubuntu, again under AMP environment (and paste my htdocs). Every things work quite good,

Re: pdo_postgres strange error.

2010-10-22 Thread Fanck
It has been fixed: https://bugs.launchpad.net/ubuntu/+source/php5/+bug/660227 It was a PHP segfault error \o/ cya On 21 oct, 00:35, Fanck francois.pie...@gmail.com wrote: Hi, Before flaming down, let me say that it may not be related to CakePHP, but somehow on my configuration (hopefully):

pdo_postgres strange error.

2010-10-21 Thread Fanck
Hi, Before flaming down, let me say that it may not be related to CakePHP, but somehow on my configuration (hopefully): - Ubuntu 10.10 - PHP 5.3.3 - PostgreSQL 8.4.5 - CakePHP 1.3.4 (but same error with Cake 1.2.8) So here's the deal: I was getting white screen (of death?) at application start.

Strange error after model save method

2010-06-07 Thread Roland Pish
Hello. I was creating an add form for a model called Practitioner. Everything seems to work fine, after submitting the form changes are saved successfully in Practitioner table and in every table related to Practitioner model, but a weird error is showing up that's claiming for a rght field in my

Re: Strange error after model save method

2010-06-07 Thread Ed Propsner
Are you using a custom Join statement in your query, particularly a RIGHT JOIN? On Mon, Jun 7, 2010 at 2:34 PM, Roland Pish rolandp...@gmail.com wrote: Hello. I was creating an add form for a model called Practitioner. Everything seems to work fine, after submitting the form changes are

Re: Strange error after model save method

2010-06-07 Thread cricket
On Jun 7, 3:20 pm, Ed Propsner crotchf...@gmail.com wrote: Are you using a custom Join statement in your query, particularly a RIGHT JOIN? On Mon, Jun 7, 2010 at 2:34 PM, Roland Pish rolandp...@gmail.com wrote: Hello. I was creating an add form for a model called Practitioner. Everything

Re: Strange error after model save method

2010-06-07 Thread Ed Propsner
Looks like Cricket knows what the deal is. I suggested the custom join because I messed one up once and it ended up looking for a column named 'right'. 8-) On Mon, Jun 7, 2010 at 3:30 PM, cricket zijn.digi...@gmail.com wrote: On Jun 7, 3:20 pm, Ed Propsner crotchf...@gmail.com wrote: Are you

Strange Error

2009-11-09 Thread dtirer
So I've been toying with Cake apps on my local server for a little while now. Now, Im working with developing one on live server. The install/setup went fine. As a test, I create a simple table called 'cases' with just an 'id' field in it (primary key, auto_increment) I then created a

Re: Strange Error

2009-11-09 Thread dtirer
Note: Outside of Cake, this server has no problem deal with OOP and classes On Nov 9, 6:53 pm, dtirer dti...@gmail.com wrote: So I've been toying with Cake apps on my local server for a little while now.  Now, Im working with developing one on live server.  The install/setup went fine. As

Re: Strange Error

2009-11-09 Thread Graham Weldon
If this fails, I'll get you to tar up your files and and them to me to check... Are you editing on a windows machine? It's possible that some line endings are being screwed up. Remove all unnecessary whitespace just to eliminate any issues there. Gentoo's latest Php is 5.2.11-p0. So I

Re: Strange Error

2009-11-09 Thread dtirer
I'm actually editing on a mac. Tried eliminating white space, still the same problem. Unfortunately, its not my server so I can't update the Php version really. On Nov 9, 8:27 pm, Graham Weldon gra...@grahamweldon.com wrote: If this fails, I'll get you to tar up your files and and them to me

Re: Strange Error

2009-11-09 Thread O.J. Tibi
@dtirer, The PHP compiler just saw a keyword, maybe you should try using a different model name for your Case model? (case is a reserved word after all) Cheers, OJ On Nov 10, 9:38 am, dtirer dti...@gmail.com wrote: I'm actually editing on a mac.  Tried eliminating white space, still the same

Re: Strange Error

2009-11-09 Thread dtirer
OK have some new information, maybe this will help narrow it down. Firstly, the way I originally transferred my files form my local machine to the live one, was by dragging and dropping them via Fetch. Thinking now, that maybe files got missed or something in the transfer, I transferred the

Re: Strange Error

2009-11-09 Thread dtirer
O.J. Tibi, you win! haha thanks for your help! On Nov 9, 9:13 pm, dtirer dti...@gmail.com wrote: OK have some new information, maybe this will help narrow it down. Firstly, the way I originally transferred my files form my local machine to the live one, was by dragging and dropping them via

Strange error: Missing Controller ~usernameController

2009-09-20 Thread mykro76
I'm getting strange rewriting behaviour in CakePHP. When I navigate to http://localhost/~bob/project, CakePHP produces a Missing Controller page, saying Error: ~bobController could not be found. The steps I followed: - Ubuntu 9.04, apache2 - I used sudo a2enmod userdir to set up user

Strange error about config/core.php

2008-05-21 Thread Dan Soendergaard
Hi, I changed a couple of methods in one of my controllers and suddenly receive the following error, Warning: Configure::include() [configure.include]: Unable to access / home/www/sporter.dk/config/core.php in /home/www/sporter.dk/cake/libs/ configure.php on line 609 Warning (2):

Re: Strange error about config/core.php

2008-05-21 Thread Dan Soendergaard
Turned off safe mode and now it's working. :) On 21 Maj, 16:56, Dan Soendergaard [EMAIL PROTECTED] wrote: Hi, I changed a couple of methods in one of my controllers and suddenly receive the following error, Warning: Configure::include() [configure.include]: Unable to access /

Strange error in edit ...

2007-12-17 Thread Dilbert
I'm having a very strange error when I edit an Article... The article is not edited, is added! There's a new article with the changes of the article I wanted to edit. In debug mode the query is INSERT INTO This is the admin_edit function in the controller: function admin_edit($id

Re: Strange error in edit ...

2007-12-17 Thread Dilbert
I found the error...no echo $form-input('id'); in admin_edit.ctp =) --~--~-~--~~~---~--~~ 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

strange error msg

2007-04-30 Thread wewo
hi there, maybe it'a a stupid question, but since the update to the actual 1.2.0.4798 release, I get some strange error messages in my app: Notice (8): Undefined property: Folder::$table [CORE/cake/libs/model/ model.php, line 671] Notice (8): Undefined property: Folder::$name [CORE/cake/libs

Strange error

2007-03-08 Thread Adrian Maier
Hello, I have the following code : $criteria = array('cod_produs'=$tuple['ImportData']['cod_produs'], 'furnizor'=$tuple['ImportData']['furnizor'] ); if ($this-SupplierPrice-hasAny($criteria)) { $vechi = $this-SupplierPrice-find($criteria); }