Everything posted by Exascale
-
Hosting 3-4 domain names under one hosting package
Many of the large web hosting companies seem to offer the world and deliver peanuts as consumers and businesses alike wish to see value while experencing somewhat good customer service. There are many small web hosts who have experencied web professionals from DevOps or Programming backgrounds which can support and help your website acheive its potentional. N.B. all the big hosts care about is throwing as many customers on one server (small foot print) hence low cost and low quality of service.
-
Subdomains, Folders and DNS
You could of course setup a *.domain.com A record and have apache serve all requests via one VHOST and create a php file looking something like; if ($_SERVER['SERVER_NAME'] == 'subdomain1.domain.com' ) { echo 'Sub Domain 1'; }
-
Forbidden..on Apache server
Did you get this sorted in the end?
- switching hosts
-
DDOS attack problem..
Try CloudFlare its free....
-
DDOS attack problem..
[snip] Do not pimp your own services on this forum.
-
Forbidden..on Apache server
www-root if on ubuntu and apache on CentOS must have atleast group permissions on parent folders otherwise apache will be unable to serve the files.
- switching hosts
-
Cheap printing services
I went to staples an hour ago to find they will print 500 one sided business cards £4.99 thats a bargain!!!
-
Please review
Very nice website dude. Like the theme.
- The SSD bandwagon - jump on it!
-
Making a Site Ecommerce
How about Magento? Does everything you need out of the box and more plus there are loads of themes on the web to choose from.
-
How to find out if the site is penalized by google?
A good starting point to see how your website is performing within google would be Webmaster tools
- Exascale
-
Yell.com (Rip Off Websites)
Who is going to want to advertise in a paper book these days? Plus they try to sell you a premium advert on their website? Would your customers not just use Google?
-
Should i use the MVC way or not
I would recommend looking at Doctrine or Symfony to get a grasp of the various layers.
- Exascale
-
Heart Internet - worst customer services I have ever experienced
If you are to resell web hosting I would always recommend a dedicated setup as you dont really have control over the platform such as security patches etc.
- Exascale
-
Twitter Bootstrap?
Who is using the twitter bootstrap? Post your site up here...
-
Star rating in the meta description
Do many people use these? Do these tags have any relevent upon rankings within google?
-
Heart Internet - worst customer services I have ever experienced
I have a few concerns about these guys; - They offer unlimted bandwidth? - They offer unlimited storage? - Very low pricing? Storage nor bandwidth is unlimited this pricing model insinuates their policies will cap or ensure you do not exceed a 'predefined' acceptable tolerance. If you are to have unusually high traffic I presume they will suspend your account untill you put in place calming measures. You should be honest and up front with your customers.
-
Finding out the A Record for my current hosting
I also find www.network-tools.com a good website for checking everything DNS.
-
Uptime Monitoring
This is a cool service they can also push notify on iPhone and SMS if required
-
.htaccess rewrite exception?
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ app.php [QSA,L] </IfModule> SetEnv APPLICATION_ENV development <?php require_once __DIR__.'/../app/AppKernel.php'; define('ROOT_DIR',realpath(realpath(__DIR__.'/..'))); $app = new Kernel(); $app->dispacheRequest(); public function dispacheRequest() { $this->getMethodRoute('homepage'); $match = false; foreach($this->routes as $route) { if (!isset($route['pattern'])) { continue; } if (preg_match('/'.$route['pattern'].'/', $_SERVER['REQUEST_URI']) >0) { if (isset($route['headers'])) { foreach($route['headers'] as $header) { header($header); } } if (isset($route['include'])) { include ROOT_DIR.DIRECTORY_SEPARATOR.$route['include']; } $match = true; } } if (!$match) { header($this->routes['404']['headers'][0]); include ROOT_DIR.DIRECTORY_SEPARATOR.$this->routes['404']['include']; } } Try something like that? They are just snippets from a little framework I have started..