T Klein
Forum Replies Created
-
Forum: Plugins
In reply to: [Job Manager] Fixed problem of memory exhaustionDoes this fix the memory exhaustion in the back-end applications page also?
Forum: Plugins
In reply to: [Job Manager] Problem with plugin customizationIf you don’t mind uploading your plugin I would love to at least try it out, I don’t really use a lot of the functionality besides the basic job posting stuff.
I would really appreciate it.
Forum: Plugins
In reply to: [Job Manager] Problem with plugin customizationYup, it doesn’t work though, its the same problem you had. I have no way of telling how much memory its even using in the first place, but i know its an outrageous amount. We have hundreds if not thousands of applications also.
Technically I’m hosted on a Private VPS on Dreamhost.
It is this error:
but it is definitely using more then 256mb of memory, because I’ve tried increasing it to 1gb even just to test that theory.
Forum: Plugins
In reply to: [Job Manager] Problem with plugin customizationI am getting the exceeds memory limit on the applications page, on the admin side of things. Its because I have a ton of application and the way the plugin handles querying the applications, it pushes it over the memory limit. I don’t really care if filtering works, I just wish I could see a list of the applications, right now I have to completely rely on the emails.
Forum: Plugins
In reply to: [Job Manager] Problem with plugin customizationJaviore do you mind posting the source code for your solution? This has been a big problem of mine for awhile.
Forum: Plugins
In reply to: [Job Manager] Page load time after user applys to jobyes, I’ve noticed the same thing, some people submit multiple applications because they don’t know if it went through or not.
Forum: Plugins
In reply to: [Job Manager] Job Information textarea bug in 3.5 WPsame thing, datepickers are broken 🙁
Forum: Plugins
In reply to: [SimpleMap Store Locator] Does not work with wordpress 3.5awesome, works for me! I knew what the problem was but I couldn’t find the right spot to put it. Thanks a ton joost.
How did you find the right file?
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 not sending emails- no confirmation, no errorI am on dreamhost, same problem. Very hit or miss whether the email sends or whether or not the submitter gets CC’d like he is suppose to. I’ve emailed Dreamhost multiple times yet they don’t know the problem and just say their is nothing in the mail logs.
Doesn’t make sense, I use contact form 7 to DB also, and everything gets logged into the database fine, but the mail doesn’t send sometimes.
Hope someone finds out the problem.
unfortunately, it still give sme an error no matter how large I make it, i’ve tried going up to 1024mb.
same problem for me, haven’t found a fix yet though.
My problem is related to the applications list, but while I can see the list, once all the applications start loading (over 2500 and counting), the site starts to time out and slows down to a stop.
This makes interacting with the data very tedious. Additionally, once everything has loaded (we’re talking many minutes, not seconds) and you try to do an Select and export all to CSV, the document ends up blank with only the header information being exported. This however is not the case for smaller filtered numbers.
Hope there is a resolution – do I need to install some CACHE system or could the application list page be sorted in pagination format i.e. display x number per page instead of everything trying to load.
Thanks in advance.
I have this same problem, database is too big and it tries to recieve EVERY single application thats ever been submitted, hundreds probably thousands of applications, it just gives a memory overflow error because its eating to much data.
Going a step further, add this to your display-jobs.php file where you want the category name to display, and you have an easy to filter list of jobs on the display jobs page. I added it on line 31 just after the_date.
<div class="category">Category: <?php $category = get_the_category(); if($category[0]){ echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>'; } ?></div>I’ll post my finding for everyone to see, with the help of kandrews and a bit of google-fu I figured this out. You need to put a function into your functions.php file.
function my_query_post_type($query) { if ( is_category() && false == $query->query_vars['suppress_filters'] ) $query->set( 'post_type', array( 'post', 'video', 'attachment', 'rsjp_job_postings' ) ); return $query; } add_filter('pre_get_posts', 'my_query_post_type');WordPress doesn’t allow custom post types by default in its posts query. Where you see
array( 'post', 'video', 'attachment', 'rsjp_job_postings' ) );you can add or remove any custom post types that you don’t want to show.I only wanted mine to show up underneath the categories listing so I could have a different page for each category of jobs. So I have this line:
if ( is_category()you might need to change that a little to get what you want.I can now use http://www.mywebsite.net/category/catname/
will only show jobs that are marked underneath the category “catname”.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Applications Not Appearing on Admin PageMy problem is that I simple have to many applications. The query is overloading my request limit so it just crashes itself out and doesn’t display anything.