Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-21 Thread chris
Thanks for the above, but it didn't seem to have any affect. However, it seems the htaccess file in Wordpress was my downfall. It seems the only change I needed was line 7 from RewriteRule . /index.php [L] to RewriteRule . /blog/index.php [L And it all seems to be working fine so far. Will test

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-21 Thread Gyanendra Singh
Dear Please set Permalink link custom Structure setiing - Start code Code / /%category%/%postname%/ /End/ Detail this contact no -9958470442 On Tue, Jun 21, 2011 at 4:11 PM, chris wrote: > Thanks for the replies.

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-21 Thread Gyanendra Singh
.htaccess file this code use in wordpress website RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{R

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-21 Thread chris
Thanks for the replies. As Jeremy says, we are changing this for SEO purposes. The blog is currently working fine on blog.mysite.com, and I am trying to move it to be available on www.mysite.com/blog I appreciate all the information above, I will need to go through it to understand it fully. I'v

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-20 Thread Jeremy Burns | Class Outfit
www.mysite.com/blog is better for SEO purposes. On 21 Jun 2011, at 07:12, Zaky Katalan-Ezra wrote: > Editing the .htaccess is a good method if the files you want to directly > access is some how part of your cake solution. > A calculator you downloaded from somewhere and you want to add to your

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-20 Thread Zaky Katalan-Ezra
Editing the .htaccess is a good method if the files you want to directly access is some how part of your cake solution. A calculator you downloaded from somewhere and you want to add to your app without the need to integrate it to you cake code, for example. But the problem here have no connection

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-20 Thread luca capra
I've solved a similar issue editing /.htaccess (cake 1.3.6) RewriteEngine on RewriteBase / RewriteCond %{REQUEST_URI} !^/blog RewriteRule^$ app/webroot/[L] RewriteCond %{REQUEST_URI} !^/blog RewriteRule(.*) app/webroot/$1 [L] Luca On 20/06/2011 17:26, chris wr

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-20 Thread David Cole
Another method is to place the blog directory in the root directory (with, app, cake, etc) then modify the .htaccess file. A good example is here: http://www.techlicity.com/blog/simple-way-to-get-cakephp-to-allow-direct-access-to-files-and-directories.html On Jun 20, 10:26 am, chris wrote: > I r

Re: Wordpress and CakePHP - cake taking controll of URLS

2011-06-20 Thread Zaky Katalan-Ezra
Under Linux/Apache I did the following: 1. Created a symlink under /var/www for the blog #not under cake at all. 2. Added alias record in /etc/apache2/sites-available/yourdomai.vhost Alias /phpmyadmin/ /usr/share/phpmyadmin/ Alias /phpmyadmin /usr/share/phpmyadmin/ On Mon, Jun 20, 2011 at 6:26 PM

Wordpress and CakePHP - cake taking controll of URLS

2011-06-20 Thread chris
I realise that this appears to have been covered a few times, but I can't seem to get it to work how other people have. I'm trying to move an existing wordpress install, to be hosted on the same domain as my cake app. So i've copied the root of the existing blog.mysite.com to the /blog/ under the

Re: Wordpress and cakephp

2009-01-30 Thread Samuel DeVore
handle this. It has a blog and basic >> > > CMS as well as some other really nice features. Just an idea though. >> > > That way no one is reinventing the wheel. >> >> > > On Jan 23, 6:21 am, "ross.hagg...@googlemail.com" >> >> > >

Re: Wordpress and cakephp

2009-01-30 Thread ross.hagg...@googlemail.com
; > > You might look into using something like wildflower (http:// > > > code.google.com/p/wildflower/) to handle this. It has a blog and basic > > > CMS as well as some other really nice features. Just an idea though. > > > That way no one is reinventing the wheel.

Re: Wordpress and cakephp

2009-01-25 Thread Sam Sherlock
t; > That way no one is reinventing the wheel. > > > > On Jan 23, 6:21 am, "ross.hagg...@googlemail.com" > > > > > > > > wrote: > > > Hi > > > > > I'm looking to use wordpress and cakephp to develop a site. I would >

Re: Wordpress and cakephp

2009-01-25 Thread jason m
6:21 am, "ross.hagg...@googlemail.com" > > > > wrote: > > Hi > > > I'm looking to use wordpress and cakephp to develop a site.  I would > > like to use wordpress for basic cms functionality i.e. administration, > > news & events, uploading publications et

Re: Wordpress and cakephp

2009-01-24 Thread ache...@gmail.com
l.com" wrote: > Hi > > I'm looking to use wordpress and cakephp to develop a site.  I would > like to use wordpress for basic cms functionality i.e. administration, > news & events, uploading publications etc. with cakephp being used for > functionality on the site, reg

Re: Wordpress and cakephp

2009-01-23 Thread bioselem...@gmail.com
Because merging them is easier in some ways. You can base the important aspects of the code off a well tested system made by programmers who know what the hell they're doing. On Jan 23, 3:53 pm, Miles J wrote: > I never understood why people "merged" systems when you can code it > all in CakePHP

Re: Wordpress and cakephp

2009-01-23 Thread Miles J
I never understood why people "merged" systems when you can code it all in CakePHP better. --~--~-~--~~~---~--~~ 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.co

Re: Wordpress and cakephp

2009-01-23 Thread leo
Go for it! At first it does seem like you're reinventing the wheel, but as time goes by, things become a lot quicker. Last year I spent a couple of days trying to figure out RSS, but this week I implemented it in another blog in half an hour. Cut & paste. One of the advantages of Cake is that it t

Re: Wordpress and cakephp

2009-01-23 Thread ross.hagg...@googlemail.com
Thank you both for getting back to me. Although it's not my first app, i'm still playing around with cakephp, but i might take on the challenge of doing everything with cakephp, although i do feel as though i would be re-inventing the wheel in parts. I'd much rather use cakephp for the custom re

Re: Wordpress and cakephp

2009-01-23 Thread _k10_
integrate wp code with cakephp. _k10_ http://www.propertyjungle.in On Jan 23, 6:21 pm, "ross.hagg...@googlemail.com" wrote: > Hi > > I'm looking to use wordpress and cakephp to develop a site.  I would > like to use wordpress for basic cms functionality i.e. administration,

Re: Wordpress and cakephp

2009-01-23 Thread leo
might be time consuming if it's your first cake app. On Jan 23, 2:21 pm, "ross.hagg...@googlemail.com" wrote: > Hi > > I'm looking to use wordpress and cakephp to develop a site.  I would > like to use wordpress for basic cms functionality i.e. administration, > ne

Wordpress and cakephp

2009-01-23 Thread ross.hagg...@googlemail.com
Hi I'm looking to use wordpress and cakephp to develop a site. I would like to use wordpress for basic cms functionality i.e. administration, news & events, uploading publications etc. with cakephp being used for functionality on the site, registration, members area etc. I could attem