Re: Warning (512): cake_model cache was unable to write

2014-09-30 Thread majna
unable write 'default_aptutori_a' to Apc cache I guess your app/Config/core.php needs to be updated for 2.5. APC as a default cache engine was removed two years ago, in 2.3 https://github.com/cakephp/cakephp/commit/2f7f5e13224537eaa4da6b825b1d106bebc35d05 On Tuesday, September 30, 2014

Re: Warning (512): cake_model cache was unable to write

2014-09-29 Thread ajt
2.5 but I checked many posts on the issue and I dont think that makes any difference. The only solution was to chmod the app/tmp folders and subfolders but i did that. I am using cpanel and have no command prompt to run scripts -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us

Re: Warning (512): cake_model cache was unable to write

2014-09-29 Thread Andras Kende
Try deleting the files within app/tmp folders. and adding 'mask' = 0777 to core.php Cache::config('_cake_core_', array(... Cache::config('_cake_model_', array(... https://github.com/cakephp/cakephp/blob/master/app/Config/core.php#L294 Andras Kende On Sep 29, 2014, at 4:02 PM, ajt

Re: Warning (512): cake_model cache was unable to write

2014-09-29 Thread Jeremy Burns
I had a similar issue when running MAMP locally. I fixed it by turning off MAMP's internal caching. Not sure if that's the same issue you're facing. On 30 Sep 2014, at 01:12, Andras Kende and...@gmail.com wrote: Try deleting the files within app/tmp folders. and adding 'mask' = 0777 to

Re: Warning (512): DbAcl::check() - Failed ARO/ACO node lookup in permissions check.

2011-05-25 Thread Jacob
I have ran cake acl create aco root controllers in the console, and ran the listed build_acl function in the second link. Both say they ran and don't report errors. The build_acl function lists a bunch of created acos. When I remove auth from users and groups, I am able to create a group at

Re: Warning (512): DbAcl::check() - Failed ARO/ACO node lookup in permissions check.

2011-05-20 Thread ShadowCross
Did you create your Access Control Objects? See: http://book.cakephp.org/view/1548/Creating-ACOs-Access-Control-Objects and the subsequent page: http://book.cakephp.org/view/1549/An-Automated-tool-for-creating-ACOs (and http://book.cakephp.org/view/1550/Setting-up-permissions) Basically, any

Warning (512): DbAcl::check() - Failed ARO/ACO node lookup in permissions check.

2011-05-19 Thread Jacob
Using Cake 1.3 I receive the following message after attempting to setup Auth/ACL. This happens on every page within the directory. Can anyone point me toward an area to troubleshoot? I am new to CakePHP Warning (512): DbAcl::check() - Failed ARO/ACO node lookup in permissions check. Node

Warning (512): DbAcl::check() - Failed ARO/ACO node lookup in permissions check.

2011-05-19 Thread Jacob
I have Cake Version 1.3 and I keep receiving this message. It doesn't matter which url I visit, any valid page throws these errors up. It was after Auth ACL and groups were setup. Does anyone know of maybe a quick fix that i am over looking? Warning (512): DbAcl::check() - Failed ARO/ACO node

Re: Help needed with Warning (512): SQL Error: 1066

2011-03-18 Thread samjoe
Bump. Guys !! I really need help with this. Any help is greatly appreciated. -- View this message in context: http://cakephp.1045679.n5.nabble.com/Help-needed-with-Warning-512-SQL-Error-1066-tp3881729p3898998.html Sent from the CakePHP mailing list archive at Nabble.com. -- Our newest site

Re: Help needed with Warning (512): SQL Error: 1066

2011-03-18 Thread cricket
On Wed, Mar 16, 2011 at 10:23 PM, samjoe sam...@gmail.com wrote: Hi, I am upgrading from CakePhp1.1 to Cakephp 1.2 When I try to load up my page, I get the following error. Warning (512): SQL Error: 1066: Not unique table/alias: 'ShoppingCart' [CORE/cake/libs/model/datasources

Help needed with Warning (512): SQL Error: 1066

2011-03-17 Thread samjoe
Hi, I am upgrading from CakePhp1.1 to Cakephp 1.2 When I try to load up my page, I get the following error. Warning (512): SQL Error: 1066: Not unique table/alias: 'ShoppingCart' [CORE/cake/libs/model/datasources/dbo_source.php, line 514] Now below is the line that generates the error

Warning (512)

2011-01-07 Thread AndreGuerreiro
Hi, I got this message calling www.bodoquemkt.com.br/users/knownusers . This knownusers was created as described on http://www.ibm.com/developerworks/opensource/tutorials/os-php-cake1/section4.html . Warning (512): SQL Error: 1064: You have an error in your SQL syntax; check the manual

Re: Warning (512)

2011-01-07 Thread Andy Dirnberger
/users/knownusers . This knownusers was created as described onhttp://www.ibm.com/developerworks/opensource/tutorials/os-php-cake1/s... . Warning (512): SQL Error: 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax

Re: Problems with blog tutorial Warning (512): SQL Error: 1064:

2010-07-12 Thread Andy H
Hi, The first line of you edit function has a mistake. should be $this-Post-id = $id; Good luck! On Jul 9, 11:13 pm, BlaineRumsey bla...@blainerumsey.com wrote: Hello,  I am new to cake and I am trying to complete the blog tutorial in the manual for 1.3  for getting started.  I am at the

Re: Problems with blog tutorial Warning (512): SQL Error: 1064:

2010-07-11 Thread BlaineRumsey
Umm yeah, your right it was not in the blog tutorial and I have no idea why or where my head was at... thanks. Blaine On Jul 10, 1:41 am, nurvzy nur...@gmail.com wrote: It's possible what you meant to do was this: $this-Post-id = $id; Because you're doing a blind read() after the fact.  If

Problems with blog tutorial Warning (512): SQL Error: 1064:

2010-07-09 Thread BlaineRumsey
Hello, I am new to cake and I am trying to complete the blog tutorial in the manual for 1.3 for getting started. I am at the edit post section and I am having a problem. When I click edit I get and sql syntax error. 1064: You have an error in your SQL syntax; check the manual that corresponds

Re: Problems with blog tutorial Warning (512): SQL Error: 1064:

2010-07-09 Thread nurvzy
Indeed, the error is because you have $this-Post-edit($id); in your controller. If the method name is not found cake sends the method name as an SQL query by default. Simply remove that line and you should be all set. I encourage you to make sure you type in your controller code as it's laid

Re: Problems with blog tutorial Warning (512): SQL Error: 1064:

2010-07-09 Thread nurvzy
It's possible what you meant to do was this: $this-Post-id = $id; Because you're doing a blind read() after the fact. If you're going to remove that line you'll need to be sure to pass in the id to read() like so: $this-Post-read(null, $id); Hope that helps, Nick On Jul 9, 11:25 pm, nurvzy

Problem - Warning (512): SQL Error: 1054: Unknown column

2009-05-09 Thread Mike
Hi everyone, i've got this problem: Warning (512): SQL Error: 1054: Unknown column 'Category.freeone_id' in 'on clause' [CORE\cake\libs\model\datasources\dbo_source.php, line 525] The Categories table used to have 3 fields : id, user_id, freeone_id, but i dropped the 'freeone_id' cause

Re: Problem - Warning (512): SQL Error: 1054: Unknown column

2009-05-09 Thread John Andersen
Check that your Category model does not have an association defined for Freeone (probably a belongsTo association). Enjoy, John On May 9, 10:11 am, Mike tombaha...@gmail.com wrote: Hi everyone, i've got this problem: Warning (512): SQL Error: 1054: Unknown column 'Category.freeone_id

Re: Problem - Warning (512): SQL Error: 1054: Unknown column

2009-05-09 Thread brian
On Sat, May 9, 2009 at 3:30 AM, John Andersen j.andersen...@gmail.com wrote: Check that your Category model does not have an association defined for Freeone (probably a belongsTo association). Also, clear your model cache. Look in app/tmp/cache dir.

Re: Problem - Warning (512): SQL Error: 1054: Unknown column

2009-05-09 Thread Mike
Yeha, it was that in fact, i completely forgot that association hehe, what a dumb Thank you John! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to

Warning (512): Cache not configured properly.

2009-04-26 Thread Mythos
Hello, I did an Advanced Installation on Cpanel, and I get these errors: http://bocabrava.com/ My install: /app is in home/bocabrav /cake is in /var/lib and my /webroot is home/bocabrav/public_html if (!defined('ROOT')) { define('ROOT', DS.'home'.DS.'bocabrav');

Warning (512): Cache not configured properly.

2009-04-26 Thread Mythos
Hello, I did an Advanced Installation on Cpanel, and I get these errors: http://bocabrava.com/ My install: /app is in home/bocabrav /cake is in /var/lib and my /webroot is home/bocabrav/public_html if (!defined('ROOT')) { define('ROOT', DS.'home'.DS.'bocabrav'); }

Re: Warning (512): Cache not configured properly.

2009-04-26 Thread Miles J
There are no errors what so ever on the link you provided. You have a successful installation. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to

Re: Warning 512 error, I make the tmp dir writable and I get more errors

2009-01-10 Thread justclint
Hello, Ive just moved our cake app over to the production server and Im getting this error also. Ive tried setting the permissions just via the web directory but not working. Im guessing the solution above will work but Im not sure how to apply the chmod recursively. Do I do this in .htaccess?

Re: Warning 512 error, I make the tmp dir writable and I get more errors

2008-12-08 Thread xfhxfh
Ya whow ... I just downloaded the newest cakePHP release and freshly installed it to begin with a tutorial ... and was stopped by the 512 warning. Happy to find this solution here I went to the tmp/cache/ persistent dir just to find out there is no cake_core_core_paths ... so I created one and

Re: Warning 512 error, I make the tmp dir writable and I get more errors

2008-12-08 Thread xfhxfh
... oh nw I got it ... somehow chmod -R didn't do it recursive ... so I had to hand chmod the dirs ... nows workin, great thx --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group,

Re: Warning 512 error, I make the tmp dir writable and I get more errors

2008-11-29 Thread majna
. I'm getting the typical Warning 512 error where it says that my app/ tmp/cache/ is not writable. I go to chmod 777 this directory and all hell brakes loose on me and I get a whole bunch of errors. Warning: unlink(/Users/myname/Sites/myapp/app/tmp/cache/persistent/ cake_core_core_paths

Re: Warning 512 error, I make the tmp dir writable and I get more errors

2008-11-29 Thread Tony
Yes that did it! Thank you so much. It was driving me crazy. On Nov 29, 1:12 am, majna [EMAIL PROTECTED] wrote: check permission of this file:tmp/cache/persistent/ cake_core_core_paths set permissions totmprecursive. chmod -R 0777tmp On Nov 29, 6:04 am, Tony [EMAIL PROTECTED] wrote:

Warning 512 error, I make the tmp dir writable and I get more errors

2008-11-28 Thread Tony
This is driving me crazy and I have googled this and nothing that I have found is fixing this problem I'm having. I'm getting the typical Warning 512 error where it says that my app/ tmp/cache/ is not writable. I go to chmod 777 this directory and all hell brakes loose on me and I get a whole

Warning (512) ... cache not writable

2008-11-19 Thread Brian
I'm trying to set up cakephp for the first time. I've copied all the files into a sub directory of my account and run http://domain/cake. I receive Warning (512): ~/www/cake/app/tmp/cache/ is not writable [cake/libs/cache/file.php, line 263]. I have chmod 777 every directory leading to cache

Warning 512 - cache problem

2008-09-18 Thread gabriel
is not configured properly Warning 512 - I searched the forum and found out that it is beacuse of cake's problem with urls - I commented out one line in core.php and it dissapeared but since then none of the urls works - it displays this url can not be found on the server - I wqould like to use cake 1.2 as I

Re: Warning (512): Method HtmlHelper::formTag does not exist [CORE/cake/libs/view/helper.php, line 148]

2007-10-15 Thread [EMAIL PROTECTED]
Hello Wayne, I appreciate your help but I'm still a little confused. I get the warnings below. Warning (512): Method HtmlHelper::formTag does not exist Warning (512): Method HtmlHelper::inputTag does not exist Warning (512): Method HtmlHelper::passwordTag does not exist Warning (512): Method

Re: Warning (512): Method HtmlHelper::formTag does not exist [CORE/cake/libs/view/helper.php, line 148]

2007-10-15 Thread Wayne Fay
Those tags have all been deprecated. This post should help: http://cake.insertdesignhere.com/posts/view/15 Wayne On 10/15/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello Wayne, I appreciate your help but I'm still a little confused. I get the warnings below. Warning (512): Method

Re: Warning (512): Method HtmlHelper::formTag does not exist [CORE/cake/libs/view/helper.php, line 148]

2007-10-15 Thread [EMAIL PROTECTED]
but I'm still a little confused. I get the warnings below. Warning (512): Method HtmlHelper::formTag does not exist Warning (512): Method HtmlHelper::inputTag does not exist Warning (512): Method HtmlHelper::passwordTag does not exist Warning (512): Method HtmlHelper::submitTag does

Warning (512): Method HtmlHelper::formTag does not exist [CORE/cake/libs/view/helper.php, line 148]

2007-10-12 Thread [EMAIL PROTECTED]
Does anyone know why I get this warning. And how do I get around it? I'm using cake_1.2.0.5427alpha the code comes from IBM's tutorial at: https://www6.software.ibm.com/developerworks/education/os-php-cake1/section4.html Their code: ?php echo $html-formTag('/users/register') ? pPlease fill out

Re: Warning (512): Method HtmlHelper::formTag does not exist [CORE/cake/libs/view/helper.php, line 148]

2007-10-12 Thread Wayne Fay
That code was written for Cake v1.1. The formTag method has been deprecated in v1.2. You'll need to revert to v1.1 or rewrite the code to use FormHelper directly. Wayne On 10/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Does anyone know why I get this warning. And how do I get around it?