asherkin/steam-store-stats

此包已弃用且不再维护。未建议替代包。

安装: 9

依赖者: 0

建议者: 0

安全: 0

类型:项目

dev-default 2013-07-17 18:46 UTC

This package is not auto-updated.

Last update: 2019-05-22 22:01:54 UTC


README

curl -sS https://getcomposer.org/installer | php
php composer.phar create-project --keep-vcs -s dev asherkin/steam-store-stats
cd steam-store-stats
cp app/config.dist.php app/config.php
vim app/config.php
chmod -R a+w logs cache

更新说明

cd steam-store-stats
hg pull -u
php ../composer.phar install
rm -rf cache/*

虚拟主机配置

<VirtualHost *:80>
    ServerName steam-store-stats.example.com:80
    DocumentRoot "/path/to/steam-store-stats/web"

    <Location />
        Options -MultiViews

        RewriteEngine On
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^ index.php [QSA,L]
    </Location>
</VirtualHost>