Category : Technical

Crowdfunding Backend

Troubleshooting Crowdfunding Backend Login 1.Make sure you are getting on with correct Crowdfunding Backend login URL usually Backend login url is mysite.com/m.php 2.Make sure your backend user password are correct Initially it comes with user:admin pass:admin 3.You are entering correct captcha code , This is must to enter correct captcha code when you access backend. ..

Read more

To add a new payment gateway to Crowdfunding script following steps can be taken. Step 1. Use paypal skeleton located at /system/payment/Paypal_class.php Step 2. Create payment class example class Mygateway_payment implements payment   Step 3. Add functions like get_payment_code($payment_notice_id)  [Creates payment form] response($request) [requests response from gateway server ] In response you can compare response with order ..

Read more

There is an easy way to find which Crowdfunding template to edit for any URL Step1 . Make sure your URL rewrite is off( Or you can turn off temporary) Step2 .Check URL structure I am taking 4 examples to find which template to edit Example index.php?ctl=project&act=investor_one  => investor_one.html index.php?ctl=settings&act=security => settings_security.html index.php?ctl=project&act=add => project_add.html ..

Read more

Crowdfunding pledge count To show crowdfunding pledge count data programmatically use templating syntax in template files In template where user data is called , use following syntax to show user projects initiated {$home_user_info.build_count} To show user supported project count {$home_user_info.support_count} Check demo here http://demo.crowdphp.com/ You can add a badge easily {if $home_user_info.build_count gt 0} <img ..

Read more