Forum Replies Created

Viewing 15 replies - 466 through 480 (of 935 total)
  • in reply to: Installation #1582

    Hi

    Seems it’s now running, we’ve moved your public directories contents to your root directory.

    Best Regards

    in reply to: Bank Account Number #1577

    Hi

    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

    in reply to: change homepage url #1576

    Dear @tashun

    Please check your website, it should be show everything properly now.

    Best Regards

    in reply to: installation of GetFund #1573

    Dear @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

    GetFund crowdfunding script

    Best Regards

    in reply to: Installation Issue #1571

    Hi

    you can change the text from /root/resources/lang/en/app.php

    All of the text you will find here.

    Best regards

    in reply to: Reset Password & Paypal #1568

    Could 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

    in reply to: Installation Issue #1567

    Hi

    Don’t get disappoint, Please provide your cPanel credential, I will check it.

    Best regards

    in reply to: installation of GetFund #1562

    Dear @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: 123456

    BTW: 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

    in reply to: installation of GetFund #1558

    Dear @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

    in reply to: error in sign up ! #1552

    Image not showing 🙁

    Please check, upload some where and place URL here

    in reply to: error in sign up ! #1549

    Please enable APP_DEBUG=true from here

    themeqx estate

    Then provide us the error which you found

    Best regads

    in reply to: Ajax does not work when filtering cities in Dashboard #1548
    This reply has been marked as private and you are not authorised to see.
    in reply to: Ajax does not work when filtering cities in Dashboard #1546

    At LocationController.php

    Remove getStatesData() and getCityData() and place below two mtehods instead of that

      public 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

    in reply to: Payments / Donations not showing #1542

    Please 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

    in reply to: error in sign up ! #1541

    root 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

Viewing 15 replies - 466 through 480 (of 935 total)