-
Posts
2,642 -
Joined
-
Last visited
-
Days Won
68
Uridium last won the day on April 28
Uridium had the most liked content!
Recent Profile Visitors
15,658 profile views
Uridium's Achievements
-
Today my discord account was comprimised and i cant gain entry to it Ive contacted Discord they say they are looking into iet if anyone has wizwych on your discord what was my user ID on there was just wizwych or wizwych with numbers at the end cheers guys Ive had no choice but to close my old account down fecking hackers ive lost a lot of work on that account all because some prick wants to prove something inbox me if you want my updated discord account info
- 1 reply
-
- 2
-
-
Damn my first ever working script for mccodes on ctiminalexistence forums back in the day ๐ soon to be 17 years
-
Ive noticed in most code script that ive posted that have URL linkages is wrong and displays [url.] instead of the usual <a href this might have occured when the forums where changed over so Im hoping to fix most of them
-
These Bots are getting clever
-
So its 2025 and we are at PHP 8.4 but whch version of MCCODES will pass the PHP 8 test.. we have 3 contenders MCC V2.0.5b From the MCCODES official site MCC V2.5 REDUX From the MCCODES official site (Which wont be reviewed cos I dont have a copy) or the now FREE V2 version from Github..... I will be using xampp running php 8.2 for these tests they will comprise of installation, First Login, Adapting older files First off the MCC V2.0.5b From the MCCODES official site ---------------------------------------------------------------------------------- Straight out of the box it was easy to unzip to a folder on xampp I went to localhost/mccodes/installer.php (why they couldnt let the index.php file tell if the install had already done is beyond me and if not installed grab the installer.php for you) but you have to type installer.php or MCCODES throws a wombly fit. As you can see above you have no choice but to ask for installer.php Once you do add the installer.php your met with the installer program which looks ok so we will start adding all our data on all them lines all lines filled time to press INSTALL Oh thats not good wheres the confirmation that tells you config file created success to Database and the cronjob links Well moving on to the next version the FREE github version FREE GITHUB VERSION i will follow same steps as before ----------------------------------------------------------------------- INSTALLATION same situation as the above there is nothing to tell if the config file exists and if not move on the installation on to the installation page the installer page has shifted to the far left of the page.. It somewhat installed it failed but it nearly got there I checked my Database and the dbdata.sql was inserted and the config.php file was created however no new user was added to the DATABASE and no mention of the cron setups SO NEITHER ACTUALLY INSTALLED But why not lets start with the GITHUB version (only cos this is an easy fix) I will mention that after the install failed I removed all files and folders and sent back a fresh copy of both Engines so lets start with GITHUB VERSION (how to fix the issue) ------------------------------------------------------------------------ $db->query( "INSERT INTO `users` (`username`, `login_name`, `userpass`, `level`, `money`, `crystals`, `donatordays`, `user_level`, `energy`, `maxenergy`, `will`, `maxwill`, `brave`, `maxbrave`, `hp`, `maxhp`, `location`, `gender`, `signedup`, `email`, `bankmoney`, `lastip`, `lastip_signup`, `pass_salt`, , `display_pic`, `staffnotes`, `voted`, `user_notepad`) VALUES ('{$ins_username}', '{$ins_username}', '{$e_encpsw}', 1, 100, 0, 0, 2, 12, 12, 100, 100, 5, 5, 100, 100, 1, '{$adm_gender}', " . time() . ", '{$ins_email}', -1, '$IP', '$IP', '{$e_salt}', '', '', '', '')"); Did you spot it in the code above. if you didnt go to line 471 which looks like `lastip_signup`, `pass_salt`, , `display_pic`, `staffnotes`, `voted`, `user_notepad`) and remove the exta , that has no real reasoning for being there Now lets see if the installer works SUCCESS the thing has installed ๐ and is working on PHP 8.2 And there you are So what can be done to make it easier well first off get the index script to work out if the config file has been written if its not there then grab the installer no need for people to type installer.php into the url bar add this to your index.php file before the <?PHP $install = 'installer.php'; if (file_exists($install)) { include('installer.php'); exit(); } for the failed installer.php if you cant be bothered altering it use the file beflow installer.php For the MCCODES mainsite version lets just say there was an extreme amount of editing to make it work more on the function error_php and the mention of MAGIC_QUOTES
-
Sounds pretty good ๐
-
Which translates to My name is Julia and I am passionate about UI/UX design. I have basic knowledge of HTML and CSS and love creating icons, logos and illustrations. I have created several websites as personal projects, always trying to combine aesthetics and functionality. In my work, I use tools like Illustrator, Photoshop, Figma and Zeplin. Lately, I have been exploring AI-powered design solutions. I find it fascinating how AI can streamline and improve creative workflows. Currently, I am focused on improving my typography skills and better understanding how fonts affect brand perception. I recently discovered an amazing tool that generates fonts in seconds, a fun way to experiment with different styles and see how typography shapes your visual identity. I know I still have a lot to learn, but I am enjoying every step of this journey and can't wait for my passion to turn into a real career. I am excited to exchange ideas and connect with other designers!
-
it wasnt just that.. The registration doesnt work when viewing Tickets the timestamps doesnt work have you actually tried this on a version LESS that 8.2 nobody has 8.4 yet http://www.mtg.wizwych.co.uk
-
i'll wait for you to update the above even after finally gettng the installer to work the apache_setenv became an issue on the pdo.class.php file changed apache_setenv($key, $value); to getenv($key, $value); still same issue on both Fatal error: Uncaught TypeError: getenv(): Argument #2 ($local_only) must be of type bool, string given in /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/pdo.class.php:69 Stack trace: #0 /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/pdo.class.php(69): getenv() #1 /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/pdo.class.php(44): database->setConnDetails() #2 /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/pdo.class.php(322): database->__construct() #3 /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/pdo.class.php(388): database::getInstance() #4 /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/dbcon.php(77): require_once('/home/DOMAINc/...') #5 /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/header.php(6): require_once('/home/DOMAINc/...') #6 /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/index.php(3): require_once('/home/DOMAINc/...') #7 {main} thrown in /home/DOMAINc/domains/mtg.DOMAIN.co.uk/public_html/inc/pdo.class.php on line 69 Finallly got it to install and run had to comment out a few parts on the pdo file but its up and running at last it now runs on php 8.2 upwards
-
My host doesnt have 8.4 even xampp is 8.3
-
Downloaded the new copy Stuck at the first Hurdle the install line 22 line 22 = private string $configFile { set { $this->configFile = $value; } } error is Parse error: syntax error, unexpected token "{", expecting "," or ";" PHP version 8.3 tried on 7.4 error still exists
-
Welcome onboad Ollie ๐
-
That nearly worked ๐ then I had another error Fatal error: Uncaught Error: Typed property Paginator::$return must not be accessed before initialization on line 110 which is for ($i = 1; $i <= $this->num_pages; ++$i) { $this->return .= ($i == $this->current_page) ? '<div class="pure-u-1-24 disabled"><a class="pure-button button-xsmall pure-button-disabled" href="#" disabled>'.$i.'</a></div>' : '<div class="pure-u-1-24"><a class="pure-button button-xsmall" href="'.$_SERVER['PHP_SELF'].'?page='.$i.'&ipp='.$this->items_per_page.$this->querystring.'">'.$i.'</a></div>'."\r\n"; } so back to square one After a long and tedious struggle i managed to fix the script
-
im not familiar with PDO but im getting this error on the tickets page as well as every other page that uses the paginator Fatal error: Uncaught Error: Typed property Paginator::$querystring must not be accessed before initializatio if ($_GET) { $args = explode('&', $_SERVER['QUERY_STRING']); foreach ($args as $arg) { $keyval = (array)explode('=', $arg); if ($keyval[0] !== 'page' and $keyval[0] !== 'ipp') { $this->querystring .= '&'.$arg; } } } its on line 71 which read as $this->querystring .= '&'.$arg; any help would be fab