I am so excited to release Masino Extensions for PHPMaker 2023.
As always, you may read this following article (you may use Google to translate the page content into your language): Fitur-Fitur Masino Extensions untuk PHPMaker 2023 in order to give you the information about the features available in Masino Extensions for PHPMaker 2023.
Download Extension Link:
Demo Link:
http://demo19.ilovephpmaker.com
Download Project file:
tmnt_2408 says
Hi, i get error when trying to use Form Wizard in version 2023.10 as below:
Undefined index: USE_NATIVE_SELECT_ONE in configuration
Kindly advise. Thank you.
Masino Sinaga says
Make sure you always use the latest version, both for PHPMaker 2023 and Masino Extensions.
Mandwa says
Hello Masino,
I am using the function inspired by you in the application “stockinventory_project”
———————–
” function GetNextReceiptNum() {
$sNextCode = “”;
$sLastCode = “”;
$value = ExecuteScalar(“SELECT Receipt_num FROM finance_recipe_rent_details ORDER BY Receipt_num DESC”);
if ($value != “”) {
$sLastCode = intval(substr($value, 6, 9));
$sLastCode = intval($sLastCode) + 1;
$sNextCode = “” . sprintf(‘%09s’, $sLastCode);
} else {
$sNextCode = “0000000001”;
}
return $sNextCode;
} ”
————————–
but when the counter reaches 1000, it starts again at 1. How to stop being limited.
Best regards,
Mame
Masino Sinaga says
Change this code:
$sLastCode = intval(substr($value, 6, 9));
to:
$sLastCode = intval(substr($value, 0, 10));
Change this code:
$sNextCode = “” . sprintf(‘%09s’, $sLastCode);
to:
$sNextCode = “” . sprintf(‘%010s’, $sLastCode);
Mandwa says
Thank you very much for the reply.
regards.
Mame
Mandwa says
Hello,
When I activate the maintenance mode function it does not work. The site is still accessible. I use the demo version application ( demo2023_masinoextensions)
Regards
Masino Sinaga says
Did you see a link with Go Back text? Did you try to click on it?
Mandwa says
Sorry,
I had made a bad manipulation. it works perfectly.
Thanks
Masino Sinaga says
Never mind.
Just a friendly reminder… please download again Masino Extensions for PHPMaker 2023. There is an updated version that I’ve just uploaded a few minutes ago, in order to re-synchronize with the latest version of PHPMaker 2023 template.
Don’t forget also to always use the latest version of PHPMaker 2023 template, by clicking on Tools -> Update Template.
Mandwa says
Thank you for this reminder.