Show Categories
112
2
Adia Aira posted Nov 18 '14 at 6:37 am

I seem to be having an issue with posts with line breaks in them. At first, i thought maybe it had something to do with a character limit... but i discovered that the only time it will allow me to make a new post or edit a post is if i don't hit enter to start a new paragraph. (see here: test topic )

The weird thing is... it's only a problem for my own admin account... the test account i made doesn't have the same problem... (Test account: user - test / pass - test).

Any idea what might be causing this?

Thanks.

Oh yea, for the sake of clarity, all posts except for the first two in the timeline were made when the site was only my localhost... this problem only presented once i moved it onto my domain.

update: the issue doesn't occur when i reply to a post... only when i'm posting a new topic or editing the first post of a topic.

recent by Adia Aira  ·  Dec 4 '14 at 5:48 pm
219
10
Jeroen de Klerk posted Oct 22 '14 at 3:42 pm

Hi there,

I was looking for a feature where users can send text messages to eachother, while using the videochat feature. It seems a desirable feature, to be able to send messages in the same window as the videochat window.

I noticed a Text Chat option in videochat.php. After making it visible on the page, a Text chat button appears. After clicking, it shows a chat window. However, the messages do not arrive on the other side.

How would I be able to get this to work?

Greets,

Jeroen

154
1
Cashman posted Dec 1 '14 at 11:57 am

I found a bug in the default template file.
When you login using the uni_login plugin your avatar will be set to a remote image. Like this:

http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/3e/3ea7d59c7f3a2ce698fca2174df8c57be1385985_full.jpg

In the layout.tpl file from line 318 it says the following:

<div class="codo_inline_notification_el_img">
    <img src="{{../duri}}assets/img/profiles/icons/{{actor.avatar}}" />
</div>

That means that when you get a notification it will show a broken image because it's trying to create the following link to it:

[YOUR_DOMAIN]/assets/img/profiles/icons/http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/3e/3ea7d59c7f3a2ce698fca2174df8c57be1385985_full.jpg

In other words it's trying to find the remote image in your local files.

I hope this will be resolved soon.Thanks smile

recent by adesh  ·  Dec 2 '14 at 4:36 am
328
7
Daimko posted Nov 26 '14 at 6:27 am

Hello,

I would like to create several categories to regroup several forums. Is it possible to rename "All topics" and create other reports similar to "All topics" ?

I also want to ask if a French translation Codo is planned?
Thank you in advance for your reply and sorry for this very limited English.

recent by paolspo  ·  Dec 2 '14 at 2:40 am
269
12
thaGH05T posted Nov 26 '14 at 10:14 am

I have tried integrating Kunena avatars with Freichat but its not working. The error log shows that the sessions are being created but I don't see sessions in the sessions table. so the log is no help. I used instructions from here and modified some of the code to fit with the new version of Freichat as it uses a base driver. http://codologic.com/page/node/45 And yes I did create the avatar column in the sessions table of the database. I read somewhere else that there are some unnecessary steps but it should work. What I want to know is with the current paid version of Freichat does this method work and if not how can I make this happen exactly? Yes, I have read the wiki you guys have produced and am a bit unclear. From the wiki I have modified the query to pull the Kunena avatar but I have no clue where to put the query... I am using Joomla! 3.3.6

recent by thaGH05T  ·  Dec 2 '14 at 12:06 am
171
4
Cashman posted Nov 30 '14 at 4:18 pm

Dear readers,

I've using Codoforum for a couple of days now and I'm very happy with it so far. Yesterday I succesfully intergrated Steam login into the uni_login plugin. Tested everything several times and nothing was wrong.

This morning I tried it again and still, everything was working correctly.
This evening though without changing anything everyone who visits my forums gets the following error:

Fatal error: Function name must be a string in (my root folder replaced by [ROOT] for privacy reasons. )[ROOT]/public_html/codoforum/sys/CODOF/HB/Render.php on line 113

What is quite surprising is that the admin panel is still working fine.

Nobody else has access to either the ftp or my database.
Something interesting to note as well: I tried doing a ftp backup restore by replacing all files except the config with a redownloaded version of Codoforum.

I hope I supplied enough information and that somebody has a solution for it. Thanks in advance!

Regards,
Cashman

recent by Cashman  ·  Dec 1 '14 at 9:38 am
95
0

I'm trying to use a PHP script to generate another php script copying from a "stub" that has replacement tags. The problem I'm facing is opening a "stub" php script and reading it line by line. I've tried multiple functions: file_get_contents(), print_r(file($file)), where $file = fopen(filename). fgets, etc. echo file_get_contents() spits out the file only starting at a certain point, so I have wondered if it is trying to run the php that is in there. The odd thing, is that if I create a new file with exactly the same content, it won't display anything!
Currently I have:
Code:
<?php
if( file_exists("Stubs/test.txt"smile){
echo "This works!";
echo file_get_contents('Stubs/test.txt'smile;
}
else{
echo "This doesn't work!";
}
?>

and the txt file:
Code:
<?php

require_once('util/import/ListHubImport.php'smile;

class CBGoldKeyRealtyIncUTImport extends ListHubImport
{

public function __construct($date = null, $printMessages = true)
{
    parent::__construct(CO_ImportScript::CBGOLDKEYREALTYINCUT, $printMessages, null, 'Coldwell Banker Gold Key Reality Inc.');

    // CONNECTION INFO
    $dataConn = new DataConnection();
    $dataConn->setConnectionType(DataConnection::HTTP);
    $dataConn->setValidOfficeIds(array('38575'));

    $this->connectionInfo = $dataConn;

    $this->setSaveFilename($dataConn->getSaveDataPath() . "CBGoldKeyRealtyInc-UT_::DATE::.xml");

    $this->date = $date;
    $this->setSaveRecords(true);
    $this->fields = $this->skippedListings = array();

//...

}

}

?>

This behavior is bizarre to me, and I'm running out of debugging options with php. Any help would be appreciated! Thanks. -Luc

PS. It shows everything from the line: $dataConn = new DataConnection(); to the end of the file.

Edit: Removed links because the discussion is off-topic

106
2
thaGH05T posted Nov 29 '14 at 11:44 am

Hey, maybe I am simply overlooking it, but wouldnt a mark as resolved button be really useful? Forum is truly great but lacks a few widely used bits a functionality. This is particularly would be useful for your own forum.

recent by thaGH05T  ·  Dec 1 '14 at 12:19 am
191
3
Adam posted Nov 30 '14 at 4:48 am

I'm all. I'm sorry. But there is something that just seems off to me about this to start with...

I have the forum installed and working good on my web server.

But there are a few basic things that I'm having a hard time with and I cant find any info about this.

  1. After the default install, when I click a link to Register, it's literally trying to send me to localhost/page/user?codoforum

  2. How to edit the links and content? You have some sample links:
    Link
    Dropdown > Action > Another Action > Something else here
    "Separated Link" etc...

  3. What is the proper way to replace the logo?

  4. Does CodoLogic offer a way to remove the branding at the bottom? Even for a fee or whatever...

Any additional info or comments would be most welcome.

recent by Adam  ·  Nov 30 '14 at 8:52 am
83
1
RDNachoz posted Nov 27 '14 at 2:18 pm

Hello, I was trying to post something on the forum installation that I did and for some reason, when I hit the "Post" button, the loading gif doesn't stop and nothing is posted, is there a problem with my installation? Or is there some other fix

recent by adesh  ·  Nov 29 '14 at 1:35 pm
597
9

Hello,

Today we have found 'codoforum' and we are pleased to see its modern UI. We are running a website with more than 50,000 registered members. It is a wordpress powered website.

Now we want to start an interactive forum inside it.

So, all we need is an effective SSO integration for our registered members.

We have tried as per your documentation. Both client.php and sso.php has been added to root of website and details filled in forum, but somehow it is not working.

Can you please look into matter and suggest a step-by-step method for integration with Wordpress site.

If you require, we can forward you admin access.

Thanking You,

Rahul

recent by rahulvats  ·  Nov 27 '14 at 6:06 pm
135
5
Gougou posted Nov 26 '14 at 5:59 pm

Hi there,

thanks for your work.

I'm currently testing your forum, and I find it great and beautiful.

Is have some features request / Recommandations.

  • search : I think it could be useful to add a search field inside topics. I also find that the search field on forum landing page isn't enough visible.
  • image upload from iOS : This doesn't work. The image selector open photos application on iOS, but the photo doesn't seem to be uploaded

  • autoconnect link : Is it possible to generate some autoconnect link ? For example, opening the forum using a special URL allowing be to be autoconnected. This link can be generated via a WS for example. It could be a very useful feature if accessing the forum through a mobile application for example

Thanks again for your work.

Regards

recent by admin  ·  Nov 27 '14 at 4:06 pm
292
3

I have the first level paid version of Freichat and it has worked without a hitch for a while now. I have it installed in Joomla! 3.3.6 right now. There have been no major changes to the site recently that would have effected Freichat. The issue presents itself as being stuck on "Getting list of online users...", but the chat rooms do not appear either. A quick glance at the code in chrome and I see -

The error has been removed to protect site security -- Edited by poster.

The last error keeps climbing in number of failures as it keeps trying. I also notice many sessions being created in the sessions table in the database. I have gone to the extent of reinstallinhg Freichat by setting the variable in the hardcode.php file to false and doing the installation again.

After enabling the debug feature I get nothing but created sessions in the log file so that wasn't much help either. Can someone please shed some light on the situation as I am at a standstill at the moment.

recent by thaGH05T  ·  Nov 26 '14 at 2:35 am
325
2
thaGH05T posted Nov 25 '14 at 10:56 am

Is there a devised way to integrate Codoforum into Joomla! 3.3.6 yet???

Also is there a paid version and free version like Freichat? I would love to advertise Codologic but I cannot afford the risk of vulnerability searching due to the nature of my site. In other words I cannot have the powered by links to any app used on my site.

recent by thaGH05T  ·  Nov 26 '14 at 2:26 am
196
2

I just installed Codoforum on my site - it's just awesome!

But I have a little problem.

My forum is here:
http://ytp.2geeks.cz/

The problem is that when I click on my profile there, for example, in URL bar of my browser is this:
http://ytp.2geeks.cz/subdom/ytp/index.php?u=/user/profile/1
What I want is this:
http://ytp.2geeks.cz/index.php?u=/user/profile/1
So I want the same URl, but without "subdom/ytp/"

Another example, I click on General Discussions. What I get:
http://ytp.2geeks.cz/subdom/ytp/index.php?u=/category/general-discussions
I want this:
http://ytp.2geeks.cz/index.php?u=/category/general-discussions

I hope I explained it clearly. The problem is probably in the FTP structure of my hosting provider (Wedos.cz):

Any idea how to fix this? (remove "subdom/ytp/" from URL)

169
6
tann2464 posted Nov 23 '14 at 10:01 pm

Hey guys, 5 more days till Codoforum 2.6 released. So far, I love every features included inside this script. And I don't think there isn't any major features needed to be add except for related topics listed under the first post.

Besides that some more minor features such as:

  1. Open external link in new tab
  2. After publishing a post, go straight to it instead of being redirected back to the parent category
  3. I don't know why but there are a bunch of same css files in cache folder just different name.
  4. Support for MaxCDN
recent by tann2464  ·  Nov 24 '14 at 8:41 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