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

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