安裝與配置authpuppy:
源碼包:
#wget https://launchpad.net/authpuppy/trunk/1.0.0-stable/+download/authpuppy-1.0.0-stable.tgzphp
#cd /home
tar -xvf authpuppy-1.0.0-stable.tgzmysql
#// apache配置一個虛擬域名(好比http://authpuppy.localhost/)指向目錄 /home/authpuppylinux
打開http://authpuppy.localhost/
按提示完成對依賴包的安裝(Requirements下的最好都安裝), 以下:
依賴庫: // 主要是PHP擴展包
APCu:
http://blog.163.com/liyi8798@126/blog/static/674546582012012115111847/
#wget http://pecl.php.net/get/apcu-4.0.6.tgz
#phpize
#./configure --with-php-config=/usr/local/php/bin/php-config --enable-apcu --enable-apc-bc
#make -s
#make install
#vi /usr/local/php/etc/php.ini
extension=apcu.so
// 其餘相似web
Permissions下出現紅色部分,則須要作下面操做:
#chmod a+w authpuppy/ -R
#//自動建立authpuppy.ymlsql
// 必須須要啓用pdo_mysql,由於symfony的用的是PDO, 靈感來自http://bbs.csdn.net/topics/390036982
#cd php-5.6.2/ext/pdo_mysql
#phpize
#./configure --with-php-config=/usr/local/php/bin/php-config --with-pdo-mysql=/usr/local/mysql/
#make -s
#make installapache
#mysqladmin -uroot -p create authpuppy
#mysql -uroot -pwindows
#create user 'authpuppy'@'localhost' identified by 'authpuppydev';
#grant all privileges on authpuppy.* to 'authpuppy'@'localhost' with grant option;服務器
// 按界面來走就行了。app
問題卡在鏈接不上mysql服務器上了兩天,解決辦法:
步驟1, 在http://authpuppy.localhost/install/3中點擊next會有提示,以下:
Impossible to connect to the database with those credentials. Please make sure the database exists and try again.
此時,從/home/authpuppy目錄中找到php的源碼,以下:
#grep "Impossible to connect to the database" * -R
apps/frontend/modules/install/actions/actions.class.php: $this->getUser()->setFlash('error', "Impossible to connect to the database with those credentials. Please make sure the database exists and try again.", false);
#打開上面文件,找到相應的行,將Exception $e打印出來
#vi apps/frontend/modules/install/actions/actions.class.php
// $this->getUser()->setFlash('error', "Impossible to connect to the database with those credentials. Please make sure the database exists and try again.", false);
$this->getUser()->setFlash('error', $e, false);
再在http://authpuppy.localhost/install/3中點擊next, 出現提示:
exception 'Doctrine_Connection_Exception' with message 'Couldn't locate driver named mysql' in /home/www/authpuppy/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection.php:486 Stack trace: #0 /home/www/authpuppy/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mysql.php(101): Doctrine_Connection->connect() #1 /home/www/authpuppy/lib/form/apDatabaseInstallForm.php(133): Doctrine_Connection_Mysql->connect() #2 /home/www/authpuppy/apps/frontend/modules/install/actions/actions.class.php(173): apDatabaseInstallForm->save() #3 /home/www/authpuppy/apps/frontend/modules/install/actions/actions.class.php(71): installActions->executePage3(Object(sfWebRequest)) #4 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(459): installActions->executeIndex(Object(sfWebRequest)) #5 /home/www/authpuppy/lib/model/authpuppycore/util/apActions.class.php(56): sfActions->execute(Object(sfWebRequest)) #6 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(945): apActions->execute(Object(sfWebRequest)) #7 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(940): sfExecutionFilter->executeAction(Object(installActions)) #8 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(926): sfExecutionFilter->handleAction(Object(sfFilterChain), Object(installActions)) #9 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(1021): sfExecutionFilter->execute(Object(sfFilterChain)) #10 /home/www/authpuppy/apps/frontend/lib/CheckDBAvailabilityFilter.class.php(95): sfFilterChain->execute() #11 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(1021): CheckDBAvailabilityFilter->execute(Object(sfFilterChain)) #12 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(988): sfFilterChain->execute() #13 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(1021): sfRenderingFilter->execute(Object(sfFilterChain)) #14 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(658): sfFilterChain->execute() #15 /home/www/authpuppy/cache/frontend/prod/config/config_core_compile.yml.php(2340): sfController->forward('install', 'index') #16 /home/www/authpuppy/lib/vendor/symfony/lib/util/sfContext.class.php(170): sfFrontWebController->dispatch() #17 /home/www/authpuppy/web/index.php(15): sfContext->dispatch() #18 {main}
步驟2, 從第一句「'Doctrine_Connection_Exception' with message 'Couldn't locate driver named mysql'」中能夠看出,確定是沒有相關鏈接mysql的驅動,因而網上查找
www.baidu.com 查找「'Doctrine_Connection_Exception' with message 'Couldn't locate driver named mysql'」
有一個相似的問題,點擊連接http://bbs.csdn.net/topics/390036982
其中一行是:
dream1206回覆於: 2012-05-06 00:50:17
你須要啓用pdo_mysql
windows下去掉 pdo_mysql.dll前面的註釋,重啓服務器。linux下編譯時加上 with-pdo-mysql。
若是你已經這麼作了,那麼看看phpinfo()中的配置是否有生效
步驟3, 果斷安裝pdo_mysql
// 必須須要啓用pdo_mysql,由於symfony的用的是PDO, 靈感來自http://bbs.csdn.net/topics/390036982
cd php-5.6.2/ext/pdo_mysql
phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-pdo-mysql=/usr/local/mysql/
make -s
make installfrontend