By agushalim
Hi i try to find way for user to register in my web. they just need to fill in their name,phone,email address and subdomain that need to create. this information will store in database and PHP will execute the command to create subdomain. is it possible to do that? my webhost control panel are not using cpanel , my domain i already point using DO DNS. thanks
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Pretty simple, but you’ll need to handle the coding part.
Example vhost config (written for CentOS 6.6)
<VirtualHost *:80>
ServerName users.your-domain.com
ServerAlias *.users.your-domain.com
#### This is where you put your files for that domain: /var/www/vhosts/c.jonsjava.com
DocumentRoot /var/www/vhosts/users.your-domain.com/
<Directory /var/www/vhosts/users.your-domain.com>
# This section sets directives for the directory.
# -Indexes <-- That blocks index listings on folders that don't have a default file (index.php/index.html/default.html/etc)
# FollowSymLinks <-- This will treat symlinks like they should be treated in linux: as folders/files in the folder the symlink resides
# MultiViews <--It's easier for you to read this: http://httpd.apache.org/docs/2.0/content-negotiation.html#multiviews
Options -Indexes FollowSymLinks MultiViews
# AllowOverride All <-- This is required for Apache HTTPD server to read .htaccess files. It says that you can have a per-folder override for apache directives
AllowOverride All
</Directory>
## Everything to see here. Just the log files. Good to use for troubleshooting errors.
CustomLog /var/log/httpd/users.your-domain.com-access.log combined
ErrorLog /var/log/httpd/users.your-domain.com-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
</VirtualHost>
$URL = $_SERVER[SERVER_NAME];
$user= str_replace(".users.your-domain.com","",$URL);
Now, you have the user. Just have your code configured to show that users page, or a 404 if it doesn’t exist.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.