Search found 189 matches

 Return to the advanced search

bitnami-windows-x64-installer.exe removed from sourceforge

 by ashkufaraz ¦  Wed Sep 27, 2023 7:08 am ¦  Forum: Installation & Configuration ¦  Topic: bitnami-windows-x64-installer.exe removed from sourceforge ¦  Replies: 1 ¦  Views: 1252

Hi How can download bitnami-windows-x64-installer.exe file? Processmaker remove from source forge?(https://downloads.sourceforge.net/project/) Installer.exe does not exist in source forge https://sourceforge.net/projects/processmaker/files/ProcessMaker/3.3.6/bitnami-processmakercommunity-3.3.6-0-win...

Re: Jalali Calendar

 by ashkufaraz ¦  Mon Sep 28, 2020 8:33 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Jalali Calendar ¦  Replies: 50 ¦  Views: 48484

راست چین سازی فرم هاتون اشتباه بوده
اگه استایل زیر رو بهش بدید شاید مشکل حل بشه
style='direction:ltr'

Re: disable value in dropdown

 by ashkufaraz ¦  Fri Sep 18, 2020 2:34 am ¦  Forum: Development Discussion (archived) ¦  Topic: disable value in dropdown ¦  Replies: 2 ¦  Views: 14827

You should use the check box instead of the dropdown.

Re: Assigned Sum Value to text box from grid

 by ashkufaraz ¦  Mon Mar 04, 2019 4:07 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Assigned Sum Value to text box from grid ¦  Replies: 8 ¦  Views: 5203

With this code you can do it

Code: Select all
$(document).on("change","[id*='form[gridVar008][']",function(){
	 
	$("#textVar211").setValue($("#sum-gridVar008-text0000000187").val())
	
});

Re: change sent by to create by in inbox

 by ashkufaraz ¦  Sun Mar 03, 2019 2:03 am ¦  Forum: Developing processes & programming ¦  Topic: change sent by to create by in inbox ¦  Replies: 4 ¦  Views: 2510

You must use https://wiki.processmaker.com/3.0/Cases_List_Builder to add new column ...

Re: parallel task route to next before all instance finshed

 by ashkufaraz ¦  Wed Oct 03, 2018 12:35 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: parallel task route to next before all instance finshed ¦  Replies: 11 ¦  Views: 8578

Is there any way to force the parallel task to finish, when not every user has completed the dynaform? I tried accessing the database table `app_delegation` and change the DEL_THREAD_STATUS to CLOSED...but even though the users seemed to be done with the parallel task, the process doesn't move to n...

Re: php 5.6 64 bit read utf-8 data from sql server 2008

 by ashkufaraz ¦  Sat Sep 01, 2018 11:09 am ¦  Forum: Developing processes & programming ¦  Topic: php 5.6 64 bit read utf-8 data from sql server 2008 ¦  Replies: 8 ¦  Views: 8486

No, does not working...
I think this dll does not support utf -8

Re: php 5.6 64 bit read utf-8 data from sql server 2008

 by ashkufaraz ¦  Fri Aug 31, 2018 1:40 am ¦  Forum: Developing processes & programming ¦  Topic: php 5.6 64 bit read utf-8 data from sql server 2008 ¦  Replies: 8 ¦  Views: 8486

Thanks Amos collation data base and zahra table is Arabic_ci_as. when i check encoding text with strtoupper(mb_detect_encoding($sValue)) return ASCII ... so $part1 = mb_convert_encoding(line[0], "UTF-8", "UCS-2"); //if using UCS-2 $part2 = mb_convert_encoding(line[1], "UTF-8", "auto"); //maybe it c...

Re: php 5.6 64 bit read utf-8 data from sql server 2008

 by ashkufaraz ¦  Fri Aug 31, 2018 1:40 am ¦  Forum: Developing processes & programming ¦  Topic: php 5.6 64 bit read utf-8 data from sql server 2008 ¦  Replies: 8 ¦  Views: 8486

Thanks Amos collation data base and zahra table is Arabic_ci_as. when i check encoding text with strtoupper(mb_detect_encoding($sValue)) This return ASCII ... so $part1 = mb_convert_encoding(line[0], "UTF-8", "UCS-2"); //if using UCS-2 $part2 = mb_convert_encoding(line[1], "UTF-8", "auto"); //maybe ...

php 5.6 64 bit read utf-8 data from sql server 2008

 by ashkufaraz ¦  Wed Aug 29, 2018 5:51 pm ¦  Forum: Developing processes & programming ¦  Topic: php 5.6 64 bit read utf-8 data from sql server 2008 ¦  Replies: 8 ¦  Views: 8486

Hi I install process maker 3.2.3 with php 5.6 on windows 64bit I download https://wiki.processmaker.com/sites/default/files/php_dblibx64.dll and add to ext php... I can connect to sql server 2008 but when write query for drop down control return ??? text for utf-8 data... I write this sample code th...

Re: change upload_max_filesize

 by ashkufaraz ¦  Mon May 28, 2018 3:34 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: change upload_max_filesize ¦  Replies: 2 ¦  Views: 4158

upload max file size set in \apps\processmaker\conf\httpd-app.conf file

Code: Select all
php_value upload_max_filesize 900M
please add this to wiki

Re: connect to sql server with php 5.6 64bit

 by ashkufaraz ¦  Mon May 28, 2018 3:32 am ¦  Forum: Documentation ¦  Topic: connect to sql server with php 5.6 64bit ¦  Replies: 13 ¦  Views: 33100

You can use this dll

(273.5 KiB) Downloaded 861 times

change upload_max_filesize

 by ashkufaraz ¦  Sun May 27, 2018 3:42 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: change upload_max_filesize ¦  Replies: 2 ¦  Views: 4158

Hi
I want change upload_max_filesize
I change upload_max_filesize in php.ini

photo_2018-05-27_12-07-32.jpg
photo_2018-05-27_12-07-32.jpg (84.75 KiB) Viewed 4158 times
but in phpinfo() local value still 20M
Capture.PNG
Capture.PNG (55.44 KiB) Viewed 4158 times

connect to sql server with php 5.6 64bit

 by ashkufaraz ¦  Mon May 14, 2018 3:28 am ¦  Forum: Documentation ¦  Topic: connect to sql server with php 5.6 64bit ¦  Replies: 13 ¦  Views: 33100

Hi Capture.PNG Warning: Currently, there is NO php_dblib.dll file that works with PHP 5.6.x of 64bits. Robs generate unofficial modified builds of Microsoft's sqlsrv and pdo_sqlsrv drivers for PHP 5.6 64bit https://robsphp.blogspot.nl/2012/06/unofficial-microsoft-sql-server-driver.html https://onedr...

Re: ProcessMaker external Editor

 by ashkufaraz ¦  Thu Mar 29, 2018 3:39 am ¦  Forum: Tips and Tricks ¦  Topic: ProcessMaker external Editor ¦  Replies: 11 ¦  Views: 32093

External editor is very nice... thank you very much.. How can install extension vscode? Capture.PNG When i open folder shown error in setting that file unknowing setting file when i perss F5 and run extension and then press Ctrl+Shift+P and select PMKR:sync say error command not found 2.PNG please h...

Re: Textarea after file upload in grid

 by ashkufaraz ¦  Sun Dec 17, 2017 3:41 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Textarea after file upload in grid ¦  Replies: 5 ¦  Views: 3657

Thanks programerboy

Re: Textarea after file upload in grid

 by ashkufaraz ¦  Sat Dec 16, 2017 2:48 pm ¦  Forum: Using ProcessMaker 3 ¦  Topic: Textarea after file upload in grid ¦  Replies: 5 ¦  Views: 3657

QAcarlos.camacho (manager) :

This issue that you report already was resolved and the fix will be available in the next version of ProcessMaker (ProcessMaker 3.2.2, it will be ready in few months). I will keep you updated about this.

Re: Import process with update task and keep users

 by ashkufaraz ¦  Fri Dec 15, 2017 2:25 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Import process with update task and keep users ¦  Replies: 5 ¦  Views: 3448

Re: Import process with update task and keep users

 by ashkufaraz ¦  Thu Dec 14, 2017 5:19 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Import process with update task and keep users ¦  Replies: 5 ¦  Views: 3448

Hi I write this code for append current user process to pmx uploaded file... File:\apps\processmaker\htdocs\workflow\engine\methods\processes\processes_Import_Ajax.php line 138 //append current user to new xml file G::LoadClass('wsBase'); $xmldoc = simplexml_load_file(PATH_DOCUMENT . "input" . PATH_...

Re: How to add value into Dropdown

 by ashkufaraz ¦  Thu Dec 14, 2017 1:04 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: How to add value into Dropdown ¦  Replies: 7 ¦  Views: 6081

Set data source to your array variable

Image

Re: Import process with update task and keep users

 by ashkufaraz ¦  Wed Dec 13, 2017 4:12 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Import process with update task and keep users ¦  Replies: 5 ¦  Views: 3448

Thanks amos In version 2 File:\processmaker\workflow\engine\methods\processes\processes_Import_Ajax.php Call mergeExistingUsers function for merge exist user and new user... version2.PNG In version 3 File:\processmaker\htdocs\workflow\engine\methods\processes\processes_Import_Ajax.php Call $importer...

Import process with update task and keep users

 by ashkufaraz ¦  Tue Dec 12, 2017 6:44 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Import process with update task and keep users ¦  Replies: 5 ¦  Views: 3448

Hi
In version 3.x after import process and select "Update the current process, overwriting all tasks and steps" all users tasks will be erased... and keeps groups...
But in version 2.x after import process, keeps all users and groups...

Before import process

1.PNG
1.PNG (22.31 KiB) Viewed 3448 times
After import process
2.PNG
2.PNG (22.71 KiB) Viewed 3448 times

Textarea after file upload in grid

 by ashkufaraz ¦  Tue Dec 12, 2017 2:28 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Textarea after file upload in grid ¦  Replies: 5 ¦  Views: 3657

Hi I have a trigger with this code @=grid[1]=["t1"=>"t1","t2"=>"t2"]; @=grid2[1]=["t3"=>"t3","t4"=>"t4"]; http://s9.picofile.com/file/8314053618/Capture.PNG When textarea is before file upload in grid1, text area content does not change with trigger When textarea is after file upload in grid2, text ...

Re: Get database connection list with rest

 by ashkufaraz ¦  Mon Dec 11, 2017 7:05 am ¦  Forum: Developing processes & programming ¦  Topic: Get database connection list with rest ¦  Replies: 2 ¦  Views: 2626

Ohhhhhhhhhh

base on this file 'htdocs\shared\sites\workflow\routes.php'
Correct address is "/api/1.0/{workflow}/project/{process}/database-connections"

please edit address in this page
http://wiki.processmaker.com/3.2/REST_A ... tions_List

Re: change background color

 by ashkufaraz ¦  Mon Dec 11, 2017 6:58 am ¦  Forum: Using ProcessMaker 2 ¦  Topic: change background color ¦  Replies: 3 ¦  Views: 4887

Try this code $("#sumval").setOnchange( function() { if (parseFloat($("#sumval").getValue())>= 5000000) $("#sumval").getControl().css("backgroundColor", "red"); //$("#sumval").getHintHtml()[0].style.color="red" else $("#sumval").getControl().css("backgroundColor", ""); //set border to its default co...

Get database connection list with rest

 by ashkufaraz ¦  Mon Dec 11, 2017 6:46 am ¦  Forum: Developing processes & programming ¦  Topic: Get database connection list with rest ¦  Replies: 2 ¦  Views: 2626

Hi I with this code can get database connection info with dbs_uid and all things is ok $endpoint="/api/1.0/".$workflow."/project/".$process."/database-connection/6372070315a2e5b72408122078225833"; $resPmRestRequest=pmRestRequest($pmServerLocal,"GET", $endpoint, $aVars=null, $accessToken,null); But I...

Re: Select Value from DB

 by ashkufaraz ¦  Mon Nov 20, 2017 3:53 am ¦  Forum: Developing processes & programming ¦  Topic: Select Value from DB ¦  Replies: 1 ¦  Views: 2227

For drop down you must write query like this

Code: Select all
select id,label from myTable

Re: propel join with pmt table

 by ashkufaraz ¦  Wed Sep 20, 2017 1:34 am ¦  Forum: Developing processes & programming ¦  Topic: propel join with pmt table ¦  Replies: 6 ¦  Views: 4458

I do it...

add model file to
\htdocs\workflow\engine\classes\model

with this code

Code: Select all
$Criteria->addJoin( AppCacheViewPeer::APP_UID, MyTablePeer::APP_UID, Criteria::LEFT_JOIN );
$Criteria->add(MyTablePeer::ID, 1, Criteria::EQUAL);

Re: propel join with pmt table

 by ashkufaraz ¦  Tue Sep 19, 2017 12:21 am ¦  Forum: Developing processes & programming ¦  Topic: propel join with pmt table ¦  Replies: 6 ¦  Views: 4458

thanks amosbatto

I run database-upgrade command but say nothing to change in data base

I think this command does not check pmt table


Image

Re: propel join with pmt table

 by ashkufaraz ¦  Mon Sep 18, 2017 1:41 pm ¦  Forum: Developing processes & programming ¦  Topic: propel join with pmt table ¦  Replies: 6 ¦  Views: 4458

thanks programerboy

When add where condition i get error

Code: Select all
$Criteria->add("IC.ID",  11 , Criteria::EQUAL);
Code: Select all
 wrapped: Cannot fetch TableMap for undefined table: PMT_MYTABLE

  • 1
  • 2
  • 3
  • 4
  • 5
  • 7

In the rapidly evolving world of online sports be[…]

STEPN integrates social networking and games that […]

Cenforce 150 is a medication used to cope with a c[…]

What's SAP FICO?

Trustworthy and skill-building, each of these actu[…]