stards
- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Activity overview
Latest activity by stards-
stards commented,
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 ...
-
stards commented,
I think
-
stards created a post,
https://applications.cpanel.net points to this forum. Is it gone for good?
Hi, The catalog is no longer there. It's an alias for the forums here. Is there any place for us indie developers who create plugins for cPanel? What other options are out there? Thanks
-
stards commented,
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,...
-
stards created a post,
cPanel event not triggering the execution of my script. Am I doing it wrong?
Hi, I'm using the manage_hooks script to hook into some MySQL related events like Mysql::create_user and Mysql::delete_user among others. Here's the one-liner I'm running: /usr/local/cpanel/bin/...
-
stards commented,
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 ) = @_; #...
-
stards commented,
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...
-
stards commented,
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...
-
stards created a post,
Template Toolkit + UAPI execute(). How load the data?
Hi I'm having a hard time manipulating data returned by execute (priv escalation). Here's the call: result_set = execute("MyPlugin", "GetData", {"user" => CPANEL.user, "uapi_paginate_size" =>CPAN...
-
stards commented,
[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...