*

emmazz

  • ***
  • 22 posts
installed the plugin and nothing on duplicate section.
« on: February 17, 2016, 09:00:50 AM »
installed the plugin and nothing on duplicate section.

but other units on here. ( antibot, banwords and badwords work )  but duplicate section is empty

*

MB Themes

Re: installed the plugin and nothing on duplicate section.
« Reply #1 on: February 17, 2016, 09:13:46 AM »
@emmazz
Please check your error log and post it there.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

emmazz

  • ***
  • 22 posts
Re: installed the plugin and nothing on duplicate section.
« Reply #2 on: February 17, 2016, 10:16:03 AM »
[17-Feb-2016 14:43:15 Asia/Colombo] PHP Notice:  Undefined index: 132 in /XXXXXXXXXXXX/oc-content/themes/zara/inc.category.php on line 73

[17-Feb-2016 14:43:16 Asia/Colombo] PHP Notice:  Plugin languages is missing the index.php file /XXXXXXXXXXXX/oc-content/plugins/languages/index.php in /XXXXXXXXXXXX/oc-includes/osclass/classes/Plugins.php on line 97

[17-Feb-2016 14:43:18 Asia/Colombo] PHP Notice:  Undefined index: 132 in /XXXXXXXXXXXX/pahasu/oc-content/themes/zara/inc.category.php on line 73

[17-Feb-2016 14:43:31 Asia/Colombo] PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted (tried to allocate 78381224 bytes) in /XXXXXXXXXXXX/oc-content/plugins/spam_solution/admin/duplicate.php on line 171

[17-Feb-2016 14:43:32 Asia/Colombo] PHP Notice:  Undefined index: 132 in /XXXXXXXXXXXX/oc-content/themes/zara/inc.category.php on line 73

*

MB Themes

Re: installed the plugin and nothing on duplicate section.
« Reply #3 on: February 17, 2016, 11:31:10 AM »
@emmazz
Problem is there:
Quote
PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted (tried to allocate 78381224 bytes) in /XXXXXXXXXXXX/oc-content/plugins/spam_solution/admin/duplicate.php on line 171

You have probably set to show too many duplicates on 1 site.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

emmazz

  • ***
  • 22 posts
Re: installed the plugin and nothing on duplicate section.
« Reply #4 on: February 17, 2016, 12:49:23 PM »
that mean ?

Please explain

*

MB Themes

Re: installed the plugin and nothing on duplicate section.
« Reply #5 on: February 17, 2016, 01:04:23 PM »
@emmazz
Set "Listings shown on 1 page - pagination" to lower number, i.e. 20.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

emmazz

  • ***
  • 22 posts
Re: installed the plugin and nothing on duplicate section.
« Reply #6 on: February 17, 2016, 02:09:20 PM »
but i haven't that option. that's why i said : duplicate page is not loading. only empty unit

*

MB Themes

Re: installed the plugin and nothing on duplicate section.
« Reply #7 on: February 17, 2016, 02:21:42 PM »
@emmazz
Do you have latest version of plugin? If you open this tab, no actions are performed and therefore memory should not be reached.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

emmazz

  • ***
  • 22 posts
Re: installed the plugin and nothing on duplicate section.
« Reply #8 on: February 17, 2016, 02:29:01 PM »
i bought it today,   Version:2.1.3 | By Michal Brezak | Plugins Site

*

MB Themes

Re: installed the plugin and nothing on duplicate section.
« Reply #9 on: February 17, 2016, 02:44:44 PM »
@emmazz
Reason is simple, you have 15k listings, but only 128MB of memory.
With this memory it is not even possible to count all listings in front end.

Try to go to this file:
/oc-content/plugins/spam_solution/model/ModelSpamSolution.php

Find code:
Code: [Select]

public function countItems() {
  $this->dao->select('COUNT(*) total_count');
  $this->dao->from( $this->getTable_Item() );

  $result = $this->dao->get();
           
  if( !$result ) { return array(); }
           
  return $result->row();
}

replace to:
Code: [Select]
public function countItems() {
  $this->dao->select('COUNT(*) total_count');
  $this->dao->from( $this->getTable_Item() );
  $this->dao->limit( 1000 );

  $result = $this->dao->get();
           
  if( !$result ) { return array(); }
           
  return $result->row();
}
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

emmazz

  • ***
  • 22 posts
Re: installed the plugin and nothing on duplicate section.
« Reply #10 on: February 17, 2016, 03:42:48 PM »
can you please suggest any hosting service for me ? or vps service

*

emmazz

  • ***
  • 22 posts
Re: installed the plugin and nothing on duplicate section.
« Reply #11 on: February 17, 2016, 03:44:58 PM »
i did it, but still not fixed

*

MB Themes

Re: installed the plugin and nothing on duplicate section.
« Reply #12 on: February 17, 2016, 03:57:30 PM »
@emmazz
Send me login to your FTP.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

emmazz

  • ***
  • 22 posts
Re: installed the plugin and nothing on duplicate section.
« Reply #13 on: February 17, 2016, 04:02:59 PM »
check your mail

*

MB Themes

Re: installed the plugin and nothing on duplicate section.
« Reply #14 on: February 17, 2016, 04:19:10 PM »
@emmazz
Fixed, added limit function to function that get all items.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots