Need Help with Retro Please :D

jordansc1996

New Member
Jun 20, 2013
22
0
Okay! Well i Made a Retro Back in 2007 With V26 Useing Debbo And hamachi Blabla Then about 2009/2010 i Made a HoloCMS Retro and i shut it down after a While now im makeing a New Retro and i have done most of it but Now im so Clueless -_- Think im getting to old Lol!

Okay So first pic is this Annoying Bar on Every Page!! -_-
image1.png

Now 2nd How Do i Remove these?
image2.png

This Annoyes me the Most!
motd1.png

So i goto "Server_Settings" And change it....
motd2.png

And it says the same as last Picture Like WTF? Please Help a Brother Out XD
Tell me what todo or teamviewer me Please XD

Also iv Been Looking for Full Catalogs of customs i can only find Single Ones never any Big Lists/Files of them Thanks alot.

- Jay
 

HotelHoster

Member
Sep 19, 2013
35
3
Hello, for the welcome message what emu are you using because I had the same problem and fixed it my changing the message in one of the emulator files. Also make sure the new message you put in the table is actually saved.
 

jordansc1996

New Member
Jun 20, 2013
22
0
Hello, for the welcome message what emu are you using because I had the same problem and fixed it my changing the message in one of the emulator files. Also make sure the new message you put in the table is actually saved.
My EMU Is Pheonix 3.7.1 and i Fixed "Welcome message"
 

Rastaberry

Rooster 4 president 2k14
Dec 3, 2010
247
29
I'd rather recommend you to use 3.11.0 the latest version better secured and is way better and your able to update it without losing any data.

Verstuurd van mijn GT-I9070 met Tapatalk
 

HotelHoster

Member
Sep 19, 2013
35
3
I'd rather recommend you to use 3.11.0 the latest version better secured and is way better and your able to update it without losing any data.

Yes I would agree. Here is a download link for Phoenix 3.11.0 for if you don't have one:
 

AaidenX

Member
Jun 30, 2012
261
29
say :update_settings or something say :commands to update it :]

For the first error, it suggests you not to use mysql_* functions as they are deprecated, and suggest you to translate your code to MySQLi or PDO. To start off, in mysqli,

$db = new mysqli("host", "username", "password", "database");

For PDO

$config = array (
'host' => 'host here',
'username' => 'username',
'password' => 'password here',
'dbname' => 'dbname here'
);

$db = new PDO("mysql:host=' . $config['host'] . ';dbname=' . $config['dbname'], $config['username'], $config['password']);

But they say to refrain from
mysql_connect(); as all mysql_* are deprecated and soon might not permanently work.

For the news comments problem, when you are using mysql_num_rows(); you must have one resource and one boolean, for example, mysql_num_rows($variable, $config);

here your variable would be your query and config would be your mysql_connect();
 
Last edited:

Users who are viewing this thread

Top