Jump to content
[MUST READ] Forum Rules ×

Santiago

Senior Members
  • Posts

    191
  • Joined

  • Last visited

Everything posted by Santiago

  1. By the way the ssl part in my version occupies one more column in the table hosting_ssl to save the private key
  2. My version doesn't have is script callback yet, so don't configure the callback urlMy version doesn't have the callback script yet, so don't configure the callback url
  3. I know what the problem may be, have you already configured the callback url? The callback url is: https://yourdomain.com/callback/Callback.php
  4. If you want you can try my version of MOFHY Lite maybe the error will be fixed, I doubt it as the code is almost the same
  5. If you have suggestions or problems you can open a issue on github
  6. Soon I will be updating it, since updates to the original version have been released, but it is already stable and secure, it can be used in production
  7. I do not want to do SPAM but I recommend my multi language version of MOFY Lite https://github.com/santydesignscr/MOFHY-Lite-Multi-Language
  8. Hello everyone, I now update my MOFHY Lite repository, and I now have release the multi language edition, see that in: https://github.com/santydesignscr/MOFHY-Lite-Multi-Language
  9. Now I have the Multi Language Working in (santyhost.ga), but I will upload when is finished
  10. I will yo translate it to Spanish, make some changes to the installer and upload to a GitHub (I keep the single english or spanish edition)
  11. I am seraching a homepage template to add to the project and upload to github
  12. The truth is I am testing it in the Hosting that I had sent you, but I am going to test it in SantyHost, I made some modification in the installer and now you only need to edit the language file
  13. After giving it a lot of thought and testing, I have found that it is better to perform 2 installations of MOFHY Lite using the same database in different directories and replace all the occurrences of to your clientarea url (example: https://santyhost.ga/en/clientarea/) (I do that whith VS Code) <?php echo $AreaInfo['area_url'];?> In one of the installations And use this code to swich the languages <?php $lang = "en"; $allowedlangs = array( "en", "es" ); if (!empty($_GET["lang"])) { $rlang = $_GET["lang"]; } else if (!empty($_COOKIE["lang"])) { $rlang = $_COOKIE["lang"]; } if (isset($rlang) && !empty($rlang) && in_array($rlang, $allowedlangs)) { $lang = $rlang; setcookie("lang", $lang,time()+31536000); } $langmaps = array( "en" => "/en", "es" => "/es" ); header("Redirecting to the Site"); header("Location: https://santyhost.ga$langmaps[$lang]"); exit; ?> You need to give a url on your site whith this estructure yourdomain.com?lang=en, (Replace en whith the language to be set whit the link) And you need to edit the final of the file whith your domain
  14. Now the SSL generator is updated, now I am working in the multi language system
  15. Hi everyone, I have created a MOFHY Lite repository in Spanish and English, I will be adding any update in the original repository, I am working in the multi-language system when I have it I will transfer the repository to @Shen Wei My repository: https://github.com/santydesignscr/MOFHY-Lite-Multi-Language
×
×
  • Create New...