Forum Replies Created
-
Katherine J. BatesKeymasterHi
Seems it’s now running, we’ve moved your public directories contents to your root directory.
Best Regards
Katherine J. BatesKeymasterHi
Could you please clarify your question? pre-defined bank account you can set from payment settings section when users going to donate and select bank account, s/he should see your information which you set from admin panel.
Sorry, I am not understood your question clearly, am I missing something?
Best Regards
Katherine J. BatesKeymaster
Katherine J. BatesKeymasterDear @peterval
Thank you very much for your recommendation, It will be really great if you place a 5-star rating, you can do it from https://codecanyon.net/downloads
You will get a screen like below
Best Regards
Katherine J. BatesKeymasterHi
you can change the text from
/root/resources/lang/en/app.php
All of the text you will find here.
Best regards
Katherine J. BatesKeymasterCould you please clarify me a little bit more?
is you can’t login to your website? Please provide us your Website URL and admin credential, I will check it.
Best Regards
Katherine J. BatesKeymasterHi
Don’t get disappoint, Please provide your cPanel credential, I will check it.
Best regards
Katherine J. BatesKeymasterDear @peterval
We never charge which really not required, we help our customers to get started with an awesome experience.
Please find the login information below.
Login URL: http://moneyhelp247.com/login
E-Mail: [email protected]
pass: 123456BTW: we charge for installation sometimes (not everytime), you no need to pay us for installation.
Hope you will help us by placing a good review.
Best wishes and regards
Katherine J. BatesKeymasterDear @peterval
We’ve installed it to your server, please find your website at http://moneyhelp247.com/
If you need any more help, feel free ask your question.
You can place a 5-star rating to CodeCanyon at this product.
Beset regards
Katherine J. BatesKeymasterImage not showing 🙁
Please check, upload some where and place URL here
Katherine J. BatesKeymasterPlease enable APP_DEBUG=true from here
Then provide us the error which you found
Best regads
Katherine J. BatesKeymasterThis reply has been marked as private and you are not authorised to see.
Katherine J. BatesKeymasterAt LocationController.php
Remove
getStatesData()
andgetCityData()
and place below two mtehods instead of thatpublic function getStatesData(){ $searchTerm = \request('search.value'); if ($searchTerm){ $states = State::select('states.id', 'state_name', 'country_name', 'country_id')->leftJoin('countries', 'countries.id','=','states.country_id')->where('state_name', 'like', "%$searchTerm%"); }else{ $states = State::select('states.id', 'state_name', 'country_name', 'country_id')->leftJoin('countries', 'countries.id','=','states.country_id'); } return Datatables::of($states) ->filterColumn('country_name', 'whereRaw', '1=1', []) ->addColumn('actions',function($state){ $html = '<a href="'.route('edit_state', $state->id).'" class="btn btn-primary"><i class="fa fa-edit"></i> </a>'; $html .= '<a href="javascript:;" data-id="'.$state->id.'" class="btn btn-danger deleteState"><i class="fa fa-trash"></i> </a>'; return $html; }) ->removeColumn('id', 'country_id')->make(true); }
And
public function getCityData(){ $searchTerm = \request('search.value'); if ($searchTerm){ $cities = City::select('cities.id', 'cities.city_name', 'states.state_name', 'cities.state_id', 'countries.country_name', 'states.country_id')->leftJoin('states', 'states.id', '=', 'cities.state_id')->leftJoin('countries', 'countries.id', '=', 'states.country_id')->where('cities.city_name', 'like', "%{$searchTerm}%")->orderBy('city_name', 'asc'); }else { $cities = City::select('cities.id', 'cities.city_name', 'states.state_name', 'cities.state_id', 'countries.country_name', 'states.country_id')->leftJoin('states', 'states.id', '=', 'cities.state_id')->leftJoin('countries', 'countries.id', '=', 'states.country_id')->orderBy('city_name', 'asc'); } return Datatables::of($cities) ->filterColumn('state_name', 'whereRaw', '1=1', []) ->filterColumn('country_name', 'whereRaw', '1=1', []) ->addColumn('actions',function($city){ $html = '<a href="'.route('edit_city', $city->id).'" class="btn btn-primary"><i class="fa fa-edit"></i> </a>'; $html .= '<a href="javascript:;" data-id="'.$city->id.'" class="btn btn-danger deleteCity"><i class="fa fa-trash"></i> </a>'; return $html; }) ->removeColumn('id', 'state_id','country_id')->make(true); }
Hopefully, your issue will be solved
Best Regards
Katherine J. BatesKeymasterPlease look over below code
public function paypalNotify(Request $request, $transaction_id){ //todo: need to be check $payment = Payment::whereLocalTransactionId($transaction_id)->where('status','!=','success')->first(); $verified = paypal_ipn_verify(); if ($verified){ //Payment success, we are ready approve your payment $payment->status = 'success'; $payment->charge_id_or_token = $request->txn_id; $payment->description = $request->item_name; $payment->payer_email = $request->payer_email; $payment->payment_created = strtotime($request->payment_date); $payment->save(); }else{ $payment->status = 'declined'; $payment->description = trans('app.payment_declined_msg'); $payment->save(); } // Reply with an empty 200 response to indicate to paypal the IPN was received correctly header("HTTP/1.1 200 OK"); }
Your payment are succeeding here
$payment->status = 'success';
Please read carefully your payment gateway instructions to achieve IPN request or something like that
Best regards
Katherine J. BatesKeymasterroot means your root path, where the files installed, such as if you using cPanel, public_html will be your root (maybe), check the domain path.
Or provide us your Server Information in private reply
Best regards