Jump to content

New forum software


doddsey_65

Recommended Posts

I am currently creating a new forum software called A Simple Forum. For the most part it is complete. I just need to finish off the admin section then I will be releasing the first beta to download. But before that I need to make sure everything works. So can you guys please test my site and let me know how things go. Thanks

 

http://www.asimpleforum.co.uk/forum/

  • Like 8
Link to comment
Share on other sites

I really like the design, the thing that catches my eye right away though, is the left statistics bar. As a user, I really could care less about any of that data 95% of the time, so I don't think it needs such a prominent place on the page. On the very front page its not horrible, but I do think having it on every page, every post, I think its cumbersome.

 

That being said, I think that might be one of the nicest looking forums I have ever looked at though

Link to comment
Share on other sites

Registration is broke.

Fatal error: Class 'sessionsClass' not found in /home/asimplef/public_html/forum/register.php on line 17

 

Same with login.

An exception occurred

 

Undefined variable: lang in /home/asimplef/public_html/forum/includes/classes/Asf_Sessions.php on line 109

 

Trace History

 

Class: Asf_Core::Function: handleError() in /home/asimplef/public_html/forum/includes/classes/Asf_Sessions.php at line 109

Class: Asf_Sessions->Function: login() in /home/asimplef/public_html/forum/login.php at line 37

 

http://www.asimpleforum.co.uk/forum/?view=ribbons

An exception occurred

 

Use of undefined constant TBL_PREFIX - assumed 'TBL_PREFIX' in /home/asimplef/public_html/forum/index.php on line 34

 

Trace History

 

Class: Asf_Core::Function: handleError() in /home/asimplef/public_html/forum/index.php at line 34

 

Full Path Disclosure: (http://www.acunetix.com/vulnerabilities/Full-path-disclosure.htm)

http://www.asimpleforum.co.uk/forum/?view=test

An exception occurred

 

template->_tpl_load_file(): File templates/default/template/index_test.html does not exist or is empty in /home/asimplef/public_html/forum/includes/classes/Asf_Template.php on line 818

 

Trace History

 

Class: Asf_Core::Function: handleError() in /home/asimplef/public_html/forum/includes/classes/Asf_Template.php at line 818

Class: template_compile->Function: _tpl_load_file() in /home/asimplef/public_html/forum/includes/classes/Asf_Template.php at line 538

Class: Asf_Template->Function: _tpl_load() in /home/asimplef/public_html/forum/includes/classes/Asf_Template.php at line 473

Class: Asf_Template->Function: display() in /home/asimplef/public_html/forum/includes/classes/Asf_Template.php at line 352

Class: Asf_Template->Function: output_footer() in /home/asimplef/public_html/forum/index.php at line 96

Link to comment
Share on other sites

Not sure if I even have an account, but when I try to login:

An exception occurred

 

Undefined variable: lang in /home/asimplef/public_html/forum/includes/classes/Asf_Sessions.php on line 109

 

Trace History

 

Class: Asf_Core::Function: handleError() in /home/asimplef/public_html/forum/includes/classes/Asf_Sessions.php at line 109

Class: Asf_Sessions->Function: login() in /home/asimplef/public_html/forum/login.php at line 37

Link to comment
Share on other sites

I think the above errors have now been fixed. But it would be helpful if someone could make sure.

 

Not sure if I even have an account, but when I try to login:

 

does that mean you have tried registering. If so, let me know what username you would have used and ill see if you are registered.

 

Thanks

 

Link to comment
Share on other sites

I think the above errors have now been fixed. But it would be helpful if someone could make sure.

 

Not sure if I even have an account, but when I try to login:

 

does that mean you have tried registering. If so, let me know what username you would have used and ill see if you are registered.

 

Thanks

 

 

I guess I didn't register.  I registered (timm017) and logged in fine.  No more errors.

Link to comment
Share on other sites

Weird, when I first logged in the layout was messed up (see attached screenshot) but when I shft+reloaded, it was fine.  So I'm not sure if this is a concern.

 

 

 

[attachment deleted by admin]

Link to comment
Share on other sites

Cross Site Scripting Vulnerability:

You don't sanitize usernames. I was able to include HTML in mine and it executes on the index.

 

I get the below error when trying to post:

An exception occurred

 

Undefined index: s_last_action in /home/asimplef/public_html/forum/includes/classes/Asf_Sessions.php on line 740

 

Trace History

 

Class: Asf_Core::Function: handleError() in /home/asimplef/public_html/forum/includes/classes/Asf_Sessions.php at line 740

Class: Asf_Sessions->Function: update_user_session() in /home/asimplef/public_html/forum/includes/classes/Asf_Sessions.php at line 453

Class: Asf_Sessions->Function: auth() in /home/asimplef/public_html/forum/includes/initialize.php at line 13

Function: include() in /home/asimplef/public_html/forum/view_forum.php at line 16

Link to comment
Share on other sites

I get the blow error when trying to verify my email and when I go back to the index only the error appears.

An exception occurred

 

Undefined offset: 3 in /home/asimplef/public_html/forum/includes/functions/display_functions.php on line 61

 

Trace History

 

Class: Asf_Core::Function: handleError() in /home/asimplef/public_html/forum/includes/functions/display_functions.php at line 61

Function: forum_stats() in /home/asimplef/public_html/forum/includes/classes/Asf_Template.php at line 202

Class: Asf_Template->Function: output_header() in /home/asimplef/public_html/forum/activation.php at line 33

Link to comment
Share on other sites

ive removed the error but i dont know why it's being caused. Im using a UNION query to get the amount of posts, topics, forums and users.

 

$sql = "SELECT COUNT(*) FROM ".Db_Pdo::$Tbl_Prefix."forums f
            UNION
            SELECT COUNT(*) FROM ".Db_Pdo::$Tbl_Prefix."topics t
            UNION
            SELECT COUNT(*) FROM ".Db_Pdo::$Tbl_Prefix."posts p
            UNION
            SELECT COUNT(*) FROM ".Db_Pdo::$Tbl_Prefix."users u
            WHERE u.u_confirmed = 1";

$result = $db->query($sql) 
        or die($db->printError($sql));
        
    $row = $result->fetchAll();
    
    // add out stats into an associative array for calling later
    $stats['forums']   = $row[0][0];
    $stats['topics']   = $row[1][0];
    $stats['posts']    = $row[2][0];
    $stats['users']    = $row[3][0];

 

the error is caused by this line  $stats['users']    = $row[3][0];

 

dont know why it happens so I will look into it. It only seems to happen when there is a new user.

 

Link to comment
Share on other sites

Cross Site Scripting (XSS):

"Quick Reply" is vulnerable to XSS.

 

Cross Site Scripting (XSS):

The "Real name" field in user profiles is vulnerable to XSS.

 

I get the below error when replying to threads:

Fatal error: Class 'asfSettings' not found in /home/asimplef/public_html/forum/includes/functions/posting_functions.php on line 286

 

When you post on a profile feed it just keeps loading.

Loading...

Please wait while we handle your request

 

I get the below error when using search:

An exception occurred

 

Undefined variable: order_by in /home/asimplef/public_html/forum/search.php on line 96

 

Trace History

 

Class: Asf_Core::Function: handleError() in /home/asimplef/public_html/forum/search.php at line 96

Link to comment
Share on other sites

Cross Site Scripting (XSS):

The "Messengers" fields in user profiles are vulnerable to XSS attacks. 

 

Error when reviewing requests:

http://www.asimpleforum.co.uk/forum/user_center.php?m=requests

Notice: Undefined index: u_uid in /home/asimplef/public_html/forum/user_center.php on line 567

 

Notice: Undefined index: u_group_color in /home/asimplef/public_html/forum/user_center.php on line 567

 

Notice: Undefined index: u_uid in /home/asimplef/public_html/forum/user_center.php on line 567

 

Notice: Undefined index: u_group_color in /home/asimplef/public_html/forum/user_center.php on line 567

 

Error when accepting friend requests:

Oops, something went wrong



Notice: Undefined index: method in /home/asimplef/public_html/forum/user_center.php on line 50

Your have confirmed this friend request

 

The icons next to thread titles are erroring:

Notice: Undefined index: TOPIC_RATING in <b>/home/asimplef/public_html/forum/includes/classes/Asf_Template.php(749) : eval()'d code on line 11

 

Error when you try to edit your profile:

Oops, something went wrong



Notice: Undefined index: messengers in /home/asimplef/public_html/forum/includes/functions/user_functions.php on line 58

1

 

Profiles have an error when you select "AIM" as your messenger.

Notice: Undefined variable: icon in /home/asimplef/public_html/forum/profile.php on line 192

 

Advance search has errors:

http://www.asimpleforum.co.uk/forum/search.php

Warning: Missing argument 2 for getVar(), called in /home/asimplef/public_html/forum/search.php on line 66 and defined in /home/asimplef/public_html/forum/includes/functions.php on line 398

 

Notice: Undefined variable: default in /home/asimplef/public_html/forum/includes/functions.php on line 402

 

Notice: Undefined variable: default in /home/asimplef/public_html/forum/includes/functions.php on line 413

 

Warning: Invalid argument supplied for foreach() in /home/asimplef/public_html/forum/search.php on line 70

 

When I try to login using the correct password on Chrome it just refreshes the page. If I register with the username I was trying to login with it'll log me in.

 

http://www.asimpleforum.co.uk/forum/templates/default/icons/close.png is missing.

http://www.asimpleforum.co.uk/forum/templates/default/icons/error.png is missing.

 

Quick reply doesn't do anything in Chrome.

 

Quick topic just keeps loading in Chrome.

Loading...

Please wait while we handle your request

 

Pressing 'Post Feed' in user profiles doesn't do anything in Chrome.

Link to comment
Share on other sites

Thats alot of errors. Fortunatly I have fixed them all. The login was a problem in chrome due to a BOM error. And there were a few things in the javascript that FF didnt mind but Chrome kicked off, so i fixed them too. As for the friend request error. Thats a work in progress. For some reason empty friend requests are sent to users. I dont know when or why this happens but it needs more looking into.

 

Thanks for the help Corey

 

Link to comment
Share on other sites

Something minor I noticed, the "online image" (in the corner of the user icon) doesn't load when inside a thread.

 


 

The image appears broken in Chrome and just doesn't show up in FF.

Link to comment
Share on other sites

well ive just recovered from a virus ( didnt have any protection ), which meant a full system reboot. So all files on my local system were lost. Unfortunatly i had removed all files from the live server so i could work on the current bugs knowing there wouldnt be any new bugs yet. In short, i have lost ASF.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.