Browsing All posts tagged under »symfony«

Dynamic Web Service using ckWebServicePlugin

September 17, 2009

3

To implement Web Service in symfony, ckWebServicePlugin can offer integration of symfony module as web service. The instruction detail can be found at http://www.symfony-project.org/plugins/ckWebServicePlugin/3_0_0?tab=plugin_readme. But, to make the plugin installation work, you need additional files: ckWsdlGenerator ckWsdlGenerator can be checked out from http://svn.symfony-project.com/plugins/ckWebServicePlugin/branches/ckWsdlGenerator and must be placed under [project]/plugins/ckWebServicePlugin/lib/vendor/. Addendum Addendum can be checked out… [Read more…]

Propel 1.3 Blob Field Workarround on Symfony

August 24, 2009

0

VARBINARY or LONGVARBINARY column should be mapped as blob column. But in Propel 1.3 they are mapped wrong. The setter for the column will not work when the column is saved, the column is treated as string instead of resource. The column value will be something like Resource id #nn. See this ticket. You can… [Read more…]

Adding Access Logging to Symfony Application

May 31, 2009

0

sfAccessLoggerPlugin introduces a way of logging your site visits. To accomplish this logging, the others plugin is needed: sfGuardPlugin for User management. sfPropelUuidBehaviorPlugin for generating Universally Unique Identifier (UUID). sfRemoteIPPlugin, an extract of function found in sfPropelAuditPlugin by Sacha Telgenhof Oude Koehorst to detect the remote IP Address. sfBrowscapPlugin, a simple symfony wrapper for phpbrowscap… [Read more…]

Using Multiple Primary Keys in Admin Generator

April 22, 2009

12

Sometimes, the table we’re using force us to use multiple primary keys as shown in the schema below (config/schema.yml): connection: propel defaultIdMethod: native package: lib.model classes: State: tableName: state columns: id: { type: varchar, size: 2, primaryKey: true } country_id: { type: varchar, size: 2, primaryKey: true } name: { type: varchar, size: 50, index:… [Read more…]

Hacking Symfony Application in A Shared Hosting

March 10, 2009

6

In a shared hosting environment, you may not have a full access to the server. Everything has already been installed. But a least they provide a secure shell (SSH). I have successfully deploy a syfmony 1.2 application in a shared hosting, surely with a hacking. PDO Hack Symfony 1.2 at least need PHP 5.2.4 and… [Read more…]

Panduan Pemula Symfony

March 2, 2009

4

Catatan: Tutorial ini menggunakan Sistem Operasi Windows. Instalasi Webserver, PHP, dan MySQL Webserver: Apache HTTPD Sebagai webserver, coba Apache HTTPD (http://httpd.apache.org), download versi terakhir (2.2.x) kemudian install. Setelah instalasi selesai, buka browser: http://localhost Dan hasilnya “It works!”, ini menandakan instalasi apache telah selesai, selanjutnya kita akan mengkonfigurasi httpd agar bisa menyajikan aplikasi symfony. Database: MySQL… [Read more…]

A Newbie Guide for Symfony

February 27, 2009

0

Note: This tutorial using Windows Operating System. Webserver, PHP, and MySQL Instalation Webserver: Apache HTTPD For a webserver, try Apache HTTPD (http://httpd.apache.org), download the latest version (2.2.x) and install. After the instalation is finished, browse to: http://localhost And it say “It works!”, then the apache installation is done, next we will configure the httpd configuration… [Read more…]

Symfony 1.2: sfDbConfigPlugin, a sfConfig Counterpart

January 7, 2009

0

Symfony has a file based configuration, and with sfDbConfigPlugin, it can handle a database based configuration. sfDbConfigPlugin provide the following feature: sfDbConfig class sfDbConfig class provide a counterpart methods of sfConfig class: sfDbConfig::set('MYSETTING::TEST', 'test value'); // set the value sfDbConfig::get('MYSETTING::TEST', 'default'); // get the value, return 'default' if not defined $exist = sfDbConfig::has('MYSETTING::TEST'); // check… [Read more…]

Optimizing Eclipse PDT Performance

January 5, 2009

0

After the long use of PDT, there’s may be a down performance caused by the increasingly of files used by PDT such as history files and log files. So now its time to tweak the PDT performance. Here are the files that can be safely removed from the PDT workspace: Log files, located at [Workspace]\.metadata\*.log.… [Read more…]

Bringing Up Symfony Application into Linux Shared Hosting

November 23, 2008

5

Our application development has been finished, now the time we put the application alive on the web. On shared hosting, directory structure for a html files has already been specified according to the server. First step, is to figure out what it looks like and where to put html files. Below is a sample: root/… [Read more…]

Follow

Get every new post delivered to your Inbox.