Forum Replies Created
-

Katherine J. BatesKeymasterThat’s Great 🙂

Katherine J. BatesKeymasterHi
Please follow this docs https://www.themeqx.com/docs/getfund-a-professional-laravel-crowdfunding-platform/installation/remove-public-from-url-laravel-5/
If still now no luck, please let us know.
Best Regards
October 29, 2018 at 7:02 pm in reply to: install problem: just show some pages not all website(GetFund – A Professional ) #2142
Katherine J. BatesKeymasterThis reply has been marked as private and you are not authorised to see.October 29, 2018 at 4:10 pm in reply to: install problem: just show some pages not all website(GetFund – A Professional ) #2140
Katherine J. BatesKeymasterHi
I think your database not imported correctly, Please import your database incorrect way and make sure no tables are missing. So your issue will be fixed.
Best Regards

Katherine J. BatesKeymasterHi
To fix this issue, please go to /root/source/app/helpers.php
search for the code
function unique_slug($title = '', $model = 'Ad'){ $slug = str_slug($title); //get unique slug... $nSlug = $slug; $i = 0; $model = str_replace(' ','',"\App\ ".$model); while( ($model::whereSlug($nSlug)->count()) > 0){ $i++; $nSlug = $slug.'-'.$i; } if($i > 0) { $newSlug = substr($nSlug, 0, strlen($slug)) . '-' . $i; } else { $newSlug = $slug; } return $newSlug; }Replace it with below code
function unique_slug($title = '', $model = 'Ad'){ $slug = str_slug($title); if ($slug === ''){ $string = mb_strtolower($title, "UTF-8");; $string = preg_replace("/[\/\.]/", " ", $string); $string = preg_replace("/[\s-]+/", " ", $string); $slug = preg_replace("/[\s_]/", '-', $string); } //get unique slug... $nSlug = $slug; $i = 0; $model = str_replace(' ','',"\App\ ".$model); while( ($model::whereSlug($nSlug)->count()) > 0){ $i++; $nSlug = $slug.'-'.$i; } if($i > 0) { $newSlug = substr($nSlug, 0, strlen($slug)) . '-' . $i; } else { $newSlug = $slug; } return $newSlug; }And from the next entry, your issue will be fixed
Best Regards
October 27, 2018 at 7:04 pm in reply to: install problem: just show some pages not all website(GetFund – A Professional ) #2131
Katherine J. BatesKeymasterHi
Please turn on Debug mode and see which errors come here.
from
.envfile located at root, set APP_DEBUG = trueBest Regards

Katherine J. BatesKeymasterHello
Please check the functionalities of Reply by E-Mail, hope it will be work from now.
BTW: You have placed a space in your E-Mail during registration
Best Regards

Katherine J. BatesKeymasterCould you please share your website with that URL? I will check it
Best Regards

Katherine J. BatesKeymasterHi
This is maybe for Adsense place, please turn off all of Adsense ads from your admin panel, So this space will be removed
Best Regards

Katherine J. BatesKeymasterHello
Please check again now, your E-Mail function should work now
Best Regards

Katherine J. BatesKeymasterHello
Please check the reply by E-Mail feature and let us know if this work.
BTW: Google map has been paid, so we will remove all of the maps from our application, and we will do it soon.
Best Regards

Katherine J. BatesKeymasterHello
Bank payment is an offline payment method that works manually, like people will send you money to your bank, and deposit information will be filled during donating to your website, so you can confirm that this bank deposit comes from which donation or who is the donor.
Best Regards

Katherine J. BatesKeymasterYour provided credential is unable to log in, and we think you’ve done it in the right way.
We are closing this ticket and please don’t forget to open a new ticket if you face any others issue,
Best Regards

Katherine J. BatesKeymasterHi
You don’t need to edit any value, just change the column value, If you unable, please post your cPanel URL with login password in a private reply, we will do that.
Best Regards

Katherine J. BatesKeymasterHello
To increase the more large amount capability, you need to increase these columns decimal from campaigns table.
goal, min_amount, max_amount, recommended_amount, total_fundedcurrently, it has maybe decimal(10,2) format, you need to change it decimal(18,2) or more as you need.
Best Regards