greekhand Posted April 24, 2010 Share Posted April 24, 2010 Hi, I'd like to start a piad CMS service ... Something like this : sitebuilder.trafficmedia.com/ResellerPackage.aspx I know it a lot of questions ... I hope u guys can help me here with the technical stuff ... I know php and some basic hosting stuff... This is what I want to achieve : * The user can create his own site (sub-domain at first) - Like with WP. * Then he can use his own regular domain to point into my server or IP ... ( To see his site with his own domain ) * I need to set limits to each site ... Limit of disk size , in bandwidth . * I want all the process to be made by the users ... Without me opening each account in the cPanel and set limits . MY QUESTION : 1 ) In order to achieve everything above I can use a reseller package or I need to have my own servers ? 2 ) How do I let the user point into my IP address and display his content ? 3 ) How do I set the limits of disk space and bandwidth ? Thanks. Link to comment https://forums.phpfreaks.com/topic/199572-need-help-with-my-new-project/ Share on other sites More sharing options...
jamesxg1 Posted April 24, 2010 Share Posted April 24, 2010 1 ) In order to achieve everything above I can use a reseller package or I need to have my own servers ? 1A) I would advice dedicated server, but it will work on reseller. 2 ) How do I let the user point into my IP address and display his content ? 2A) Domain re-direct, can be done via the domain control panel. 3 ) How do I set the limits of disk space and bandwidth ? 3A) Maybe have a db row per user that will add the amount of space used and dis allow more content if they have reached your set space. if($row['usedspace'] == 16000) { echo 'you have no space left.'; } else { echo 'do action'; } James. Link to comment https://forums.phpfreaks.com/topic/199572-need-help-with-my-new-project/#findComment-1047597 Share on other sites More sharing options...
greekhand Posted April 24, 2010 Author Share Posted April 24, 2010 Thanks James ... 2 ) I know how the user can re-direct his domain to my server ... My question was : How can I code that I'll show the user the right content ... the urls should be SEO friendly -> hxxp:...com/my-page.html - So after the domain will point into my server ... I need to be able to show him the content ... 3 ) For each file the user will upload I'll put on his own folder ... So then I can check the size of the folder via code , right ? But I do I check the bandwidth ? Again ty for your answer . Link to comment https://forums.phpfreaks.com/topic/199572-need-help-with-my-new-project/#findComment-1047734 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.