Jump to content
Bicrypto v4.4.8 + All Plugins ×

Mahmoud

Administrators
  • Posts

    10,449
  • Reputation

    33,338
  • Files

    1,570
  • Rank

    Grand Master
  • Joined

  • Last visited

  • Days Won

    2,170

Everything posted by Mahmoud

  1. There is no difference between the regular and expanded version of this script, You only pay once and get all the updates for free
  2. Updates are downloaded here as soon as they are released by the author Greetings
  3. Sofdesk Ticket System is a ticket management software that will help you to manage queries and sleek the process of issue resolution. Fully responsive design and unique functionality make it one of the most potent PHP script. Sofdesk has been designed and developed using Laravel, Bootstrap, HTML5, MySql. Demo: https://codecanyon.net/item/sofdesk-support-ticket-and-knowledge-base-script/24884109 Download: doniaweb.com_sofdesk-v1.4.zip
  4. A fully featured taxi application offering tools you might need to run a location based on-demand service. Using Websocket the bidirectional connection between all players are established in real-time and fast. Demo: https://codecanyon.net/item/taxi-application-android-solution-dashboard/21437882 Download: doniaweb.com_taxi-application-android-solution-dashboard-v3.0.7.zip
  5. FireApp is a Real-Time complete chatting app with support for Video & Voice Calls along with Stories feature . you can share images, audio, video, contact, even sharing your location!. Demo: https://codecanyon.net/item/fireapp-ios-complete-chatting-app-for-ios-inspired-by-whatsapp/26503495 Download: doniaweb.com_fireapp-ios-1.0.zip
  6. FireApp is a Real-Time complete chatting app with support for Video & Voice Calls along with Stories feature . you can share images, audio, video, contact, even sharing your location!. Demo: https://codecanyon.net/item/fireapp-chat-android-chatting-app-with-groups-inspired-by-whatsapp/22453192 Download: doniaweb.com_FireApp V1.2.5.3.zip
  7. Open the do_install.php file in the install folder and replace it with this code <?php ini_set('max_execution_time', 300); //300 seconds if (isset($_POST)) { $host = $_POST["host"]; $dbuser = $_POST["dbuser"]; $dbpassword = $_POST["dbpassword"]; $dbname = $_POST["dbname"]; $first_name = $_POST["first_name"]; $last_name = $_POST["last_name"]; $admin_name = $first_name.' '.$last_name; $email = $_POST["email"]; $login_password = $_POST["password"] ? $_POST["password"] : ""; $purchase_code = $_POST["purchase_code"]; //check required fields if (!($host && $dbuser && $dbname && $first_name && $last_name && $email && $login_password && $purchase_code)) { echo json_encode(array("success" => false, "message" => "Please input all fields.")); exit(); } //check for valid email if (filter_var($email, FILTER_VALIDATE_EMAIL) === false) { echo json_encode(array("success" => false, "message" => "Please input a valid email.")); exit(); } //validate purchase code $verification = valid_purchase_code($purchase_code); if (!$verification || $verification != "verified") { echo json_encode(array("success" => false, "message" => "Please enter a valid purchase code.")); exit(); } //check for valid database connection $mysqli = @new mysqli($host, $dbuser, $dbpassword, $dbname); if (mysqli_connect_errno()) { echo json_encode(array("success" => false, "message" => $mysqli->connect_error)); exit(); } //all input seems to be ok. check required fiels if (!is_file('database.sql')) { echo json_encode(array("success" => false, "message" => "The database.sql file could not found in install folder!")); exit(); } /* * check the db config file * if db already configured, we'll assume that the installation has completed */ $db_file_path = "../application/config/database.php"; $db_file = file_get_contents($db_file_path); $is_installed = strpos($db_file, "enter_hostname"); if (!$is_installed) { echo json_encode(array("success" => false, "message" => "Seems this app is already installed! You can't reinstall it again.")); exit(); } //start installation $sql = file_get_contents("database.sql"); //set admin information to database $sql = str_replace('first_user_full_name', $admin_name, $sql); $sql = str_replace('first_user_email', $email, $sql); $sql = str_replace('first_user_email', $email, $sql); $sql = str_replace('first_user_password', md5($login_password), $sql); $sql = str_replace('item_purchase_code', $purchase_code, $sql); // generate default api key $deafult_api_key = substr(md5(rand()), 0, 15); $sql = str_replace('deafult_api_key', $deafult_api_key, $sql); // generate rest password $rest_user_password = substr(md5(rand()), 0, 15); $sql = str_replace('rest_user_password', $rest_user_password, $sql); // generate mobile secret key $default_mobile_apps_api_secret_key = substr(md5(rand()), 0, 15); $sql = str_replace('default_mobile_apps_api_secret_key', $default_mobile_apps_api_secret_key, $sql); // generate cron key $default_cron_key = substr(md5(rand()), 0, 15); $sql = str_replace('default_cron_key', $default_cron_key, $sql); //create tables in database $mysqli->multi_query($sql); do { } while (mysqli_more_results($mysqli) && mysqli_next_result($mysqli)); $mysqli->close(); // database created // set the database config file $db_file = str_replace('enter_hostname', $host, $db_file); $db_file = str_replace('enter_db_username', $dbuser, $db_file); $db_file = str_replace('enter_db_password', $dbpassword, $db_file); $db_file = str_replace('enter_database_name', $dbname, $db_file); file_put_contents($db_file_path, $db_file); // set random enter_encryption_key $config_file_path = "../application/config/config.php"; $encryption_key = substr(md5(rand()), 0, 15); $config_file = file_get_contents($config_file_path); $config_file = str_replace('enter_encryption_key', $encryption_key, $config_file); file_put_contents($config_file_path, $config_file); // set the environment = development $index_file_path = "../index.php"; $index_file = file_get_contents($index_file_path); $index_file = preg_replace('/pre_installation/', 'development', $index_file, 1); //replace the first occurrence of 'pre_installation' file_put_contents($index_file_path, $index_file); echo json_encode(array("success" => true, "message" => "Installation successful.")); exit(); } function valid_purchase_code($purchase_code =''){ return "verified"; }
  8. I did not touch anything If there is an error then it is from the author I will send him a message about the cause of the problem
  9. Grocery, Food, Pharmacy Store Delivery Mobile App with PHP Laravel Backend Complete solution using flutter framework created by Google is an open-source mobile application development. It is used to develop applications for Android and iOS, as well as being the primary method of creating applications Our solution uses Laravel (PHP Framework for Web Artisans) Laravel is a web application framework with an expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things. Demo: https://codecanyon.net/item/grocery-food-pharmacy-store-delivery-mobile-app-with-admin-panel/26409320 Download: doniaweb.com_grocery-food-pharmacy-store-delivery-mobile-app-with-admin-panel.zip
  10. No, Included plugins are written in the description
  11. OVOO- Live TV & Movie Portal CMS with Unlimited TV-Series OVOO is a powerful, flexible and User friendly Live TV & Movie Portal CMS with advance video contents management system. It’s easy to use & install. It has been created to provide a unique experience to movie lover & movie site owner. To observe of ISP needed we have made ovoo to use as multipurpose video cms. This application was built with advanced modules and many more powerful features for a complete video website management. Furthermore, it also supports CSS3, HTML5 and Bootstrap 3 Framework that help use refined any device with semantic accuracy and highly customizable PHP based (CodeIgniter) application. Demo: https://codecanyon.net/item/ovoomovie-video-streaming-cms-with-unlimited-tvseries/20180569 Congratulations, it doesn't need a license Download: doniaweb.com_ovoo_V3.3.0.zip
  12. Stop Spammer-Fake Registrations is Addon For Playtube v1.7.1 and above.Spammer or fake user can use ‘Temporary Email ID’ or ‘Disposable Email ID’ to bypass the Email verification process.Now you can use this addon to protect your website from fake registration.For eg:they use proxy servers and xyzmail.com to flood your website with unverified accounts,Or they use proxy servers,dynamic ip address to create fake verified accounts on your website which create headaches for admins/moderators.Please watch screenshots and Video for more details. Demo: https://codecanyon.net/item/stop-spammerfake-registrations-for-playttube/22446026 Download; doniaweb.com_stop-spammerfake-registrations-for-playttube.zip
  13. Looking for powerful classified cms? The most advanced Themeqx PHP Laravel classified (PHP classified script) will meet your requirement. It has many powerful features with a free blog with multi-language support. Thanks, classifieds is responsive, designed based on Laravel PHP Frameworks and bootstrap CSS. This Laravel classified and Its built-in social login, Amazon S3, SEO, and Microdata will impress you for sure. You can set YouTube video or Vimeo video with every ad that will attract more customer. Most important things are you can switch themes with a single click, we will release new and modern theme continuously, currently, there are two preloaded themes you will get. Demo: https://codecanyon.net/item/themeqx-advanced-php-laravel-classified-ads-cms/18221399 Download: doniaweb.com_themeqx-advanced-php-laravel-classified-ads-cms.zip
  14. 295 downloads

    Todate is a QuickDate theme, handcrafted with care. It offers the best performance and advanced features for your site. Todate is the perfect theme for your site. TODATE – THE ULTIMATE QUICKDATE THEME Todate has all the important functions needed to create super fast responsive websites with amazing user experience. It comes with unique design crafted with love which gives your users a sense of true quality. FEATURES Home Page Style Todate theme provides you different type of designfor homepage that helps you make your site different from others. Better Profiles Todate provides best User Experience. Always impress your users by providing them the experience they wanted always. Mobile Ready This theme is fully responsive and looks great on any mobile device PageSpeed Todate theme is now more faster than the default QuickDate theme. SEO Friendly Get your site rank in search result more easily and faster than before. Better Layout Better layout for Blogs, Profiles, Home, Matches, Settings and many others. Many More
    Free
  15. View File Todate v1.7 - The Ultimate QuickDate Theme Todate is a QuickDate theme, handcrafted with care. It offers the best performance and advanced features for your site. Todate is the perfect theme for your site. TODATE – THE ULTIMATE QUICKDATE THEME Todate has all the important functions needed to create super fast responsive websites with amazing user experience. It comes with unique design crafted with love which gives your users a sense of true quality. FEATURES Home Page Style Todate theme provides you different type of designfor homepage that helps you make your site different from others. Better Profiles Todate provides best User Experience. Always impress your users by providing them the experience they wanted always. Mobile Ready This theme is fully responsive and looks great on any mobile device PageSpeed Todate theme is now more faster than the default QuickDate theme. SEO Friendly Get your site rank in search result more easily and faster than before. Better Layout Better layout for Blogs, Profiles, Home, Matches, Settings and many others. Many More Submitter Mahmoud Submitted 05/31/2020 Category Template Demo https://codecanyon.net/item/todate-the-ultimate-quickdate-theme/24982814  
  16. Version 2.3

    Start your own SaaS platform with Zender! Attract online marketers and businesses who are looking for a cost-effective way of sending sms to their clients in their country, with Zender they can do it with ease. Own it like you made it, with our full white-label platform solution, no one will know that your platform is using Zender! We know how important it is to have an easy to use platform for web masters, that’s why Zender was built with ease of usage in mind. Zender is extremely fast and optimized. We carefully tested everything to adhere web standards, you can check gtmetrix results here. NOTABLE FEATURES: Dashboard – Beautiful and responsive dashboard for your users that automatically fits any screen and resolutions, bundled with quick load technology. Landing Page – Beautiful landing page for your SaaS platform, attract paying visitors with a stunning landing page! Send Quick SMS – Allow your customers to send quick messages to their contacts. Send Bulk SMS – Allow your customers to send bulk messages to multiple contact groups. Long Messages – Supports sending long messages, the messages will be splitted to multiple parts if longer than 160 characters. We even tried sending a message in Korean containing more than 500 characters! Receive SMS – Receive replies from the gateway devices, this can allow your customers to have a dual channel sms system. SMS Templates – Create ready to use message templates, just select it when you send an sms and it will automatically be added in the textarea. Smart Sending – When a user doesn’t select a device when sending sms, system will automatically decide what device will be used for sending based on pending messages by devices. Contact Groups – Create groups for easy sending of bulk messages to multiple numbers. Multiple Languages – Supports multiple languages, easily translate zender to different languages. Includes 10 default languages. English, Korean, Japanese, Chinese, French, German, Indonesian, Vietnamese, Italian and Russian! Packages – Manage or create subscription packages for your customers, limit everything to by each packages. Payment Gateways – Stripe and Paypal for subscription payments. Pay by using Visa, MasterCard, Amex and more! Usage Stats – A detailed statistics on user dashboards will allow them to analyze their usage stats. Extensive charts are available in the admin panel. Limit Control – Limit everything from api keys, sent sms, received sms, max devices and more! API Keys – Let them create different API keys per project, they can also select permissions per api keys. Webhooks – Immediately reply to recipients when your receive their message, webhooks allows you to listen for incoming messages. RestAPI – Allow your users to integrate their accounts to different systems and languages, an extensive documentation is also included! Quick Navigation – Zender is so freaking fast that your users will love staying longer. GTMetrix also returned 100/91 scores when tested for loading speed! Smart Widgets – Easily add any block of scripts and html codes to your site. We’ve added a smart feature to allow you easily include them using a one liner code block. Theme Settings – Modify theme colors easily, we used scss technology to optimize the stylesheets. App Builder – Customize zender gateway application the way you want it, you’ll be able to use your own colors, splashscreen and logo. Clean Code – Professional code structure and framework, get the quality that you deserve! Well Documented – A well written documentation for web masters, manage your own SaaS easily by your own. Many more features! Check our live demo to see more! GATEWAY FEATURES Beautiful – A simple but stunning user interface for the gateway app, astonish your users! Light & Fast – A powerful app with just 6mb in size, it can run perfectly on old android devices such as KitKat! Quick Register – Register devices on user accounts easily by just scanning a qrcode! Smart Recovery – If some errors or problems occured while the gateway is running, our app will amazingly recover from it and restart the service automatically. This efficiently prevents app crash and downtimes. Legacy Support – Supports android 4.4 and above, let your users use their old phones for their business. Custom Package Name – Your platform apk, branded with your own android apk package name! Customize App Icon – Use your own app logo/icon image, our app builder will compile it when building the apk for your platform. Customize App Splashscreen – Use your own splashscreen with your logo, our app builder will compile it when building the apk for your platform. Customize App Color – Use your own app theme color, our app builder will compile it when building the apk for your platform. Integrated API – No need for manual input of your server url in the app, our app builder automatically integrates your server url inside the compiled apk. Activity Logger – A terminal logger is also added in the app to allow ease of monitoring of activities when running the gateway. Background Service – Zender gateway app can run in the background while you do other things, it can also run while the android phone is sleeping. Multiple Account Support – Zender allows multiple registration of one device to different user accounts. No Firebase Needed – There’s no need for firebase, we’ve created a smart environment to remove the need of external services such as firebase fcm. REQUIREMENTS Server Apache Apache mod_rewrite PHP 7.1.0 or later MySQL 5.6 or later Extensions php-gd php-mbstring php-intl php-zip php-curl php-xmlreader php-bcmath
    10.00 EUR
  17. View File Zender v2.3 - Android Mobile Devices as SMS Gateway (SaaS Platform) + Purchase Code Start your own SaaS platform with Zender! Attract online marketers and businesses who are looking for a cost-effective way of sending sms to their clients in their country, with Zender they can do it with ease. Own it like you made it, with our full white-label platform solution, no one will know that your platform is using Zender! We know how important it is to have an easy to use platform for web masters, that’s why Zender was built with ease of usage in mind. Zender is extremely fast and optimized. We carefully tested everything to adhere web standards, you can check gtmetrix results here. NOTABLE FEATURES: Dashboard – Beautiful and responsive dashboard for your users that automatically fits any screen and resolutions, bundled with quick load technology. Landing Page – Beautiful landing page for your SaaS platform, attract paying visitors with a stunning landing page! Send Quick SMS – Allow your customers to send quick messages to their contacts. Send Bulk SMS – Allow your customers to send bulk messages to multiple contact groups. Long Messages – Supports sending long messages, the messages will be splitted to multiple parts if longer than 160 characters. We even tried sending a message in Korean containing more than 500 characters! Receive SMS – Receive replies from the gateway devices, this can allow your customers to have a dual channel sms system. SMS Templates – Create ready to use message templates, just select it when you send an sms and it will automatically be added in the textarea. Smart Sending – When a user doesn’t select a device when sending sms, system will automatically decide what device will be used for sending based on pending messages by devices. Contact Groups – Create groups for easy sending of bulk messages to multiple numbers. Multiple Languages – Supports multiple languages, easily translate zender to different languages. Includes 10 default languages. English, Korean, Japanese, Chinese, French, German, Indonesian, Vietnamese, Italian and Russian! Packages – Manage or create subscription packages for your customers, limit everything to by each packages. Payment Gateways – Stripe and Paypal for subscription payments. Pay by using Visa, MasterCard, Amex and more! Usage Stats – A detailed statistics on user dashboards will allow them to analyze their usage stats. Extensive charts are available in the admin panel. Limit Control – Limit everything from api keys, sent sms, received sms, max devices and more! API Keys – Let them create different API keys per project, they can also select permissions per api keys. Webhooks – Immediately reply to recipients when your receive their message, webhooks allows you to listen for incoming messages. RestAPI – Allow your users to integrate their accounts to different systems and languages, an extensive documentation is also included! Quick Navigation – Zender is so freaking fast that your users will love staying longer. GTMetrix also returned 100/91 scores when tested for loading speed! Smart Widgets – Easily add any block of scripts and html codes to your site. We’ve added a smart feature to allow you easily include them using a one liner code block. Theme Settings – Modify theme colors easily, we used scss technology to optimize the stylesheets. App Builder – Customize zender gateway application the way you want it, you’ll be able to use your own colors, splashscreen and logo. Clean Code – Professional code structure and framework, get the quality that you deserve! Well Documented – A well written documentation for web masters, manage your own SaaS easily by your own. Many more features! Check our live demo to see more! GATEWAY FEATURES Beautiful – A simple but stunning user interface for the gateway app, astonish your users! Light & Fast – A powerful app with just 6mb in size, it can run perfectly on old android devices such as KitKat! Quick Register – Register devices on user accounts easily by just scanning a qrcode! Smart Recovery – If some errors or problems occured while the gateway is running, our app will amazingly recover from it and restart the service automatically. This efficiently prevents app crash and downtimes. Legacy Support – Supports android 4.4 and above, let your users use their old phones for their business. Custom Package Name – Your platform apk, branded with your own android apk package name! Customize App Icon – Use your own app logo/icon image, our app builder will compile it when building the apk for your platform. Customize App Splashscreen – Use your own splashscreen with your logo, our app builder will compile it when building the apk for your platform. Customize App Color – Use your own app theme color, our app builder will compile it when building the apk for your platform. Integrated API – No need for manual input of your server url in the app, our app builder automatically integrates your server url inside the compiled apk. Activity Logger – A terminal logger is also added in the app to allow ease of monitoring of activities when running the gateway. Background Service – Zender gateway app can run in the background while you do other things, it can also run while the android phone is sleeping. Multiple Account Support – Zender allows multiple registration of one device to different user accounts. No Firebase Needed – There’s no need for firebase, we’ve created a smart environment to remove the need of external services such as firebase fcm. REQUIREMENTS Server Apache Apache mod_rewrite PHP 7.1.0 or later MySQL 5.6 or later Extensions php-gd php-mbstring php-intl php-zip php-curl php-xmlreader php-bcmath Submitter Mahmoud Submitted 05/31/2020 Category Scripts Demo https://codecanyon.net/item/zender-android-mobile-devices-as-sms-gateway-saas-platform/26594230  
×
×
  • Create New...