-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature soap logs view #119
base: master
Are you sure you want to change the base?
Conversation
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Outdated
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Outdated
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Outdated
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Outdated
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Outdated
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Outdated
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/SoapLogs.php
Outdated
Show resolved
Hide resolved
tooltipTriggerList.forEach(function (tooltipTriggerEl) { | ||
return new bootstrap.Tooltip(tooltipTriggerEl) | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for-of should be better of forEach in terms of performance
tooltipTriggerList.forEach(function (tooltipTriggerEl) { | |
return new bootstrap.Tooltip(tooltipTriggerEl) | |
}); | |
for (const tooltipTriggerEl of tooltipTriggerList) { | |
new bootstrap.Tooltip(tooltipTriggerEl); | |
}; |
...ordpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/SettingsController.php
Outdated
Show resolved
Hide resolved
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Manager/Soap/AcoreSoap.php
Show resolved
Hide resolved
this feature is very good, thanks a lot! 🚀 |
I just push fixes and changes. |
...rdpress/wp-content/plugins/acore-wp-plugin/src/Components/AdminPanel/Pages/ElunaSettings.php
Show resolved
Hide resolved
except that raf code that has been removed, the rest seems ok to me thanks for this logging feature, it will be useful 🚀 |
If you can check if buy an item from the store works fine, then I can merge it, but I want to have a double check. |
tested char rename service and it worked but sending an item does not work, I receive an mail in the mailbox but empty, with no items :/ |
@Helias did the log show anything related? |
srv/wordpress/wp-content/plugins/acore-wp-plugin/src/Manager/Soap/MailService.php
Outdated
Show resolved
Hide resolved
I fixed both problems |
if you confirm that you tested it we can merge this PR. So, hope you tested at least one service with sending item via mailbox and one service like |
@Helias I'm not been able to retest the commands, do to some troubles in my pc with the core. Sorry for the late response. |
Don't worry, If I will have time I'll test it |
Goal
List some SOAP commands executed from de CMS in favor to have more information in case of some purchase fails or something wrong happens.
Features
Proposed changes
Code
AC-CMS ADMIN