IIS 7.5 + FastCGI + PHP + Drupal 7 + Oracle 原

运行SQL命令行:conn system

 

删除drupal表空间:drop tablespace drupal INCLUDING CONTENTS;

创建drupal表空间:

create tablespace drupal

logging

datafile 'd:\htdocs\db\drupal.dbf'

size 32m

autoextend on

next 32m maxsize 3072m

extent management local;

创建用户:

    create user drupal identified by [password]
    default tablespace drupal
    temporary tablespace temp;

    grant unlimited tablespace to drupal;

用户授权

    grant all privileges to drupal;

下载oracle驱动http://drupal.org/project/oracle,解压至D:\htdocs\drupal\includes\database目录里。再把module里的oralce目录剪切至D:\htdocs\drupal\sites\all\modules目录。

 

增加FastCGI超时时间:C:\>%windir%\system32\inetsrv\appcmd set config -section:system.webServer/fastCgi /[fullPath='D:\Program Files (x86)\PHP\php-cgi.exe'].activityTimeout:600

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章