Eric Archer

Registered
Sep 29, 2002
2
0
151
Is it possible for us to &brand& a CPanel theme without getting too deep into programming?

If so, is there a guide available?

We have no wish to take it further than a simple branding logo, really.

We have years of HTML and graphics skills, but little Linux, but can turn our hands to anything not too complex!

Regards,
 

cass

Well-Known Member
Jul 17, 2002
349
0
166
Argentina/USA/Mexico
copy : /usr/local/cpanel/base/frontend/default to /usr/...d/yourtheme

on SSH as ROOT: (or use Midnight Commander ;) )
# cd /usr/local/cpanel/base/frontend/
# cp -R default yourtheme
# cd yourtheme/images/

Here you have a image called &cptop1.jpg&
download it to your computer, modify it or make a new one...

then upload the image again in the same place :
/usr/local/cpanel/base/frontend/yourtheme/images/cptop1.jpg

now, change the theme of some user to &yourtheme&.
and you'll see your branded CPANEL :)
(replace yourtheme with some other name you want ...)

I think is not hard to make this... dont you? ;)
 

TRAIN YARD SOFTWARE

Well-Known Member
Dec 20, 2001
222
0
316
is there a way to add another login?
e.g domain.com/host
domain.com/tys

like domain.com/cpanel
 

itf

Well-Known Member
May 9, 2002
620
0
316
[quote:1608ef8078][i:1608ef8078]Originally posted by TRAIN YARD SOFTWARE[/i:1608ef8078]

is there a way to add another login?
e.g domain.com/host
domain.com/tys

like domain.com/cpanel
[/quote:1608ef8078]

it is possible add these to your /etc/httpd/conf/httpd.conf file (you can modify bold text as you wish)

# http://domain.com:2082 or http://domain.com/tys

ScriptAlias [b:1608ef8078]/tys[/b:1608ef8078] /usr/local/cpanel/base/redirect.cgi

# https://domain.com:2083 or https://domain.com/securetys

ScriptAlias [b:1608ef8078]/securetys[/b:1608ef8078] /usr/local/cpanel/base/sredirect.cgi

# http://domain.com:2086 or http://domain.com/host
ScriptAlias [b:1608ef8078]/host[/b:1608ef8078] /usr/local/cpanel/base/whmredirect.cgi

# http://domain.com:2087 or http://domain.com/securehost
ScriptAlias [b:1608ef8078]/securehost[/b:1608ef8078] /usr/local/cpanel/base/swhmredirect.cgi
 

TRAIN YARD SOFTWARE

Well-Known Member
Dec 20, 2001
222
0
316
[/quote]

it is possible add these to your /etc/httpd/conf/httpd.conf file (you can modify bold text as you wish)

# http://domain.com:2082 or http://domain.com/tys

ScriptAlias [b:c30dec0544]/tys[/b:c30dec0544] /usr/local/cpanel/base/redirect.cgi

# https://domain.com:2083 or https://domain.com/securetys

ScriptAlias [b:c30dec0544]/securetys[/b:c30dec0544] /usr/local/cpanel/base/sredirect.cgi

# http://domain.com:2086 or http://domain.com/host
ScriptAlias [b:c30dec0544]/host[/b:c30dec0544] /usr/local/cpanel/base/whmredirect.cgi

# http://domain.com:2087 or http://domain.com/securehost
ScriptAlias [b:c30dec0544]/securehost[/b:c30dec0544] /usr/local/cpanel/base/swhmredirect.cgi[/quote]

Can these be added? thus leaving access using /cpanel and others also?
 

itf

Well-Known Member
May 9, 2002
620
0
316
[quote:28b6ffd1ec][i:28b6ffd1ec]Originally posted by TRAIN YARD SOFTWARE[/i:28b6ffd1ec]

[/quote:28b6ffd1ec]

it is possible add these to your /etc/httpd/conf/httpd.conf file (you can modify bold text as you wish)

# http://domain.com:2082 or http://domain.com/tys

ScriptAlias [b:28b6ffd1ec]/tys[/b:28b6ffd1ec] /usr/local/cpanel/base/redirect.cgi

# https://domain.com:2083 or https://domain.com/securetys

ScriptAlias [b:28b6ffd1ec]/securetys[/b:28b6ffd1ec] /usr/local/cpanel/base/sredirect.cgi

# http://domain.com:2086 or http://domain.com/host
ScriptAlias [b:28b6ffd1ec]/host[/b:28b6ffd1ec] /usr/local/cpanel/base/whmredirect.cgi

# http://domain.com:2087 or http://domain.com/securehost
ScriptAlias [b:28b6ffd1ec]/securehost[/b:28b6ffd1ec] /usr/local/cpanel/base/swhmredirect.cgi[/quote]

Can these be added? thus leaving access using /cpanel and others also?
[/quote]YES
 

Eric Archer

Registered
Sep 29, 2002
2
0
151
Many thanks for the info...looks a doddle, as I thought it should be, really ;)