run apache_get_modules() in any php script and see if it's there.

On Mon, Jun 22, 2009 at 2:31 PM, neozf <[email protected]> wrote:

>
> I had the .so file in the modules dir
>
> and I have this in my httpd.conf.. file
>
> LoadModule rewrite_module modules/mod_rewrite.so
>
> its not commented out by the way so it is being used... however a httpd -l
> ,
> doesnt show it in the list but i did some digging and it seems to say that
> it only shows pre installed modules with httpd -l
>
> Sorry if this is an Apache question
>
>
> vince. wrote:
> >
> > Make sure the apache module mod_rewrite is installed and turned on.
> >
> > On Mon, Jun 22, 2009 at 1:07 PM, neozf <[email protected]> wrote:
> >
> >>
> >> Hi
> >>
> >> I am new to zend I have downloaded the community server with the
> >> framework
> >> ... I have created a new project for the quick start on my C drive
> >>
> >> c:\ZendProject\quickstart
> >>
> >> I have added the reference to the zend framework library folder to my
> >> winodws path
> >>
> >>
> >> in my httpd.conf I have added the following
> >>
> >>
> >> <Location /quick>
> >>    Order deny,allow
> >>    Allow from all
> >> </Location>
> >>
> >> Alias /quick "C:\ZendProject\quickstart\public"
> >>
> >> I then  created a new action in the index controller just as a test
> >>
> >> public function showAction()
> >>    {
> >>
> >>            echo "Show";
> >>    }
> >>
> >>
> >> I have created a new view , under view->scripts->index and named it
> >> show.phtml
> >>
> >>
> >> My .htaccess in the public folder is the default one
> >>
> >> SetEnv APPLICATION_ENV development
> >>
> >> RewriteEngine On
> >> RewriteCond %{REQUEST_FILENAME} -s [OR]
> >> RewriteCond %{REQUEST_FILENAME} -l [OR]
> >> RewriteCond %{REQUEST_FILENAME} -d
> >> RewriteRule ^.*$ - [NC,L]
> >> RewriteRule ^.*$ index.php [NC,L]
> >>
> >>
> >> so when i do
> >>
> >> localhost/quick/index.php/index/show
> >>
> >> it works
> >>
> >> but any url without the index.php doesnt work
> >>
> >> This looks like an apache issue , but not sure how to solve it ...
> >>
> >>
> >> Thanks for your help in advance
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Getting-rid-of-Index.php-in-urls-tp24144691p24144691.html
> >> Sent from the Zend Framework mailing list archive at Nabble.com.
> >>
> >>
> >
> >
> > --
> > Vincent Gabriel.
> > Lead Developer, Senior Support.
> > Zend Certified Engineer.
> > Zend Framework Certified Engineer.
> > -- http://www.vadimg.co.il/
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Getting-rid-of-Index.php-in-urls-tp24144691p24145668.html
> Sent from the Zend Framework mailing list archive at Nabble.com.
>
>


-- 
Vincent Gabriel.
Lead Developer, Senior Support.
Zend Certified Engineer.
Zend Framework Certified Engineer.
-- http://www.vadimg.co.il/

Reply via email to