Re: Soap header authentications problems

2012-06-11 Thread Felipe Roman
Hy Guys, The problem was in the wrong namespace, so authentication was failing. I just changed the namespace to 'http://tempuri.org/' and everything started to works fine. Thanks On Mon, Jun 11, 2012 at 3:24 PM, Felipe Roman wrote: > Hi Guys, > > I'm using CakePHP an

Soap header authentications problems

2012-06-11 Thread Felipe Roman
I change the username and password (to an invalid value) I get the same error message, it means the https protocol is working fine (the client is able to connect to the server) but the SOAP authentication header fails. Any suggestions ? Thanks in advance, -- Best Regards, Felipe Roman Phon

Re: Problems running Cakephp2.1.1 with SQL Server 2008

2012-04-12 Thread Felipe Roman
oglegroups.com For more options, visit this group at > http://groups.google.com/group/cake-php -- Best Regards, Felipe Roman Phone 55 51 8454 8110 LinkedIn http://au.linkedin.com/in/feliperoman -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out

Re: Problems running Cakephp2.1.1 with SQL Server 2008

2012-04-12 Thread Felipe Roman
I forgot to say that I'm able to connect and run queries using one test.php file I created without any frameworks (I mean using sqlsrv_connect() direct) so I think the environment configuration is Ok. thanks again On Thu, Apr 12, 2012 at 1:34 PM, Felipe Roman wrote: > Hi, > > Do y

Problems running Cakephp2.1.1 with SQL Server 2008

2012-04-12 Thread Felipe Roman
.php compatible with Cake 2.1.1 ? Thanks -- Best Regards, Felipe Roman Phone 55 51 8454 8110 LinkedIn http://au.linkedin.com/in/feliperoman -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and he

Re: Controller can't access the Session

2012-03-28 Thread Felipe Roman
nt > > Am Montag, 19. März 2012 01:37:02 UTC+1 schrieb Felipe Roman: > > > > > > > > > > > Hi, > > > Has someone ever seen only one controller does not access the cake session > > ? > > > The session works fine for all controll

Controller can't access the Session

2012-03-18 Thread Felipe Roman
arios") or ($this->action != 'login')){ if($this->Session->read('Login')) { } else { $this->Session->setFlash(__('Efetue o login para acessar o sistema', true)); $this->redirect(array('controller' => 'u

Re: Embedding CakePHP in existing page

2011-10-23 Thread Roman Zawada
Looks like two simple custom routing classes did the job. Theoretically and in simple test case it works, so hopefully will work in every other situation. On 23 říj, 13:09, Roman Zawada wrote: > Thanks, I quiet feel stupid this doesn't came up to my mind before. > But is there an

Re: Embedding CakePHP in existing page

2011-10-23 Thread Roman Zawada
e an iframe. > > j > > On 22 October 2011 18:34, Roman Zawada wrote: > > > > > > > > > > > Hi guys, > > I've voluntiered on creating some db app, and I told those guys that > > it will be very easy, since I wanted to use CakePHP. Sadly

Embedding CakePHP in existing page

2011-10-22 Thread Roman Zawada
Hi guys, I've voluntiered on creating some db app, and I told those guys that it will be very easy, since I wanted to use CakePHP. Sadly after some time they told me they want it inside their already existing web, which is ancient highly changed PHPNuke. So what I want is to generate just content o

Re: Scaffolding vs Bake

2010-12-29 Thread Felipe Roman
r you (work for all your requirements) I guess you can continue using it. I've read in some place that scaffolding is not recommended to use in production application (I don't remember the reason is unstable or insecure...) but I don't know in the latest cake version. -- Best Regards

Re: IDE

2010-12-21 Thread Felipe Roman
using Eclipse PHP for a while too. For me both are very good IDEs but a little bit slow(in my computer). -- Best Regards, Felipe Roman Phone 55 51 8454 8110 LinkedIn http://au.linkedin.com/in/feliperoman Check out the new CakePHP Questions site http://cakeqs.org and help others with their C

Re: IDE

2010-12-21 Thread Felipe Roman
bscr...@googlegroups.comFor > more options, visit this group at > http://groups.google.com/group/cake-php?hl=en > -- Best Regards, Felipe Roman Phone 55 51 8454 8110 LinkedIn http://au.linkedin.com/in/feliperoman Check out the new CakePHP Questions site http://cakeqs.org and help others

Keep Pagination options using URL instead of store in a Session

2010-10-22 Thread Felipe Roman
echo $form->input("procurar", array('label' => 'Nome do aluno', 'value' => '')); echo $form->end("Localizar"); Thanks advance, -- Best Regards, Felipe Roman Phone 55 51 8454 8110 LinkedIn http://au.linkedin.com/in/feliperom

Re: Advanced setup

2009-09-22 Thread The Roman
CAKE_CORE_INCLUDE_PATH to point to cake and vendors directories which had been removed to somewhere outside the subversion tree. Many Thanks, Roman. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP"

Advanced setup

2009-09-21 Thread The Roman
tements/delete/*', array('controller' => 'statements', 'action' => 'delete')); Router::connect('/statements/add/*', array('controller' => 'statements', 'action' => 'add')); Rout

Re: Encoding problem

2009-09-15 Thread Roman
B do you use? It is not CakePHP, it 's DBMS problem. > > > If MySql, set encoding to UTF8 and DB collation to utf8_unicode_ci, > > not utf8_general_ci. > > > On Sep 15, 5:11 am,Roman wrote: > >> Hi, > >> I have created filter using paginate with extra

Encoding problem

2009-09-14 Thread Roman
Hi, I have created filter using paginate with extra options taken from input fields. Service and database use UTF-8 (checked). When I try to filter word with polish characters (e.g. ósma) cakephp does not return proper value. Do you have any idea ? Regards, Roman

Inserting record with id

2009-06-30 Thread Roman Brunnemann
d'] = $shop_id; $i['Product']['name'] = $name; App::import('Model', 'Product' ); $Product = new Product(); $Product->save($i); But it does not save the id, only shop_id and name. I tried to add a fieldLis

.htaccess password protect admin routes

2009-05-26 Thread Roman Brunnemann
authentication via .htpasswd files Thanks for your help. Roman To make everything 1000% clear: This is the peace of code of an .htaccess file I am looking a place for ;-) : AuthName "Restricted area" AuthType Basic AuthUserFile /path/.htpasswd AuthGroupFile /dev/null require

Re: Using Auth: Access denied even when I allow everything

2009-05-24 Thread Roman Brunnemann
n calling $this->Auth->allowedActions(' * '); Do I have to include something? Thanks a lot, Roman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send em

Using Auth: Access denied even when I allow everything

2009-05-22 Thread Roman Brunnemann
x27;*'); //allow every action of every controller } } Do you have any idea why the access is still blocked? Thanks a lot. Roman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To po

CakePHP validates invalid data

2009-05-16 Thread Roman Brunnemann
modified columns). The columns in the database are named exactly as in the form. So why is cakePHP saying that the invalid data is valid and tries to save it. But even the saving of the data does not work, because he does not save the valid nor the invalid fields. Thanks a lot for your help.

Re: Customizing auth flash messages

2009-05-15 Thread Roman Brunnemann
Perfect!!! Many thanks. This is what I was looking for. Best regards, Roman brian wrote: > Set $this->Auth->loginError in AppController::beforeFilter(). > > On Fri, May 15, 2009 at 10:57 AM, Roman Brunnemann > wrote: > >> Hi, >> >> short question and

Customizing auth flash messages

2009-05-15 Thread Roman Brunnemann
my layout. How and where can I do this? In the login method? Thanks for your help. Best regards, Roman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, se

Append something to the Flash message

2009-05-11 Thread Roman Brunnemann
ting value? Thanks a lot. Roman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email t

Get autoincrement ID after save (insert)

2009-05-07 Thread Roman Brunnemann
to to is to go to the view of this person. Therefor I need the id. Thanks a lot for your help. Roman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake

find with group and two tables

2009-05-05 Thread Roman Brunnemann
* SELECT `Installation`.`name`, MAX(`Invoice`.`period_end`), `Installation`.`id` FROM `installations` AS `Installation` WHERE `Installation`.`active` = 1 GROUP BY `Installation`.`id` So cake does not include the Invoice table in the sql query. So how can I do this? Thanks a lot in advance. Best

CakePHP Pagination and custom URLs

2009-05-04 Thread Roman
I have a problem with custom URLs and CakePHP pagination. The URL to my news page is www.site.de/de/news Via CakePHP routing, it goes to the News controller and index action. CakePHP pagination now generates these kind of URLs: www.site.de/news/index/page:2 The link works - but due to SEO rea

CSS Class for with $html->tableHeaders

2009-02-14 Thread Roman
With the HTML helper it is easy to set a CSS class for a : tableCells( 'one', array('two',array('class'=>'myCssClass'), 'three' );?> As I understand the documentation, it is only possible to set a CSS class for and for all the 's: tableHeaders( array('Date','Title','Active'), array('cl

Is it possible in CakePHP ???

2008-11-07 Thread Roman
Hi, I am trying to create such a select in Cake: SELECT Month(er.`date`),Year(er.`date`), SUM(er.`value`), er.`position` FROM expense_revenues er where er.`firm_id` = 2 group by 2, 1, 4; how to use SQL functions inside fields Roman

Apache crashes when using mysql_connect

2008-06-10 Thread Roman Onufryk
sion since 5.2.0 (it works with 4.4.8 - but it doesn't connect with mysql 5) Has anyone encountered such bug? Any solutions? -- Best, Roman Onufryk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakeP