-
Posts
156 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by JakeB
-
I think the slow upload speed is because of the server I used to test. When I'm uploading things, I usually get around 10-15Mb/s
-
That's pretty cool, I did something kinda like that with a few friends when I was in high school. It was loads of fun lol
-
All of our prices have been adjusted for a limited time! Buy now and keep the price for life!
-
You can also get pokki for windows 8. It replaces the start menu, and is free (although, it is a bit different than the normal windows start menu)
-
Unfortunately, that isn't a plan we offer, but we do have lean and mean! http://dodok.in/pricing.php
-
@srachit I don't know what you're talking about ;) @a_bertrand We changed our prices, i just forgot to update this post Also, if you sign up for quarterly billing, you will pay $10 for 3 months, which averages out to about $3.33/month For monthly billing we have just added a new offer, get your first month of hosting 100% free, just use the promotion code WD6OYHR67T!
-
Dodokin is a newly launched web hosting service aimed at providing our customers with high quality and low maintenance hosting. Our hosting require no work on your end (unlike other hosts), it just works! Dodokin is located within the Servint datacenter for maximum security. Currently, we have two plans. We like to keep things simple, dead-simple. There are no gimmicks or marketing schemes. There's a price and a short list if what you get, nothing to confuse you, nothing to make you think too hard. Our services may be on the expensive side but we like to think quality rather than quantity (amount of customers stuffed on one server). This means, we won't be overstuffing our servers like our competitors because that kind of behavior is unacceptable. Although, we would like to provide the users of MakeWebGames a special discount for our first 5 customers. Use the coupon code 'kickstart' for 50% off for your first two months! That means you can try our services for only $3 (the average price of a 2-liter bottle of soda)! We highly recommend you look into utilizing Dodokin for your next website, we'll gladly help :). Dodokin web hosting service - starting at $4 a month!
-
Someone who is "very well educated" on a subject would be more likely to at least say what the "holes" are instead of just saying that they exist. Just saying they exist does not help anybody with anything... That's like if your car doesn't start and someone just says "It doesn't work." How is that going to help fix the problem?
-
Hey, sorry I never got a chance to reply, I'm still on my deployment >.< So i don't get much time to relax haha, but yes I am fine with you re-licensing your changes with a different license as long as you keep the ezrpg credits in the files on the ones that still have some original code in them
-
Is LTE just now being introduced to the UK? It's been here since like 2009. I have a 4G LTE wifi hotspot and get 85-90MB/s download and 10MB/s up. It's faster than a lot of DSL and cable based 'nets around here.
-
Just wondering if anybody here is from Mississippi, or more specifically the biloxi/gulfport area. I'm about to PCS to Keesler AFB for some training and just wanted to know what there is to do in the area.
-
Then maybe instead of just saying that a host doesn't have the "stuff" you need, maybe you should say what you needed in the first place, otherwise nobody is going to be able to help you... Dedi/vps: esecuredata.com (what i use for my server), 1and1.com shared: bluehost.com, hostgator.com, 1and1.com free: don't use, it's crap.
-
Just use google. There are literally MILLIONS of results for a simple search for what you want.
-
Read the post above yours spud. For some reason zeggy just did include config.php even though init.php is being included from a different directory (so some configurations of php were trying to load ezrpg/admin/config.php), so i fixed it by using the CUR_DIR constant in the include path.
-
Replace your init.php with the following if you use xampp: <?php //This page cannot be viewed, it must be included defined('IN_EZRPG') or exit; //Start Session session_start(); //Headers //header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 //header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past //Show errors? //Constants define('CUR_DIR', realpath(dirname(__FILE__))); define('MOD_DIR', CUR_DIR . '/modules'); define('ADMIN_DIR', CUR_DIR . '/admin'); define('LIB_DIR', CUR_DIR . '/lib'); define('EXT_DIR', LIB_DIR . '/ext'); define('HOOKS_DIR', CUR_DIR . '/hooks'); require_once CUR_DIR.'/config.php'; (SHOW_ERRORS == 0)?error_reporting(0):error_reporting(E_ALL); require_once(CUR_DIR . '/lib.php'); //Database try { $db = DbFactory::factory($config_driver, $config_server, $config_username, $config_password, $config_dbname); } catch (DbException $e) { $e->__toString(); } //Database password no longer needed, unset variable unset($config_password); //HTML Purifier Config $purifier_config = HTMLPurifier_Config::createDefault(); $purifier_config->set('HTML.Allowed', 'b,a[href],i,br,em,strong,ul,li'); $purifier_config->set('URI.Base', $_SERVER['DOCUMENT_ROOT']); $purifier_config->set('URI.MakeAbsolute', true); $purifier_config->set('URI.DisableExternal', true); $purifier = new HTMLPurifier($purifier_config); //Smarty $tpl = new Smarty(); $tpl->template_dir = CUR_DIR . '/smarty/templates/'; $tpl->compile_dir = CUR_DIR . '/smarty/templates_c/'; $tpl->config_dir = CUR_DIR . '/smarty/configs/'; $tpl->cache_dir = CUR_DIR . '/smarty/cache/'; //Initialize $player $player = 0; //Create a hooks object $hooks = new Hooks($db, $tpl, $player); //Include all hook files $hook_files = scandir(HOOKS_DIR); foreach($hook_files as $hook_file) { $path_parts = pathinfo(HOOKS_DIR . '/' . $hook_file); if ($path_parts['extension'] == 'php' && $path_parts['basename'] != 'index.php') include_once (HOOKS_DIR . '/' . $hook_file); } //Run login hooks on player variable $player = $hooks->run_hooks('player', 0); ?>
-
That's odd because i had that problem before, but I was pretty sure I fixed it in 1.0.2, because it works fine on xampp for me :\ I'll have to look into it more. Are you using the latest version of xampp?
-
PHP is processed on the server side, so there is no way for a browser to cause code to be visible, the only way php code would be visible is if you stuck it into a .html file (and even then it might not, depends on how your server is configured) or to forget the <?php tags. Just sayin'
-
What version of ezRPG are you using? This was a problem in ezRPG v1.0.1, it should have been fixed in 1.0.2
-
Nobody is going to take you seriously when you talk like that. "enermy" wtf is that? "cpannel" "untill" "becuse" "it becuse the reason why it" wtf.. I seriously don't think you actually live ANYWHERE in England, or any other English speaking country for that matter. Nobody who is 20 and speaks english talks like that..
-
lol, good point, and do you really? How old are you?! and i 20. -something a 4 year old would say. differntly -wat.
-
Are you sure you are from an English speaking country? Or are you just ten?
-
I hope to god the site you were referring to wasn't "http://www.thomaspwjenner.co.uk/". If so, nobody would want in it, at all. And even if they did, there couldn't be any vulnerabilities in your site as it is just a couple HTML files, the only way in would be via the server (on what is probably free hosting, as I see no reason someone would pay for hosting for that)
-
-
You've helped tons more people than I have, xD. I can't do crap now because my power has been out since last friday, and it won't be back until around next friday. fuckin wind. -_-
-
You shouldn't need jQuery to do this. just do table #idtable1 tr:even{ background-color: #F4F4F8; } table #idtable1 tr:odd{ background-color: #EFF1F1; }