Tagged Questions

Yii is a PHP framework with all the common features needed to build fast, scalable and feature-rich web 2.0 applications: MVC, DAO/ActiveRecord, I18N/L10N, caching, DB migrations, authentication and role-based access control, scaffolding, testing, etc. It is very much a "Rails" inspired framework. ...

learn more… | top users | synonyms (1)

27
votes
15answers
18k views

Which PHP framework should I choose between ZendFramework and YII?

Which PHP framework should I choose between ZendFramework or YII? Points I need to consider: Performance (assuming an accelerator is used) Documentation stability of framework less to code.
1
vote
2answers
959 views

Yii framework: Using data from related Active Record models for searching

Yii 1.1 application development Cookbook explain a method for using data from related Active Record Models for searching the related models as well. This method is explained in page number 193 and ...
0
votes
4answers
303 views

INSERT with Subtype SuperType

I am currently working with a db that utilizes a subtype / supertype structure. I am wondering the best approach to handling INSERTs. Do I keep the population of multiple tables in the SQL itself, or ...
0
votes
2answers
365 views

Getting Last Inserted Id From MySQL in Yii

I want to show the last login id from the database in view > _form.php file.I have made the code in _form.php file like this <div class="row"> <?php echo ...
0
votes
6answers
241 views

what to do about Procedural code, business logic and queries in PHP

I have been tasked with supporting and maintaining several PHP/MySQL web apps (I use the term 'app' lossely) that seem to defy every known coding standard. The PHP code contains routines, ...
13
votes
1answer
1k views

OpenId support for Yii

I want to play with OpenID support in Yii. After researching for possible plugins, I found these two. One for OpenidSelector and one for LightOpenId ...
35
votes
17answers
29k views

Experience using Yii framework for actual PHP project [closed]

I've been using Code Igniter for my PHP projects, when I start them from the beginning. It is very nice framework, saves me a lot of work and let me have low level access if I need to do something ...
2
votes
1answer
1k views

What's the point of Yii's AssetManager?

I can't find much information about Yii's AssetManager for the management of JS and CSS files. My question here is what is the point of using the AssetManager? I'm not sure what value it adds to my ...
1
vote
2answers
785 views

chossing YII or ZEND for my big project [closed]

Possible Duplicate: Which PHP framework should I choose between ZendFramework and YII? My company is creating a very big website that will be upgrading.I have not use framework before I ...
11
votes
2answers
534 views

x-sendfile alternative for Apache to download huge files with resume-support

I need to programmatically initiate file downloads using PHP along with resume-support These files are heavy. So IO buffering like below or caching is not an option ...
4
votes
2answers
660 views

how to do multi insert and obtain ids

I want to insert some data into a table (id PK autoincrement, val) with use multi insert INSERT INTO tab (val) VALUES (1), (2), (3) Is it possible to obtain a table of last inserted ids? I'm ...
-1
votes
1answer
340 views

Yii framework: what does this JQuery line of code means [closed]

Possible Duplicate: Yii framework: Using data from related Active Record models for searching Yii provide advanced search functionality under admin page. This picture explain my question ...
3
votes
3answers
4k views

colorbox (which uses live) not rebinding after jQuery ajax call

I have a list of elements that I am loading via ajax (using jQuery's .load()). Each of these elements has an (edit) link next to it that lightboxes (using colorbox) a little edit form. When the ...
2
votes
2answers
64 views

Extracting Data from a .mdb file to mysql database using php [closed]

Possible Duplicate: Access from PHP to .mdb file on Ubuntu Hi I'm developing a webstore using the php framework yii.. I want to upload a .mdb file to our system, and extract data from it ...
2
votes
2answers
140 views

Yii validation rule - unique

in Yii framework, can I use unique validation rule to check uniqueness of an field within some condition (I know there is criteria, but this condition is a bit tricky)? Ie, i want to check num_days ...
2
votes
1answer
139 views

Play 2 Framework code generation tool or Yii/Cakephp frameworks?

I'm trying to get started with a couple of web applications. However, choosing a framework to work with can be overwhelming! I've worked with Java in the past, and since I do C# .NET at work, I ...
1
vote
1answer
174 views

Read contents from Google docs using php

How to read the contents from google docs? is there any api available for php? am using yii framework..
1
vote
1answer
155 views

Ascending Form numbers in Yii

In Yii I am doing a form in which the form has input fields for user details.I have made necessary input fields for all those fields.Where a user can submit all the values.Now I have a field where it ...
1
vote
2answers
113 views

How create “All edits are tracked”

I'm using PHP (Yii-framework) and MySQL database on my site. Users can post and edit some articles. How can I store every edit version like here in SO? (Like Wikipedia, this site is collaboratively ...
1
vote
2answers
2k views

yii - using relation HAS_ONE to get data from the related table to display in list page

I have two tables big (id, bigs_name, smallid), small(id, smallguys_name) therefore two models - big and small i have used the following relation in the big model, (I hope this relation is ...
0
votes
1answer
140 views

How to PHPUnit test a group function within Yii on Netbeans?

I've problem when I used PHPUnit test framework Yii in Netbeans. I've a class DemoController.php extends from class Controller of Yii. And I've a class DemoControllerTest.php. I can test all ...
0
votes
1answer
464 views

yii model search with daterange for time stamp

can any post the how to filter a grid view timestamp(Y-m-d h:m:s) column using date picker. my model is below public function search() { $criteria=new CDbCriteria(); ...
0
votes
1answer
62 views

How can I switch between the different theme while moving from different actions of same controller or different controller in YII

I have just started YII one week back. I have made a theme in that is \themes\yog it is very small project, just 4-5 forms, those are mostly fro the admin. so what i want now it suppose i am using ...
0
votes
2answers
442 views

Integrating NodeJS Realtime with existing PHP Application

I have an existing PHP app running on Apache server. Question, is it possible to embed say Socket.IO Client-side JS by "Proxy-Pass"-ing to NodeJS server? Say, I save a key-value pair with PHP in DB, ...
0
votes
3answers
252 views

Model for meta table in Yii

I just started developing my new project in Yii, I am new to Yii as well as to frameworks ans MVC structure. I would to get some advice on making meta tables and model for that table. Suppose I like ...
0
votes
1answer
634 views

Yii: Best way to reference rows in multiple tables?

What is the most Yii friendly 'standard' way to reference a record of any model? I'm attempting to build a menu system where a user can create a menu item which links to another item on the site. ...
0
votes
3answers
2k views

Unable to create sample application using Yii Framework

I am new to PHP. downloaded "yii-1[1].1.4.r2429.zip" file. and try to create sample application using Yii PHP framework Extracted yii-1[1].1.4.r2429.zip to this path. C:\xampp\htdocs\yii on windows ...
0
votes
2answers
2k views

Yii question about relations function in AR Model, many to one relationship

So here's the scenario: I have two table, Issue & Project. A Project can have many Issue and an Issue can exactly one project. Since Issue is many to one, do you have to define it? Cause I ...
-1
votes
2answers
198 views

Getting last inserted value in Yii

I have already made a model for form.In that the fields were like id firstname lastname description created_at updated_at created_by updated_by I have made necessary CRUD for Form.Now I want to get ...
-1
votes
1answer
410 views

Yii framework: Customize Search [closed]

Possible Duplicate: Yii framework: Using data from related Active Record models for searching Yii framework provide searching list of models based on the search/filter conditions. It ...
-1
votes
1answer
425 views

yii export tbales into excel sheet in CSV Format

Hello Sir I want to ask how to export my few tables data in excel sheet format in list manner
24
votes
3answers
21k views

Include CSS,javascript file in Yii Framework

How to include Javascript or CSS file in Yii Framework. I want to create a page on my site that has a little javascript application running,so i want to include .js and css files in a specific view.. ...
19
votes
6answers
20k views

PHP Frameworks: Codeigniter vs. Yii vs. Custom? [closed]

I have used codeigniter for a some years now. Why I chosed to work with codeigniter back then? Pretty much for the extensive documentation that were available and the big user community. It made me as ...
2
votes
1answer
1k views

Getting Facebook API Error Code 191, but only in Internet Explorer

I'm seeing this error in Internet Explorer (but not other browsers): API Error Code: 191 API Error Description: The specified URL is not owned by the application Error Message: redirect_uri ...
6
votes
3answers
4k views

Yii ajaxSubmitButton() with fields validation

I'm using Yii ajaxSubmitButton() to submit a form. Besides, I have set the 'enableAjaxValidation' parameter to true to validate the corresponding textboxes. What I am able to do: Validate the field ...
4
votes
4answers
2k views

multi model forms in yii

how to create multi model form in Yii. I searched total documentation of Yii. Not got any result. Can some one give me some direction in that. Any help will be highly appreciable.
6
votes
2answers
1k views

Yii framework scalability

I'm a starter in yii framework. I just want know how scalable Yii is with a lot of online users at a time? How useful is Yii in comparison to other frameworks and also if there are 100,000 users - to ...
5
votes
1answer
758 views

How can I customize the labels for the pager in Yii?

I am new to Yii. I want to implement custom pagination. I want to change the appearance of the pager. How do I change the labels of the pager's links? I want the links to appear like so: << ...
4
votes
1answer
895 views

How to unit test controllers in Yii

How's this done? Do I just prepare a $_POST/$_GET/$_FILES set and pass it to the controller? Or is there some more elegant way to test the Yii controllers? Thank you for your help, MrB
2
votes
2answers
4k views

Yii: Render action using different layout than controller's layout

In Yii, is there a way to render a single action using a different layout than that defined for the controller? I have an action that I would like to format differently from the rest, and it's not ...
1
vote
1answer
199 views

Using static link inside dropdown menu in Yii Framework

Before asking this question I want to tell you all that I had asked question similar to this topic.The link is this. I have the form for Invoice.where the admin will create the Invoice.But in that ...
1
vote
2answers
834 views

Yii - create temporary table and using it in next query produces General error: 2014 Cannot execute queries while other unbuffered queries are active

I am creating temporary table to hold some dates in first query. And in second query I try to join with those dates... and than i get following error: SQLSTATE[HY000]: General error: 2014 Cannot ...
1
vote
2answers
1k views

Yii or ZendFramework? [+ORM] [closed]

I'm wondering which PHP framework to use. I've used CodeIgniter for my projects, but when version 2.0 released, I understood that it isn't what I need, because it's still old CI and only few small ...
4
votes
1answer
290 views

how to used openid in yii?

How to use openid selector javascript API in Yii? I am trying the simpleopenidselector Yii extension but I get an: Error 404 Unable to resolve the request "examples/consumer/try_auth.php" Please ...
4
votes
1answer
3k views

Search in BELONGS_TO model column with CGridView, Yii

I have a CGridView widget for Lesson model $this->widget('zii.widgets.grid.CGridView', array( 'id'=>'lesson-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, ...
2
votes
2answers
92 views

Website User Account Directory Access

this problem is not really uncommon, but i don't really have an idea how can I implement this. I have 500 registered users in my mini-forum and they have files uploaded in my server. As my users ...
2
votes
3answers
1k views

PDF or Word creation documents with Yii?

Hello I'm building an application with Yii that will now generate reports. My client wants to edit the reports after these are generated. I think the best option is creating a Word document so my ...
1
vote
1answer
442 views

Add create new link in Yii Framework drop down list

I am a newbie in Yii Framework and doing a small application in Yii Framework, I have the database for Invoice and Customers like this ==== Invoice ==== id customer_id invoice_title ...
1
vote
1answer
147 views

how to use both condition() and addcondition() for a same search model in yii

i have a grid view with a condition "upload_date = today" but when i search for other dates its not filtering the grid my model is as below public function search() { // Warning: Please ...
1
vote
0answers
96 views

Relations In Yii [closed]

Possible Duplicate: Foreign Key not storing in Yii I have a database like this ====Group===== id name ====Member==== id group_id firstname lastname membersince Now I used this relations ...

1 2 3 4