UK WEB HOSTING FORUM FOR DISCUSSION ON WEB HOSTING SERVICE AND SUPPORT
LINUX HOSTING WINDOWS HOSTING PACKAGES SHOPPING CART OSCOMMERCE ZEN CART AGORA
ECOMMERCE HOSTING ASP MSSQL FRONTPAGE HOSTING PHP MYSQL HOSTING DISCUSSION FORUM
CPANEL RESELLER HOSTING DEDICATED SERVER VPS HOSTING PLESK VIRTUOZZO
Quick Search
Your forum announcement here!

  UK Web Hosting | Dedicated Server Windows and Linux VPS Forum > Technical Support > Tutorials / How to?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 24-08-2008, 05:42
eUK-Martin's Avatar
Windows System Administrator
 
Join Date: Nov 2005
Location: Earth
Posts: 457
Default How to Install Ion Cube + Zend on Plesk Windows Server..

Hello,

There are so many people who are confused whether it is possible to have IonCube Loader and Zend Optimizers to be installed on Windows with Plesk Control panel. This tutorial will show you "How to Install IonCube Loader and Zend Optimizers on a Window server with Plesk Control panel" with Screen shots.

We will first install IonCube Loader:


1. Download MSI installer of IonCube Loader from HERE or HERE and save it on the server.

2. Run the Setup and Click Next on first screen.

3. Select "Install to this computer"



4. Select the installation directory as %plesk_dir%\Additional\PleskPHP5\extras to avoid permissions problems as Plesk sets deny permissions to psacln and psaserv on "Program Files".
(where %plesk_dir% is the Plesk installation directory)



5. Click Next and the installation will show the information you have select.



6. Click on install and it will start installing IonCube Loader on your server.



Continued...
__________________
Martin
Windows System Admin.


Windows VPS Hosting - Windows Dedicated Server - Web Hosting Tutorials

Email :: windows @ eUKhost.com AND support @ eUKhost.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 24-08-2008, 05:42
eUK-Martin's Avatar
Windows System Administrator
 
Join Date: Nov 2005
Location: Earth
Posts: 457
Default

7. Click Finish to finish the IonCube Loader installation.



8. Check if the IonCube libraries are saved on the Plesk PHP path.



9. Now open php.ini for both PHP 4.x and PHP 5.x located to insert the path to IonCube Loader's Library.
Code:
C:\WINDOWS\php.ini --- for 4.x
%plesk_dir%\Additional\PleskPHP5\php.ini -- for 5.x
10. Insert following link at the end of the respective php.ini files:
For PHP 4.x
Code:
[ZEND]
zend_extension_ts = %plesk_dir%\Additional\Php\extensions\ioncube\ioncube_loader_win_4.x.dll
For PHP 5.x
Code:
[ZEND]
zend_extension_ts = %plesk_dir%\Additional\Php\extensions\ioncube\ioncube_loader_win_5.x.dll
11. Please make sure that you select the correct versions of PHP in the file name.

make sure that you replace %plesk_dir%\ with the path on the server.

12. Restarted IIS:



13. You can check Ioncube Loader in the phpinfo page on your website:
Create a file info.php with the code below in the httpdocs folder:
Code:
<?php
phpinfo();
?>
Bbrowse the file with http://domain_name/info.php

14. You should see this entry on the PHPInfo page:



And you are Done...!!!
__________________
Martin
Windows System Admin.


Windows VPS Hosting - Windows Dedicated Server - Web Hosting Tutorials

Email :: windows @ eUKhost.com AND support @ eUKhost.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 24-08-2008, 05:50
eUK-Martin's Avatar
Windows System Administrator
 
Join Date: Nov 2005
Location: Earth
Posts: 457
Default Installing Zend Optimizer.

We will not install Zend Optimizer:

1. Download the setup of Zend Optimizer from Here and save it on the server.

2. Run Setup and Click Next on first screen of the installation.

3. Accept the License and Click Next.



4. Select the installation directory as %plesk_dir%\Additional\PleskPHP5\extras to avoid permissions problems as Plesk sets deny permissions to psacln and psaserv on "Program Files".
(where %plesk_dir% is the Plesk installation directory)



5. Select the browser as IIS.



6. Select php.ini path as %plesk_dir%\Additional\PleskPHP5\



Continued...
__________________
Martin
Windows System Admin.


Windows VPS Hosting - Windows Dedicated Server - Web Hosting Tutorials

Email :: windows @ eUKhost.com AND support @ eUKhost.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 24-08-2008, 05:54
eUK-Martin's Avatar
Windows System Administrator
 
Join Date: Nov 2005
Location: Earth
Posts: 457
Default

7. Select the webroot of all the site, normally its drive:\inetpub



8. Click Next and it will show information you have select for the installation of Zend Optimizer.



9. You will get a IIS warning, click on "Yes"



10. Click on install and it will start installing zend optimizer on your server.



Continued...
__________________
Martin
Windows System Admin.


Windows VPS Hosting - Windows Dedicated Server - Web Hosting Tutorials

Email :: windows @ eUKhost.com AND support @ eUKhost.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 24-08-2008, 06:06
eUK-Martin's Avatar
Windows System Administrator
 
Join Date: Nov 2005
Location: Earth
Posts: 457
Default

11. Click Finish to finish the Zend Optimizer installation.

12. Check the Zend Optimizer library on the Plesk PHP path:




13. Now open php.ini for both PHP 4.x and PHP 5.x located at:
Code:
C:\WINDOWS\php.ini --- for 4.x
%plesk_dir%\Additional\PleskPHP5\php.ini -- for 5.x
14. Insert following lines at the end of the respective php.ini files:
For PHP 4.x
Code:
[ZEND]
zend_extension_ts = "%plesk_dir%\Additional\PleskPHP5\ext\lib\ZendExtensionManager.dll"
zend_extension_manager.optimizer_ts="%plesk_dir%\Additional\PleskPHP5\ext\lib\Optimizer-3.3.0"
For PHP 5.x
Code:
[ZEND]
zend_extension_ts = "%plesk_dir%\Additional\PleskPHP5\extras\zend\lib\ZendExtensionManager.dll"
zend_extension_manager.optimizer_ts="%plesk_dir%\Additional\PleskPHP5\extras\zend\lib\Optimizer-3.3.0"
Please make sure to change "%plesk_dir%\" with the actual path on the server

IMPORTANT:
Open regedit and deleted the key HKEY_LOCAL_MACHINE\SOFTWARE\PHP\IniFilePath



DO NOT delete the key at HKEY_LOCAL_MACHINE\SOFTWARE\PHP\5\IniFilePath.

15.
Restarted IIS:


16. You can check Zend Optimizer library in the phpinfo page on your website:
Create a file info.php with the code below in the httpdocs folder:
Code:
<?php
phpinfo();
?>
17. browse the file with http://domain_name/info.php

18. You should see this entry below on the php info page:



And you are Done... !!!
__________________
Martin
Windows System Admin.


Windows VPS Hosting - Windows Dedicated Server - Web Hosting Tutorials

Email :: windows @ eUKhost.com AND support @ eUKhost.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 24-08-2008, 06:14
eUK-Martin's Avatar
Windows System Administrator
 
Join Date: Nov 2005
Location: Earth
Posts: 457
Default Zend and IonCube installation together.

You can use the above steps for the individual installation of IonCube Loader and Zend Optimizer. However if you want both of them running at the same time then:

1. First install Ioncube Loader with the steps above.
2. Then install Zend optimizer but when you insert the lines in php.ini file, just make sure that you have them in this fashion:

Code:
[ZEND]
zend_extension_ts = D:\SWsoft\Plesk\Additional\Php\extensions\ioncube\ioncube_loader_win_x.x.dll
zend_extension_ts = "D:\SWsoft\Plesk\Additional\PleskPHP5\ext\lib\ZendExtensionManager.dll"
zend_extension_manager.optimizer_ts="D:\SWsoft\Plesk\Additional\PleskPHP5\ext\lib\Optimizer-3.3.0"
Make sure that you have correct file name for IonCube Loader in the respective php.ini files.

Once you have them you will can see them in the phpinfo page as below:

__________________
Martin
Windows System Admin.


Windows VPS Hosting - Windows Dedicated Server - Web Hosting Tutorials

Email :: windows @ eUKhost.com AND support @ eUKhost.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB 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 17:05.

 

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by Web Hosting 3.1.0
Copyright © 2001-2008, eUKhost.com. All rights reserved.

 
Site Map

VPS Hosting
VPS Hosting plans

Dedicated Server Hosting
Dedicated Server plans

Business Web Hosting
100% uptime Hosting

Cpanel Hosting
cPanel Shared Hosting

Reseller Hosting
Reseller Web Hosting

Windows Hosting
Windows Shared Hosting

Windows VPS

Windows VPS Hosting

Semi Dedicated Servers
Semi-Dedicated Hosting

Dedicated Server Mirroring
Dedicated Server Mirroring

Webhosting Knowledgebase
Frequently asked Questions

Web Hosting Blog
eUKhost Blog

Web Hosting Support
Support Helpdesk

UK Data Center
eUKhost Datacenter

Web Hosting Forum
eUKhost Forum

Support Tutorials
Online Flash Tutorials

Offsite Back-up Plans
Remote Backup Service

Customer Testimonials
eUK Customer Testimonials


knowledgebase articles

eUKhost.com Services

Pre-Sales Questions
Pre-sales FAQ's

Domain Names
Domain registration FAQ's

cPanel Hosting
cPanel Hosting FAQ's

Windows Web Hosting
Plesk Control Panel

Reseller Hosting
Reseller Hosting FAQ's

VPS Hosting
Virtual Private Server

Semi-Dedicated Servers
Semi-Dedicated FAQ's

Dedicated Servers
Dedicated Server Hosting


popular blog categories


Web Hosting
Website Hosting articles

UK Web Hosting
UK Hosting articles

Dedicated Server Hosting
Dedicated Server guidelines

VPS Hosting
VPS hosting articles

cPanel Hosting
cPanel Hosting articles

Linux Operating System
Linux Operating techniques

Windows Web Hosting
Windows plesk articles

Web Hosting
Web Hosting Service