Re: Strange URL's

2007-09-09 Thread [EMAIL PROTECTED]
Shepard > Could you tell which changes you maid, I have a similar issue and cant fix it franky06 > "I needed to disable the gzip in htaccess in order to make it work with PHP 5" hey thanks for that ! --~--~-~--~~~---~--~~ You received this message because you are

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
Youhouh ! I finally got it :) Some changes I made in the .htaccesses did the trick, now all seems to be ok, it's great :) Thank you again for your help !! Fabian Pijcke On Sep 4, 11:35 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I tried differents configurations but can't make it work

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
I tried differents configurations but can't make it work :( I'll try again tomorrow, time to sleep for me ... And a great THANK YOU for all your suggestions / comments / help ! On Sep 4, 10:32 pm, francky06l <[EMAIL PROTECTED]> wrote: > I have set another application (gumiz) on OVH, basically t

Re: Strange URL's

2007-09-04 Thread francky06l
I have set another application (gumiz) on OVH, basically the webroot resides on the www directory : www/gumiz - index.php + js + img + css I have set the application and cake into the home directory : foo. Cake is in foo/cake, gumiz my application is in foo/gumiz. /home.8/l/o/a/loanlnk/

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
It would be very nice, thank you !! On Sep 4, 9:38 pm, francky06l <[EMAIL PROTECTED]> wrote: > well I can give you my "tree" under OVH if you are interested. OVH is > quite tricky with their "special" version of Apache. > > On Sep 4, 9:21 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > > O

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
Hi, thanks for the tips, I tried to do all this, here's my new .htaccess: mod_gzip_on No RewriteEngine on RewriteBase /maryphoto/webroot # RewriteRule ^private/$ private/index.php [L] # RewriteRule ^$ maryphoto/webroot/accueil.php [L] RewriteRule (.*) $1 [L] SetEnv PHP_VER 5 I h

Re: Strange URL's

2007-09-04 Thread francky06l
well I can give you my "tree" under OVH if you are interested. OVH is quite tricky with their "special" version of Apache. On Sep 4, 9:21 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Oh, and I'm under Linux with Apache 1.3.37 and PHP 5.2.3. > > I don't know the distrib but uname -r return

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
Oh, and I'm under Linux with Apache 1.3.37 and PHP 5.2.3. I don't know the distrib but uname -r returns "2.6.18.1-grsec-mutu-grs- ipv4-32". (MySQL 5.0) My CakePHP version is the last nightbuild. VERSION.txt said 1.2.0.5427alpha. On Sep 4, 9:03 pm, francky06l <[EMAIL PROTECTED]> wrote: > Well i

Re: Strange URL's

2007-09-04 Thread francky06l
hummm ..some of the rules are messing the rewrite (not sure). Try keep only the one in webroot. An other trick, I have an OVH domain and I needed to add rewriteBase in order it to work. My webroot is alpha under the www (but my application and the cake directory are not under www). I added rewrite

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
Index.php ( I deleted the comments ): dispatch($url); } if (Configure::read() > 0) echo ""; ?> /.htaccess: RewriteEngine on RewriteRule^private/$ private/index.php [L] # private section, used to redirect http://www.maryphoto.be/private to http://www.maryphoto.be/maryphoto/web

Re: Strange URL's

2007-09-04 Thread francky06l
Well if all links are wrong, it's problem of mod-rewrite and/or index.php. What platform do you use ? Can you paste your .htaccess and webroot/index.php in the bin or by mail ? On Sep 4, 8:45 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have this problem for all my URL's, the images can

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
I have this problem for all my URL's, the images cannot be found ( url searched: http://www.server.com/home/maryphot/www/maryphoto/img/image.ext in place of http://www.server.com/img/image.ext ), my form's actions have the same problem. My CSS cannot be found anymore. I can solve some problems b

Re: Strange URL's

2007-09-04 Thread francky06l
Do you have same problems for other links ? Check also your index.php in webroot .. All this seems a configuration problem to me. On Sep 4, 8:31 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi again, > > I changed it to PagesController to SpagesController and nothing > changed: my links a

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
Hi again, I changed it to PagesController to SpagesController and nothing changed: my links are as ugly as before :( I also tried to modify my .htaccesses but the result was really disturbing so I resetted them to the officials ones ... Thank for your help anyway ! On 4 sep, 20:23, francky06l

Re: Strange URL's

2007-09-04 Thread francky06l
Pages is reserved, try with a new name and let know about the results. On Sep 4, 8:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, thanks for your answer :) > > Yes, mod_rewrite is installed on my server ... > > I'll use $html->link instead of my beginners technic ^^ > > My controller

Re: Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
Hi, thanks for your answer :) Yes, mod_rewrite is installed on my server ... I'll use $html->link instead of my beginners technic ^^ My controller's named PagesController, I'll change for SpagesController ( Static pages ) Thank you again, have somebody idea's for my url's issue ? On 4 sep, 19

Re: Strange URL's

2007-09-04 Thread francky06l
Strange, have you got mod-rewrite set up ? By the way instead of : Mouscron you could use echo $html->link('Mouscron', '/pages/magasin/'); What is the name of your controller ? "Pages" is a "reserved" name for static pages in cakePhp. On Sep 4, 6:18 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>

Strange URL's

2007-09-04 Thread [EMAIL PROTECTED]
Hi there, I'm new to cakePHP and trying to create a simple application, but I have a problem with the html helper and also I think the Router class ... So I just created a controller with no model associated and 2 views named "index.thtml" and "magasin.thtml". These pages are accessible via "ht

Re: Strange url's

2007-07-09 Thread kionae
am, cakedude <[EMAIL PROTECTED]> wrote: > Hi there, > > I was hoping someone can help me with this. > > I've developed a nice cake-based website which works just fine > locally. However when i publish put the website online i get some > really strange url's: > >

Re: Strange url's

2007-07-08 Thread Samuel DeVore
> > I've developed a nice cake-based website which works just fine > > locally. However when i publish put the website online i get some > > really strange url's: > > > > www.mywebsite.com/chapters/view/1?CAKEPHP= > > > > For most of the site thi

Re: Strange url's

2007-07-08 Thread Gorka
d website which works just fine > locally. However when i publish put the website online i get some > really strange url's: > > www.mywebsite.com/chapters/view/1?CAKEPHP= > > For most of the site this is no problem (other then that it doesn't > look that nice!) but

Strange url's

2007-07-08 Thread cakedude
Hi there, I was hoping someone can help me with this. I've developed a nice cake-based website which works just fine locally. However when i publish put the website online i get some really strange url's: www.mywebsite.com/chapters/view/1?CAKEPHP= For most of the site this is