Alien

第 1308 位会员

会员
个人信息
  • 加入于 2019-07-02 16:50:58
  • 最后登录时间 4年前
个人成就
  • 发表文章次数 8
  • 发布回复次数 20
  • 个人主页浏览次数 5
关于语言切换与首页显示问题4年前

@Gavin [#2楼](#comment2)CMS-静态块-首页大图 将英文区域的代码复制到中文区域就可以了

猜你用的不是 2.1.6 版

urlos已更新fecshop应用,请各位用户更新使用4年前

@Fecmall #2楼 不清楚,3个月前发布的应该还是V1吧。只是看到有已知的小问题没有没提解决方案,在此补充一下 哈哈 ...... 逃......

urlos已更新fecshop应用,请各位用户更新使用4年前

3、安装fecshop应用,推荐使用mysql5.6版本的数据库。若使用5.7的数据库,日志统计会报错

  • mysql 5.7 日志统计报错问题这里有解决方案,不麻烦,在mysql配置文件(windows系统下为mysql安装目录/my.ini,linux系统下为/etc/mysql/conf.d/mysql.cnf)中加如下两行代码保存重启mysql就可以了:
[mysqld]
sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

http://www.fecmall.com/topic/803

https://blog.csdn.net/qq_34707744/article/details/78031413

前台“部分”菜单与产品点击后,出现 Imagine\Exception\RuntimeException 报错“imagejpeg(/***/***/***.jpg): failed to open stream: Permission denied”4年前

@Fecmall #2楼 谢谢 Terry !搞定了,原来我权限没给到位(执行了chmod 777 directory,只能对当前目录生效,而其下所有后代目录却没生效),执行了chmod 777 -R directory就可以了。哈哈,还是菜鸟,莫怪,莫怪:relaxed:

切换语言问题4年前

@Fecmall #18楼 感谢!对比了Fecmall 2.1.6版本的权威.htaccess文件,找到了问题。是 http://www.fecmall.com/topic/392 #3楼 RewriteBase /的锅(本质原因还是Alien太菜太粗心了:joy:),去掉RewriteBase /那一行也就正常了。

原来之前在调试Fecmall 1.7.3版本的过程中,不知不觉在fecshop\appfront\webfecshop\appfront\web\cn俩目录中分别用到了两个.htaccess文件,如下:

<IfModule mod_rewrite.c>  
RewriteBase /
RewriteEngine On  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]  
</IfModule>

<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>

后来在使用Fecmall 2.x版本时,直接都复制了含RewriteBase /的那个.htaccess文件而导致没有有效去掉index.php.


在此纠正Alien #9、#11、#13、#15 言论,如下.htaccess配置在Fecmall一版本与二版本中都是有效的:

<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>

顺便贴出Fecmall 2.1.6版本中的官方权威.htaccess文件

<IfModule mod_rewrite.c>  
RewriteEngine On  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]  
</IfModule>

附:Apache > HTTP Server > Documentation > Version 2.4 > Rewrite > Redirecting and Remapping with mod_rewrite

切换语言问题4年前

@Fecmall #16楼 好的,谢谢!

切换语言问题4年前

@Fecmall #14楼 配置了的。【我再描述一下问题吧:各语言的主页(appfront.fecmalltest.comappfront.fecmalltest.com/cnappfront.fecmalltest.com/fr等等 )都可以正常打开,但是,除appfront.fecmalltest.com以外,其他语言主页下所有菜单及商品链接都无法正常打开,会变成2#楼的404页面】

切换语言问题4年前

@Fecmall #12楼 放了的。(“win10 + wampserver” 与 “win10 + wamp.net” 下)已多次测试,确认如下.htaccess配置已无法满足在Fecmall 2.x版本中Apacheindex.php

  <IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
  </IfModule>
切换语言问题4年前

@Fecmall [#10楼](#comment10) 不知道,反正之前用(1.7.3 与 1.9.1)时,用的如下配置

  <IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
  </IfModule>

都解决了这个问题;上到2.x后就没用了。


刚换nginx了(系统依旧为windows, 用的Wamp.NET),采用如下配置去index.php,可以正常访问量了

server
{
	listen 127.0.0.1:80;
	server_name appfront.fecshopq.com;
	root "C:/Wamp.NET/manager/public/fecshop/appfront/web/";
	location /
	{
		try_files $uri $uri/ /index.php?$args;
	}
	location ~ \.php$
	{
		fastcgi_pass 127.0.0.1:7120;
		fastcgi_index index.php;
		fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;
		include fastcgi_params;
	}

	location ~ /sitemap.xml 
	{   
		if ($host  ~ .*appfront.fecshop.es) {  
			rewrite ^/sitemap\.xml /sitemap_es.xml last;  
		}
	}

	location /fr/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /fr/index.php last;
        }
	}
	
    location /es/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /es/index.php last;
        }
	}

	 location /cn/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /cn/index.php last;
        }
    }

    location /de/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /de/index.php last;
        }
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires      30d;
    }

    location ~ .*\.(js|css)?$ {
        expires      12h;
    }
}

server
{
	listen 127.0.0.1:443 ssl;
	server_name appfront.fecshopq.com;
	root "C:/Wamp.NET/manager/public/fecshop/appfront/web/";
	ssl_certificate "C:/Wamp.NET/bin/6-nginx_1.16.0_x86/conf/vhosts/appfront.fecshopq.com.crt";
	ssl_certificate_key "C:/Wamp.NET/bin/6-nginx_1.16.0_x86/conf/vhosts/appfront.fecshopq.com.key";
	ssl_session_cache shared:SSL:1m;
	ssl_session_timeout 5m;
	ssl_ciphers HIGH:!aNULL:!MD5;
	ssl_prefer_server_ciphers on;
	location /
	{
		try_files $uri $uri/ /index.php?$args;
	}
	location ~ \.php$
	{
		fastcgi_pass 127.0.0.1:7120;
		fastcgi_index index.php;
		fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;
		include fastcgi_params;
	}

	location ~ /sitemap.xml 
	{   
		if ($host  ~ .*appfront.fecshop.es) {  
			rewrite ^/sitemap\.xml /sitemap_es.xml last;  
		}
	}

	location /fr/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /fr/index.php last;
        }
	}
	
    location /es/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /es/index.php last;
        }
	}

	 location /cn/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /cn/index.php last;
        }
    }

    location /de/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /de/index.php last;
        }
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires      30d;
    }

    location ~ .*\.(js|css)?$ {
        expires      12h;
    }
}
切换语言问题4年前

哎!自从 切换到 2.x 版本后,同样的问题使用同样处理的方法,居然解决不了了,不各位又遇到相同情况吗?难道只能转用nginx了?

Fecshop 1.5.1.1 Windows 64位 免安装 开箱即用版 和 Ubuntu 18.04 下部署 以及 安装 Fecshop 步骤 4年前

@wubuyun 您好,Wamp.net下如何apache去掉index.php

看到您用Wamp.net配置的运行环境很好奇,于是在尝试 fecshop2.01 版时顺便试了下,将其运行在了Wamp.net 2.10上。服务端用 Apache 代替了 Nginx,如下图:

前后台所有功能都运行正常,只是前台除了首页(首页切换语言后都正常)以外,切换语言后都会404。知道应该是没有完成设置apache去掉index.php的缘故,因为之前使用WampServer时遇到过,当时参考这个切换语言问题解决了。 于是仿照之前的操作,如下:

1:进入apache目录的conf目录
2:打开httpd.conf
3:找到#LoadModule rewrite_module modules/mod_rewrite.so然后把前面的#去掉
4:找到所有的AllowOverride配置项,把所有的None都修改为All
5: 在 每个web目录 及 其下每个cn目录 下面新建一个 .htaccess 文件

-------- .htaccess 文件 start -------------
<IfModule mod_rewrite.c>  
RewriteBase /
RewriteEngine On  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]  
</IfModule>
--------- .htaccess 文件 end -------------
6: 重启apache

不过居然没有用,所以想请教一下,Wamp.net下如何apache去掉index.php

mysql遇见Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggre的问题4年前

win 10 & mysql_5.7.18_x64同遇到以上问题。参看了 https://limh.me/post-22.html 解决了。

解决方案: 在mysql的安装目录下找到其配置文件my.ini,然后在其最底部添加如下配置:

sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

保存后重启mysql即可。

后台的 xheditor 编辑器 会强制将“<i>”标签 转化成 “<span>”标签,如何解决?4年前

不了解 “xheditor”的配置及逻辑,哎!我也只能绕道改css了。

切换语言问题4年前

@lp377762984 [#6楼](#comment6) 我的是 WampServer 环境,遇到了同样的问题,参照您的方法在appfront/web/cn下新建.htaccess文件,成功解决。感谢!🙇‍

fecshop在windows下安装4年前

感谢,原来是mysql密码没配置好,现在后台各个链接均可以正常打开了。(已在***\fecshop\appfront\web目录下添加.htaccess文件,不过前台页面依然是404,且后台无产品信息,后来参考Fecshop 初始配置重新配置了下测试数据,就正常了)。

不过目前还有个问题,后台修改或添加产品信息时会有如下报错,不知怎么解决:

Http status: 500 Internal Server Error
ajaxOptions: error
thrownError: Internal Server Error
Exception 'XSErrorException' with message 'fsockopen(): php_network_getaddresses: getaddrinfo failed: ��֪������������ ' 

in D:\web\fecshop\vendor\hightman\xunsearch\lib\XS.class.php:711

Stack trace:
#0 [internal function]: xsErrorHandler(2, 'fsockopen(): ph...', 'D:\\web\\fecshop\\...', 476, Array)
#1 D:\web\fecshop\vendor\hightman\xunsearch\lib\XSServer.class.php(476): fsockopen('xunsearch', 8383, 0, 'php_network_get...', 5)
#2 D:\web\fecshop\vendor\hightman\xunsearch\lib\XSServer.class.php(172): XSServer->connect()
#3 D:\web\fecshop\vendor\hightman\xunsearch\lib\XSServer.class.php(147): XSServer->open('xunsearch:8383')
#4 D:\web\fecshop\vendor\hightman\xunsearch\lib\XS.class.php(415): XSServer->__construct('xunsearch:8383', Object(XS))
#5 D:\web\fecshop\vendor\hightman\xunsearch\lib\XS.class.php(186): XS->getIndex()
#6 D:\web\fecshop\vendor\hightman\xunsearch\wrapper\yii2-ext\Database.php(83): XSComponent->__get('index')
#7 D:\web\fecshop\vendor\hightman\xunsearch\wrapper\yii2-ext\ActiveRecord.php(297): hightman\xunsearch\Database->getIndex()
#8 D:\web\fecshop\vendor\yiisoft\yii2\db\BaseActiveRecord.php(678): hightman\xunsearch\ActiveRecord->insert(true, NULL)
#9 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\helper\AR.php(108): yii\db\BaseActiveRecord->save()
#10 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\search\XunSearch.php(85): fecshop\services\helper\AR->save(Object(fecshop\models\xunsearch\Search), Array, true)
#11 [internal function]: fecshop\services\search\XunSearch->actionSyncProductInfo(Array, 20)
#12 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\Service.php(54): call_user_func_array(Array, Array)
#13 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\Search.php(71): fecshop\services\Service->__call('syncProductInfo', Array)
#14 [internal function]: fecshop\services\Search->actionSyncProductInfo(Array)
#15 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\Service.php(54): call_user_func_array(Array, Array)
#16 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\product\ProductMongodb.php(344): fecshop\services\Service->__call('syncProductInfo', Array)
#17 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\Product.php(381): fecshop\services\product\ProductMongodb->save(Array, '/architectural-...')
#18 [internal function]: fecshop\services\Product->actionSave(Array, 'catalog/product...')
#19 D:\web\fecshop\vendor\fancyecommerce\fecshop\services\Service.php(54): call_user_func_array(Array, Array)
#20 D:\web\fecshop\vendor\fancyecommerce\fecshop\app\appadmin\modules\Catalog\block\productinfo\Manageredit.php(412): fecshop\services\Service->__call('save', Array)
#21 D:\web\fecshop\vendor\fancyecommerce\fecshop\app\appadmin\modules\Catalog\controllers\ProductinfoController.php(91): fecshop\app\appadmin\modules\Catalog\block\productinfo\Manageredit->save()
#22 [internal function]: fecshop\app\appadmin\modules\Catalog\controllers\ProductinfoController->actionManagereditsave()
#23 D:\web\fecshop\vendor\yiisoft\yii2\base\InlineAction.php(57): call_user_func_array(Array, Array)
#24 D:\web\fecshop\vendor\yiisoft\yii2\base\Controller.php(157): yii\base\InlineAction->runWithParams(Array)
#25 D:\web\fecshop\vendor\yiisoft\yii2\base\Module.php(528): yii\base\Controller->runAction('managereditsave', Array)
#26 D:\web\fecshop\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('catalog/product...', Array)
#27 D:\web\fecshop\vendor\yiisoft\yii2\base\Application.php(386): yii\web\Application->handleRequest(Object(yii\web\Request))
#28 D:\web\fecshop\appadmin\web\index.php(77): yii\base\Application->run()
#29 {main}
fecshop在windows下安装4年前

后台页面报错

另外,前台页面虽然可以打开,但没有产品信息,如图前台页无产品信息

fecshop在windows下安装4年前

Win10 wamp 环境,按您上面文档操作,后台页【http://appadmin.fecshoptest.com/】 出现如下报错:

PDOException: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) in D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php:687
Stack trace:
#0 D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php(687): PDO->__construct('mysql:host=127....', 'root', 'xxxxxx', NULL)
#1 D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php(613): yii\db\Connection->createPdoInstance()
#2 D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php(996): yii\db\Connection->open()
#3 D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php(983): yii\db\Connection->getMasterPdo()
#4 D:\web\fecshop\vendor\yiisoft\yii2\db\Command.php(253): yii\db\Connection->getSlavePdo()
#5 D:\web\fecshop\vendor\yiisoft\yii2\db\Command.php(1153): yii\db\Command->prepare(true)
#6 D:\web\fecshop\vendor\yiisoft\yii2\db\Command.php(399): yii\db\Command->queryInternal('fetchAll', NULL)
#7 D:\web\fecshop\vendor\yiisoft\yii2\db\mysql\Schema.php(319): yii\db\Command->queryAll()
#8 D:\web\fecshop\vendor\yiisoft\yii2\db\mysql\Schema.php(125): yii\db\mysql\Schema->findColumns(Object(yii\db\TableSchema))
#9 D:\web\fecshop\vendor\yiisoft\yii2\db\Schema.php(744): yii\db\mysql\Schema->loadTableSchema('admin_user')
#10 D:\web\fecshop\vendor\yiisoft\yii2\db\Schema.php(194): yii\db\Schema->getTableMetadata('{{%admin_user}}', 'schema', false)
#11 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(435): yii\db\Schema->getTableSchema('{{%admin_user}}')
#12 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(262): yii\db\ActiveRecord::getTableSchema()
#13 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(234): yii\db\ActiveRecord::filterValidColumnNames(Object(yii\db\Connection), Array)
#14 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(191): yii\db\ActiveRecord::filterCondition(Array, Array)
#15 D:\web\fecshop\vendor\yiisoft\yii2\db\BaseActiveRecord.php(112): yii\db\ActiveRecord::findByCondition(Array)
#16 D:\web\fecshop\vendor\fancyecommerce\fecshop\models\mysqldb\AdminUser.php(85): yii\db\BaseActiveRecord::findOne(Array)
#17 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(595): fecshop\models\mysqldb\AdminUser::findIdentity(2)
#18 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(314): yii\web\User->getIdentityAndDurationFromCookie()
#19 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(707): yii\web\User->loginByCookie()
#20 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(192): yii\web\User->renewAuthStatus()
#21 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(360): yii\web\User->getIdentity()
#22 D:\web\fecshop\vendor\yiisoft\yii2\base\Component.php(139): yii\web\User->getIsGuest()
#23 D:\web\fecshop\vendor\yiisoft\yii2-debug\src\panels\UserPanel.php(79): yii\base\Component->__get('isGuest')
#24 D:\web\fecshop\vendor\yiisoft\yii2\base\BaseObject.php(109): yii\debug\panels\UserPanel->init()
#25 [internal function]: yii\base\BaseObject->__construct(Array)
#26 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(384): ReflectionClass->newInstanceArgs(Array)
#27 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(156): yii\di\Container->build('yii\\debug\\panel...', Array, Array)
#28 D:\web\fecshop\vendor\yiisoft\yii2\BaseYii.php(349): yii\di\Container->get('yii\\debug\\panel...', Array, Array)
#29 D:\web\fecshop\vendor\yiisoft\yii2-debug\src\Module.php(182): yii\BaseYii::createObject(Array)
#30 D:\web\fecshop\vendor\yiisoft\yii2-debug\src\Module.php(154): yii\debug\Module->initPanels()
#31 D:\web\fecshop\vendor\yiisoft\yii2\base\BaseObject.php(109): yii\debug\Module->init()
#32 D:\web\fecshop\vendor\yiisoft\yii2\base\Module.php(158): yii\base\BaseObject->__construct(Array)
#33 [internal function]: yii\base\Module->__construct('debug', Object(yii\web\Application), Array)
#34 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(376): ReflectionClass->newInstanceArgs(Array)
#35 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(156): yii\di\Container->build('yii\\debug\\Modul...', Array, Array)
#36 D:\web\fecshop\vendor\yiisoft\yii2\BaseYii.php(345): yii\di\Container->get('yii\\debug\\Modul...', Array)
#37 D:\web\fecshop\vendor\yiisoft\yii2\base\Module.php(427): yii\BaseYii::createObject('yii\\debug\\Modul...', Array)
#38 D:\web\fecshop\vendor\yiisoft\yii2\base\Application.php(315): yii\base\Module->getModule('debug')
#39 D:\web\fecshop\vendor\yiisoft\yii2\web\Application.php(69): yii\base\Application->bootstrap()
#40 D:\web\fecshop\vendor\yiisoft\yii2\base\Application.php(273): yii\web\Application->bootstrap()
#41 D:\web\fecshop\vendor\yiisoft\yii2\base\BaseObject.php(109): yii\base\Application->init()
#42 D:\web\fecshop\vendor\yiisoft\yii2\base\Application.php(206): yii\base\BaseObject->__construct(Array)
#43 D:\web\fecshop\appadmin\web\index.php(76): yii\base\Application->__construct(Array)
#44 {main}

Next yii\db\Exception: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) in D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php:624
Stack trace:
#0 D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php(996): yii\db\Connection->open()
#1 D:\web\fecshop\vendor\yiisoft\yii2\db\Connection.php(983): yii\db\Connection->getMasterPdo()
#2 D:\web\fecshop\vendor\yiisoft\yii2\db\Command.php(253): yii\db\Connection->getSlavePdo()
#3 D:\web\fecshop\vendor\yiisoft\yii2\db\Command.php(1153): yii\db\Command->prepare(true)
#4 D:\web\fecshop\vendor\yiisoft\yii2\db\Command.php(399): yii\db\Command->queryInternal('fetchAll', NULL)
#5 D:\web\fecshop\vendor\yiisoft\yii2\db\mysql\Schema.php(319): yii\db\Command->queryAll()
#6 D:\web\fecshop\vendor\yiisoft\yii2\db\mysql\Schema.php(125): yii\db\mysql\Schema->findColumns(Object(yii\db\TableSchema))
#7 D:\web\fecshop\vendor\yiisoft\yii2\db\Schema.php(744): yii\db\mysql\Schema->loadTableSchema('admin_user')
#8 D:\web\fecshop\vendor\yiisoft\yii2\db\Schema.php(194): yii\db\Schema->getTableMetadata('{{%admin_user}}', 'schema', false)
#9 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(435): yii\db\Schema->getTableSchema('{{%admin_user}}')
#10 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(262): yii\db\ActiveRecord::getTableSchema()
#11 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(234): yii\db\ActiveRecord::filterValidColumnNames(Object(yii\db\Connection), Array)
#12 D:\web\fecshop\vendor\yiisoft\yii2\db\ActiveRecord.php(191): yii\db\ActiveRecord::filterCondition(Array, Array)
#13 D:\web\fecshop\vendor\yiisoft\yii2\db\BaseActiveRecord.php(112): yii\db\ActiveRecord::findByCondition(Array)
#14 D:\web\fecshop\vendor\fancyecommerce\fecshop\models\mysqldb\AdminUser.php(85): yii\db\BaseActiveRecord::findOne(Array)
#15 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(595): fecshop\models\mysqldb\AdminUser::findIdentity(2)
#16 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(314): yii\web\User->getIdentityAndDurationFromCookie()
#17 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(707): yii\web\User->loginByCookie()
#18 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(192): yii\web\User->renewAuthStatus()
#19 D:\web\fecshop\vendor\yiisoft\yii2\web\User.php(360): yii\web\User->getIdentity()
#20 D:\web\fecshop\vendor\yiisoft\yii2\base\Component.php(139): yii\web\User->getIsGuest()
#21 D:\web\fecshop\vendor\yiisoft\yii2-debug\src\panels\UserPanel.php(79): yii\base\Component->__get('isGuest')
#22 D:\web\fecshop\vendor\yiisoft\yii2\base\BaseObject.php(109): yii\debug\panels\UserPanel->init()
#23 [internal function]: yii\base\BaseObject->__construct(Array)
#24 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(384): ReflectionClass->newInstanceArgs(Array)
#25 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(156): yii\di\Container->build('yii\\debug\\panel...', Array, Array)
#26 D:\web\fecshop\vendor\yiisoft\yii2\BaseYii.php(349): yii\di\Container->get('yii\\debug\\panel...', Array, Array)
#27 D:\web\fecshop\vendor\yiisoft\yii2-debug\src\Module.php(182): yii\BaseYii::createObject(Array)
#28 D:\web\fecshop\vendor\yiisoft\yii2-debug\src\Module.php(154): yii\debug\Module->initPanels()
#29 D:\web\fecshop\vendor\yiisoft\yii2\base\BaseObject.php(109): yii\debug\Module->init()
#30 D:\web\fecshop\vendor\yiisoft\yii2\base\Module.php(158): yii\base\BaseObject->__construct(Array)
#31 [internal function]: yii\base\Module->__construct('debug', Object(yii\web\Application), Array)
#32 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(376): ReflectionClass->newInstanceArgs(Array)
#33 D:\web\fecshop\vendor\yiisoft\yii2\di\Container.php(156): yii\di\Container->build('yii\\debug\\Modul...', Array, Array)
#34 D:\web\fecshop\vendor\yiisoft\yii2\BaseYii.php(345): yii\di\Container->get('yii\\debug\\Modul...', Array)
#35 D:\web\fecshop\vendor\yiisoft\yii2\base\Module.php(427): yii\BaseYii::createObject('yii\\debug\\Modul...', Array)
#36 D:\web\fecshop\vendor\yiisoft\yii2\base\Application.php(315): yii\base\Module->getModule('debug')
#37 D:\web\fecshop\vendor\yiisoft\yii2\web\Application.php(69): yii\base\Application->bootstrap()
#38 D:\web\fecshop\vendor\yiisoft\yii2\base\Application.php(273): yii\web\Application->bootstrap()
#39 D:\web\fecshop\vendor\yiisoft\yii2\base\BaseObject.php(109): yii\base\Application->init()
#40 D:\web\fecshop\vendor\yiisoft\yii2\base\Application.php(206): yii\base\BaseObject->__construct(Array)
#41 D:\web\fecshop\appadmin\web\index.php(76): yii\base\Application->__construct(Array)
#42 {main}
Additional Information:
Your Site Analytics