Difference between revisions of "PMSS:Setting welcome page whitelabeling for resellers"

From Pulsed Media Wiki
(fixed typo in the sample script)
(executing script info)
Line 21: Line 21:
 
</pre>
 
</pre>
  
then just execute that script as root on the seedbox server.
+
then just execute that script as root on the seedbox server. ie, if saved as makeVendor.php: php makeVendor.php

Revision as of 18:52, 17 March 2013

You can setup some basic whitelabeling rather easily for welcome page.

Save into /etc/seedbox/config/vendor serialized array with name and pulsedBox. Default array is:

$vendorDefault = array(
    'name' => 'Pulsed Media',
    'pulsedBox' => true
);

Where pulsedBox is a boolean determining if to show pulsedBox information (this will probably automated in future) and name is what to display in "Welcome to your ...." title.

More options will be added as per requested.

To save this array you can do a script like this:

<?php
$vendorData = array('name' => 'MySeedbox', 'pulsedBox' => false);
file_put_contents('/etc/seedbox/config/vendor', serialize($vendorData));

then just execute that script as root on the seedbox server. ie, if saved as makeVendor.php: php makeVendor.php