Home > Backend Development > PHP Tutorial > ECstore report does not display solution, ecstore report displays_PHP tutorial

ECstore report does not display solution, ecstore report displays_PHP tutorial

WBOY
Release: 2016-07-13 10:15:33
Original
1030 people have browsed it

Solution to ECstore report not showing up, ecstore report showing up

Recent research on ECSTORE found that the background report shows blank, Google found many unified methods, directly insert a few items into the table data. Haha, go deeper

1. To display the report function, you must first ensure that the scheduled task of contab has been configured and the scheduled task can be executed

2. The report task is executed by executing the analysis_day() and analysis_hour() methods in the ectools_analysis_task class of appectoolslibanalysistask.php

3. Check and find

in the analysis_day() method
foreach(kernel::serviceList('ectools_analyse_day') AS $service){
         ……  
}
Copy after login

and in analysis_hour()

foreach(kernel::serviceList('ectools_analyse_hour') AS $service){
         ……  
}
Copy after login
 

The corresponding service cannot be found

4. Check the corresponding services.xml and find it is empty

    <span><</span><span>service </span><span>id</span><span>="ectools_analysis_hour"</span><span>></span>

    <span></</span><span>service</span><span>></span>

    <span><</span><span>service </span><span>id</span><span>="ectools_analysis_day"</span><span>></span>

    <span></</span><span>service</span><span>></span>
Copy after login
Add the classes that require statistical reports

Copy after login
<span> 1</span><span><</span><span>service </span><span>id</span><span>="ectools_analysis_hour"</span><span>></span>
Copy after login
<span> 2</span> <span><</span><span>class</span><span>></span>b2c_analysis_advanceday<span></</span><span>class</span><span>></span>
<span> 3</span> <span><</span><span>class</span><span>></span>b2c_analysis_saleday<span></</span><span>class</span><span>></span>
<span> 4</span> <span><</span><span>class</span><span>></span>b2c_analysis_shopsale<span></</span><span>class</span><span>></span>
<span> 5</span> <span></</span><span>service</span><span>></span>
<span> 6</span> 
<span> 7</span> <span><</span><span>service </span><span>id</span><span>="ectools_analysis_day"</span><span>></span>
<span> 8</span> <span><</span><span>class</span><span>></span>b2c_analysis_advanceday<span></</span><span>class</span><span>></span>
<span> 9</span> <span><</span><span>class</span><span>></span>b2c_analysis_saleday<span></</span><span>class</span><span>></span>
<span>10</span> <span><</span><span>class</span><span>></span>b2c_analysis_shopsale<span></</span><span>class</span><span>></span>
<span>11</span> <span></</span><span>service</span><span>></span>
Copy after login
Respect the originality, please keep it when reprinting: (ECstore report does not display solution) http://www.cnblogs.com/seafood/p/4065893.html

The pictures uploaded in the backend of shopex’s ECstore V10024 version are not displayed in the frontend

Clear browser cache


How to prevent ecstore from popping up prompts when clicking the delete operation in the finder's operation button area

If it is a standardized product, it is not supported; if it supports personalized customized development, then this problem can be solved through customized development and remove the prompt pop-up window


http://www.bkjia.com/PHPjc/903840.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/903840.htmlTechArticleECstore report is not displayed, the ecstore report shows that the recent study of ECSTORE found that the background report shows blank, Google found N many The unified approach is to directly insert a few pieces of data into the table. Hehe...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template