Tuesday,

Tutorials in egHyip

Search:

Tutorials in egHyip:

 

The updates: Add new Payment Gateway: EGOPAY Add new Withdrawal Gateway: EGOPAY Add new language translation: Spanish Improvement with the Html design and PSD templates are included in the package. and other small fixes and improvements to the core source and plugins   How to update: -. To use EGOPAY payment & withdrawal module: Payment module: Upload /includes/plugins/payment/egopay/ Withdrawal module: Upload /includes/plugins/withdrawal/egopay/ -. To use Spanish language translation: Upload /languages/es.inc.php and /languages/es.php Upload /themes/spanish/ Go to Admin control panel then enable the spanish language -. To update the improvement: Replace eg_license.php  


1. Unzip the distribution of the script. To do this you will need an unzipping utility. 2. Copy your license file (eg_license.php) to script folder 3. Using your favorite FTP client or webhosting control panel file manager, upload all files to root folder of your website. Depending on your hosting,it may be named "public_html", "www", "mainwebsite_html", "htdocs" or something like that. 4. Browse to http://www.yourdomain.com/install.php 5. Follow Web Based Setup script instructions;   If the setup script requires, the following folders must be made writeable for the script:    * eghyip/files/    * eghyip/pictures/     * eghyip/config_inc.php     This usually means CHMOD to permission 707, 770 or 777. Which one will depend on your server configuration. Try 707, if you get an error in the installation procedure you can change it to 777. Please do chmod only if the setup script requires. 6. Once you get "Setup Fi...


1. Make sure you have make a complete backup of your current files. 2. Download the newest version then replace old php files and html templates with the newest version except config_inc.php, because we will not reinstall the software 3. Then run "upgrade.php" (yourdomain.com/upgrade.php) to upgrade the database structures 4. Login to Admin then reconfigure the investment plan and make sure you turn on Investment processing -> Pay Profit/ ROI 5. Go to Crontab area Management -> Cron job and make sure the cron job has been setup correctly and run automatically on the server. It is recomended to run the task for every hour or every 2 hours. You can also set to any specific hour per day and the impact is with the profit processing, because on version 2.2 is need the cron task to process investment calculation. So, if the cron task not run then the investment profit will not paid and other investment task will not performed. 6. Run a test for at least 24 - 48 hours to see if all is OK...


egHyip Server Requirements are: 1. A webserver with php 5 or higher (If you're curious about what version you have, run the tester.php script which comes with this release)2. ionCube Loader is required by PHP3. CURL must be installed and be compiled into PHP4. Php GD Library5. Php register_globals = off6. MySQL7. You must have sendmail or Smtp installed If you are unsure whether your hosting meets these requirements, please contact your host company for confirmation.


To change your website design, you need to edit html templates file with your favorite html editor software. If you haven't got the html editor software, you can download it free on downloads page. Finding the Templates The templates which determine the appearance of the front end (that parts is visible to users) are located in the folder "themes/language_name/" . The templates which determine the appearance of the Admin Control Panel are located in "themes/language_name/admin" folder. Example: English language: "themes/english" and "themes/english/admin" Indonesia language: "themes/indonesia" and "themes/indonesia/admin" Melayu language: "themes/malaysia" and "themes/malaysia/admin"   Customizing Header and Footer Files To change header/menu/and footer design, you only need to do editing on file page_index.html which is placed in themes folder. Example: Frontpage: "themes/english/page_index.html" Member area: "themes/english/member_index.html" Admin area:...


All frontend (user-side) messages are located in a single file and can be easily translated. It is even possible to enable several languages and user will be able to choose interface language while navigating on egHyip pages. How To Translate messages? Go to egHyip/languages/ folder. You will see existing language files.  Copy file en.php to, for example it.php (use your language common abbreviation)  Copy file en.inc.php to, for example it.inc.php (again use common abbreviation instead of it)  Edit file it.inc.php using your favorite text editor. Replace en, English, USA to appropriate values example:                         $GLOBALS['_lang']['it'] = array(                   'id' => 'it',  //language code        &...


egHyip is a multi-languages program. For easy translation, all phrases/messages for customer side of egHyip are contained within language files inside egHyip/languages/ folder. If you would like to change text that is displayed, do the following: Open file for your language in egHyip/languages/ folder, for example for English language it will be file named egHyip/language/en.php Now open file egHyip/language/en.php and using text search to find a phrase you would like to replace. For example, you want to replace text "Register" on signup page to "Join". Line in en.php will be : define ('_BUTTON_REGISTER', 'Register »'); then change to: define ('_BUTTON_REGISTER', 'Join »'); More example: define ('_BUTTON_ADD_MEMBER', 'Add member »'); change to: define ('_BUTTON_ADD_MEMBER', 'Register member »'); Now visit the registration page http://www.example.com/eghyip/join.php page and you should see changed text. If not, make sure you have uploaded ...


Payment plugins folder are located at "eghyip/includes//plugins/payment/". To create a new payment plugin do the following: Copy "banking" folder to the new bank's name, for example "hsbc" Rename files : 1. banking.inc.php to hsbc.inc.php 2. banking.php to hsbc.php Open hsbc.inc.php with your favorite text/php editor, and replace "banking" words using text replace (replace all) to "hsbc" Example: add_paysystem_to_list( array( 'paysys_id' => 'hsbc', 'title' => get_config_value('payment_hsbc_name') != ''?get_config_value('payment_hsbc_name'):'HSBC Bank Transfer', 'description' => 'HSBC Bank Transfer', 'public' => 1, 'enable' => get_config_value('payment_hsbc_enable')) ); Open hsbc.php with your favorite text/php editor, and replace "banking" words using text replace (replace all) to "hsbc" Example: $db = get_config_values( 'payment_hsbc_name, payment_hsbc_holder, payment_hsbc_number, payment_hsbc_info, payment_hsbc_enable, payment_...


Withdrawal plugins folder are located at "eghyip/includes/plugins/withdrawal/". Do the following: Copy "banking" folder to the new bank's name, for example "hsbc" Rename files : 1. banking.inc.php to hsbc.inc.php 2. banking.php to hsbc.php Open hsbc.inc.php with your favorite text/php editor, and replace "banking" words using text replace (replace all) to "hsbc" Example: add_withdrawsystem_to_list( array( 'paysys_id' => 'hsbc', 'title' => get_config_value('withdrawal_hsbc_name') != ''?get_config_value('withdrawal_banking_name'):'HSBC Bank Transfer', 'description' => 'Manual withdrawal', 'enable' => get_config_value('withdrawal_hsbc_enable' ))); Open hsbc.php with your favorite text/php editor, and replace "banking" words using text replace (replace all) to "hsbc" Example: $db = get_config_values( 'withdrawal_hsbc_name, withdrawal_hsbc_holder, withdrawal_hsbc_number, withdrawal_hsbc_info, withdrawal_hsbc_enable, withdrawal_hsbc_fe...


You must create a POST form point to "members.php?pa=payment", and include the following form values: 1. paysys = "alertpay" or "paypal" or "libertyreserve" or "accountbalance" 2. do = "payment" The paysys value is the payment plugins name. You may find the name in "/includes/plugins/payment".


Pages: 123

 

Popular Tutorials:


Testimonial

Gilles Sagot from Canada:
 Hello Sir, I would like to thank you very much for the excellent support you gave us. I had a big problem with the paypal subscription fonction. I tried to solve that problem alone but I wasn't able. I sent my problem to the support team website. And surpise, less than 48 hours were needed to improve all my settings for that great script. One more time, thank you ... I can know sell my products. Best regards Gilles 

Latest News

April 29, 2024:
egMember version 2.0 has been released. egMember v2.0 is a completely new software with so many new features and improvements such as: Php upgrade - Now PHP 8++ New 3 Mobile friendly templates/ Responsive Web Design Multi Membership Packages with unique configuration for each membership Powerful Bonus Options such as Unilevel bonus, Sponsor bonus, X-Up bonus, Reward point, Ranks and Pool rewards Now you can sell or offer Unlimited Articles & Downloads with multi categories and unique configurations 33 payment plugins, now supporting Bitcoin/Crypto payments, Banks, Credit cards, mobile wallet and many more Improvements with Membership Security such as IP Validation, Browser Agent Validation, Login PIN, Secure/ SSL Login, Transaction PIN Advanced mailing system: Mass email and Auto responder/ Auto follow up with configuration to send to specific users/ members or specific membership type Improvements with email and text notification. Now you can send text notification by SMS or Whatsapp directly to members mobile phone. Advanced Genealogy Tree to see downlines with easy way Improvements with ePin system for registration and member sponsoring Improvements with I... 
January 27, 2024:
An update of egMLM + Revenue Sharing is available (v1.1). egMLM + Revenue Sharing is getting better with improvement and new features such as: Improvement with Member Area security Improvement with new member Regular matrix placement Improvement with Templating system Improvement with Binary Genealogy Tree Improvement with Add downline on page Binary Genealogy Tree Fix problem with email validation on new member registration And other improvements and fixes, please visit demo of egMLM + Revenue Sharing to see more.   Download your copyThe update is available to download in your account area and update instruction is available in product tutorials. Please log in to your account area to access them.   Best regards, EGN Software 
June 16, 2023:
A new version of egMLM now available, The current version is 2.0 and egMLM is better with improvement and new features such as: New account functions: Add new options in Admin area on Downgrade members and Delete members, Admin can choose how the system manage the position in the network. New Network configuration: New member position in Binary Network, now Admin can configure the default option for new members position in the Binary tree: Automatic Outer Left or Right, Automatic Pair Left/Right, Position Left or Position  Right New withdrawal plugin: Metamaskwallet - Working with Binance Smart Chain and the custom tokens New template: Template4, New layout position and work with multi language features provided by gtranslate.io, so your website will work with many language translation. And other improvements and fixes, please visit demo website to see more...   Download your copyThe update is available to download in your account area and update instruction is available in product tutorials. Please log in to your account area to access them.   Best regards, EGN Software 
March 24, 2022:
We are pleased to release a new software in lineup of EGN's products: egMLM + Revenue Sharing egMLM + Revenue Sharing is a Multi Level Marketing Software that you use to build your Network Marketing Business/ MLM business and also provide Revenue Sharing or Investment Plans to your members on the same website. egMLM + Revenue Sharing allow you to configure custom networking pay plans and compensation rule such as Binary plan, Pairing bonus, Matching bonus, Unilevel matrix, Revolving matrix, Regular matrix, Pool bonus, Reward bonus, Pass-up bonus, Sponsor bonus, Reward point, etc. egMLM + Revenue Sharing is also  includes necessary features like Advanced Revenue Sharing Program with configurable and unlimited plan, Multi Membership/ Enrollment packages, E-wallet, managing distributors & downline members, Ranks, handling MLM leads, processing commissions & payouts, track sales volumes, statistics, ePIN, eCopupon, ecommerce/Online Shop/ Shopping cart and many more. Product's details please click here... To visit demo site, please click here...   Good luck for your business and Best regards, EGN Software  
March 12, 2022:
A new release of egMLM now available, The current version is 1.9 and egMLM is better with improvement and new features such as:   New design for Frontpage, Admin area and Members area - Now look better with Mobile/ Responsive template design 4 new free templates with new and unique design New template "Members Only" : to use egLM to manage members only and use wordpress or other CMS software as the frontpage Change the php version requirement to version 7.2 or higher Ready to work with Mobile App (In development progress) New payment plugin: Payex - Malaysia payment gateway ( https://www.payex.io ) New payment plugin: Paytm - India's largest mobile payments and commerce platform New payment plugin: Nowpayments - Receive online payments in crypto New payment plugin: Metamaskwallet - Working with Binance Smart Chain and the custom tokens New look of Genealogy Trees, look better and responsive design. Correction with Cron task timing Add more option to enable/run feature Revolving Matrix Update PHPMailer to the latest version available Update many functions to run more efficiently and upgrade security functions And many other improvements and fixes, please ... 

Accepted Payments