Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
Caustik
Don't want to sound offensive or anything, but you shouldn't need such a fancy error handler?
Anyway, good luck :P
Posted via Mobile Device
I like to do stuff the hard way. :thumbup1:
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
ησвяαιη
I like to do stuff the hard way. :thumbup1:
Errors shouldn't occur, so why spend lots of time styling them? :L
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
Hejula
Errors shouldn't occur, so why spend lots of time styling them? :L
So they look sexy!? :*:
http://f.cl.ly/items/1K2h3b0O1O032M2...49.45%20PM.png
Re: IndigoWEB [OOP, MySQL]
Yeah, bit of a problem at the moment...
I was drunk last night and I was fucking around on my computer, at the moment my computer is a mess and I am cleaning it up. I may have to start from scratch again but that's not a problem. I also am trying to find my backups at see if I can work from them but I doubt I will find them as they are on my External Hard drive which I lost a few days ago.
Sorry for the fuck up.
NOTE TO SELF
-Never go on the computer whilst fucked up.
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
ησвяαιη
Yeah, bit of a problem at the moment...
I was drunk last night and I was fucking around on my computer, at the moment my computer is a mess and I am cleaning it up. I may have to start from scratch again but that's not a problem. I also am trying to find my backups at see if I can work from them but I doubt I will find them as they are on my External Hard drive which I lost a few days ago.
Sorry for the fuck up.
NOTE TO SELF
-Never go on the computer whilst fucked up.
Where have I heard a similar story before? :ehh:
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
Caustik
Y U NO USE VERSIONING SYSTEM?
and that similar thing Manuel was talking about was your beerphp thingy
Posted via Mobile Device
Y U TALKIN LIKE DIS?!?
and y u no keep backups uploaded?
Posted via Windows 8 Hacker Edition
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
PowahAlert
Y U TALKIN LIKE DIS?!?
and y u no keep backups uploaded?
Posted via Windows 8 Hacker Edition
I have already told him that.
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
Kryptos
Where have I heard a similar story before? :ehh:
BeerCMS was when my computer fucked up, my computer has been entirely changed since then.
EDIT: FOUND MY EXTERNAL HARD DRIVE ;D
Quote:
Originally Posted by
PowahAlert
Y U TALKIN LIKE DIS?!?
and y u no keep backups uploaded?
Posted via Windows 8 Hacker Edition
I thought having them on an external hard drive was perfectly fine.
Finally found the password which I put on my External Hard Drive and turns out the entire drive has been wiped since I let my dad borrow it. (this was a few hours ago and I have been raging since then)
Currently I am working on the new files, fortunately I have the template engine saved so I can work from there. I will post some updates later.
Re: IndigoWEB [OOP, MySQL]
Y u all talk like me y all not chinese like me cannot talk like this
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
Muffmuncher
Y u all talk like me y all not chinese like me cannot talk like this
Dude, no need to be racist.
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
ησвяαιη
I thought having them on an external hard drive was perfectly fine.
It's better to upload them on your own website, which you know won't go down.
Re: IndigoWEB [OOP, MySQL]
Here is the brand new Initialize file:
The initialize file is where everything will be called from. It will define everything within IndigoWEB. It also helps clean up the global file, alot.
NOTE: This file is not finished.
PHP Code:
<?php
########################################################
# | IndigoWEB - An advanced Habbo CMS for IndigoEMU | #
########################################################
# | Copyright (c)2012 Ashley "nobrain" Davidson | #
# | http://baalhotel.com | http://jokohost.com | #
########################################################
# | IndigoWEB and IndigoEMU is registered under the | #
# | don't be a dick license. If you remove the | #
# | copyright to the original creator(s) you are | #
# | a dick. | #
# | http://philsturgeon.co.uk/code/dbad-license | #
########################################################
// ###########################################
// Secure this file.
if (!defined('IW'))
{
die("
<title>IndigoWEB: Access Denied!</title>
<center><h1>Page loading is forbidden!</h1></center>
");
}
// ###########################################
// Define the variables.
define(IW, null);
define(CONF, 'Configuration/');
define(CORE, 'Core/');
define(TEMP, 'Template/');
define(VIEW, 'Views/');
// ###########################################
// Require the files needed to run IndigoWEB
require_once CONF . 'system_configuration.php';
require_once CORE . 'system_core.php';
require_once TEMP . 'template_engine.php';
// ###########################################
// Define the required files.
$template = new IW_Template_Template_Engine();
$core = new IW_Core_Core();
?>
Re: IndigoWEB [OOP, MySQL]
Don't have:
PHP Code:
if(!defined(IW))
Before you define it.
Re: IndigoWEB [OOP, MySQL]
Quote:
Originally Posted by
ησвяαιη
Here is the brand new Initialize file:
The initialize file is where everything will be called from. It will define everything within IndigoWEB. It also helps clean up the global file, alot.
NOTE: This file is not finished.
PHP Code:
<?php
########################################################
# | IndigoWEB - An advanced Habbo CMS for IndigoEMU | #
########################################################
# | Copyright (c)2012 Ashley "nobrain" Davidson | #
# | http://baalhotel.com | http://jokohost.com | #
########################################################
# | IndigoWEB and IndigoEMU is registered under the | #
# | don't be a dick license. If you remove the | #
# | copyright to the original creator(s) you are | #
# | a dick. | #
# | http://philsturgeon.co.uk/code/dbad-license | #
########################################################
// ###########################################
// Secure this file.
if (!defined('IW'))
{
die("
<title>IndigoWEB: Access Denied!</title>
<center><h1>Page loading is forbidden!</h1></center>
");
}
// ###########################################
// Define the variables.
define(IW, null);
define(CONF, 'Configuration/');
define(CORE, 'Core/');
define(TEMP, 'Template/');
define(VIEW, 'Views/');
// ###########################################
// Require the files needed to run IndigoWEB
require_once CONF . 'system_configuration.php';
require_once CORE . 'system_core.php';
require_once TEMP . 'template_engine.php';
// ###########################################
// Define the required files.
$template = new IW_Template_Template_Engine();
$core = new IW_Core_Core();
?>
That's just plain messy why define all that if your only requiring a few files? if it was like 8 files yeah that validates it but 3 o.o?