-
Also, when a user registered it doesn't seem to create a home for them either, i cannot save changes in the homes nor cancel them. I also cannot access the inventory and shop, yes, all the Java files are linked up.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
In Housekeeping , On the create new news page ,there's no Image picture (story images) .
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
PrinceOren
In Housekeeping , On the create new news page ,there's no Image picture (story images) .
Same story here.
Heheh, get it? Story? Topstory? lololololol
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
FullmetalPride
Homes not working for me either.
I can't figure out why I can't restore my items to their previous state. I inserted my room, the room model, and the items. They all correspond, but the emu says it's crashing out. Fuck you, Phoenix...
Anyone come accross anything like this?
You know I'm having this EXACT problem too.
I imported my DB from my old RevCMS and changed a few things to get it working. Everything works except random peoples rooms. And not everyone is effected, let's say 1 out of 20 people have 1 room that phoenix "crashes out" on.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
Jares
You know I'm having this EXACT problem too.
I imported my DB from my old RevCMS and changed a few things to get it working. Everything works except random peoples rooms. And not everyone is effected, let's say 1 out of 20 people have 1 room that phoenix "crashes out" on.
There are quite a few errors with this CMS. Hoping to see a fix for them as soon as possible, especially the homes.
Off-topic; Check your exceptions and see what item id is crashing out and use this query
Code:
DELETE FROM `items` WHERE `base_id` = 'ID CRASHING OUT HERE';
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
I've been going through the files, and although this is a great release, there is too much "stuff" that is just not needed to be included.
For example, in tpl/ , there are heaps of useless .BAK files, and other little files that no one will need to use.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Anyone have a fix for the news images / some HK pages?
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
about houskeeping News article no image problem all i did was, went to Allseeingeye\pages\newspublish.php and went to line 92 ( if ($handle = opendir(CWD . '/images/ts')) ) and changed the '/images/ts' to '../images/ts' this also apply to newsedit.php but on line 132, Hope it helps o,o
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
I don't like this Code style, but okay...
so far
Yannici
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Please update your Flash Player to the latest version.
You can install and download Adobe Flash Player here: Install flash player. More instructions for installation can be found here: More information
urghh...
help me to fix this
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
You need to configure your SWFs Sholomon.
Issue Report:
It doesn't sign you out when you login from another computer, so you could be signed on two computers at the same time. This also applies to the client.
That's a big issue you need to fix. I mean huge. :l All other CMSs have this fixed.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
FullmetalPride
You need to configure your SWFs Sholomon.
Issue Report:
It doesn't sign you out when you login from another computer, so you could be signed on two computers at the same time. This also applies to the client.
That's a big issue you need to fix. I mean huge. :l All other CMSs have this fixed.
The emulator shouldn't let you login from two computers on the same account.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
iHarrison
The emulator shouldn't let you login from two computers on the same account.
The problem is the CMS, not the Emulator. I'm enabling Secure Sessions atm to try and fix this problem.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Jonty, have you abandoned this thread as you haven't been replying for days?
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Badge shop SQL anyone?
About to port PhoenixPHP's shop.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
>> PROBLEM <<
Now I used NGIX . then the client loaded done.. then it brings me to flash client error :(
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
sholomon25
>> PROBLEM <<
Now I used NGIX . then the client loaded done.. then it brings me to flash client error :(
Is your emu on? Are your vars/productdata/furnidata set up all correctly?
Quote:
Originally Posted by
JoshuaLuke
Jonty, have you abandoned this thread as you haven't been replying for days?
I've been busy with my hotels and the 2.0.1 release :)
Badge Shop SQLs
Web Hosting < link
Code:
DROP TABLE IF EXISTS `badge_shop`;
CREATE TABLE `badge_shop` (
`badge_id` varchar(6) NOT NULL,
`cost` int(100) NOT NULL,
KEY `badge_id` (`badge_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `badge_shop` VALUES ('WEED01', '10000');
INSERT INTO `badge_shop` VALUES ('NYAN01', '15000');
INSERT INTO `badge_shop` VALUES ('BHT', '20000');
INSERT INTO `badge_shop` VALUES ('USO', '15000');
INSERT INTO `badge_shop` VALUES ('NL067', '15000');
INSERT INTO `badge_shop` VALUES ('NL035', '15000');
INSERT INTO `badge_shop` VALUES ('NL064', '15000');
INSERT INTO `badge_shop` VALUES ('BR7', '20000');
INSERT INTO `badge_shop` VALUES ('BR130', '25000');
INSERT INTO `badge_shop` VALUES ('BR115', '200000');
INSERT INTO `badge_shop` VALUES ('BR126', '15000');
INSERT INTO `badge_shop` VALUES ('CNY01', '15000');
INSERT INTO `badge_shop` VALUES ('RA11', '20000');
INSERT INTO `badge_shop` VALUES ('HOSP1', '25000');
INSERT INTO `badge_shop` VALUES ('HOSP2', '25000');
INSERT INTO `badge_shop` VALUES ('USC', '50000');
INSERT INTO `badge_shop` VALUES ('XM6', '50000');
INSERT INTO `badge_shop` VALUES ('CA4', '25000');
INSERT INTO `badge_shop` VALUES ('FR033', '25000');
INSERT INTO `badge_shop` VALUES ('UK114', '25000');
INSERT INTO `badge_shop` VALUES ('IT062', '25000');
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
Jonteh
Is your emu on? Are your vars/productdata/furnidata set up all correctly?
I've been busy with my hotels and the 2.0.1 release :)
Badge Shop SQLs
Web Hosting < link
Code:
DROP TABLE IF EXISTS `badge_shop`;
CREATE TABLE `badge_shop` (
`badge_id` varchar(6) NOT NULL,
`cost` int(100) NOT NULL,
KEY `badge_id` (`badge_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `badge_shop` VALUES ('WEED01', '10000');
INSERT INTO `badge_shop` VALUES ('NYAN01', '15000');
INSERT INTO `badge_shop` VALUES ('BHT', '20000');
INSERT INTO `badge_shop` VALUES ('USO', '15000');
INSERT INTO `badge_shop` VALUES ('NL067', '15000');
INSERT INTO `badge_shop` VALUES ('NL035', '15000');
INSERT INTO `badge_shop` VALUES ('NL064', '15000');
INSERT INTO `badge_shop` VALUES ('BR7', '20000');
INSERT INTO `badge_shop` VALUES ('BR130', '25000');
INSERT INTO `badge_shop` VALUES ('BR115', '200000');
INSERT INTO `badge_shop` VALUES ('BR126', '15000');
INSERT INTO `badge_shop` VALUES ('CNY01', '15000');
INSERT INTO `badge_shop` VALUES ('RA11', '20000');
INSERT INTO `badge_shop` VALUES ('HOSP1', '25000');
INSERT INTO `badge_shop` VALUES ('HOSP2', '25000');
INSERT INTO `badge_shop` VALUES ('USC', '50000');
INSERT INTO `badge_shop` VALUES ('XM6', '50000');
INSERT INTO `badge_shop` VALUES ('CA4', '25000');
INSERT INTO `badge_shop` VALUES ('FR033', '25000');
INSERT INTO `badge_shop` VALUES ('UK114', '25000');
INSERT INTO `badge_shop` VALUES ('IT062', '25000');
Yes I turned on my Emu before opening the client .... I use Phoenix 3.7.1 ...
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
sholomon25
Yes I turned on my Emu before opening the client .... I use Phoenix 3.7.1 ...
Not sure then mate, I use Butterfly Emu, sorry :(
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
is there anyway to solve client flash error ? XDD
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Well, im kinda noob with uber cms. can someone help me with this?
Quote:
Originally Posted by
Jonteh
Not sure then mate, I use Butterfly Emu, sorry :(
where can i get butterfly emu ? :L
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
So now you've made a return I have two questions:
Can you release us the homes fix?
When will 2.0.1 be coming?
Regards
Josh
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Could anyone help me Who use Phoenix Emu to UberCMS 2 ..
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
How do I set a default value, when I register it says profiel_stijl doesn't have a default value..
Anyone know how to set one?
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
Jonteh
Is your emu on? Are your vars/productdata/furnidata set up all correctly?
I've been busy with my hotels and the 2.0.1 release :)
Badge Shop SQLs
Web Hosting < link
Code:
DROP TABLE IF EXISTS `badge_shop`;
CREATE TABLE `badge_shop` (
`badge_id` varchar(6) NOT NULL,
`cost` int(100) NOT NULL,
KEY `badge_id` (`badge_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `badge_shop` VALUES ('WEED01', '10000');
INSERT INTO `badge_shop` VALUES ('NYAN01', '15000');
INSERT INTO `badge_shop` VALUES ('BHT', '20000');
INSERT INTO `badge_shop` VALUES ('USO', '15000');
INSERT INTO `badge_shop` VALUES ('NL067', '15000');
INSERT INTO `badge_shop` VALUES ('NL035', '15000');
INSERT INTO `badge_shop` VALUES ('NL064', '15000');
INSERT INTO `badge_shop` VALUES ('BR7', '20000');
INSERT INTO `badge_shop` VALUES ('BR130', '25000');
INSERT INTO `badge_shop` VALUES ('BR115', '200000');
INSERT INTO `badge_shop` VALUES ('BR126', '15000');
INSERT INTO `badge_shop` VALUES ('CNY01', '15000');
INSERT INTO `badge_shop` VALUES ('RA11', '20000');
INSERT INTO `badge_shop` VALUES ('HOSP1', '25000');
INSERT INTO `badge_shop` VALUES ('HOSP2', '25000');
INSERT INTO `badge_shop` VALUES ('USC', '50000');
INSERT INTO `badge_shop` VALUES ('XM6', '50000');
INSERT INTO `badge_shop` VALUES ('CA4', '25000');
INSERT INTO `badge_shop` VALUES ('FR033', '25000');
INSERT INTO `badge_shop` VALUES ('UK114', '25000');
INSERT INTO `badge_shop` VALUES ('IT062', '25000');
Thanks! Also, how do I change the link to facebook? It's sending me to Habbo.VG's facebook. I config'd my Facebook account properly, but it's still sending me to Habbo.VG's account.
Also, anyone know how I can add a little request line that'll show requests in Housekeeping?