Welcome, Guest. Register Now!
   
Mark Forums Read Mark Forums Read Mark Forums Read


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-23-2008, 04:27 AM
Junior Member
 
Join Date: Jun 2008
Posts: 2
Default Installation of Zend.

Hello,

I download latest zend frame work.
as written in the Quick start manual(Official ZF QuickStart - Zend Framework Wiki). I extract library from zend zip folder and place it into the project's library directiry.

I want to know that it is the only method to install zend.
we not have to change any to install it.??

Please Help Me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 06-23-2008, 08:10 AM
dele454's Avatar
Member
 
Join Date: Jun 2008
Posts: 46
Default

Quote:
Originally Posted by bhagwat View Post
Hello,

I download latest zend frame work.
as written in the Quick start manual(Official ZF QuickStart - Zend Framework Wiki). I extract library from zend zip folder and place it into the project's library directiry.

I want to know that it is the only method to install zend.
we not have to change any to install it.??

Please Help Me.
Yes that is the only method to install the ZF. You simply extract and place it in your development apps folder. Do you have a folder structure set up already?

You also need to have an include path to your '/app_folder/library' specified. Either include directive in your 'httpd.conf' file for the Virtual Host defined for your site or you can simply set it in your bootstrap. Really up to you as long as it is specified. You can read the readme.txt file bundled with the ZF.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 06-23-2008, 08:49 AM
Junior Member
 
Join Date: Jun 2008
Posts: 2
Default How can I?

Thanks for reply,
But i have a question that
How can i include path of library by using httpd.conf.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 06-23-2008, 11:25 AM
Member
 
Join Date: Jun 2008
Location: Florida
Posts: 92
Default

I use ZF with IIS, and am not sure about adding PHP paths to the apache http.conf file. Typically you add PHP paths to either the PHP.ini file, or to a php script via ini_set.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 06-27-2008, 06:22 AM
dele454's Avatar
Member
 
Join Date: Jun 2008
Posts: 46
Default

Quote:
Originally Posted by bhagwat View Post
Thanks for reply,
But i have a question that
How can i include path of library by using httpd.conf.
Yes you can add it in two ways:

1. Adding it to your httpd.conf file like you mentioned
2. Adding it to your bootstrap config settings

I rather go for the httpd.conf

Here is a sample directive to include in your httpd.conf file

Code:
<VirtualHost 127.0.0.9>
ServerName test
DocumentRoot "D:/apachefriends/xampp/htdocs/xampp/test/public_html"
<Directory "D:/apachefriends/xampp/htdocs/xampp/test/public_html">
AllowOverride All
Options All
</Directory>
php_value include_path ".;D:/apachefriends/xampp/htdocs/xampp/test/library;D:/apachefriends/xampp/php/PEAR;"
php_value magic_quotes_gpc off
php_value register_globals off
</VirtualHost>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 06-27-2008, 06:29 AM
dele454's Avatar
Member
 
Join Date: Jun 2008
Posts: 46
Default

Quote:
Originally Posted by jweber View Post
I use ZF with IIS, and am not sure about adding PHP paths to the apache http.conf file. Typically you add PHP paths to either the PHP.ini file, or to a php script via ini_set.

i havent tried running ZF on IIS. how does that work??? You mean you can host your php scripts on IIS? That sounds interesting to me and strange!

Last edited by dele454 : 06-27-2008 at 06:36 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 06-29-2008, 12:12 PM
Member
 
Join Date: Jun 2008
Location: Florida
Posts: 92
Default

Yes, IIS can run PHP. It works essentially the same as running it on Apache, you install PHP, then configure the web server accordingly.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 06-30-2008, 12:29 PM
dele454's Avatar
Member
 
Join Date: Jun 2008
Posts: 46
Default

interesting!! Thanks never knew that would work
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 11:09 PM.