Hola Marvin, ya solucioné el problema, habia que bajar el IIS
Ahora tengo otro problema:
seguí el instructivo para hacer una aplicacion con PRADO, indicado en
http://www.pradosoft.com/demos/quick...ted.HelloWorld
estoy cumpliendo con lo indicado pero la linea del "index.php" que intenta hacer el
require_once($frameworkPath);
esa linea hace que la pagina no se ejecute, ni siquiera tira un error, directamente es como que no existe
aqui va el codido de index.php
//////////////////////////
<?php
$basePath=dirname(__FILE__);
$frameworkPath=$basePath.'\..\framework\prado.php' ;
$assetsPath=$basePath.'/assets';
$runtimePath=$basePath.'/protected/runtime';
if(!is_writable($assetsPath))
die("Please make sure that the directory $assetsPath is writable by Web server process.");
if(!is_writable($runtimePath))
die("Please make sure that the directory $runtimePath is writable by Web server process.");
require_once($frameworkPath);
$application=new TApplication;
$application->run();
?>
////////////////////////////
el PRADO lo copie en las siguientes ubicaciones para solventar el error pero no se soluciono
lo copié en
C:\wamp\www\framework
C:\wamp\www\prado
C:\wamp\framework
Desde ya gracias