Re: [Catalyst] Re: Using htpasswd file.

2011-05-02 Thread Rohan M
Catalyst::Authentication::Store::Htpasswd ? Thanks for your help. Regards, Rohan On Fri, Apr 29, 2011 at 8:57 PM, Tomas Doran bobtf...@bobtfish.net wrote: On 25 Apr 2011, at 09:54, Rohan M wrote: Catalyst::Plugin::Authentication::Store::Htpasswd Erm, I don't know why this is being loaded

[Catalyst] Using htpasswd file.

2011-04-25 Thread Rohan M
Dear All, I'm trying to use htpasswd file for my application for authentication. I created htpasswd file using htpasswd command. e.g htpasswd -c htpasswd rohan Then I moved the file to my application directory /home/rohanm/Apps/myapp/ But I'm getting following error when I try to authenticate

[Catalyst] Re: Using htpasswd file.

2011-04-25 Thread Rohan M
Sorry I mistyped the Location of file. The location of the file is correct in my app. On Mon, Apr 25, 2011 at 2:04 PM, Rohan M rohan7...@gmail.com wrote: Dear All, I'm trying to use htpasswd file for my application for authentication. I created htpasswd file using htpasswd command. e.g

Re: [Catalyst] Updating a database entry

2011-04-03 Thread Rohan M
Hi Adam, Did you try putting result-set in the variable rather than directly putting it into stash? my $user = $c-model('DB::Tech')-find({id = $userid}); $user-update({ id = $username, firstname = $fname, lastname = $lname,

Re: [Catalyst] Catalyst and oracle database.

2011-03-11 Thread Rohan M
González Villalonga* Director Técnico *DAIKON Integración y Desarrollo S.L.* Telf: (+34) 91 188 08 28 Fax: (+34) 91 632 65 42 *www.daikon.es* El 11/03/11 06:28, Rohan M escribió: Dear all, Thanks for the reply. I'm trying to connect the Catalyst application hosted on 192.168.100.10

Re: [Catalyst] Catalyst and oracle database.

2011-03-11 Thread Rohan M
in the class files). I recomend to check them all just in case you are interested. Regards J. *Jorge González Villalonga* Director Técnico *DAIKON Integración y Desarrollo S.L.* Telf: (+34) 91 188 08 28 Fax: (+34) 91 632 65 42 *www.daikon.es* El 11/03/11 11:34, Rohan M escribió: Dear All

[Catalyst] Catalyst and oracle database.

2011-03-10 Thread Rohan M
) ) ) Could somebody tell me the Proper command to create model for Oracle database? perl script/testapp_create.pl model ... OR Am I missing on anything? Thanks and regards, -- Rohan M ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

Re: [Catalyst] Catalyst and oracle database.

2011-03-10 Thread Rohan M
On Thu, Mar 10, 2011 at 4:32 PM, Octavian Rasnita orasn...@gmail.comwrote: *From:* Rohan M rohan7...@gmail.com Dear All, I'm trying to use Oracle database as a back-end database for Catalyst application. (I tried MySQL and its working properly for me ). At first, I tried the following

Re: [Catalyst] Catalyst and oracle database.

2011-03-10 Thread Rohan M
Dear all, Thanks for the reply. I'm trying to connect the Catalyst application hosted on 192.168.100.10 to the Oracle server on 192.168.100.107. I tested the oracle connection from 192.168.100.10 with sql plus and perl-DBI combination. Anything that I'm missing? Regards, Rohan M On Thu, Mar

Re: [Catalyst] Ajax Problem.

2011-01-07 Thread Rohan M
', type: 'get', success: function (j) { alert(j.books.book1); }, error: function(xhr, ajaxOptions, thrownError){ alert(xhr.statusText); } }); }); On Thu, Jan 6, 2011 at 4:05 PM, Rohan M rohan7

Re: [Catalyst] Ajax Problem.

2011-01-06 Thread Rohan M
is getting returned with required database output.** I searched on net and found 'Catalyst::View::JSON but even after adding JSON.pm I'm unable to convert data into JSON object. Please correct me, as I must be doing something wrong. Thanks and regards, Rohan On Thu, Jan 6, 2011 at 10:37 AM, Rohan M

[Catalyst] Ajax Problem.

2011-01-05 Thread Rohan M
Dear All, I want to use Ajax in my Catalyst application. Thing's that I've done till now : 1) Created a Javascript function on an event (onblur event) in my view (tt page). 2) Created xmlhttp object in that Javascript function. 3) Called the '/controller/action' path with parameters. 4) The

Re: [Catalyst] Ajax Problem.

2011-01-05 Thread Rohan M
Mesdaq (CISSP, GIAC-GREM) Sr. Security Researcher Websense Security Labs http://www.WebsenseSecurityLabs.com http://www.websensesecuritylabs.com/ -- *From:* Rohan M [mailto:rohan7...@gmail.com] *Sent:* Wednesday, January 05, 2011 3:07 AM

[Catalyst] Re: Query : Catalyst forward and relative path in CSS.

2010-11-26 Thread Rohan M
= ${base}/static/style.css in the root/lib/config/url file. This worked for me ! Thanks again.. also any suggestions and thoughts are welcome.. Regards, Rohan P.S. How to mark the issue as [SOLVED]? On Sun, Nov 21, 2010 at 9:40 PM, Rohan M rohan7...@gmail.com wrote: Dear All, I'm trying out

[Catalyst] Query : Catalyst forward and relative path in CSS.

2010-11-21 Thread Rohan M
Dear All, I'm trying out the examples and learning Catalyst. Although, the scripts are working but I'm facing two problems - 1) The $c-forward('controller/action') *NOT* working but $c-response-redirect('/controller/action') is working. Any reason ? I do not see any errors on the console.