@Kasun-Anuradha hari giyada? danui dakke. :)
Best posts made by malinga91
-
RE: DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help
-
Bitbucket to cPanel deployment
මගේ repository එකක් තියෙනවා Bitbucket වල. cPanel තියෙන VPS එකක් එක්ක connect කරන්නේ කොහොමද automatically deploy වෙන්න.
දැනට repository එක SSH වලින් clone කරලා තියෙන්නේ cPanel එකේ. Local changes Bitbucket එකට push කරලා. cPanel SSH වලින් pull කරනවා.
Bitbucket වලට push කරහම cPanel එකට auto deploy වෙන්න ක්රමයක්?
Latest posts made by malinga91
-
RE: DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help
@Kasun-Anuradha hari giyada? danui dakke. :)
-
RE: DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help
Documentation ekak denawa neda eyala service eka offer karanakota?
-
RE: Free JetBrains Licenses
Thank you..
I tried to activate this. but it says only valid until September 19, 2023. How to activate for at least 1 year?
-
RE: Sampath bank eke payment gateway udauwwak
Payhere api url ekata POST request ekak yawanna tiyenne. HTML form ekak hadala eka submit karanna thiyenne. Form eke action ekata danna ona Payhere API URL eka. Oyage domain eka payhere eke whitelist karanna ona kalin. ethakota oyage domain eke idan POST request yawanna puluwan. ekata aniwayen ona fields tiyenawa. (email, name, address, amount wage ewa). me tiyenne man karapu widiya.
.env file
PAYHERE_MERCHENT_ID=24333554141 PAYHERE_SECRET=8xxxxxxxxxxxxxxxxxxxxxxxxxJ7J PAYHERE_API_URL=https://sandbox.payhere.lk/pay/checkout
config/payhere.php
return [ 'api_url' => env('PAYHERE_API_URL', 'https://sandbox.payhere.lk/pay/checkout'), 'merchant_id' => env('PAYHERE_MERCHENT_ID', 'no_merchent'), 'secret' => env('PAYHERE_SECRET', 'no_secrete'), 'return_url' => env('PAYHERE_RETURN_URL', config('app.url') . '/checkout/return'), 'notify_url' => env('PAYHERE_NOTIFY_URL', config('app.url') . '/checkout/notify'), 'cancel_url' => env('PAYHERE_CANCEL_URL', config('app.url') . '/checkout/cancel'), ];
Submit Order details (amount, items, name, etc)
<form class="width:100%" method="post" action="{{ config('payhere.api_url')}}"> @csrf <input type="hidden" name="merchant_id" value="{{ config('payhere.merchant_id') }}"> <input type="hidden" name="return_url" value="{{ config('payhere.return_url') }}"> <input type="hidden" name="cancel_url" value="{{ config('payhere.cancel_url') }}"> <input type="hidden" name="notify_url" value="{{ config('payhere.notify_url') }}"> <input type="hidden" name="order_id" value="{{ $order->reference }}"> <input type="hidden" name="items" value="My Packages"> <input type="hidden" name="currency" value="{{ $order->currency }}"> <input type="hidden" name="amount" value="{{ $order->amount }}"> <input type="hidden" name="first_name" value="{{ $order->first_name }}"> <input type="hidden" name="last_name" value="{{ $order->last_name }}"> <input type="hidden" name="email" value="{{ $order->email }}"> <input type="hidden" name="phone" value="{{ $order->phone }}"> <input type="hidden" name="address" value="{{ $order->address }}"> <input type="hidden" name="city" value="{{ $order->city }}"> <input type="hidden" name="country" value="{{ $order->country }}"> <input type="hidden" name="hash" value="{{ $order->hash }}"> <input type="submit" class="" value="Pay Now"> </form>
-
RE: How to properly integrate Payhere to Laravel ? Need Help
@Coding-Labs notify_url url eke request method eka POST da thiyenneh balanna. netnam Route::any('notify_url', function()) daala Log ekak daala balanna request eke monawada enneh kiyala.
-
Bitbucket to cPanel deployment
මගේ repository එකක් තියෙනවා Bitbucket වල. cPanel තියෙන VPS එකක් එක්ක connect කරන්නේ කොහොමද automatically deploy වෙන්න.
දැනට repository එක SSH වලින් clone කරලා තියෙන්නේ cPanel එකේ. Local changes Bitbucket එකට push කරලා. cPanel SSH වලින් pull කරනවා.
Bitbucket වලට push කරහම cPanel එකට auto deploy වෙන්න ක්රමයක්?
-
RE: String vidhiyata values ena variable ekak double walata convert karala lat lang walata assign kranne kohomada ?
Android nam karala nehe man. man nikan google karala beluwe
-
RE: සිංහලෙන් VPS Installation ( Ubuntu + NGINX + php-fpm + WordPress) - LEMP
@root said in සිංහලෙන් VPS Installation ( Ubuntu + NGINX + php-fpm + WordPress) - LEMP:
Mokadda server eka Apache da nginx da ??
@root
Apache/2.2.34 (Unix) -
RE: සිංහලෙන් VPS Installation ( Ubuntu + NGINX + php-fpm + WordPress) - LEMP
Hoya hoya hitapu ekak. <3
@chandiama
Mata issu ekak thiyenawa. man VPS eke subdomain ekak haduwa. eke
"This site can’t be reached sub.mydomain.org’s server IP address could not be found." kiyala enawa. Kohomada fix kara ganne? -
How to send estimation for maintenance of PHP based web site.
I have to send an estimation for web site maintenance. What should be included there?
Can someone show me an example?