0
votes
0answers
13 views

CakePHP 2.1, Miles Johnson Uploader 4 - Edit a file on S3

I'm using the Miles Johnson Uploader plugin for CakePHP to upload images to S3. This works fine. I'm now trying to create an "assets manager" that allows users to upload JS/CSS files to S3. There is ...
0
votes
1answer
33 views

Use shopping cart plugin or pre-built system

Hi we're currently working on a system whose function is to support the core process of our department which is scheduling of classes. Now, we need a store functionality for selling those classes. I ...
0
votes
0answers
26 views

Error notices using Linkedin Plugin in Cakephp

I am trying to put a Linkedin plugin in cakephp, using this tutorial http://excellencetechnologies.co.in/Telephonia/blog/linked-login-integration-in-cakephp/ Everything works fine until I login in ...
1
vote
1answer
34 views

CakePHP Missing Plugin exception after deletion

I just deleted the Media Plugin and edited my bootstrap.php. I'm now getting a Missing plugin exception. Am I doing something wrong?
0
votes
1answer
49 views

CakePHP Media Plugin Thumbnails

Does anyone familiar with the Media Plugin know how to generate different sizes of uploaded images? I've not been able to find any documentation here or on github. Thanks in advance!
0
votes
2answers
41 views

methods to call a model name on Controller's

I am freshman of CakePHP... Is there any methods to call a model name on Controller's? Lets say i have 3 Model - User,Group,Widget.. and 3 Controller - UsersController, GroupsController, ...
0
votes
1answer
63 views

Cakephp plugin filter rename select

I have a plugin filter installed from https://github.com/lecterror/cakephp-filter-plugin. How can i rename the values in the dropdown bar? Right now I can choose between: [ ] [0] [1] What I need ...
0
votes
1answer
50 views

Is there any CSV Datasource plugin for CakePHP2.x [closed]

Cake 1.3 has a CSV source, but I didn't find any source by using csv. Does anyone who know it?
0
votes
1answer
21 views

CAKEPHP - how to leave the plug in url

I have a ACL plugin, and I want to be able to redirect back to users/index from this plug in.. but I end up getting funny url's that don't exist. such as /cakephp/admin/acl/users/index how can I make ...
0
votes
1answer
103 views

How to bake a plugin controller without scaffolding in cakephp 2.3

When I bake my plugin controller, it always generate with scaffolding. class MyController extends PluginAppController { /** * Scaffold * * @var mixed */ public $scaffold; } Anyone ...
0
votes
1answer
110 views

How to solve pagination-Error in cakePHP with cakeDC searchplugin

i'm using the searchplugin from cakeDC (https://github.com/CakeDC/search) with cakePHP 2.3.0. That Plugin works fine. I had a little error in the index-action like this. Thanks for that. Indirect ...
0
votes
1answer
47 views

CakeDC users user_details table

CakeDC Users plugin includes a table called user_details. At first I thought it was just like the table wp_postmeta (WordPress) to hold extra info about the users. But after checking the table, it has ...
0
votes
1answer
63 views

CakePHP: How one Behavior use the Behavior function of a Plugin?

I have two scenarios. Scenario 1: A ProcessableBehavior written in my APP/Model/Behavior needs to use a function inside another Behavior called Queryable in a Plugin. How do I call ...
2
votes
1answer
58 views

Set default plugin based on host-name CakePHP

First, let me explain my situation: I have two domains, two websites, the same layout, but different content and different purposes. What I would like to do: Share between these two systems: The ...
0
votes
1answer
75 views

Why isn't GIT tracking my cakephp migrations Plugin?

I am using GIT to deploy my cakephp applications, a few days ago I started using the migrations plugin (by cakeDC) in my app to simplify database versions and changes. After installing the ...
1
vote
1answer
65 views

cake console baking on different datasource (pluguin array)

I ve installed datasource plugin Array. It do NOT use db tables as source of data. Its an array (source). When i try to bake using cake bake (or something) it doesnt recognize the array source used, ...
0
votes
1answer
81 views

cakephp2: how to set layout for cake exception

I have encountered a quite complex situation to render error page 1) the cake exception NotFoundException is thrown from a plugin; 2) I want to render a layout from app instead of from this plugin; I ...
0
votes
1answer
171 views

CakeDC Users login with username

The default login process requires e-mail, not username. I've added this to AppController.php on beforeFilter(), which is also mentioned on CakePHP's Docs Authentication: $this->Auth->fields = ...
0
votes
1answer
75 views

CakePHP plugins and database setup

With CakePHP you can create plugins that seem to work "semi-independently". I would like to know if there is any way to create a setup file/class for database schema on which plugin models will be ...
0
votes
0answers
38 views

Adding a plugin to another plugin's controller

I'm using CakeDC's Comments and Ratings plugins. I managed to get the Ratings plugin to work on my own Posts Controller, but when I try to add it to the Comment Plugin's Controller, it doesn't work. ...
0
votes
1answer
529 views

How to install CakePHP plugin for PHP IDE Netbeans 7.2

I have the PHP IDE version of NetBeans 7.2 and have installed the plugin successfully (it is shown as enabled in the plugins list and appears in the project properties). However, nowhere do I see a ...
1
vote
0answers
139 views

Paypal PRO integration with Cakephp (or just php)

I have a website running with CakePHP 1.3.10, and I need to implement a payment solution for the articles there (please note that it's not a "shopping cart" centric website, but some articles can be ...
2
votes
1answer
107 views

CakePHP: Overrride Controller method with plugin

I'm new to this framework and looking to extend/override a Controller method with a plugin. If this is the wrong way to do this please let me know. I just want the solution to be modular in that there ...
0
votes
1answer
103 views

CakePHP Plugin implimentation not routing

I am trying to write a plugin for CakePHP (CakePHP 2.2.3) called LinkElement which takes makes it possible to get a url and hand back a rendered element. My example uses an Ajax tabs table (if there ...
1
vote
2answers
365 views

WKHTMLTOPDF internal error

hi all I have a page that is supposed to render as a pdf with the help of WKHTMLTOPDF engine. when I click the link to load the page, I get this error WKHTMLTOPDF didn't return any data ...
1
vote
1answer
222 views

cakephp and rendering a pdf

hi all I am trying to install this plug-in for my site. I am currently running cake 2.1 and want to click a link and it render the invoice in a pdf so the user can do whatever they want with it. ...
4
votes
1answer
328 views

CakePHP 2.x: Embedding a login form as an element using CakeDC's User plugin and Security component

newish CakePHP user here. I haven't been able to find a solution to this issue. I would like to embed a login form as an element in an existing page. I am using the CakeDC user plugin. The goal is to ...
0
votes
1answer
270 views

CakePHP 2.x How to open element in a popup

I've found this plugin for older versions of cakephp, which allows you to open a popup containing an element: https://github.com/webtechnick/CakePHP-Popup-Plugin I couldn't get it to work in Cake 2.x ...
0
votes
1answer
144 views

CakePHP 2.2.2 Asset Compress CssMinFilter Comments Issue

I am using JsMinFilter & CssMinFilter to compress all my CSS and JS files into one output file. This works fine for both, however the JS filter that I found a modified copy of somewhere, lets you ...
1
vote
2answers
206 views

cakedc search plugin use pb

I use the plugin cakedc search, but there is one thing I can not seem to find, I have a form with two fields, and I would add for example "online = 1" to my search in my controller, I trying: ...
1
vote
2answers
316 views

cakephp plugin search cakeDC usage

I'm using the 2.0 version of cakephp search plugins by cakeDC (with cakephp 2.x)(https://github.com/CakeDC/search) . I'm need search in many models but thats models aren't related. So i create a new ...
0
votes
1answer
59 views

CakePHP: Passing data to plugin

I have installed a plugin (SignMeUp) for the user registration, and according to the documentation the registration function inside my User Controller has to look something like this: public function ...
1
vote
1answer
249 views

Howto extend an Controller in a Plugin - CakePHP

This is a design-pattern question. I'm working with CakePHP 2.1 and I'm writing a Plugin (the FooPlugin). I'd like the Plugin to contain Controllers (and Models) that are extensions of Controllers ...
0
votes
2answers
199 views

How do I use fixed fields in CakeDC's csvUpload behavior in Util plugin

I am using the csvUpload behavior of the Utils plugin by CakeDC, on a CakePHP 2.2.1 install. I have it working great it's processing a rather large csv successfully. However there are two fields in ...
1
vote
1answer
344 views

CakePHP - Loading routes files from a plugin

Can someone point to me how this is done? I want to define plugin specific routes in a config file within the plugin's folder itself. At the moment I am simply defining routes that are for plugins in ...
0
votes
1answer
110 views

cakeDC comments plugin Element not found

For those of you that are experienced with the cakeDC comments plugin, can I please get some guidance. The output on my view page is this: Element Not Found: Elements/Commentscomments/tree/main.ctp ...
0
votes
0answers
159 views

CakeDC(cakePHP) comments plugin

First I will start with the fact that I am on a MAC. I have git cloned the cakeDC comments plugin into my application Plugin directory. Upon trying to execute the given commands to setup the ...
1
vote
1answer
227 views

cakephp error plugin uploader Miles J

I have a site in cakephp 2 and I want to upload a file with the plugin Uploader of Miles J. But return me this error: Column not found: 1054 Unknown column 'Array' in 'field list' SQL Query: UPDATE ...
1
vote
1answer
390 views

Pagination and sort - Plugin not working - CakePHP 2.0

I have created a plugin called movies, I have used custom routes. I have used pagination limit as '5'. The first page is fine, but when I click on next or numbers. Those things doesn't works. URL: ...
0
votes
2answers
491 views

CakePHP 2.1, Ajax & Miles Johnsons Uploader Plugin

I want to use the Plugin with CakePHP 2.1 as behaviour through $actAs = 'Uploader.Attachment'. While this works fine for static Uploads, I dont know how to use it for ajaxUploads. The simple ...
0
votes
1answer
32 views

How do I place a View belonging to a Plugin in regular View (CakePHP Howto)

I would like to get some input regarding the feasibility of the following scenario/design pattern: I would like to insert a View from a Category Plugin (/category/categories/tree) into one of my ...
1
vote
1answer
154 views

cakephp attach more belongsto

I have an model i want to check more plugins, if plugins loaded then attach models in plugin into man model. i using this method? But different result in model and action. Is another method better ...
0
votes
1answer
79 views

cakephp plugin calls a model I already have set up

In my cakePHP app I am implementing Miles Johson's Forum Plugin (http://milesj.me/code/cakephp/forum). It creates a model named Profile in the plugin. I already have a model named Profile in my ...
0
votes
1answer
151 views

Building Server-client application with CakePHP and Android

I'm currently building an application on Android that allows user to register a location-based service. I'm pretty new in both server-side programming and Android. Therefore I need some suggestions to ...
0
votes
1answer
151 views

Implementing plugins cakePHP

I am trying to implement a search plugin that I found into an application I am creating. This is the plugin; So far I have put the plugin into '..cakePHP/app/Plugin/', added CakePlugin::loadAll() in ...
2
votes
2answers
96 views

Where are all the plugins for tagging?

After dozens of frustrating attempts to make a tagging system in CakePHP version 2.1, I began to look for a plugin, or some example behavior to get the effect I want, but every one I could find was ...
2
votes
2answers
387 views

Change $actsAs variable from controller

All I want to do is change a value ('path') in the $actsAs array of my Upload model from the controller prior to a save. The only way I've come up with that works is to unload the behavior and then ...
0
votes
1answer
164 views

Upload plugin - how to override path?

Using the Upload Plugin. I want to upload files in a foreign_key folder to "guarantee" random, since it doesn't appear to have any check for an existing file before overwriting a file(s). I'd like a ...
0
votes
1answer
262 views

Upload Plugin issues

Trying to get the CakePHP Upload Plug-in to work. The file uploads fine, the thumbnails are created...etc, but having a few issues: -the 'name' field in the 'uploads' table is empty -the 'upload' ...
4
votes
2answers
823 views

CakePHP 2.1 Asset Compress Plugin not creating cached files

I'm using the CakePHP Plugin AssetCompress (v 0.7) which works fine, except that it doesn't cache any files in the directory. This is my asset_compress.ini setup: [General] writeCache = true ...

1 2 3