Administrators Mahmoud Posted July 11, 2023 Administrators Share Posted July 11, 2023 View File SumoWebTools - Online Web Tools Script SumoWebTools is a web tools script that provides free internet tools that are useful in daily online activities. It supports multi-language, making it easy to customize the language you want with just a few taps. This script is built on Bootstrap v5, supports Light and Dark modes, supports LTR and RTL layouts. With more than 120 commonly used web tools on the internet, it will help you quickly get approved for Google Adsense. Optimized for Page Speed Insights SumoWebTools has been optimized for performance according to the standards set by Google Page Speed Insights. This specialized script targets the critical factors that affect your site’s speed and overall user experience, making it an invaluable asset for your web optimization efforts. Submitter Mahmoud Submitted 07/12/2023 Category Scripts Demo https://codecanyon.net/item/sumowebtools-online-web-tools-script/34704474 3 Quote Support is available for paid files only Support for free files is offered for a fee only Link to comment Share on other sites More sharing options...
Tâm MV Posted July 14, 2023 Share Posted July 14, 2023 hello @Mahmoud. in the script above the addons part is from sumoseotools and not from sumowebtools. Can you check again? 1 Quote Link to comment Share on other sites More sharing options...
shiva sharma Posted September 6, 2023 Share Posted September 6, 2023 hello not working Quote Link to comment Share on other sites More sharing options...
Ikhtiar Aksh Khan Posted September 18, 2023 Share Posted September 18, 2023 download link error 1 Quote Link to comment Share on other sites More sharing options...
Dinah Posted September 19, 2023 Share Posted September 19, 2023 File not found Quote Link to comment Share on other sites More sharing options...
Cibey Posted December 2, 2023 Share Posted December 2, 2023 file not found Quote Link to comment Share on other sites More sharing options...
Administrators Mahmoud Posted December 16, 2023 Author Administrators Share Posted December 16, 2023 Updated 1 Quote Support is available for paid files only Support for free files is offered for a fee only Link to comment Share on other sites More sharing options...
shiva sharma Posted December 17, 2023 Share Posted December 17, 2023 Purchase code Quote Link to comment Share on other sites More sharing options...
Kevin Kenfack Posted December 20, 2023 Share Posted December 20, 2023 please the license key the script is not nulled Quote Link to comment Share on other sites More sharing options...
orang sunda Posted December 21, 2023 Share Posted December 21, 2023 Purchase code Quote Link to comment Share on other sites More sharing options...
mirkodt Posted December 21, 2023 Share Posted December 21, 2023 random code not working Quote Link to comment Share on other sites More sharing options...
Prateek Sahu Posted January 29 Share Posted January 29 @Mahmoud sir purches code Quote Link to comment Share on other sites More sharing options...
Tanveer Akhtar Posted January 29 Share Posted January 29 it is asking for purchase code Quote Link to comment Share on other sites More sharing options...
Coders Posted February 14 Share Posted February 14 purchase code ? Quote Link to comment Share on other sites More sharing options...
Coders Posted February 14 Share Posted February 14 @Mahmoud purchase code ? Quote Link to comment Share on other sites More sharing options...
boksnet.pl Posted February 29 Share Posted February 29 public_html/components/app/Http/Livewire/Public/Install/Environment.php Go into this Directory Scroll to Section - try { $response = Http::get('https://envato.themeluxury.com/activation/sumowebtools.php?code=' . $this->purchase_code . '&domain=' . url('/') ); if ($response->ok() && $response['status'] === 'success') { if (! $this->checkDatabaseConnection($this->database_host, $this->database_port, $this->database_name, $this->database_username, $this->database_password) ) Replace this success with "error" like this if ($response->ok() && $response['status'] === 'error') DONE! now put anything and your file can be installed 1 1 Quote Link to comment Share on other sites More sharing options...
Coders Posted March 2 Share Posted March 2 (edited) On 2/29/2024 at 7:50 PM, boksnet.pl said: public_html/components/app/Http/Livewire/Public/Install/Environment.php Go into this Directory Scroll to Section - try { $response = Http::get('https://envato.themeluxury.com/activation/sumowebtools.php?code=' . $this->purchase_code . '&domain=' . url('/') ); if ($response->ok() && $response['status'] === 'success') { if (! $this->checkDatabaseConnection($this->database_host, $this->database_port, $this->database_name, $this->database_username, $this->database_password) ) Replace this success with "error" like this if ($response->ok() && $response['status'] === 'error') DONE! now put anything and your file can be installed @boksnet.pl The installation is completed but it still asks for the purchase code in the admin panel. Edited March 2 by Coders Quote Link to comment Share on other sites More sharing options...
Anonymous_Insane Posted April 1 Share Posted April 1 On 3/2/2024 at 11:59 PM, Coders said: @boksnet.pl The installation is completed but it still asks for the purchase code in the admin panel. Here is the complete fix. Once you've installed the script (by editing the Environment.php), you need to edit 2 more files to completely null the verification. /components/app/Http/Livewire/Admin/License.php /components/vendor/arcanedev/localization/src/Middleware/LocaleAuth.php You need to do the same patch, change success to error. Quote Link to comment Share on other sites More sharing options...
Sira Video Posted April 18 Share Posted April 18 On 2/29/2024 at 10:20 PM, boksnet.pl said: public_html/components/app/Http/Livewire/Public/Install/Environment.php Go into this Directory Scroll to Section - try { $response = Http::get('https://envato.themeluxury.com/activation/sumowebtools.php?code=' . $this->purchase_code . '&domain=' . url('/') ); if ($response->ok() && $response['status'] === 'success') { if (! $this->checkDatabaseConnection($this->database_host, $this->database_port, $this->database_name, $this->database_username, $this->database_password) ) Replace this success with "error" like this if ($response->ok() && $response['status'] === 'error') DONE! now put anything and your file can be installed I don't understand to replace it can you quote the part to change? Quote Link to comment Share on other sites More sharing options...
حسين عبدالله رحمن Posted April 23 Share Posted April 23 @Coders <?php namespace App\Http\Livewire\Public\Install; use Livewire\Component; use Brotzka\DotenvEditor\DotenvEditor; use Illuminate\Support\Facades\Artisan; use DB, Schema; use App\Models\Install; use Illuminate\Support\Facades\Http; class Environment extends Component { public $purchase_code; public $database_host = 'localhost'; public $database_port = '3306'; public $database_name; public $database_username; public $database_password; public $continue = false; public function mount() { $env = new DotenvEditor(); $this->database_host = $env->getValue("DB_HOST"); $this->database_port = $env->getValue("DB_PORT"); $this->database_name = $env->getValue("DB_DATABASE"); $this->database_username = $env->getValue("DB_USERNAME"); $this->database_password = $env->getValue("DB_PASSWORD"); } public function render() { return view('livewire.public.install.environment')->layout('layouts.install'); } /** * ------------------------------------------------------------------------------- * checkDatabaseConnection * ------------------------------------------------------------------------------- **/ public function checkDatabaseConnection($database_host, $database_port, $database_name, $database_username, $database_password){ $connection = 'mysql'; $settings = config("database.connections.$connection"); config([ 'database' => [ 'default' => $connection, 'connections' => [ $connection => array_merge($settings, [ 'driver' => $connection, 'host' => $database_host, 'port' => $database_port, 'database' => $database_name, 'username' => $database_username, 'password' => $database_password, ]), ], ], ]); DB::purge(); try { DB::connection()->getPdo(); return true; } catch (\Exception $e) { return false; } } /** * ------------------------------------------------------------------------------- * onCreateDatabase * ------------------------------------------------------------------------------- **/ public function onCreateDatabase(){ $this->validate([ 'purchase_code' => 'required', 'database_host' => 'required', 'database_port' => 'required', 'database_name' => 'required', 'database_username' => 'required' ]); try { if (! $this->checkDatabaseConnection($this->database_host, $this->database_port, $this->database_name, $this->database_username, $this->database_password) ) { $this->addError('error', __('Could not connect to the database. Maybe your Database is not available.')); return; } try { $env = new DotenvEditor(); $env->changeEnv([ 'DB_HOST' => $this->database_host, 'DB_PORT' => $this->database_port, 'DB_DATABASE' => $this->database_name, 'DB_USERNAME' => $this->database_username, 'DB_PASSWORD' => "'$this->database_password'", 'APP_URL' => url('/') ]); Artisan::call('config:cache'); Artisan::call('config:clear'); Artisan::call('migrate:fresh'); Install::create([ 'id' => 1, 'database' => true, 'token' => $this->purchase_code ]); $this->continue = true; } catch (\Exception $e) { $this->addError('error', __($e->getMessage())); } } catch (\Exception $e) { $this->addError('error', __($e->getMessage())); } } // } ضعو هاذا الكود Quote Link to comment Share on other sites More sharing options...
auna Posted May 28 Share Posted May 28 (edited) @Mahmoud Can update to v2.0.4 Edited May 28 by auna Quote Link to comment Share on other sites More sharing options...
jock Posted June 14 Share Posted June 14 @Anonymous_Insane May I ask everyone, how should we handle this situation? Whoops! Something went wrong. include(/www/wwwroot/xxxxxx.com/components/vendor/composer/../../app/Classes/TextToSlugClass.php): Failed to open stream: No such file or directory 1 Quote Link to comment Share on other sites More sharing options...
Rohit mondal Posted June 19 Share Posted June 19 License key? Quote Link to comment Share on other sites More sharing options...
ELITE Membership Posted July 9 Share Posted July 9 On 2/29/2024 at 5:50 PM, boksnet.pl said: public_html/components/app/Http/Livewire/Public/Install/Environment.php Go into this Directory Scroll to Section - try { $response = Http::get('https://envato.themeluxury.com/activation/sumowebtools.php?code=' . $this->purchase_code . '&domain=' . url('/') ); if ($response->ok() && $response['status'] === 'success') { if (! $this->checkDatabaseConnection($this->database_host, $this->database_port, $this->database_name, $this->database_username, $this->database_password) ) Replace this success with "error" like this if ($response->ok() && $response['status'] === 'error') DONE! now put anything and your file can be installed thanks bro you are the best Quote Link to comment Share on other sites More sharing options...
The Reality Posted August 16 Share Posted August 16 @boksnet.pl its working thank you. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.