到目前为止这是我的调用脚本,
<script type="text/javascript">
var clock = $('.clock').FlipClock(3600 * 24 * 5, {
clockFace: 'DailyCounter',
countdown: true,
});
</script>
Run Code Online (Sandbox Code Playgroud)
请有人能告诉我如何从确切的日期算起来吗?
例如,日期是2014年7月21日在英国时间,并且访问该网站的每个人将根据当前日期查看到该日期剩余的时间.
想知道是否有人可以帮助我.
我有一个运行在我网站根目录下运行的内容管理系统的网站.我在一个名为"shop"的子目录中安装了最新版本的Opencart - 所以www.domain.com/shop/
一切正常,我可以按预期使用Opencart.
我需要安装VQmod所以已经将文件上传到商店文件夹的根目录,我已经设置了正确的权限尝试755和777但没有运气.
每次去www.domain.com/shop/vqmod/install我都会收到403错误.
与www.domain.com/shop/vqmod/相同
Forbidden
You don't have permission to access /shop/vqmod/install on this server.
Apache Server at domain.com Port 80
Run Code Online (Sandbox Code Playgroud)
除了取出index.php之外,我的.hta文件几乎是标准的?从网址和重写规则中说改变主页链接.
RewriteBase /shop/
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
RewriteCond %{QUERY_STRING} ^route=common/home$
RewriteCond %{REQUEST_METHOD} !^POST$
RewriteRule ^index\.php$ http://%{HTTP_HOST}? [R=301,L]
Run Code Online (Sandbox Code Playgroud)
我正在错误地提到的apache服务器和plesk控制面板上运行.任何帮助或建议将非常感谢,因为我很难!
我在我的根目录中有一个.hta文件,其中cms文件是如何确保与opencart网站不冲突的.
感谢任何能为我揭示这一点的人.