Tagged Questions
0
votes
1answer
94 views
strange errors in nginx log
there's web page which uses zend framework. the web actually uses rewrites. I googled for solutions how to setup zend framework win nginx.. and they said it's not necessary to convert those default ...
0
votes
1answer
69 views
How to rename module admin in Zend Framwork
I have problem with URL rewrite in Zend Framework, I hope someone help me solve that.
I need to rename module admin as admindev in URL apply for all controller and action.
Here my code write in ...
0
votes
0answers
41 views
Clicked link not going through .htaccess
We're trying to rewrite a URL to go to a different, external URL. So, in the .htaccess file we have
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
...
-1
votes
1answer
44 views
Write More Url Rewrite In ZendFrame Work [closed]
Need help in Url rewrite
I just wrote a blog by Zend, in article section, the url is like
http://www.sample.com/blog/detail/index/id/1
........................................../2
well, I would ...
0
votes
0answers
143 views
Zend: Rewrite language URL to correct controller and action?
I'm crushing my head since hours, but I can't find a solution. I'm trying to rewrite my SEO URLs to the correct controller and action URLs.
Example:
DE /Rezepte/Übersicht
EN /Recipes/Overview
...
0
votes
1answer
178 views
Nginx with multiple zend projects [SOLVED]
I'm setting up a nginx+php web server for local development with zend framework on Windows.
I usually just create a new folder in the www root for each project and then create a conf file to project ...
0
votes
0answers
142 views
Zend Rewrite Base
I use Zend Framework to develop an internal CRM system.
When I develop it on my own PC on XAMPP, it works like a charm. Just like it should. But then...
When I commit it (using SVN) to our internal ...
0
votes
1answer
278 views
Multiple Routes with Standard Router (Zend Framework)
I am trying to set up multiple routes to the same controller in zend as such:
URL | Controller::Action
...
1
vote
1answer
403 views
Apache .htaccess and Zend Rewrite conflict with Redirect
I'm using this .htaccess code to redirect the old domain to the new domain:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} test.domain.eu(.*)
RewriteRule (.*) ...
1
vote
3answers
221 views
Zend Framework on Windows - 500 Error using Rewrite
I walked through this article http://thiranjith.wordpress.com/2010/09/14/how-to-setup-zend-framework-with-apache-on-windows/ to setup Zend Framework with Apache 2.2 on Windows 7.
I can get to ...
0
votes
1answer
99 views
Use Zend Framework in non-rewriting mode?
currently $ctrl->view->url() keeps building urls like this:
http://host.com/user/profile/123
but I want it to be like this:
...
0
votes
1answer
393 views
Zend Framework on IIS6 with ISAPI Rewrite
I'm trying to move a zend application from Apache2 to IIS6, so I decided to install ISAPI Rewrite 3 as recommended here, so I copied the hole app folder to c:\inetpub\wwwroot\ and made the IIS Default ...
0
votes
1answer
680 views
Rewrite problem, /controller/action instead of /folder/file.php
I have a script of calling KCFinder.
window.open('/kcfinder/browse.php?type=files', ...);
it must open a window which contains KCFinder, but when I click the "Browser" button, it generatates error:
...
0
votes
1answer
861 views
Zend Framework on iis7
Recently setup a site on my windows server running Zend Framework and only the index.php page shows correctly. All other internal pages look like they are being redirected to index.php with the URL ...
0
votes
1answer
2k views
Zend Framework - Router Rewrite with Regex
I have been trying to shortern this route:
http://abc.localhost/user/view/index/id/1
to this:
http://abc.localhost/user/1
with the following portion of code in my bootstrap but I keep getting an ...
0
votes
1answer
621 views
How do I get Zend working with IIS 7.0 (rewrite module v2) and windows 2008?
My website seems to only load the index page regardless of what path it is given.
Does anyone know of any known issues with getting Zend working correctly with IIS 7.0 (rewrite module v2) and windows ...
0
votes
2answers
447 views
Getting rewrite to work with SSL in a MVC Zend Framework app
I am following the Zend Framework quickstart document and got stuck on the .htaccess rewrite rules. I am using this:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond ...
0
votes
1answer
1k views
Zend Framework custom route isn't working at all
I've got a really weird problem with ZF (at least for ZF newbie): I can not access my existing controller and its action method.
No problems with:
localhost/
localhost/index
localhost/index/index
...
0
votes
1answer
626 views
Rewrite Route to map to default route
Because of the problems I experienced here: Zend_ Controller_ Router_Exception: “xyz” is not specified
I want to have this route:
":module/:controller/:id"
and map it onto this:
...
0
votes
2answers
769 views
IIS7 + PHP + Zend - Not executing <= *pic*
I have PHP, IIS7, ReWrite Module for IIS and Zend all installed.
I can execute PHP pages just fine, even got PHPINFO showing up.
I setup a Zend quickstart app on IIS and when I open it this is what ...