我最近在Magento 1.7 CE版本上安装了Awesome checkout Extension, 一切顺利,但问题是当我们在填写所有内容和信用详细信息后点击“下订单”按钮时,加载程序图标继续旋转,并且加载的thankyou消息未加载,应该加载并说明您的订单已被放置。
以下是截图:
我试图联系开发者,但不知道他们为什么不回复 我希望有人可以帮我解决这个问题。
错误日志
a:5:{i:0;s:209:"SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 4";i:1;s:1539:"#0 /home/kibooos/public_html/includes/src/Varien_Db_Statement_Pdo_Mysql.php(110): Zend_Db_Statement_Pdo->_execute(Array)
#1 /home/kibooos/public_html/includes/src/__default.php(63013): Varien_Db_Statement_Pdo_Mysql->_execute(Array)
#2 /home/kibooos/public_html/includes/src/__default.php(52695): Zend_Db_Statement->execute(Array)
#3 /home/kibooos/public_html/includes/src/__default.php(53731): Zend_Db_Adapter_Abstract->query('SELECT `custome...', Array)
#4 /home/kibooos/public_html/includes/src/__default.php(54567): Zend_Db_Adapter_Pdo_Abstract->query('SELECT `custome...', Array)
#5 /home/kibooos/public_html/includes/src/__default.php(52969): Varien_Db_Adapter_Pdo_Mysql->query('SELECT `custome...', Array)
#6 /home/kibooos/public_html/app/code/community/Belvg/FacebookFree/controllers/CustomerController.php(54): Zend_Db_Adapter_Abstract->fetchRow('SELECT `custome...')
#7 /home/kibooos/public_html/includes/src/__default.php(13583): Belvg_FacebookFree_CustomerController->LoginAction()
#8 /home/kibooos/public_html/includes/src/__default.php(17928): Mage_Core_Controller_Varien_Action->dispatch('login')
#9 /home/kibooos/public_html/includes/src/__default.php(17485): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#10 /home/kibooos/public_html/includes/src/__default.php(20062): Mage_Core_Controller_Varien_Front->dispatch()
#11 /home/kibooos/public_html/app/Mage.php(683): Mage_Core_Model_App->run(Array)
#12 /home/kibooos/public_html/index.php(87): Mage::run('', 'store')
#13 {main}";s:3:"url";s:162:"/facebookfree/customer/login/?referer=aHR0cHM6Ly9raWJvb29zLmNvbS9jdXN0b21lci9hY2NvdW50L2xvZ2luL3JlZmVyZXIvYUhSMGNITTZMeTlyYVdKdmIyOXpMbU52YlM4X1gxOWZVMGxFUFZVLC8,";s:11:"script_name";s:10:"/index.php";s:4:"skin";s:7:"default"
;}
来自firebug的错误:
<br />
<b>Fatal error</b>: require_once() [<a href='function.require'>function.require</a>]: Failed opening required '/home/kibooos/public_html/includes/src/WASP.php' (include_path='/home/kibooos/public_html/includes/src:.:/usr/lib/php:/usr/local/lib/php') in <b>/home/kibooos/public_html/includes/src/AWeberCommunications_EmailMarketing_Model_Observer.php</b> on line <b>12</b><br />
答案 0 :(得分:1)
从错误看,似乎扩展AWeberCommunications_EmailMarketing
正在调用一个不存在的文件。
你要做的第一件事就是禁用magento&amp;中的编译。看问题是否仍然存在。对于您对magento所做的每项更改,都应该重新运行编译过程,包括安装新的插件。禁用它将确保这不是丢失文件的原因。
其次,您应该检查文件WASP.php
是否存在于预期位置。错误消息包含类名和&amp;文件使用位置的行号。如果没有,重新安装该扩展可能会解决问题。
接下来要检查2个扩展名之间的冲突。这可能是在javascript端或php端。
答案 1 :(得分:0)