Download Worksuite Saas v3.9.7 - Project Management System Nulled Free
v3.9.7 Big Thanks To @gurudharsan
Fix: product tax issue
Fix: notification delete issue
Feature change: client can request new tasks
Fix: member expense not working
General bug fixes
12 Aug, 2021
Thanks a lot.. You are awesome!!Tomz updated Worksuite Saas - Project Management System with a new update entry:
Worksuite Saas v3.9.7
Read the rest of this update entry...
$('#save-form').click(function () {
$.easyAjax({
url: '{{route('admin.projects.store')}}',
container: '#createProject',
type: "POST",
redirect: true,
data: $('#createProject').serialize(),
success: function(response){
var dropzone = 0;
@if($upload)
dropzone = myDropzone.getQueuedFiles().length;
@endif
if(dropzone > 0){
projectID = response.projectID;
$('#projectID').val(response.projectID);
myDropzone.processQueue();
}
else{
var msgs = "@lang('modules.projects.projectUpdated')";
$.showToastr(msgs, 'success');
window.location.href = '{{ route('admin.projects.index') }}'
}
}
})
});
Yep I did experiencing it.. But it got sorted out after the update. Try to update it into new version N try giving appropriate permissions . That's it. If still it doesn't help just buzz me. Best of luck![]()
Has anyone experienced anything like the picture above?
every time I add a project, the notification that appears is a server error.
but the project I created is still saved.
Code:$('#save-form').click(function () { $.easyAjax({ url: '{{route('admin.projects.store')}}', container: '#createProject', type: "POST", redirect: true, data: $('#createProject').serialize(), success: function(response){ var dropzone = 0; @if($upload) dropzone = myDropzone.getQueuedFiles().length; @endif if(dropzone > 0){ projectID = response.projectID; $('#projectID').val(response.projectID); myDropzone.processQueue(); } else{ var msgs = "@lang('modules.projects.projectUpdated')"; $.showToastr(msgs, 'success'); window.location.href = '{{ route('admin.projects.index') }}' } } }) });
file location : public_html/resources/views/admin/projects
but I don't know what to do...
im still got server error notification, do you have solution for that ?Yep I did experiencing it.. But it got sorted out after the update. Try to update it into new version N try giving appropriate permissions . That's it. If still it doesn't help just buzz me. Best of luck
public function isLegal()
{
$this->setSetting();
$domain = \request()->getHost();
if ($domain == 'writeyourdomainhere' || $domain == '127.0.0.1' || $domain == '::1') {
return true;
}
// Return true if its running on test domain of .dev domain
if (strpos($domain, '.test') !== false) {
return true;
}
if (is_null($this->appSetting->purchase_code)) {
return true;
}