*

omilias

  • ***
  • 33 posts
Job Attribute CV not Uploading
« on: December 30, 2016, 05:42:13 AM »
Hi everybody,

I was wondering if anybody is using job attribute. I am using Zara Premium Theme 1.2.1 and bender 3.1.4
but for some reason i am getting FAILED error message why i try to upload cv with job attribute.

I  had to put a bit of code to get the upload cv tab which was not there initially. Also in the front end i
don't have contact form option allow users to contact you my end.


 Image attached.


*

MB Themes

Re: Job Attribute CV not Uploading
« Reply #1 on: December 30, 2016, 07:45:43 PM »
@omilias
Honestly I am not sure if this feature ever worked...
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

omilias

  • ***
  • 33 posts
Re: Job Attribute CV not Uploading
« Reply #2 on: December 31, 2016, 12:32:32 AM »
@ frosticek

I very much appreciate your help, with regards to the cv upload, i think i have reached a dead end. I search the web and forums but came out empty handed. I think the job attribute plugin is a waste of time, it does not do the job intended. Anyhow can you advise what other plugins or a piece of code that i use to allow my users to attach/upload CV perhaps in contact form or else where.

Kind regards.

*

MB Themes

Re: Job Attribute CV not Uploading
« Reply #3 on: December 31, 2016, 11:02:06 AM »
@omilias
Custom fields does not work?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

omilias

  • ***
  • 33 posts
Re: Job Attribute CV not Uploading
« Reply #4 on: January 01, 2017, 01:01:53 AM »
@frosticek

Custom fields don't have the option to attach a document like CV does it?

*

gs_ind

  • ***
  • 31 posts
Re: Job Attribute CV not Uploading
« Reply #5 on: January 06, 2017, 02:46:48 PM »
Hi Omilas,

In item_detail.php (of jobs_attributes)
Line 72:
Find the code below:
Code: [Select]
<?php if(osc_get_preference('allow_cv_upload''plugin')=='1' && ((osc_get_preference('allow_cv_unreg''jobs_plugin')=='1' && !osc_is_web_user_logged_in()) || osc_is_web_user_logged_in())) { ?>
Replace it by
Code: [Select]
<?php if(osc_get_preference('allow_cv_upload''jobs_plugin')=='1' && ((osc_get_preference('allow_cv_unreg''jobs_plugin')=='1' && !osc_is_web_user_logged_in()) || osc_is_web_user_logged_in())) { ?>
---------------------------------

Line 89:
Find the code below:
Code: [Select]
echo osc_route_ajax_url('jobs-attr-cvupload', array('id' => osc_item_id()));
Replace it by
Code: [Select]
echo osc_route_ajax_url('jobs-attr-cv-upload', array('id' => osc_item_id()));
Check if it works..
Thank you

*

omilias

  • ***
  • 33 posts
Re: Job Attribute CV not Uploading
« Reply #6 on: January 07, 2017, 09:31:57 PM »
@ gs_ind

Hi tried to place the codes in item_detail.php (of jobs_attributes) as you specified but did not work. I dont know if we need to set the path for upload CV directory?

*

gs_ind

  • ***
  • 31 posts
Re: Job Attribute CV not Uploading
« Reply #7 on: January 10, 2017, 04:41:04 AM »
Hi Omilias,
Please check this thread in osclass forum >> Job attributes
I checked that zip file given in the first post. ( I checked it with osclass 3.6 & 3.7.0)
CV Upload worked perfectly for me. (Thanks to mmcsus who uploaded it)
Thank you
« Last Edit: January 10, 2017, 04:44:49 AM by gs_ind »