stards
- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Comments
Recent activity by stards-
[quote="KostonConsulting, post: 1547852"> You could also write your own custom API module to gather this data: [url=http://docs.cpanel.net/twiki/bin/vief/SoftwareDevelopmentKit/WritingCpanelModules...
-
Hey there! Resources is the way to go for sure. The software running the older Applications site was causing some issues, so we just redirected that traffic to the Forums so it didn't land on a ...
-
I think
-
Hi @stards , For Cpanel events, you have to specify the API system in addition to the module/function, API::Module::function. For your case, this would be UAPI::Mysql::create_user. Additionally,...
-
Here is an example of writing an API call similar to what you are doing: [CODE=perl]package Cpanel::API::MyPlugin; use strict; use warnings; sub GetData { my ( $args, $result ) = @_; #...
-
Looks like the issue was the JSON coming from my priv code. JSON parsed it OK in the template but as a JSON value not an object. So I'm having to do recursive JSON parsing for each line. I'm hoping...
-
Thank you Lauren. Yes I've definitely browsed over the docs and tried various things. I used the TT vmethods split and match hoping to "extract" the individual items in a list. .split can only spl...