-
Posts
364 -
Joined
-
Last visited
-
Days Won
90
Content Type
Profiles
Forums
Downloads
Everything posted by XFallSeane
-
Intersect CMS Rework V2 is finished ! Upgrade guide [FR] https://github.com/Thomasfds/intersect-cms-unleashed/wiki/Upgrade-V1-to-V2-[FR] Upgrade guide [EN] https://github.com/Thomasfds/intersect-cms-unleashed/wiki/Upgrade-V1-to-V2-[EN]
-
do you have the BSC database created in phpmyadmin? Preferably use lowercase words for databases.
-
Can you share me preferences.php file pls ? Database test_rpg exist ?
-
Laragon is simply create a folder in the folder www. Restarting laragon. On your browser access to site from http://foldername.test I now recommend version 2 of the cms (by me)
-
Laragon software for a web server and a local database simply and quickly (simple and efficient)
-
On Windows rather use Laragon it is simpler enlargement
-
You have to create a folder with the cms files in it, that's what you did, right?
-
When u click to "Applications" what is displayed?
-
Story Today I did this on my project...
XFallSeane replied to SkywardRiver's topic in Design & Creativity
Today I completed version 2 of the Intersect CMS. I completed the administration with the possibility of having more details on the accounts and linked characters. -
And in local not working ? The error is problem to connect your local database.
-
Hi, Did you correctly fill in the information in application / App / preferences.php?
-
Good morning all ! The version is almost ready, I am looking to be able to do the ban / unban / mute / unmute system directly from the administration but I have a problem so I leave aside for the moment. I create the translation files, check all the essential codes and version 2 will be available. Screen of admin detail account with 1 max character per account With more one max character per account : When i click on "Detail" (modal bug from extension ^^ )
-
The password is correct. I am running on the latest version of intersect 0.7.11 On version 6.x it was already not working. I had to switch to the "Manage Password" version of the API each time. My code is simple => if (isset($password) && !empty($password) && isset($newPassword) && !empty($newPassword)) { if (password_verify($password, $this->getUser()->getPassword())) { $user = $userRepo->find($this->getUser()); if ($user) { if ($newPassword === $passwordConfirm) { $data = [ 'new' => hash("sha256", $passwordConfirm), ]; if ($api->changePasswordAccount($data, $this->getUser()->getId())) { $user->setPassword(password_hash($passwordConfirm, PASSWORD_ARGON2ID)); $entityManager = $this->getDoctrine()->getManager(); $entityManager->persist($user); $entityManager->flush(); $this->addFlash('success', $translator->trans('Votre mot de passe a été modifier')); return $this->redirectToRoute('account'); } else { $this->addFlash('error', $translator->trans('Une erreur s\'est produit.')); return $this->redirectToRoute('account'); } } } } } I have removed authorization from $ data because I am not using this endpoint as it does not work. My method => public function changePasswordAccount($data, $user_id) { $user = $this->APIcall_POST($this->getServer(), $data, $this->getToken(), '/api/v1/users/' . $user_id . '/manage/password/change'); if (isset($user['Message']) && $user['Message'] == "Authorization has been denied for this request.") { $this->setToken(); $user = $this->APIcall_POST($this->getServer(), $data, $this->getToken(), '/api/v1/users/' . $user_id . '/manage/password/change'); } if($user['Message'] == "Password Updated." || $user['Message'] == "Password Correct"){ return true; }else{ return false; } } Nothing's easier I have tried with php and even with POSTMAN nothing the endpoint always returns invalid credentials.
-
Hi, this api password change endpoint => https://docs.freemmorpgmaker.com/en-US/api/v1/endpoints/users.html#change-password return always "invalid credentials". I respect what is asking in the doc (new and auhtorization) $data = [ 'new' => hash("sha256", $passwordConfirm), 'authorization' => hash("sha256", $password) ]; But the endpoint return "invalid credentials". Any idea to corrected this problem?
-
Hello everybody ! I was able to advance in the development of version 2! I have finalized the following systems: Read an article New "My account" page: VIP Shop Connection system Registration system: Admin page management Admin news management Admin store management Admin management of the various parameters Reloading of VIP credits Translation system My account" page change email My acount page change password My account" page Transaction history I am currently doing : Admin transaction history Admin list of user accounts (kick, ban) Forgotten password system I have create a upgrade patch for mysql database and it's worked fine. When all running systems are finished, I rewrite the installation documentation, I write an upgrade documentation v1.x to v2.0 and I make V2 available to everyone. I will then work on two plugins (separate): Support ticket Forums These two plugins will have their installation files and their individual patch.sql If anyone wants to test v2 locally before release, come private so I can send you the new files once everything is done (to actually test the whole thing).
-
This is totally feasible but if there are more than 300 items to recover via the api it will make 3 requests needed not counting the one for cities and others. Unless you are patient, and you develop locally the necessary database, so create a table with default all the items of the game divided into category (consumable equipment etc. ) and then you can write yourself something for each item yes it's doable. But the query time can be extremely long if the list exceeds 300 objects. The server api sometimes takes quite a long time to load. The most convenient way would be to extract the data directly from the database in json and read it in a dedicated page to insert into the database only the elements that do not yet exist. Full of possibilities, you just need to know how to do them. Full of possibilities, you just have to know how to do them. For this version, it will only have the files to replace and edit a few fields in database I'll try to create something simple enough to do it. I'm also trying to see a built-in update system directly on the cms to simplify the whole thing. But it might not be available at the moment. In the first version of version 2 it will not have installers yet. In the next few I think I'll integrate one.
-
Hello everyone! Good news, the item shop is now complete. I've optimized the system and updated the character selection based on their in-game inventory. If the inventory of the selected character is full, it cannot be selected in the select. More security to avoid the purchase of items that will never arrive in their inventory. I will start the administration part related to the item shop. Design improvement and general optimization during additions and modifications. Some screen of the new design in admin ! V2 Progression : Added functionality to activate or not the "Game" and "Wiki" menu pages. Item shop is finished All API requests in a single file, can be reused simply and quickly according to your needs!
-
Hello everyone! I picked up a programming today, I'm starting the item shop system ! When item shop system is finished and administration pages is ready for first V2 version (Design optimization and more for all pages) I would start the media system to display screenshots, videos directly on a page. My goal was to create plugins that everyone could use and more, but I think it is so much easier to natively integrate all updates directly to the cms without plugins ^^
-
Yes it's a good framework and it simplifies the creation of the administration space to 300%! I have no news to share with you, I've been sick since Thursday, so I haven't touched a line of code since ^^ '
-
Symfony, I am much more specialized in this framework and could therefore suggest much more important things on it =)
-
I would say maybe around a month or two, I am developing two separate versions, currently I am preparing the version for DBZS which will serve as the basis for the public version. But don't panic, the DBZS version does not have much modification so, as soon as I have finished this version, I remove the exclusive additions and I test and then I deliver the new version to you! Installation (new as an upgrade) will be quick and easy. No big change in the database and you just need to configure one or two additional files to have the new version operational. I have finished the player list pages, connected player list, general rankings, credit reload page, the news system and the page system is soon finished If you have any questions now is the time!
-
Hello everyone, Here is some news from version 2. I have started the administration, the news and pages parts are finished. I'm working on the rest of the features as quickly as possible ^^
-
Hello everyone ! Something new on version 2 (with the new framework). I did about 40% of the work, the "List of players", "Connected players", "Ranking by level", "My profile", "Home", "View an article" pages are already finished. Some optimizations are underway on the player list page (a caching of this page that will be updated daily. I need your opinion ! I think removing the characters from the banned accounts from the character list and ranking. But currently, too many elements have to be taken into account and the page loading time if we want to remove the characters from the accounts banned from the lists is 10 seconds, i.e. 3x higher than the average of 3 seconds maximum. The API should take into account natively these elements but I have never touched C # and I admit not being keen on getting started ^^
-
Intersect Rework V1 is available for all and very simple to set up! Thank you for your encouragement! Version two (under the new Framework of the hit) will be more efficient, the translation will be completely revised and will be the basis of the cms. All current features will be available on the new version (more efficient) I'm trying to make the basics of version two (design integration) the rest will be simple to make a copy paste with some fix
-
Hi guys, some news ! The PHP framework used on the cms being too complicated to maintain currently I am redoing the entire CMS on a new framework, simpler and more secure for me! No big update will be necessary to be able to use the next version of the CMS. I make sure that only the files have to be replaced, the database was already solid, it won't change much. The change of PHP Framework will therefore sign the rebirth of the CMS to start again on a new basis. It shouldn't take too long to get the new version available to you so I'm doing my best to get it to you asap! I u want support me follow this link Rework on the new Framework : Design integration : 80% Homepage : 100% Ranking page : 0% Players list page : 100% Online player list (two separate page now !) : 100% Account_page : 100% History page : 0% Credits vip page : 0% Admins page : 0% Login : 100% Register : 100% NewTranslation :5% ReadNews page : 100% SEO For all Page : 0%
