need step by step instruction on plugin

terry

Verified User
Joined
May 24, 2005
Messages
30
Hi guys i need a step by step instruction on how to do a plugin at a reseller panel? Can any kind souls help me out please??
 
cd /usr/local/directadmin/plugins
mkdir plugin_name
cd plugin_name

mkdir hooks
cd hooks
vi reseller_txt.html
Put your link in this file

save/exit
cd ..
mkdir reseller
cd reseller
vi index.html
Put your plugin code in this file and additional files within this directory

vi plugin.conf
Put the following in it
Code:
name=[b]plugin_name[/b]
id=[b]plugin_id[/b]
author=[b]Your Name[/b]
version=1.0
update_url=
active=yes
installed=yes

cd ..
chown -R diradmin:diradmin *
chmod 755 reseller/*
 
Last edited:
Back
Top