Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 133,845
» Latest member: roben1110
» Forum threads: 176,962
» Forum posts: 1,239,751
Full Statistics
|
|
|
SQL Error |
Posted by: Casey S - 2010-09-12, 10:31 AM - Forum: 1.6 General Support
- Replies (9)
|
|
MyBB SQL Error
MyBB has experienced an internal SQL error and cannot continue.
SQL Error:
1 - Can't create/write to file '/tmp/#sql_b79_0.MYI' (Errcode: 13)
Query:
SHOW COLUMNS FROM mybb_users LIKE 'unreadpms'
Please contact the MyBB Group for support.
http://cydevice.net
I just got this this morning and my site was working fine
|
|
|
SQL error |
Posted by: gavpedz - 2010-09-12, 08:51 AM - Forum: 1.6 General Support
- Replies (9)
|
|
Hi all just tried logging in to my site, not done for a week or two and got this message.
MyBB has experienced an internal SQL error and cannot continue.
SQL Error:
1054 - Unknown column 'remember' in 'field list'
Query:
SELECT uid,username,password,salt,loginkey,remember,passwordconvert,passwordconverttype FROM an_users WHERE username='cyberpedz' LIMIT 1
Why would this be?
|
|
|
installation error |
Posted by: itajooba - 2010-09-12, 07:25 AM - Forum: 1.6 General Support
- Replies (1)
|
|
I just copied past installation and we ended up with error :
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/netspace/public_html/forum/inc/class_core.php on line 18
|
|
|
Catagory Lightbulb |
Posted by: Alex597 - 2010-09-12, 06:51 AM - Forum: 1.6 General Support
- Replies (6)
|
|
We have a custom theme on our forums, and after upgrading to mybb 1.6, when clicking on the forum bits (as it's called in the template, Lightbulbs) It doesn't go "dimmed"/"Read", Until i refresh, But then a few hours later, It marks all the forums as unread. I checked the templates from the default and custom, and they are both the same. I think it's something with Javascript, But i have no clue why it's not marking it as read until i refresh (and clicked on it before i refresh)
Can anyone help?
|
|
|
Forum to Site [code] |
Posted by: Tyler E. - 2010-09-12, 02:37 AM - Forum: 1.6 General Support
- Replies (20)
|
|
Well, I added this code to the top of my header file:
<?php
define('IN_MYBB', 1); // (1a)
require "./forum/global.php";
?> And, it works, sorta.
If I type something like {$mybb->user['username']}, it shows nothing.
However, if I put the same file into the /forum directory and change the code above to:
<?php
define('IN_MYBB', 1); // (1a)
require "./global.php";
?> It'll work, and output the username, if there is one.
My question is, how would I fix this to work in the / directory so I don't have to move my files?
Also. . .
if(isset($mybb->user['username'])) {
echo $mybb->user['username'];
} else {
echo "Welcome Guest!";
}
This returns nothing.
|
|
|
Can't use search.php? |
Posted by: Deities - 2010-09-12, 02:30 AM - Forum: 1.6 General Support
- Replies (4)
|
|
I need a search.php action like "action=getnew&"
I need it for the following,
Search all past threads for a username in a certain forum.
Example
search.php?action=finduserthreads&uid=232323&fid=111
The above does not work but I need a working one that can refine a search based on a username in a certain forum.
I will be linking this, just in case you wonder why I need it.
I have looked through the coding of search.php and none of the return arrays give my wanted result.
I want to be able to link a search action so that the search action searches for the users UID (Username) to a certain forum.
This is the wanted result.
Having a scammers section, where If I link a search action in there profile and call it "Search for past reports"
It would search a certain forum id (FID=*) (Aka the scam report section) for the useres Username in the thread title.
What I did not account is that username changes can ruin this. I can make it so that it searches for there UID in posts themselves since my scam report template involves posting there profile link.
Any ideas on how to make this into a single url?
|
|
|
|