-
Quote:
Originally Posted by
ѕнαнєєм
I forget how I fixed that but just use google chrome for debugging. Load your page and press F12 then click on the network tab. Now post a message in the guestbook and see what file is missing.
Sent using Tapatalk
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
leenster
I forget how I fixed that but just use google chrome for debugging. Load your page and press F12 then click on the network tab. Now post a message in the guestbook and see what file is missing.
Sent using Tapatalk
http://****.nl/myhabbo/guestbook/preview
http://i49.tinypic.com/25p4vup.png
-
Quote:
Originally Posted by
ѕнαнєєм
Not sure but you could look in the htaccess to see what file it's looking for.
Sent using Tapatalk
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Yep you need to edit your `users`
class.users ?
or users table in database ?
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
DaiMinzz1
class.users ?
or users table in database ?
database.
Quote:
Originally Posted by
leenster
Not sure but you could look in the htaccess to see what file it's looking for.
Sent using Tapatalk
I dont get it. I don't even have a /myhabbo/guestbook/preview @ my wwwroot
<rule name="Imported Rule 72">
<match url="^/myhabbo/guestbook/preview(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/myhabbo/guestbook/preview.php" />
</rule>
That doesn't work either.
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Anybody know the sql to fix cmd_update_texts?
-
1 Attachment(s)
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
When i try to open the client i got this error: page not found
Attachment 106797
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
IAm Lethal
Anybody know the sql to fix cmd_update_texts?
Run these query's:
Quote:
ALTER table `permissions_users` ADD `cmd_update_texts` enum('1','0') NOT NULL DEFAULT '0';
ALTER table `permissions_ranks` ADD `cmd_update_texts` enum('1','0') NOT NULL DEFAULT '0';
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
MY REGISTER ALL ALL WHITE LIKE THIS
Make sure the address bar begins with http://www.uber-two.com.
Register at Uber Hotel
Fill out the form below to register here.
Name Check
Choose your unique name.
Password
Choose a password
Retype Password
Verify your password
Email
Enter your email. Don't worry, we hate spam too.
Parent or guardian's email address
Because you are under 16 and in accordance with industry best practice guidelines, we require your parent or guardian's email address.
I accept the Terms and Conditions, and I will speak English.
Create Account Cancel
UberCMS | Refund Policy | Forum
Powered by UberCMS 2.0, Copyright © 2010 - 2012 Meth0d & Jonty
WHAT TO DO
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
ѕнαнєєм
Do you have the file guestbook_preview.php in your myhabbo folder?
Quote:
Originally Posted by
ljosh
MY REGISTER ALL ALL WHITE LIKE THIS
Make sure the address bar begins with
http://www.uber-two.com.
Register at Uber Hotel
Fill out the form below to register here.
Name Check
Choose your unique name.
Password
Choose a password
Retype Password
Verify your password
Email
Enter your email. Don't worry, we hate spam too.
Parent or guardian's email address
Because you are under 16 and in accordance with industry best practice guidelines, we require your parent or guardian's email address.
I accept the Terms and Conditions, and I will speak English.
Create Account Cancel
UberCMS | Refund Policy | Forum
Powered by UberCMS 2.0, Copyright © 2010 - 2012 Meth0d & Jonty
WHAT TO DO
You are relying on uber-two.com but that domain is offline.
this is from your register.
PHP Code:
<link rel="shortcut icon" href="http://uber-two.com/web-gallery/v2/favicon.ico" type="image/vnd.microsoft.icon" /> <script src="http://uber-two.com/web-gallery/static/js/visual.js" type="text/javascript"></script>
<script src="http://uber-two.com/web-gallery/static/js/common.js" type="text/javascript"></script>
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/style.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/buttons.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/boxes.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/tooltips.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/embeddedregistration.css" type="text/css" />
<script src="http://uber-two.com/web-gallery/static/js/simpleregistration.js" type="text/javascript"></script>
Your index does that also......(that's why it loads so slow) You have to host your own web-build
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
ljosh
MY REGISTER ALL ALL WHITE LIKE THIS
Make sure the address bar begins with
http://www.uber-two.com.
Register at Uber Hotel
Fill out the form below to register here.
Name Check
Choose your unique name.
Password
Choose a password
Retype Password
Verify your password
Email
Enter your email. Don't worry, we hate spam too.
Parent or guardian's email address
Because you are under 16 and in accordance with industry best practice guidelines, we require your parent or guardian's email address.
I accept the Terms and Conditions, and I will speak English.
Create Account Cancel
UberCMS | Refund Policy | Forum
Powered by UberCMS 2.0, Copyright © 2010 - 2012 Meth0d & Jonty
WHAT TO DO
Open up includes/configuration/ubercms_config.php and scroll right to the bottom
Edit ubertwo.com to your URL
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
ѕнαнєєм
I fixed the
Table 'uber.cms_guestbook_entries' doesn't exist error.
Code:
CREATE TABLE IF NOT EXISTS `cms_guestbook_entries` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`message` varchar(500) DEFAULT NULL,
`time` varchar(100) DEFAULT NULL,
`widget_id` int(10) DEFAULT NULL,
`home_id` int(10) DEFAULT NULL,
`userid` int(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Yep you need to edit your `users`
============
Guestbooks are bugging.
I get 404 error.
http://i46.tinypic.com/o9gt4x.png
How did you fix the guestbook widget? i only got some text and no frame
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
jasjj
How did you fix the guestbook widget? i only got some text and no frame
I recommend using Apache w/ PHP instead of IIS w/ PHP under FastCGI.
Welcome! - The Apache HTTP Server Project
PHP For Windows:
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
leenster
Do you have the file guestbook_preview.php in your myhabbo folder?
You are relying on uber-two.com but that domain is offline.
this is from your register.
PHP Code:
<link rel="shortcut icon" href="http://uber-two.com/web-gallery/v2/favicon.ico" type="image/vnd.microsoft.icon" /> <script src="http://uber-two.com/web-gallery/static/js/visual.js" type="text/javascript"></script>
<script src="http://uber-two.com/web-gallery/static/js/common.js" type="text/javascript"></script>
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/style.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/buttons.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/boxes.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/tooltips.css" type="text/css" />
<link rel="stylesheet" href="http://uber-two.com/web-gallery/styles/embeddedregistration.css" type="text/css" />
<script src="http://uber-two.com/web-gallery/static/js/simpleregistration.js" type="text/javascript"></script>
Your index does that also......(that's why it loads so slow) You have to host your own web-build
nope :S
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
Jonteh
If you was to use Jonty's recommendation, be sure to install mod_security and other security modules for Apache!
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
How to fix the twice login shit ?
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
How can i change the me.php topstory image URL?
This is the problem:
http://****.nlimages/ts/Sofiane_metisse_topstory_B.gif
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
-
Quote:
Originally Posted by
Jonteh
I was able to fix everything on IIS. My homes, guestbook and even the groups widget work on IIS.
I'm just saying that so people with IIS don't think it's never going to work.
Working on the friends widget and then going to try to code the rest of the groups...
You can preview it at beta-hubbahubba.no-ip.biz
Sent using Tapatalk
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Leenster can you give me the Tags fix ?
-
Quote:
Originally Posted by
ѕнαнєєм
Leenster can you give me the Tags fix ?
I don't remember how I fixed it or even what was wrong with it.
What does yours do?
Sent using Tapatalk
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
leenster
I don't remember how I fixed it or even what was wrong with it.
What does yours do?
Sent using Tapatalk
The tag deletes itself when i open the client xd.
-
Quote:
Originally Posted by
ѕнαнєєм
The tag deletes itself when i open the client xd.
Ah yes. In the new-client.php or the tpl is some code that deletes it. It will be commented with something.....
Just delete that code. You will also find that there are a few missing images for the tags. Those I got from a webbuild that came with a php retro download...
Sent using Tapatalk
-
Re: [REL/DEV] UberCMS 2 [PHP, MySQL, OOP]
Quote:
Originally Posted by
Jonteh
How about the ddos security?
I always used xampp before, but now iis.