Last Modified:
Wednesday, May 26, 2010
Product:
Advantage .NET Data Provider
Title:
Unable to find the requested .Net Framework Data Provider. It may not be installed.
Problem Description:
The problem affects the ADO .NET data provider for ADS 9.1 as ADS 9.1 was the first to ship with 64-bit capability.
In Windows environments where IIS defaults to 64-bit, an install of the ADO .NET data provider will result in the error,
Unable to find the requested .Net Framework Data Provider. It may not be installed., in the web application. This is because the ace32.dll file supplied with the provider is 32-bit.
Solution:
This problem has two solutions.
- The web application can be configured to run as 32-bit
To do this follow these steps:
- Open the IIS Manager
- Select the web server
- Select Application Pools
- Create a new Application Pool, or select “DefaultAppPool”
- Go to advanced settings
- Change “Enable 32-bit Applications” to true
If you created a new Application Pool, you can set the Pool to be used to a site or an Application by changing its properties.
- The 64-bit dlls can be copied in from a 64-bit server installation.
Error Message :
The application pool that you are trying to use has the ‘managedRuntimeVersion’ property set to ‘v2.0′. This application requires ‘v4.0′.

There are many way to insert loading script and css tags into _Layout.
And I like to use Section, because it is the most simple I think.
[View]
@Section Header {
< script src="@Url.Content("~/Scripts/app.js")" type="text/javascript">< /script>
}
[_Layout]
.
// [IN HEAD]
.
@if(IsSectionDefined("Header")){
@RenderSection("Header")
}
Now my repository locate in /var/www/vhosts/repository/zend
and I need to migrate the repository to /var/svn/repository/zend
1. Dump repository
$ svnadmin dump REPOSITORY_PATH > FILE_NAME
# svnadmin dump /var/www/vhosts/repository/zend > zendProjectRepo.dump
2. Move the dump file to new path.
# mv /var/www/vhosts/repository/zend/zendProjectRepo /var/svn/repository/
3. Create new repository and load the dump file
# cd /var/svn/repository/
# svnadmin create zend
# svnadmin load zend < zendProjectRepo.dump
Done!, now we just migrate svn repository to new location
There are some case we need call controller(action)-view with out Zend Layout (Layout.phtml)
In that case, add this line to your action.
$this->_helper->layout->disableLayout();