Lithium is an RAD framework for PHP 5.3+
0
votes
1answer
19 views
Lithium PHP: Open view without layout
I am using the PHP framework Lithium (aka li3). I want to be able to open just a view (ie without a layout) in a jquery dialog box. Ideally, I would like this to be done with a small modification to ...
-1
votes
0answers
18 views
I need to host lithium project in godaddy hosting [closed]
I have developed an application in lithium PHP framework and I have a hosting provided by godaddy.com with apache server on linux platform.
I need to host my app now.. I think i have to change ...
0
votes
1answer
34 views
Using MongoDB upsert in Lithium
I'm having a bit of a problem performing an upsert in Lithium with MongoDB. The update works fine but it won't do the insert. My code is:
Feeds::update(
array('data' =>
...
1
vote
0answers
41 views
Removing duplicates in Lithium/Freemarker
I am using Lithium custom components to create a list of users who have written the most Blog articles. I have a list of users who have written a blog article and then made a rest call to get the ...
0
votes
1answer
50 views
Lithium PHP DocumentSet Caching
I'm attempting to cache the results of a query (DocumentSet) in hopes of enhancing performance on my clients application.
So before the find the app will check to see if an appropriate cache key ...
0
votes
2answers
78 views
Lithium PHP routes not working
I'm following the quickstart guide for Lithium: http://lithify.me/docs/manual/quickstart
I created my posts Model in /var/www/my_app/app/models/Posts.php
<?php
namespace app\models;
class Posts ...
1
vote
2answers
58 views
rewrite rule for shop in lithium / apache
I have a lithium installation and all the .htaccess works fine.
I need to install OpenCart as a shopping cart in app/webroot/shop
I copied all the files and also changed the .htaccess file in the ...
2
votes
1answer
31 views
Lithium Validator does not process arrays?
I cannot seem to get an array to validate properly: in my example, every musician must have at least one instrument ($musician->instruments is an array of instruments). I have tried setting up ...
1
vote
0answers
41 views
lithium insert entity array into model object property
The following coding sample doesn't work.
$joiner = new Entity();
$joiner->name = $post['name'];
$joiner->address = $post['address'];
$meeting = Meeting::first($_id);
$meeting->joiner[] = ...
0
votes
0answers
25 views
Using pagination in lithium li3 connection read
KeywordSearch::connection()->read(
"SELECT id, meta_keywords, MATCH(meta_keywords) AGAINST ({:keywords} IN BOOLEAN MODE) AS rank FROM Products WHERE MATCH(meta_keywords) AGAINST ({:keywords} IN ...
0
votes
1answer
42 views
Lithium PHP form helper fails while generating URL when using globalization
I have activated globalization config in my lithium framework.
When I using html helper in my View like '$this->form->create()'.
The page threw an Exception with "No parameter match found for URL ...
0
votes
1answer
33 views
Different views in one
I´m working on a project using lithium framework and I need to be able to have different views in a "MAIN" view.
For example. I have to be able to see the post and events forms (add a new event and a ...
0
votes
1answer
70 views
Multiple lithium models relationships
I´m actually on a project and working with lithium framework for PHP. I´m using multiple databases (MongoDB and MySQL) and on the MySQL database I have lots of many to many relations between my ...
0
votes
2answers
106 views
Lithium Framework Architecture - Call One Controller from Another
I'm working on a web app using the Lithium Framework with a MongoDB database.
On one page of the application - I want to display data from multiple object types. I understand the concept of ...
0
votes
1answer
68 views
How to render an email using a view in Lithium?
In Lithium documentation is written that *View::$_request*
"Holds the details of the current request that originated the call to this view, if applicable. May be empty if this does not apply. For ...
0
votes
1answer
45 views
Lithium framework template parts
So here is my question :
How can I use template parts ? I mean individual files like navbar.html.php which I would include in my layout and passing parameters.
I did some researches but didn't found ...
2
votes
0answers
86 views
Editing a model with an embedded document (Lithium Framework - MongoDB)
I am using the Lithium PHP Framework - with MongoDB database - to create some input/edit forms for my application.
I'm using the concept of embedded documents in MongoDB. It took me a bit of ...
0
votes
1answer
124 views
Advanced Validation with Lithium PHP Framework
I'm building a pretty complex and dynamic form via the Lithium PHP framework.
I've got the form working and saving to MongoDB with little problem. But I am having trouble with validation.
Simple ...
1
vote
1answer
106 views
Connecting to MongoDB using Lithium li3 Framework
I am writing a relatively simple app in the Lithium (li3) Framework. I am using MongoDB as the datastore. My MongoDB database is hosted in the cloud - at MongoHQ.
I am getting intermittent errors ...
1
vote
1answer
68 views
Lithium: How do I access an action through the command line?
I'm trying to run an action via CLI. The action is UsersController::test()
So, I run this:
php libraries/lithium/console/lithium.php \\app\\controllers\\UsersController test
But I keep running into ...
0
votes
1answer
89 views
how to include view in lithium framework
I am using lithium framework to do my application because it supports mongodb ,
Now I am trouble with how to include another view file in a view file
For example I get a view file named ...
2
votes
2answers
125 views
Advice on Refactoring Custom Routing Scenario (Lithium Framework)
A continuation from previous question: Custom lithium routing scenario
Note: This is specific to the Lithium Framework
The Problem
I've inherited a URL scheme that doesn't really have any ...
1
vote
1answer
61 views
Lithium forward request
The controller redirect() method in Lithium does an actual HTTP redirect. But is there a method to simply forward a request to another controller/action without an HTTP redirect?
For example, say I ...
1
vote
2answers
95 views
mongodb query to lithium command
db.users.aggregate(
{$match :
{"_id" : ObjectId("50f69176904e1d66affec20d")}
},
{$unwind : "$connections"},
{$match :
{$or : [
{"connections.users" : ...
0
votes
1answer
96 views
Why is lithium's (li3) last-route not catching everything?
The last connect on the Lithium Router:
Router::connect('/{:controller}/{:action}/{:args}', 'Main::end');
Should match all the routes? No? But instead of execute my Main::end method (who simply ...
3
votes
5answers
113 views
Is it safe to store passwords in Lithium sessions?
I'd like to use the "cookie" session adapter from Lithium. After the user logs in I'll create a cookie with his hashed password. If this cookie is present and the hashed password matches the one from ...
1
vote
1answer
82 views
Mongo Query in Lithium
db.tickers.aggregate(
{ $project:
{_id: 0,
year: {$year: '$date'},
month: {$month: '$date'},
day: {$dayOfMonth: '$date'},
hour: {$hour: '$date'},
avg: '$ticker.avg'
...
0
votes
2answers
111 views
Fresh lithium framework installation returns error 403
I read the docs and installed lithium exactly like they have explained but I keep on getting a 403 forbidden error. I am new to apache and php and I have been spending two full days trying to make ...
0
votes
0answers
140 views
User hasMany Posts - Lithium MongoDB relationship
I'm just trying out the simplest of the examples for hasMany relations where User hasMany Posts. A user_id is hardwired in view code when saving posts for testing.
Questions:
Are relationships ...
2
votes
2answers
280 views
How to secure a Lithium php RESTful API?
I have created a RESTful apps using Lithium php framework and now my question is how to secure it?
Is there any existing code for OAUTH or HTTP Digest Authentication that uses lithium framework?
2
votes
1answer
136 views
Lithium (li3) order and limit hasMany related data
Using the Lithium framework, I have two model classes, Post and Image. They are related via a hasMany relationship.
//Post.php
class Post extends \lithium\data\Model {
public $hasMany = ...
2
votes
1answer
93 views
Reading/Deleting related data/entites in Lithium 0.11 & MongoDB
I have a Holidays model that hasOne Itineraries object. The Itineraries object has a holidays_id as the foreign key (implied by Li3 convention) and a array of objects that store information for each ...
1
vote
2answers
128 views
Closing PHP tag in Lithium
As you know most PHP sources deprecated inserting closing tag, but I wonder why in Lithium documentation, it is encouraged to include a closing PHP tag? Is there any rational reason for that? Beside ...
0
votes
0answers
103 views
Fetching Lithium models with relationships into Backbone
I'm using Lithium, MongoDb,Backbone.js (not relational).
I have the following Lithium model class:
class Holidays extends \lithium\data\Model {
public $validates = array(
'holiday_name' ...
1
vote
2answers
259 views
How to set Backbone Model.idAttribute?
I'm using MongoDb/Lithium php framework with backbone.
I want all my model id(s) and idAttribute(s) to be same as my database document id (i.e '_id'/mongoid)
Questions:
When I print the value of ...
0
votes
2answers
279 views
Word Cities/Towns/Countries database for MongoDB (or in JSON)?
I'm developing a application using MongoDB. One of the standard functionality I want to provide on the front-end is the 'auto-suggest' feature as one types in the first few letters of a city (example: ...
1
vote
1answer
77 views
Backbone Model fetched from Lithium controller is not loaded properly in bb Model
I'm using backbone.js and Lithium.
I'm fetching a model from the server by passing in a _id that is received as a hidden parameter on the page.
The database MongoDB has stored the data correctly and ...
3
votes
2answers
152 views
How does the lithium PHP framework generate a $this context in a PHP page?
I've been investigating the Lithium PHP Framework and I don't understand how it sets $this->context; (particularly in this layout.)
Since you cannot simply re-assign $this obviously this layout ...
0
votes
1answer
136 views
MongoDB password and Lithium framework
I came across a scenario in which the MongoDB password was removed from the DB. Then Lithium showed "Connection was reset.. ", instead of lithium error.
I will explain you step by step:
In ...
0
votes
1answer
39 views
Testing Environment-sensitive code in Lithium
In a test, is there a way to temporarily override what Environment::get() returns in a class that extends StaticObject?
I'm writing a feature toggle plugin for Lithium. I want to test switching ...
1
vote
1answer
115 views
Lithium Views in Sub-directories
I am working on a website using the Lithium framework for PHP, and I need to have two sub-directories (ie. for admin and blog) with my controllers and views:
-controllers
-admin
...
0
votes
1answer
355 views
Mongodate convert
After executing the query
$orders = Orders::connection()->connection->command(array(
'aggregate' => 'orders',
'pipeline' => array(
array(
'$group' => array(
...
0
votes
1answer
89 views
Using slaveOk for all queries
I'm unsure of the proper way to use slaveOK with Connections::add(). It was suggested here to use Mongo::setSlaveOkay(), but I'd like it for all queries.
I'm unsure of how to properly test it, but ...
2
votes
2answers
149 views
Setting safe => 'majority' for MongoDB using Li3
I am using PHP Lithium Framework. Is there a way to set safe => 'majority' through configuration.
I am using mongodb replication and want to make sure that the data is written to majority of ...
1
vote
2answers
218 views
Lithium framework multiple 'or' statements in a query (using mongoDB)
I have started work with lithium framework + mongoDB recently. I want to do a really simple query which contains multiple or statements.
I have articles in the DB with publish_up and publish_down ...
1
vote
1answer
160 views
Lithium: find list with condition not in a array
I am trying to use the find for a list having fields = name and the field "number" NOT in a list of array $importedVolumes.
$importedVolumes = array('22','38');
Volumes::find('list', array(
...
0
votes
3answers
198 views
Lithium: Can we see queries executed as shown in CakePHP
Do you know of any method to show the queries being executed in Lithium as it does in CakePHP.
It may become easier for me to find what is executed.
At the bottom of the page it shows the queries ...
1
vote
2answers
147 views
Get Distinct records from MongoDB using lithium
I want to find distinct records from a collected "pages".
I tried:
$Volume_numbers = Pages::find(array('fields'=>'DISTINCT volume_number'));
I also tried:
$params = ...
1
vote
2answers
74 views
Is there a possibility for not case sensitive Routes in li3?
I would like to create a Route at Lithium, which matches
/abc
/abC
/aBc
and so on
So far i have something like this:
Router::connect('/abc', array('Example::test'));
Is there a possibility to ...
0
votes
0answers
69 views
Lithium Couchdb query design by key
This code is working fine:
$posts = Posts::all(array(
'conditions' => array(
'design' => 'posts', 'view' => 'all',
'limit' => 10, 'descending' => 'true'
)
));
...