Show Categories
129
1

I have a serious problem for me there.

On the image there is a post in Codoforum with title containing Czech special symbols (ěščřžýáíé etc.). The problem there is that it's displayed incorrectly.

There is:
Hovna strejdy Dejva posted just now
Zrození YTP Fóra

There should be:
Hovna strejdy Dejva posted just now
Zrození YTP Fóra

Does anybody have some quick fix for this? Font change? Encoding change? Where? How?
Because as you can see, I wrote some Czech special symbols into title of this post and here, on official Codologic forums, they are displayed correctly. So the problem is in my site, not in Codoforum software probably.

recent by admin  ·  Nov 24 '14 at 2:39 am
154
3
waplist posted Nov 22 '14 at 1:47 am

I have come with some feature request
1)546fe6784b2b6.png
Medals and designation by activeness and voting
2)546fe6cd12156.png
Different voting options
3)546fe8ef9eb19.png
Post prefix which admin can create and all users can use
4)546fe99d29654.png546fe9d57fdab.png

Color choosing option for user
I need 1 and 3 extremly

recent by waplist  ·  Nov 24 '14 at 1:04 am
127
5

Hi there,

if my status is 'Busy', and I click on a button, to chat with another person, it takes 30-60 seconds for the chat window to open. More specific, it opens when the first periodic request is sent to the server. I use

onClick="FreiChat.create_chat_window_mesg(username,user_id);"

for the button, and it works fine. It does not matter what the status is of the other person.

How can I get the window to open immediately?

Greets Jeroen

recent by adesh  ·  Nov 21 '14 at 5:00 pm
125
1

Hi, I'm still new to php and wondered if I can get some help with a free php script. (inserted below)
I am trying to get number of ocurrences from a given string and by date, but I'm stuck and not sure how to finish it. Thanks

<?php
//
// CONNECT TO THE DATABASE SERVER (use your credentials)
//

$db = new mysqli(localhost,root,password,my_db);

//
// GET THE VALUE TO SEARCH FROM FROM SUBMITTED FORM DATA
//
$search = isset($_GET['search']) ? $_GET['search'] : '';
//
// ADD THE WILDCARD CHARACTERS
//
$sqlSearch = '%'.$search.'%';

//
// PREPARE AND EXECUTE THE QUERY
//
$sql = "SELECT
dst, calldate
, COUNT(*) as total
FROM asterisk_cdr
WHERE tablefield LIKE '%given string%'
GROUP BY dst";

$stmt = $db->prepare($sql);
$stmt->bind_param('s', $sqlSearch);
$stmt->execute();
$res = $stmt->get_result();

//
// LOOP THROUGH THE RESULTS AND BUILD THE HTML OUTPUT
//
$output = "";
while ($row = $res->fetch_row()) {
$output .= "<tr><td>" . join('</td><td>', $row) . "</td></tr>\n";
}
?>

<!DOCTYPE HTML >

<html lang="en">
<head>
<title>Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<style type='text/css'>
table {
border-collapse: collapse;
}
th {
background-color: #369;
color: white;
}
td {
background-color: #eee;
}
</style>

</head>
<body>
<form>
Channel Number:
<input type="text" name="search" value="<?=$search?>" size="10">
<input type="submit" name="btnSubmit" value="Search">
</form>

<form>
Date format, 2014-05-19:
<input type="text" name="search" value="<?=$search?>" size="10">
<input type="submit" name="btnSubmit" value="Search">
</form>
<hr/>
<table border='1'>
<tr><th>Table Field</th><th>Total</th></tr>
<?=$output?>
</table>
<p> </p>
</body>
</html>






recent by adesh  ·  Nov 21 '14 at 8:14 am
330
3
tyktak posted Nov 19 '14 at 10:16 pm

At first i would say that CodoForum is one (or maybe only) greatest forum scripts i ever seen but it lacks a few nice features which other scripts have.

  1. Links visible only for registered users -> to hide some important links (like game guild dials, game guilds screenshots etc.) but it would need registration approval by admin (see below)
  2. Registration approval by admin -> for allowing only known friends to explore forum
  3. Password protected categories -> that would be really cool to hide some categories before non-authorized users
  4. Group protected categories -> to allow only authorized group of users to access specific categories (like guild plans) to view them
  5. Topic pin to homepage and closing topics -> or maybe i can't see it? But it is one of must-have for forum
  6. Support for non http urls -> i've described it in earlier post
  7. Hiding posts in topic by admin or moderators -> to hide non needed posts but don't delete them. Users could open them with nice slide effect

At last i would like to say thanks to devs of CodoForum, you are responding very very fast and it is very nice for all of us smile

recent by adesh  ·  Nov 21 '14 at 7:45 am
360
2

Hello, its the first time I tried installing this forum, I downloaded the software and uploaded it. But when I tried going to my forum I get this error, I simply uploaded the zip and did not change anything, and as a noob in php, I don't know what is wrong with line 7 ie.

namespace CODOF\Booter;
 

Any help is appreciated. Thanks.

recent by Ukim  ·  Nov 20 '14 at 7:11 pm
461
11

Trying to install Freichat extension. It appears the way to upload package file is different. README with the extension reads

Place the freichat folder in your CMS installed directory.

For Example, If you have installed joomla , freichat folder should be placed in
/your/joomla/installed/directory/freichat

Please Note By default the password will be "adminpass"

For my website www.splendiddigitalsolutions.com, what should I place for Install Directory field? How do I enter path for installation?

Thanks in advance!

726
15

Hello again!

CodoForum have really one bad bug for foreign ppl with special letters like "ąźćęć"

When i type

Zadać pytanie

as a topic i am getting something like

Zada&"

and nothing more after that, so it removes topic totally.

Same occurs in description, if it have something like this:

Tutaj będzie jakaś dłuższa treść, która coś ujawni, a może i nie?

And if want to edit that in editor i am getting only

Tutaj b&

And anything more so it's very disturbed bug.

Can i do anything with that?

Language: Polish
Forum link: http://gof.nadroida.pl

EDIT: Same about editing posts/replies smile
This forum doesn't have this bug

bug
recent by adesh  ·  Nov 17 '14 at 1:54 pm
436
9
tyktak posted Nov 15 '14 at 1:07 pm

Hello,

I have translated my forum to polish language but still many (backend too) texts are in english.

Translated everything into polish in locale file (constants.php changed to pl_PL) but still missing those:

  • Whole BackEnd is still in english and i can't find any file with it's text
  • "replies/views" at homepage
  • "read more" at homepage
  • "posted" at homepage
  • "search" at post and homepage
  • after click at avatar it gives still "Profile, Edit, Logout"

  • Notifications locale missing, examples below

Hide topic messages
Enable infinite scrolling
Notifications in topbar

Notification level
New replies/topics/mentions
Unread count next to topic
Email notifications

Can i do anything with that? I really like this forum and i want to describe all of it smile

Forum link: http://gof.nadroida.pl/

recent by Gerry  ·  Nov 16 '14 at 2:28 pm
269
3

first excuse my english ...
and ... this is a really nice chat smile

sys: Apache, smf 2.0.9 , freichat 9.6,
FF 33.1, IE11, Chrome 38

private chatbox :
doesn't auto scroll down to the last message (all browser).
IE 11 added 2 scrollbars in that case.

chatroom:
ist it possible that a click on Username
in the chatroommessagearea prints Username>
in the "input-textarea" ?

maybee its possible to make Chatroomarea as a resizeable
popup window ?

I plan to ugrade from free to corporate.
will reinstall keep my theme and other changes?

Thank you

recent by PatHero  ·  Nov 15 '14 at 7:18 pm
940
16

Hello!

I've been reading the forum for a while, fixing some issue i had thanks to the docs and forum replys!
I sorted pretty much everything by now, a part from this little bugging thing:

I installed CODOFORUM on my webspace, done the smtp configuration (with my domain email):

but everytime i try to register a new user with a working email he doesen't recive anything.

Moreover i can't seem to upgrade his status using the backend as i get the following error:

If i edit his status from mysql itself it works, but again, using the backend to change his position from let's say "user" to "admin" will give me the same error:

I tried to bypass it by using the plugin Unilogin, i created the facebook app, made it pubblic, got the ID and secrect , edited the config.php but it still doesen't seem to work as i keep getting this:

Missing provider application credentials.

I tried to reinstall hybridauth (2.2.2) manually, changing the "base_url" to the complete path, but it didn't fix it smile

Thank you very much!

145
3
RonaldMoon posted Sep 19 '14 at 7:59 am

I really appreciate the work you have done on this chart. Thanks coz it has helped me so far.
I need to know though how I can change the icons that appear automatically on the online users. Most of them look evil, how can I change them or in which directory are they.

Thanks again

recent by adesh  ·  Nov 13 '14 at 3:01 pm
257
5
Alexander O'Mara posted Nov 11 '14 at 10:24 pm

I've been testing out Codoforum and discover something I found strange.

I tried to create a signature using markdown or bbCode, but when I save, I find that my signature is wrapped in p tags. Thankfully, signatures are apparently limited in what HTML can be posted (no script tags).

Are signatures supposed to be HTML? It seems inconsistent with the Markdown/bbCode used elsewhere.

UPDATE: On that same note, greater-than and less-than signs are being converted to &lt; and &gt; when in code tags, which is unpleasant. They are also inconsistent with the live preview.

recent by avinash  ·  Nov 12 '14 at 3:58 pm
Categories
Actions
Hide topic messages
Enable infinite scrolling
All posts under this topic will be deleted ?
Previous
Next
With selected deselect topics
Pending draft ... Click to resume editing
Discard draft