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

January 7, 2013
Febry Fadly from Jakarta:
 Script4Profit adalah SATU-SATUNYA Penyedia dan pembuat System Program yang PALING SAYA percaya untuk membuat project-project bisnis yang saya jalankan Mereka punya KECEPATAN PELAYANAN & KEJENIUSAN dalam merealisasikan seperti apa yang kita mau, Saya sudah berkali-kali menggunakan layanan mereka dan semua keinginan saya dapat diwujudkan oleh mereka dengan BAIK dan TANPA ERROR sedikitpun LUAR BIASA!!! Jangan salah pilih, Script4Profit adalah yang anda perlukan !! 

Latest News

August 4, 2025:
We are happy to announce you that the newest version of egMLM is now available. The newest version is v2.4 and its comes with functions: Now working with PHP 8.2 Improvement with Clean URL functions Improvement string input and processing Improvement with online store checkout process Improvement with Rank rewards function & layout Improvement with Pool rewards function & layout Improvement with member tags for editing mails and contents Fix problem with email validation on new member registration Improvement with Admin & Member dasboard security Improvement with Templating system Improvement with Email sending And other improvements and fixes, please visit demo of egMLM 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 - Your best partner to build your success online business   
July 28, 2025:
We are happy to announce you that the newest version of egMLM with Revenue Sharing is now available. The newest version is v1.3 and its comes with functions: Now working with PHP 8.2 Improvement with Clean URL functions Improvement string input and processing Improvement with reward points Improvement with Rank rewards function & layout Improvement with Pool rewards function & layout Improvement with online store checkout process Improvement with member tags for editing mails and contents Fix problem with email validation on new member registration Improvement with Admin & Member dasboard security Improvement with Templating system 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 - Your best partner to build your success online business   
July 22, 2025:
We are happy to announce you that the newest version of egMLM with Advertisements is now available. The new version is v.15 and its comes with functions: Now working with PHP 8.2 Fix problem with email validation on new member registration Improvement with new member Regular matrix placement Fix problem with Pool bonus distribution New improved Admin and members dashboard Added BNB Smart Chain Metamask Wallet so total 30 payment plugins now available Improvement with error reporting Security patches for members area and admin area Improvement with TinyMCE content editor Improvement with Rank reward and Pool rewards Improvement with error reporting And other improvements and fixes, please visit demo of egMLM + Advertisement 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   
February 12, 2025:
An update of egMLM + Revenue Sharing is available (v1.2). egMLM + Revenue Sharing is getting better with improvement and new features such as: Now developed with PHP 8 Clean URL for frontpage & online store areas Improvement with design of Admin & Members dashboard, Frontpage and Store areas. Many new payment plugins and new method of payment method New method of withdrawal request to add more security Function to send text message by SMS or WhatsApp Text Message Security improvement on the shopping cart and the payment options. Security patches for members area and admin area Improvement with all Genealogy Trees Improvement Revolving matrix & Regular matrix Improvement with Revenue Sharing functions Improvement with TinyMCE content editor Improvement with Email Auto Follow Up Improvement with Admin functions & details Improvement with menus Improvement with Online store Improvement with error reporting 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 lo... 
January 22, 2025:
An update of egMLM now available, The current version is 2.3 and egMLM is better with improvement and new features such as: Now work with PHP 8 Clean URL for frontpage areas Improvement with design of Admin & Members dashboard, Frontpage and Store areas. Many new payment plugins and new method of payment method New method of withdrawal request to add more security Function to send text message by SMS or WhatsApp Text Message Security improvement on the shopping cart and the payment options. Security patches for members area and admin area Improvement with all Genealogy Tree Improvement with error reporting Improvement with TinyMCE content editor Improvement with Email Auto Follow Up Improvement with Admin functions Improvement with menus 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  

Accepted Payments