Copy link to clipboard
Copied
Using the Zend Framework on your local machine and referencing the library I was wondering when you FTP your code to an online server (How do you reference $library = 'C:/php_library/ZendFramework/library';)? As it would not be no longer on you local machine.
Silken_thread wrote:
Using the Zend Framework on your local machine and referencing the library I was wondering when you FTP your code to an online server (How do you reference $library = 'C:/php_library/ZendFramework/library';)? As it would not be no longer on you local machine.
Simple. You upload the Zend Framework to your remote server, and point $library to the new location.
It's covered in Lesson 13 of the book (pages 468-469).
Copy link to clipboard
Copied
Silken_thread wrote:
Using the Zend Framework on your local machine and referencing the library I was wondering when you FTP your code to an online server (How do you reference $library = 'C:/php_library/ZendFramework/library';)? As it would not be no longer on you local machine.
Simple. You upload the Zend Framework to your remote server, and point $library to the new location.
It's covered in Lesson 13 of the book (pages 468-469).
Copy link to clipboard
Copied
Off course you do mention that you cover those and other things in lesson 13,
thanks