Re: Tried to install another application inside cakePHP configuration

2009-07-16 Thread saavedrajj

thanks everybody for the help

On 16 jul, 12:31, Travis L  wrote:
> If you have httpd.conf access, I'd put the directive in there.
>
> Alias /pma /var/www/html/phpMyAdmin
> 
> ...
> 
>
> On Jul 15, 9:11 am,saavedrajj wrote:
>
> > it works with this code
>
> > 
> >    RewriteEngine on
> >    rewritecond %{REQUEST_URI} ^/(name_of_folder_application|fm)/
> >    RewriteRule .* - [S=2]
> >    RewriteRule    ^$ app/webroot/    [L]
> >    RewriteRule    (.*) app/webroot/$1 [L]
> > 
>
> > any better idea?
--~--~-~--~~~---~--~~
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 to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Tried to install another application inside cakePHP configuration

2009-07-16 Thread Travis L

If you have httpd.conf access, I'd put the directive in there.

Alias /pma /var/www/html/phpMyAdmin

...


On Jul 15, 9:11 am, saavedrajj  wrote:
> it works with this code
>
> 
>    RewriteEngine on
>    rewritecond %{REQUEST_URI} ^/(name_of_folder_application|fm)/
>    RewriteRule .* - [S=2]
>    RewriteRule    ^$ app/webroot/    [L]
>    RewriteRule    (.*) app/webroot/$1 [L]
> 
>
> any better idea?
--~--~-~--~~~---~--~~
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 to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Tried to install another application inside cakePHP configuration

2009-07-15 Thread saavedrajj

it works with this code


   RewriteEngine on
   rewritecond %{REQUEST_URI} ^/(name_of_folder_application|fm)/
   RewriteRule .* - [S=2]
   RewriteRule^$ app/webroot/[L]
   RewriteRule(.*) app/webroot/$1 [L]


any better idea?
--~--~-~--~~~---~--~~
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 to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Tried to install another application inside cakePHP configuration

2009-07-15 Thread Travis L

I've got PMA installed on all my systems, even those with Cake.  I use
the httpd.conf to specify an alias in Apache to redirect the request
to a different part of the filesystem.  Works great everywhere I've
done it.

On Jul 14, 12:52 am, "Dr. Loboto"  wrote:
> Or install them into cake webroot, or edit cake root .htaccess to not
> pass openx, phpMyAdmin, phpBB and what other soft you install requests
> to cake.
>
> On Jul 14, 12:34 pm, saavedrajj  wrote:
>
> > Hello everybody, inside my cakePHP configuration i want to install
> > the phpMyAdmin and phpBB forum
>
> >http://www.cakeapp.com/phpMyAdminhttp://www.cakeapp.com/phpBB
>
> > I have been uploaded, as usual, the applications in my root server
> > directory,
> > but the following error appears:
>
> > Missing Controller
>
> > Error: OpenxController could not be found.
>
> > Error: Create the class OpenxController below in file: app/controllers/
> > openx_controller.php
>
> >  > class OpenxController extends AppController {
>
> >         var $name = 'Openx';}
>
> > ?>
>
> > the same thing happens with another application that i tried to
> > install
> > (PhpMyAdmin, phpBB, etc.)
>
> > ¿is there a solution for this?
>
> > Thanks
--~--~-~--~~~---~--~~
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 to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Tried to install another application inside cakePHP configuration

2009-07-14 Thread Dr. Loboto

Or install them into cake webroot, or edit cake root .htaccess to not
pass openx, phpMyAdmin, phpBB and what other soft you install requests
to cake.

On Jul 14, 12:34 pm, saavedrajj  wrote:
> Hello everybody, inside my cakePHP configuration i want to install
> the phpMyAdmin and phpBB forum
>
> http://www.cakeapp.com/phpMyAdminhttp://www.cakeapp.com/phpBB
>
> I have been uploaded, as usual, the applications in my root server
> directory,
> but the following error appears:
>
> Missing Controller
>
> Error: OpenxController could not be found.
>
> Error: Create the class OpenxController below in file: app/controllers/
> openx_controller.php
>
>  class OpenxController extends AppController {
>
>         var $name = 'Openx';}
>
> ?>
>
> the same thing happens with another application that i tried to
> install
> (PhpMyAdmin, phpBB, etc.)
>
> ¿is there a solution for this?
>
> Thanks
--~--~-~--~~~---~--~~
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 to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---