[fw-general] 3 column template using Zend_Layout example

2009-06-04 Thread Robert Castley
Hi, Does anyone have an example MVC application/code which uses a 3 column template using Zend_Layout where each column has content from a a different controller? e.g. Column 1 - MenuController Column 2 - ContentController NewsController Column 3 - AdvertController TIA, -- - Robert

Re: [fw-general] Zend Framework 1.8.0 Released

2009-05-01 Thread Robert Castley
Brilliant, thank you! http://jotbug.org now running it :-) - Robert On 30 Apr 2009, at 22:29, Matthew Weier O'Phinney wrote: Greetings! I'm pleased to announce the Zend Framework 1.8.0 release, the first in our 1.8 series of releases. This release marks the culmination of several

Re: [fw-general] jotBug is iPhone/Touch friendly

2009-04-29 Thread Robert Castley
THat is correct :-) -Robert On 29 Apr 2009, at 14:36, Alex Howansky wrote: With thanks to Phil and the iUI project - http://code.google.com/p/iui/ jotBug now has a iPhone/Touch web frontend :-) Test it for yourself @http://jotbug.org from your iPhone/Touch :-) I assume this uses the

Re: [fw-general] Zend Framework 1.8.0 sanity check tarballs available

2009-04-28 Thread Robert Castley
http://jotbug.org now running on 1.8.0 :-) Had to setFallback on autoloader temporarily until we can refactor to support 1.8.0 fully :-) Thank you! - Robert On 28 Apr 2009, at 06:42, Matthew Weier O'Phinney wrote: We have posted sanity check tarballs of the upcoming 1.8.0 release on the

[fw-general] jotBug is iPhone/Touch friendly

2009-04-28 Thread Robert Castley
With thanks to Phil and the iUI project - http://code.google.com/p/iui/ jotBug now has a iPhone/Touch web frontend :-) Test it for yourself @http://jotbug.org from your iPhone/Touch :-) All running on ZF 1.8.0 :-) - Robert robert.cast...@gmail.com

Re: [fw-general] jotBug on IRC

2009-04-23 Thread Robert Castley
None now, human error :-) Sorry! - Robert 2009/4/23 Matthew Weier O'Phinney matt...@zend.com: -- Robert Castley robert.cast...@gmail.com wrote (on Thursday, 23 April 2009, 08:18 PM +0100): You can join in all the jotBug fun on IRC - irc.freenode.net #jotbug We are having some issues

Re: [fw-general] jotBug on IRC

2009-04-23 Thread Robert Castley
http://jotBug.org now running 1.8.0b1 :-) - Robert 2009/4/23 Robert Castley robert.cast...@gmail.com: None now, human error :-) Sorry! - Robert 2009/4/23 Matthew Weier O'Phinney matt...@zend.com: -- Robert Castley robert.cast...@gmail.com wrote (on Thursday, 23 April 2009, 08:18 PM

[fw-general] Testing jotBug - A ZF app :-)

2009-04-19 Thread Robert Castley
Hi, If anyone would like to help test jotBug - http://jotbug.org - then please do and report issues at http://jotbug.googlecode.com jotBug is built 100% using ZendFramework and needs testing/hacking/destroying etc. No prizes, just looking for some help :-) Cheers, -- - Robert

Re: [fw-general] Zend Framework team reorganization

2009-04-14 Thread Robert Castley
@Matt ... Wishing you all the best in your new role! @Wil ... thank you for your time and support. - Robert On Tue, Apr 14, 2009 at 3:15 PM, Matthew Weier O'Phinney matt...@zend.com wrote: Greetings! The Zend Framework team has undergone some internal reorganization recently which will

RE: [fw-general] Dynamically generated RSS feed question

2009-03-18 Thread Robert Castley
In Safari make sure you don't have under Recent Articles Today, Yesterday selected. Make sure ALL is selected. - Robert -Original Message- From: Deepak [mailto:d88...@gmail.com] Sent: 18 March 2009 13:56 To: Zend Framework General Subject: [fw-general] Dynamically generated RSS feed

[fw-general] jotBug downloads availble

2009-03-17 Thread Robert Castley
jotBug - http://jotBug.org - a project management application written entirely using Zend Framework :-) now has some early builds available for download. jotBug is still not complete but those that don't have or don't want to use SVN can now download jotBug. You can still take it for a spin at

RE: [fw-general] .htaccess - avoid request to go to controller

2009-03-05 Thread Robert Castley
OT - ish :-) Why does quickstart use: RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ /index.php [NC,L] And the manual RewriteEngine On RewriteCond

RE: [fw-general] Loading a config.ini file

2009-03-04 Thread Robert Castley
Hi, Try this this also allows for you to have a development version of the .ini file as well so you don't have to touch the production version: $localConfigName = APPLICATION_PATH . '/config/dev.ini'; $config = new Zend_Config_Ini(APPLICATION_PATH . '/config/app.ini', null, true); if

RE: [fw-general] Where to put my front controller plugin?

2009-03-04 Thread Robert Castley
Hi, I put mine in my library directory ( library is on my include path). e.g. library - JotBug - Plugin - Language.php The plugin then starts with : class JotBug_Plugin_Language extends Zend_Controller_Plugin_Abstract { From: Dan Ballance

RE: [fw-general] Loading a config.ini file

2009-03-04 Thread Robert Castley
] Sent: 04 March 2009 09:06 To: Robert Castley Cc: Gregory Eve; Zend Framework - General Subject: Re: [fw-general] Loading a config.ini file Thanks, I did this: $config = new Zend_Config_Ini(APPLICATION_PATH . '/config.ini'); Zend_Registry::set('config', $config); And then i could access

RE: [fw-general] Loading a config.ini file

2009-03-04 Thread Robert Castley
I maybe wrong but as Zend Ini uses parse_ini_file you need to follow the structure of sections http://uk2.php.net/parse_ini_file - Robert From: vadim gavrilov [mailto:vadim...@gmail.com] Sent: 04 March 2009 09:10 To: Robert Castley Subject: Re: [fw-general

RE: [fw-general] Re: [fw-mvc] Application structure

2009-02-27 Thread Robert Castley
See how I do it at: http://code.google.com/p/jotbug/source/browse/#svn/trunk/JotBug - Robert From: vadim gavrilov [mailto:vadim...@gmail.com] Sent: 26 February 2009 18:08 To: keith Pope; fw-...@lists.zend.com; Zend Framework - General Subject: [fw-general] Re:

[fw-general] jotBug Project update

2009-02-26 Thread Robert Castley
Hi, My ZendFramework project jotBug is moving along nicely, the current fruits of my labour can be seen at http://www.jotbug.org (remember this is not finished or complete!) The ZendFramework is really speeding development along and proves the rapid web application development is possible. I

[fw-general] jotBug update

2009-02-17 Thread Robert Castley
Hi All, If you would like to follow jotbug development then see http://twitter.com/robertcastley (warning you will also get all the other mundane stuff in my life!) A working demo is available permantly online at http://jotbug.org (login in as `jotbug` for full admin access, any other username

RE: [fw-general] Thoughts on general website setup

2009-02-12 Thread Robert Castley
Hi, If it was me I would create an action per page. If then you decided to implement CRUD per page this would be easily achieved by adding the relevant action to the controller. Like I said, this is how I would do it :-) I do this in my code see:

[fw-general] Zend_Acl and serialization

2009-02-12 Thread Robert Castley
Hi, Could someone help me out? I have Zend_Acl all up and running lovely, but further research shows that some projects serialize the data and store in a database. My ACL implementation already uses a database for storing roles, resources etc. but on each action these calls are made to the

RE: [fw-general] Optimising Zend_Acl

2009-02-12 Thread Robert Castley
is caching the entire, constructed ACL object. Simply invalidate the cache when any changes are made to ACL, and it will be rebuilt on next request. I'm sure you don't need the nitty gritty implementation details. On 12/02/2009 8:53 AM, Robert Castley wrote: Hi, Could someone help me out? I

RE: [fw-general] index.phtml absolutely necessary?

2009-02-11 Thread Robert Castley
Try setting: From: Jason DeBord [mailto:jasdeb...@gmail.com] Sent: 11 February 2009 15:03 To: fw-general@lists.zend.com Subject: [fw-general] index.phtml absolutely necessary? The code below does not work: 1: Should it? 2: Must you always have a

RE: [fw-general] index.phtml absolutely necessary?

2009-02-11 Thread Robert Castley
Try setting: $this-_helper-viewRenderer-setNoRender(); From: Jason DeBord [mailto:jasdeb...@gmail.com] Sent: 11 February 2009 15:03 To: fw-general@lists.zend.com Subject: [fw-general] index.phtml absolutely necessary? The code below does not work: 1:

[fw-general] JotBug Demo now online

2009-02-02 Thread Robert Castley
My little project JotBug is now available online :-) http://62.233.104.50/ I haven't got the domain sorted yet but I will. Project his still hosted at http://jotbug.googlecode.com You can log in as any user with no password to try things out. You will have a ACL level of reporter

RE: [fw-general] JotBug Demo now online

2009-02-02 Thread Robert Castley
:-) :-) Cheers, - Robert From: Robert Castley [mailto:robert.cast...@macro4.com] Sent: 02 February 2009 17:30 To: fw-general@lists.zend.com Subject: [fw-general] JotBug Demo now online My little project JotBug is now available online :-) http

[fw-general] JotBug - A Project Management Issue Tracker written 100% with Z F :-)

2009-01-27 Thread Robert Castley
Hi, I am looking (begging!) for help/testing/feedback etc etc etc on my JotBug project http://jotbug.googlecode.com http://jotbug.googlecode.com So far, I have the following implemented: Wiki - Syntax is Textile - Add - Edit - Preview - Delete - Attachments (upload/view) - Code

RE: [fw-general] JotBug - A Project Management Issue Tracker w ritten 100% with Z F :-)

2009-01-27 Thread Robert Castley
Maybe you can install a demo somewhere? E.g., for JotBug itself? :-) If I could find a permenant home I would! At the moment I am only able to provide that facility when I am online at home as I can run it in a VM without worrying about being hacked etc. The URL for that is

RE: [fw-general] What do you use to manage your ZF projects?

2009-01-22 Thread Robert Castley
I am using Hudson https://hudson.dev.java.net/ I use a small shell script to perform all my build needs and Hudson takes care of the rest. - Robert -Original Message- From: Matthew Weier O'Phinney [mailto:matt...@zend.com] Sent: 22 January 2009 13:39 To: fw-general@lists.zend.com

RE: [fw-general] What do you use to manage your ZF projects?

2009-01-22 Thread Robert Castley
else is under development :-) http://rcastley.plus.com/ http://rcastley.plus.com/ - Robert _ From: Robert Castley Sent: 21 January 2009 17:33 To: Karol Grecki; fw-general@lists.zend.com Subject: RE: [fw-general] What do you use to manage your ZF projects? Well ... Depending

RE: [fw-general] What do you use to manage your ZF projects?

2009-01-22 Thread Robert Castley
Hi, Now have SCM browser in early stages :-) SVN only at the moment. http://rcastley.plus.com http://rcastley.plus.com - Robert _ From: Robert Castley Sent: 22 January 2009 14:09 To: fw-general@lists.zend.com Subject: RE: [fw-general] What do you use to manage your ZF projects

RE: [fw-general] What do you use to manage your ZF projects?

2009-01-21 Thread Robert Castley
Well ... Depending on which way you look at it, I have stupidly decided to have a stab at developing my own PHP based solution. Using ZF ... of course! My starting point is a direct copy of the sqlite database from trac, this has already been modified to support projects :-) I have the Wiki

Re: [fw-general] Zend Framework 1.7.3 in now available!

2009-01-21 Thread Robert Castley
Thank you! Sent from my iPhone On 20 Jan 2009, at 20:11, Wil Sinclair w...@zend.com mailto:w...@zend.com wrote: Hi all, It is my pleasure to announce the release of Zend Framework 1.7.3! You can download this new mini release from the ZF download site:

RE: [fw-general] Re[fw-general] member Me and Zend_Session with Z end_Auth/Zend_Acl?

2009-01-19 Thread Robert Castley
In my app I have an AuthController. Once the user has been validated etc I do the following: $authSession = new Zend_Session_Namespace('Zend_Auth'); if ($rememberMe == true) { $authSession-setExpirationSeconds(864000); } -Original Message- From: drj201

[fw-general] RE: Zend_Auth default storage blocking Ajax requests

2009-01-15 Thread Robert Castley
Further investigation led me to this page: _ From: Robert Castley Sent: 12 January 2009 13:35 To: fw-general@lists.zend.com Subject: Zend_Auth default storage blocking Ajax requests Hi, I think this is my problem (well Google says it is!), because Zend_Auth uses sessions

[fw-general] RE: Zend_Auth default storage blocking Ajax requests

2009-01-15 Thread Robert Castley
references from my controllers. Now in Firefox things fly! Amazing difference. Times to wait have gone from 20+ seconds to 1-2 seconds. - Robert _ From: Robert Castley Sent: 12 January 2009 13:35 To: fw-general@lists.zend.com Subject: Zend_Auth default storage blocking Ajax requests Hi

[fw-general] Zend_Auth default storage blocking Ajax requests

2009-01-12 Thread Robert Castley
Hi, I think this is my problem (well Google says it is!), because Zend_Auth uses sessions for storage it prevents multiple Ajax requests from firing. The just get processed sequentially. I assume this is something to do with PHP and the way it allows access to sessions. As soon as I remove

[fw-general] Question about DB calls in models and efficiency

2009-01-05 Thread Robert Castley
Hi, Out of the two following examples which is the most efficient code i.e. which offers the best performance? Example 1: $sql = $this-select() -from($this-_name) -order('timestamp', 'DESC'); Example 2: $sql = $this-select(); $sql-from($this-_name); $sql-order('timestamp', 'DESC');

Re: [fw-general] Zend Framework 1.7.2 is now available!

2008-12-23 Thread Robert Castley
I'll third that but I expect 1.7.3 by jan 1st :-) Happy Xmas Sent from my iPhone On 23 Dec 2008, at 19:45, Josh Team josht...@gmail.com mailto:josht...@gmail.com wrote: Wil! What are you doing releasing stuff?! Go enjoy the holidays! :) I'm sure I speak for the entire community when we

RE: [fw-general] What do you use to manage your ZF projects?

2008-12-22 Thread Robert Castley
Anyway I feel your pain, I couldn't find anything meeting my requirements either. I even considered building it myself, using ZF of course :) That is where I think I could be heading :-) - Robert rcastley wrote: Hi Karol, How do you handle issue/bug tracking? In Bugzilla I can

Re: [fw-general] What do you use to manage your ZF projects?

2008-12-22 Thread Robert Castley
switched from trac to Redmine ( http://www.redmine.org/ http://www.redmine.org/ http://www.redmine.org/ ) some time ago. Definitely worth a look. Mike Robert Castley schrieb: Hi, Just curious here. I/we currently use Bugzilla CVS, no formal wiki but I do have a MediaWiki used

[fw-general] Zend PDT 2.0 RC1 available

2008-12-21 Thread Robert Castley
The new Zend PDT (built on Eclipse Ganymede) is now available as a Release Candiate: http://downloads.zend.com/pdt/all-in-one/ Also, it looks like there will be a 1.0.5 release to fix issues in 1.0.3. - Robert This email

RE: [fw-general] Zend PDT 2.0 RC1 available

2008-12-21 Thread Robert Castley
Actually there now seems to be a RC2 release available from the PDT project on eclipse.org. Downloading now and I will see if this has fixed/improved the niggles I found in the 1st beta. - Robert -Original Message- From: Robert Castley Sent: Sun 12/21/2008 1:53 PM To: fw-general

[fw-general] Short Tags vs. Long Tags performance question

2008-12-18 Thread Robert Castley
Hi, If you enable your ZF application to use short tags is there a benefit/increase in performance over littering your view scripts with echo this and echo that? Cheers, - Robert This email has been scanned for all

RE: [fw-general] Short Tags vs. Long Tags performance question

2008-12-18 Thread Robert Castley
Thank you :-) -Original Message- From: Matthew Weier O'Phinney [mailto:matt...@zend.com] Sent: 18 December 2008 14:41 To: fw-general@lists.zend.com Subject: Re: [fw-general] Short Tags vs. Long Tags performance question -- Robert Castley robert.cast...@macro4.com wrote (on Thursday, 18

RE: [fw-general] ZF live settings

2008-12-09 Thread Robert Castley
Your .htaccess file doesn't look right to me. Have you tried this? RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ index.php [NC,L] -Original Message- From:

[fw-general] Netbeans IDE with PHP

2008-11-25 Thread Robert Castley
Just found this: http://www.netbeans.org/downloads/index.html http://www.netbeans.org/downloads/index.html It is a 24Mb download (compared with Eclipse PDT 130Mb) with full PHP, Javascript etc support. The javascript editor is excellent along with code completion etc. The PHP side of

RE: [fw-general] Netbeans IDE with PHP

2008-11-25 Thread Robert Castley
Tramontano [mailto:[EMAIL PROTECTED] Sent: 25 November 2008 19:24 To: Robert Castley; fw-general@lists.zend.com Subject: RE: [fw-general] Netbeans IDE with PHP How's the css support ? Does it allow you to write custom file extension configurations ? Bet it doesn't compare to Zend studio though

RE: [fw-general] Zend_Feed Error

2008-11-24 Thread Robert Castley
Hi, I can't duplicate the problem on my ZF 1.7 environment. The only thing I am doing different is assigning the results to a variable rather than the view E.g. try { $rss = Zend_Feed::import('http://feedproxy.google.com/francaistechcrunch'); } catch (Zend_Feed_Exception $e) {

RE: [fw-general] White / Blank Screen when using MAMP

2008-11-24 Thread Robert Castley
Hi You probably want to enable display_errors in your php.ini and also set error_reporting(E_ALL | E_STRICT). Then you might get something in your browser to let you know what has gone wrong. - Robert -Original Message- From: boxers999 [mailto:[EMAIL PROTECTED] Sent: 24 November 2008

RE: [fw-general] Strange behaviour with Zend_Translate and cachin g in 1.7 Sanity check release

2008-11-17 Thread Robert Castley
://www.thomasweidner.com - Original Message - From: Robert Castley [EMAIL PROTECTED] To: fw-general@lists.zend.com Sent: Monday, November 17, 2008 1:09 PM Subject: [fw-general] Strange behaviour with Zend_Translate and caching in 1.7 Sanity check release Hi, I am just wondering why

[fw-general] Problem with Zend_Locale, UTF-8, setLocale on Windows

2008-11-12 Thread Robert Castley
Hi, It seems that in 1.6.2 Zend_Locale doesn't handle well under Windows. Zend_Locale is using $language = setlocale(LC_ALL, 0); in the getEnvironment function On my Windows system this will return: This email

[fw-general] Problem with Zend_Locale, UTF-8, setLocale on Windows

2008-11-12 Thread Robert Castley
Hi, It seems that in 1.6.2 Zend_Locale doesn't handle well under Windows. Zend_Locale is using $language = setlocale(LC_ALL, 0); in the getEnvironment function Using the same browser to access two systems I get: On my Windows ZF system this will return: Array ( [0] =

RE: [fw-general] Problem with Zend_Locale, UTF-8, setLocale on Wi ndows

2008-11-12 Thread Robert Castley
this here: http://framework.zend.com/manual/en/zend.translate.using.html#zend.translate .using.languages.automatic Greetings Thomas Weidner, I18N Team Leader, Zend Framework http://www.thomasweidner.com - Original Message - From: Robert Castley [EMAIL PROTECTED] To: fw-general@lists.zend.com

RE: [fw-general] Problem with Zend_Locale, UTF-8, setLocale on Wi ndows

2008-11-12 Thread Robert Castley
. $locale-setLocale('browser'); This is exactly what I said before... when you need the locales from browser use the locale 'browser'. Greetings Thomas Weidner, I18N Team Leader, Zend Framework http://www.thomasweidner.com - Original Message - From: Robert Castley [EMAIL PROTECTED] To: fw

RE: [fw-general] Zend PDT 2.0 all-in-one available (BETA)

2008-11-12 Thread Robert Castley
can file issues/bugs etc over at eclipse.org/pdt. - Robert -Original Message- From: András Csányi [mailto:[EMAIL PROTECTED] Sent: 12 November 2008 20:25 To: Robert Castley Subject: Re: [fw-general] Zend PDT 2.0 all-in-one available (BETA) 2008/11/6 Robert Castley [EMAIL PROTECTED

[fw-general] Zend PDT 2.0 all-in-one available (BETA)

2008-11-06 Thread Robert Castley
A bit off-list but those Zend guys have packaged an all-in-one build of the latest PDT 2.0 and Eclipse 3.4. http://downloads.zend.com/pdt/all-in-one/ http://downloads.zend.com/pdt/all-in-one/ Had a quick play and the hot-spots for me are: 1) Javascript editor and source formatter included

RE: [fw-general] Zend PDT 2.0 all-in-one available (BETA)

2008-11-06 Thread Robert Castley
] Zend PDT 2.0 all-in-one available (BETA) Hi, Robert Castley schrieb: A bit off-list but those Zend guys have packaged an all-in-one build of the latest PDT 2.0 and Eclipse 3.4. When starting eclipse, it says Europa and not Ganymede ... are you sure that it is Eclipse 3.4? -- Cheers

RE: [fw-general] Zend PDT 2.0 all-in-one available (BETA)

2008-11-06 Thread Robert Castley
When in the PHP explorer do the following: Window - Navigation - Show View Menu Package Presentation - Hierachical - Robert -Original Message- From: Vince42 [mailto:[EMAIL PROTECTED] Sent: Thu 06/11/2008 12:06 To: fw-general@lists.zend.com Subject: Re: [fw-general] Zend PDT 2.0

[fw-general] Zend_Translate and 1.7.0PR issue/question

2008-11-04 Thread Robert Castley
Hi, I thought I would take the Preview Release for a spin. But I immediately hit an issue with Zend_Translate. My error message is: Notice: No translation for the language 'en_GB' available. in /Users/rwc/Sites/ZendFramework-SVN/library/Zend/Translate/Adapter.php on line 301 I have a

[fw-general] APC and ZF tutorial

2008-11-04 Thread Robert Castley
Hi I see APC mentioned a lot on this list and I was wondering if anyone has a tutorial for configuring APC for use with ZF? I have a default PHP and Apache install on Windows XP/Ubuntu/Mac and would like to what I have to do to my ZF app to get it using APC. Cheers, - Robert

FW: [fw-general] Major Issues with Zend Auth

2008-10-22 Thread Robert Castley
Hi, I hope I am understanding your question but why don't you store you ini file contents in Zend_Registry? e.g. config.ini [general] param1 = Me param2 = You Bootstrap.php $configPath = './application/config/'; $config = new Zend_Config_Ini($configPath . 'config.ini', null, true);

RE: [fw-general] XML-RPC client and umlauts etc. question

2008-10-21 Thread Robert Castley
Would you like me to raise a JIRA report for this? Regards, - Robert _ From: Robert Castley Sent: 20 October 2008 13:56 To: Matthew Weier O'Phinney; fw-general@lists.zend.com Subject: RE: [fw-general] XML-RPC client and umlauts etc. question Hi Matthew, Thanks for responding

RE: [fw-general] XML-RPC client and umlauts etc. question

2008-10-20 Thread Robert Castley
Hi Matthew, Thanks for responding. - Two questions for you: * Is the XML-RPC server Zend_XmlRpc_Server, or another implementation? The server is another implementation * Are you using Zend_XmlRpc_Client? Yes I am The thing to note here is that I am tracing out the XML that

[fw-general] XML-RPC client and umlauts etc. question

2008-10-20 Thread Robert Castley
Hi, I have a form (not using Zend_Form) that when submitted will call a XML-RPC request. If a field in the form contains an umlaut or accute etc. then the value is getting stripped from the request. I have tried using htmlentities on the form values submitted but this is still causing the

[fw-general] Session ID Protection

2008-09-30 Thread Robert Castley
The following article highlights security issues with session ID's. It also goes on to say not to use URL re-writes. How does this affect ZF? The quick test provided in the link does indeed expose my session ID when using Zend_Auth.

RE: [fw-general] Session ID Protection

2008-09-30 Thread Robert Castley
#zend.session.global_session_management.session_identifiers.hijacking_and _fixation Thx 2008/9/30 Robert Castley [EMAIL PROTECTED]: The following article highlights security issues with session ID's. It also goes on to say not to use URL re-writes. How does this affect ZF? The quick test provided in the link does indeed expose my session

[fw-general] Max. number of concurrent connection in Zend_Http_Client

2008-09-11 Thread Robert Castley
Hi, What is the maximum number of concurrent connections Zend_Http_Client can handle? I am asking the question because at the moment my app builds up using AJAX requests and in IE 6 I am limited to max. 2 connections per session which really slows things down. So, I thought I would use

[fw-general] Question about Quickstart tutorial

2008-09-03 Thread Robert Castley
In the tutorial it sets: $bootstrap = true; in index.php then in bootstrap.php it does a: if (isset($bootstrap) $bootstrap) { ...etc. Why is this done? To me it seems unnecessary or am I missing the plot? Cheers, - Robert

RE: [fw-general] Question about Quickstart tutorial

2008-09-03 Thread Robert Castley
Brilliant, thank you! As usual! - Robert -Original Message- From: Matthew Weier O'Phinney [mailto:[EMAIL PROTECTED] Sent: 03 September 2008 13:37 To: fw-general@lists.zend.com Subject: Re: [fw-general] Question about Quickstart tutorial -- Robert Castley [EMAIL PROTECTED] wrote

[fw-general] NetVibes using ZF for server backend

2008-08-26 Thread Robert Castley
Hi All, I didn't know this before so I thought I would share it, but the folks over at netvibes.com are using ZF for the backend. They have just released some server side code on their OS site (netvibes.org). I downloaded these and was pleasantly surprised to see it built upon ZF :-) Cool

Re: [fw-general] How to put to work 3rd party libs in Zend Frmewo rk? like dompdf?

2008-08-23 Thread Robert Castley
Hi, I raised a big report about this ages ago someone has kindly provided a patch to Loader.php but this is not in any official download yet. I am successfully using this patch and dompdf in my zfwiki project. Search the issue/bug system to find the patch I can't give the issue number as I am

RE: [fw-general] Zend Studio as Plugin to Eclipse 3.4 Ganymede

2008-08-19 Thread Robert Castley
Hope this info helps: http://www.howtoforge.com/setting-up-eclipse-pdt2.0-on-eclipse3.4-ganymede http://www.howtoforge.com/setting-up-eclipse-pdt2.0-on-eclipse3.4-ganymede But you are probably better waiting a wee while, see: http://www.mail-archive.com/[EMAIL PROTECTED]/msg00103.html

RE: [fw-general] is there an example application for Zend_Auth Zend_Acl Zend_Session ??

2008-08-07 Thread Robert Castley
Hi Steve, I have put up my working examples on the Wiki (which is down as I write this). I cover a working Zend_Auth and Zend_Acl with a DB backend (SQLite in my examples). I don't have anything on Zend_Session as Zend_Auth/ACL use Zend_Session themselves and they cover of what I need. When

RE: [fw-general] is there an example application for Zend_Auth Zend_Acl Zend_Session ??

2008-08-07 Thread Robert Castley
The Wiki is back up now so here are the links: http://framework.zend.com/wiki/display/ZFUSER/Using+Zend_Acl+with+a+database +backend http://framework.zend.com/wiki/display/ZFUSER/Using+Zend_Acl+with+a+databas e+backend _ From: Robert Castley Sent: 07 August 2008 08:29

[fw-general] New ZFWiki release available

2008-08-06 Thread Robert Castley
Today sees the public 'alpha' release of ZFWiki. A lot has happened over the last few weeks and she is turning into something useful and usable (at last!). I am really happy with everything so far and the support on this list has been a major help in getting ZFWiki this far. Download:

[fw-general] ZFWiki - Development update and community input required

2008-07-31 Thread Robert Castley
Hi All, ZFWiki has been coming on quite nicely of late, some new features and a whole brand new look. GeSHi for code syntax highlighting is integrated and Textile is now the chosen markup. I would be most grateful if I could have some UI (User Interface) feedback. Any feedback should be

RE: [fw-general] Zend Framework 1.5.3 is now available!

2008-07-28 Thread Robert Castley
Hi, Thankyou so much for this release (and also fixing my bugs!) The list of all issues link does not work, even if you are logged in! All the best, - Robert -Original Message- From: Alexander Veremyev [mailto:[EMAIL PROTECTED] Sent: 28 July 2008 17:10 To: fw-general@lists.zend.com

RE: [fw-general] Zend Framework 1.5.3 is now available!

2008-07-28 Thread Robert Castley
Doh! Thank you! -Original Message- From: Mark Wright [mailto:[EMAIL PROTECTED] Sent: 28 July 2008 21:24 To: Robert Castley Cc: fw-general@lists.zend.com Subject: Re: [fw-general] Zend Framework 1.5.3 is now available! The link got broken into 2 lines. Try this one: http

RE: [fw-general] Announcing Project Planetarium!

2008-07-24 Thread Robert Castley
, but their UI design is excellent. _ From: Robert Castley Sent: 23 July 2008 10:01 To: Zend Framework General Subject: RE: [fw-general] Announcing Project Planetarium! Tine 2.0 looks amazing and what's better it led me to find Ext JS. Now ZFWiki is going to get a complete makeover (LOL

RE: [fw-general] Announcing Project Planetarium!

2008-07-23 Thread Robert Castley
of the biggest requirements and took ages to get it right. Also trying to code around XSS etc was also a nightmare, ZF again to the rescue there. I love ZF :-) _ From: Wil Sinclair [mailto:[EMAIL PROTECTED] Sent: 22 July 2008 23:46 To: Robert Castley; Jurriën Stutterheim Cc: Zend

RE: [fw-general] Announcing Project Planetarium!

2008-07-22 Thread Robert Castley
It's great to see another Open Source ZF app out there. I thought I was alone ;-) I am surprised there hasn't been a bigger take up. Maybe it is time to have a page on the ZF site dedicated to promoting and supporting OS ZF apps. At the moment the trawl of the web turns up little to nothing

RE: [fw-general] Re: Re[fw-general] direct Question

2008-07-17 Thread Robert Castley
O'Phinney [mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] Sent: 08 July 2008 17:51 To: fw-general@lists.zend.com Subject: Re: [fw-general] Re: Re[fw-general] direct Question -- Robert Castley [EMAIL PROTECTED] wrote (on Tuesday, 08 July 2008, 05:05 PM +0100): I am having a similar problem

[fw-general] ZFWiki Development update

2008-07-10 Thread Robert Castley
Hi All, ZFWiki has moved along v. nicely. Some major improvements to note: 1) Using the defacto directory structure i.e. css, js etc live in public 2) Better Exception handling throughout 3) Better use of ZF URL helpers (thank you to Matthew on the ZF Mailing list) 4) Integration of the rather

[fw-general] Setting a view variable in one controller for another controller

2008-07-10 Thread Robert Castley
Hi, I have my indexController and a loadController. The loadController is set to not render as it is an ajax call. Without passing params etc. via the URI I would like to be able to set a view variable in the loadController that can be used in indexControllers view script. i.e. in

RE: [fw-general] Re: Re[fw-general] direct Question

2008-07-10 Thread Robert Castley
[mailto:[EMAIL PROTECTED] Sent: 08 July 2008 17:51 To: fw-general@lists.zend.com Subject: Re: [fw-general] Re: Re[fw-general] direct Question -- Robert Castley [EMAIL PROTECTED] wrote (on Tuesday, 08 July 2008, 05:05 PM +0100): I am having a similar problem. In my controller I would like

RE: [fw-general] XML RPC calls no longer working in 1.5, possibly due to server introspection?

2008-07-09 Thread Robert Castley
Hi All, Using 1.5.2 (just downloaded) the issue is still not fixed. I am still getting in my XML-RPC Server log: methodCall methodNamesystem.methodSignature/methodName params param value stringcolumbusom.Enterprise/string /value /param /params /methodCall Run

[fw-general] How to get the current url in a controller

2008-07-08 Thread Robert Castley
Quick question (I hope!) How does one get the current url in a controller. I can get the baseUrl via $this-getRequest()-getBaseUrl(); But I would like to get the complete url e.g. /baseUrl/view/param1/param2 Cheers, - Robert

[fw-general] Getting my own exceptions to display in the error controller

2008-07-08 Thread Robert Castley
Hi (again!), In my controller I throw an Exception. Using the ErrorController guide in the manual I would like to be able to display the message I put in my exception. I can't seem to get this message out as it is protected. throw new Zend_Exception('Group not found!',90);

RE: [fw-general] Getting my own exceptions to display in the erro r controller

2008-07-08 Thread Robert Castley
= $this-_request-getParam('error_handler')-exception-getMessage(); } Robert Castley wrote: Hi (again!), In my controller I throw an Exception. Using the ErrorController guide in the manual I would like to be able to display the message I put in my exception. I can't seem to get this message out

RE: [fw-general] How to get the current url in a controller

2008-07-08 Thread Robert Castley
Fantastic Thank you! - Robert -Original Message- From: Matthew Weier O'Phinney [mailto:[EMAIL PROTECTED] Sent: 08 July 2008 14:31 To: fw-general@lists.zend.com Subject: Re: [fw-general] How to get the current url in a controller -- Robert Castley [EMAIL PROTECTED] wrote

RE: [fw-general] Re: Re[fw-general] direct Question

2008-07-08 Thread Robert Castley
I am having a similar problem. In my controller I would like to specify a URL. Currently I am using: $this-view-saveUrl = $this-_baseUrl . '/save/' . $this-_groupKey . '/' . $this-_pageTitle; I tried the redirector approach but obviously that redirects straight away. Is there another method to

RE: [fw-general] Re: Re[fw-general] direct Question

2008-07-08 Thread Robert Castley
Thank you, thank you, thank you! - Robert -Original Message- From: Matthew Weier O'Phinney [mailto:[EMAIL PROTECTED] Sent: 08 July 2008 17:51 To: fw-general@lists.zend.com Subject: Re: [fw-general] Re: Re[fw-general] direct Question -- Robert Castley [EMAIL PROTECTED] wrote

RE: [fw-general] XML-RPC startup

2008-07-03 Thread Robert Castley
You need to add phpdoc info about your function e.g. /** * Get time * @return string */ _ From: Ahmed Abdel-Aliem [mailto:[EMAIL PROTECTED] Sent: 03 July 2008 13:15 To: fw-general@lists.zend.com Subject: [fw-general] XML-RPC startup Hi all, i am trying to make a simple web

RE: [fw-general] XML-RPC startup

2008-07-03 Thread Robert Castley
] Sent: 03 July 2008 13:42 To: Robert Castley Subject: Re: [fw-general] XML-RPC startup i added it and still getting the same error here is how my code is now : i am putting the server in the index controller : - require_once 'Zend/XmlRpc/Server.php

[fw-general] ZFWiki - the first baby steps!

2008-07-02 Thread Robert Castley
My first Alpha release is available for public comsumption: Few pointers: Cons: 1) This is ALPHA code, do not run in production 2) Still trying to work out the best ACL model, so ACL is not in this release 3) The WYSIWYM editor is not fully functional yet if you choose to enable it. Pros: 1)

RE: [fw-general] Case issue in URL for base directory

2008-07-02 Thread Robert Castley
Bump! :-) _ From: Robert Castley Sent: 12 June 2008 17:41 To: fw-general@lists.zend.com Subject: [fw-general] Case issue in URL for base directory Hi All, In my Apache 2.2 directory my application directory is called Magik (note the capital M). When I call the URL http

RE: [fw-general] New Wiki Application under development (ZFWiki) using ZendFramework 1.5.0

2008-06-27 Thread Robert Castley
Hi, You download a copy via SVN from: svn checkout http://zfwiki.googlecode.com/svn/trunk/ zfwiki-read-only - Robert _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of José de Menezes Soares Neto Sent: 26 June 2008 17:55 To: Robert Castley Cc: [EMAIL PROTECTED]; Zend

[fw-general] ZFWiki Online Demo

2008-06-27 Thread Robert Castley
Hi All, I have put up a demo fo ZFWiki. Some points to note: - It's not finished! - Yes, there are bugs! - It is hosted at home so may be a bit slow - It is running in a Ubuntu VM on my Mac to protected me :-) - It does not render 100% perfectly in IE. Works just fine in FF and Safari -

RE: [fw-general] New Wiki Application under development (ZFWiki) using ZendFramework 1.5.0

2008-06-24 Thread Robert Castley
, - Robert -Original Message- From: Juan Felipe Alvarez Saldarriaga [mailto:[EMAIL PROTECTED] Sent: 24 June 2008 15:29 To: Robert Castley Cc: [EMAIL PROTECTED]; Zend Framework - General Subject: Re: [fw-general] New Wiki Application under development (ZFWiki) using ZendFramework 1.5.0 Wow

  1   2   >