0

I am trying to start with zend. I followed this guide.I am using wamp. http://zf2.readthedocs.org/en/latest/user-guide/skeleton-application.html It says all the dependencies will be installed and yes I see framework in the vendor folder after the installation. I configured the virtual hosts how he told me to. But I just can't get started. It gives me Internal server error. Tried to access it using localhost/zf2-tutorial . But I dont see any public folder. I just don't know where I am doing wrong. Please help me

6
  • What does the logs tell you? Commented Jan 8, 2013 at 12:36
  • what logs? where will it be? Commented Jan 8, 2013 at 12:38
  • OK, this said: Before you start with a framework, you should make yourself familar with the language and the runtime (here: including the webserver). You could start directly with a framework, but having problems with everything is very frustrating. However: The webserver logs usually under /var/log/xy.log Commented Jan 8, 2013 at 12:49
  • If you are referring to apache error log...I got following errors.But I can't make out any thing out of it. Commented Jan 8, 2013 at 12:55
  • C:/wamp/www/zf2-tutorial/public/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration Commented Jan 8, 2013 at 12:57

1 Answer 1

1

C:/wamp/www/zf2-tutorial/public/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration

(See comment of the question)

Next time, please google for the error message ;) However, it tells you, that mod_rewrite is either not installed, or enabled. On Linux it's like

sudo a2enmod rewrite

and restart server. I see, you are using Windows, but I must say I don't know ;) I fear you'll find very much about this problem, when you look around, because it's a quite common problem.

Sign up to request clarification or add additional context in comments.

1 Comment

Best place to get started with a tutorial... framework.zend.com/manual/1.12/en/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.