<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
My issue, seems to be from that.
I'm not too sure but yeah, in /account I just can't press the button to change pass.
If I take out the code above then it will just sign me out...
Hi,
I've got an error with my CMS. I use RevCMS. Everything works as it should, however some buttons such as in the page where you change your password don't work. They simply don't do anything, and it's something to do with this.
Thanks!
Hey,
So I've looked around the forum (Using plusemu) and apparently for my emu all badge descriptions and titles are meant to be done from the database client_external_badge_texts and badge_definitions, but for most badges I've got both in but it shows badge_name_*** and badge_desc_***
Same...
OFF-TOPIC: @JMG , mind PM'ing me?
ON-TOPIC: I tried copying and pasting the password change function and changing the relevant names but no luck. Don't think I need extra columns as seckey is already in there.
Hi,
I'm trying to fix my news comments on my RevCMS.
The code is all there and when you type a comment it says it has been successful, etc, but posts nothing.
Another thing is on the left side where it is meant to show past articles it shows nothing.
Thanks
Hi,
I use Rev, and as you can see in account settings - http://prntscr.com/gp9jiv
I've managed to get the password change to work, but can't get the change pin.
The pin is under column seckey in table user.
Thanks
Hey!
Didn't seem to work at all, it didn't kill the page, but where it should show the rooms it was just white.
Thanks
@Westyy
EDIT: Works now, didn't implement correctly. Thanks!
Hey,
Here's all the code
I got given this code by @Westyy but I just need to make it compatible with my cms with is in mysql
I use rev
Thanks
@distributi0n
Hey it is mysqli, but I've translated over the first 2 lines, just need this bit now
$odd = false;
while ($Room = $GetRooms->fetch_object()) {
$bgColor = $Room->users_now >= 20 ? "#C1322B" : $Room->users_now >= 10 ? "#ffb01a" : "#62b061";
echo '
<div style="padding:0 8px 0 6px">...
I've got a bunch of MySQLi code, can someone transfer these lines to mysql so I can learn to do the rest
$GetRooms = $engine->query("SELECT `users_now`,`caption` FROM `rooms` WHERE `users_now` > 0 ORDER BY `users_now` DESC LIMIT 10");
$odd = false;
while ($Room = $GetRooms->fetch_object()) {...