Sponsored Content
Full Discussion: White labelling
Top Forums Web Development White labelling Post 302950934 by steve matthews on Thursday 30th of July 2015 07:35:30 AM
Old 07-30-2015
White labelling

I am looking to whitelist a corporate financial website to brokers who can re-sell our products.

A commonly cited approach is to clone the codebase and sub-domain it for each client which will allow for their own
media assets and any bespoke programming. The big downside here is maintaining multiple copies of the cloned code base.

Another approach is to use an iFrame of our site within the brokers's sites.

However by creating an alias or symlink of sub domain folders to the original domain enables you to pick up the
sub domain in the request and serve the appropriate content.

Doing this will probably mean a few extra bits in the database to accommodate this extra functionality -
updates are rolled out automatically since changes to the code only happen in one place.

Are there better ways of doing this and what issues might you see with my suggestions ?

All comments welcome ..
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

deleting white spaces

How would I delete white spaces in a specified file? Also, I'd like to know what command I would use to take something off a regular expression, and put it onto another. ie. . . . expression1 <take_off> . . . expression2 (put here) . . . Any help would be great, thanks! (10 Replies)
Discussion started by: cary530
10 Replies

2. Shell Programming and Scripting

Two or more white spaces in string

Hi, Can anybody suggest me how to combine two strings with two or more white spaces and assign it to a variable? E.g. first=HAI second=HELLO third="$first $second" # appending strings with more than one white spaces echo $third this would print HAI HELLO Output appears... (2 Replies)
Discussion started by: harish_oty
2 Replies

3. Shell Programming and Scripting

stripping white space...

Hi All; Having a problem with a file.. the file contains the following data... (a snapshot) 1331F9E9DB7C2BB80EAEDE3A8F043B94,AL7 1DZ,M,50 186FDF93E1303DBA217279EC3671EA91,NG5 1JU,M,24 3783FFAF602015056A8CD21104B1AAAF,CH42 4NQ,M,17 It has 3 columns sepreated by a , the second column... (7 Replies)
Discussion started by: Zak
7 Replies

4. UNIX for Dummies Questions & Answers

SED with White Space

Dear Members, Suppose i have a variable test which stores a string as below: test='John drives+++++++++a+++++car' now i want to use sed on the above variable and replace + with a white space, so that i get echo $test should give me 'john drives a car' Between... (1 Reply)
Discussion started by: sandeep_1105
1 Replies

5. Shell Programming and Scripting

Leading white spaces

Hi, I am having problem in deleting the leading spaces:- cat x.csv baseball,NULL,8798765,Most played baseball,NULL,8928192,Most played baseball,NULL,5678945,Most played cricket,NOTNULL,125782,Usually played cricket,NOTNULL,678921,Usually played $ nawk 'BEGIN{FS=","}!a... (2 Replies)
Discussion started by: scripter12
2 Replies

6. Shell Programming and Scripting

sed + white space

Hi, What sed command (if sed is the right command) can remove ALL white space from my file. I have a csv, except I want to remove all white space between commas and characters. My idea (without testing) sed 's/ //g' Is there a better way? (18 Replies)
Discussion started by: mcclunyboy
18 Replies

7. UNIX for Dummies Questions & Answers

filename with white space

our user creates a text file with a white space on the filename. this same file is transfered to unix via automation tool. i have a korn shell script that reads these files on a input directory and connects to oracle database to run the oracle procedures which will load the data from each of the... (2 Replies)
Discussion started by: wtolentino
2 Replies

8. What is on Your Mind?

I want to be a white-hat hacker!

HI, i want to be a white hacker(those who use their skills in ethical hacking) for that what all languages do i need to know i am working in an IT company and its paying me well, i just want to learn it because it has always attracted me..i know c,c++,shell,little bit html what else do... (13 Replies)
Discussion started by: shekhar_4_u
13 Replies

9. Shell Programming and Scripting

Add white space

hi guys how can i add spacein file name with sed if strings have no space around dash input 19-20 ( 18-19 ) ABC-EFG output after add white space 19 - 20 (18 - 19 ) ABC - EFG thx in advance (2 Replies)
Discussion started by: mhs
2 Replies
advfs_rmfset(3) 					     Library Functions Manual						   advfs_rmfset(3)

NAME
advfs_rmfset - Removes a fileset or a clone fileset SYNOPSIS
#include <sys/advfs_syscalls.h> int advfs_rmfset( char domain, char fileset ); LIBRARY
AdvFS Library (libadvfs) PARAMETERS
Specifies the name of an existing AdvFS file domain. Specifies the name of the fileset to be removed from the specified file domain. DESCRIPTION
This function removes an AdvFS fileset from the named file domain. Once you have removed a fileset using this function, the fileset and its files are not recoverable. The only way to restore the fileset and its files is by using a backed up version of the fileset. RESTRICTIONS
This function only removes AdvFS filesets; it does not remove UFS file systems. The program that calls this function must be running with root privileges. A fileset or clone fileset cannot be removed with this function if it is mounted. A fileset that has a clone fileset cannot be removed with this function until the clone fileset has been removed. RETURN VALUES
The function returns a value of 0 (zero) on successful completion. The function returns a value of -1 on failure and sets the value of errno to the specific error. ERRORS
The function sets errno to the specified errors for the following failure conditions: The calling program is not running with root privi- leges. The AdvFS lock for domain could not be acquired because one of the following operations was already running on the domain: balance, defragment, rmfset, or rmvol. This fileset is still mounted; it must be unmounted before it can be removed. This fileset has a clone fileset, which must be removed before this fileset can be removed. An I/O error occurred on one of the disks in the file domain. One or both of the names for the fileset and the domain are NULL or set to . The file domain specified by the domain parameter does not exist. The fileset specified by the fileset parameter does not exist in the file domain specified by the domain parameter. There is not enough memory available for the operation. SEE ALSO
Commands: rmfset(8) Functions: advfs_clonefset(3) advfs_rmfset(3)
All times are GMT -4. The time now is 12:33 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy