Code: Select all
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 665: Undefined index: aq_user_link
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 677: Undefined index: aq_user_link
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 687: Undefined index: aq_post_link
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3374: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3376: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3377: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3378: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899)
Code: Select all
Language file advanced_quoting.php couldn't be opened.
Code: Select all
if (!$submit)
{
$user->add_lang('acp/advanced_quoting');
Code: Select all
if (!$submit)
{
$user->add_lang('acp/acp_advanced_quoting');
I forgot to clear my cache, and the acp module didn't work so i edited my prefs through myphpadmin and then cleared the cache again.thomasfedb wrote:I get theses errors...
Help!Code: Select all
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 665: Undefined index: aq_user_link [phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 677: Undefined index: aq_user_link [phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 687: Undefined index: aq_post_link [phpBB Debug] PHP Notice: in file /includes/functions.php on line 3374: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899) [phpBB Debug] PHP Notice: in file /includes/functions.php on line 3376: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899) [phpBB Debug] PHP Notice: in file /includes/functions.php on line 3377: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899) [phpBB Debug] PHP Notice: in file /includes/functions.php on line 3378: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2899)
Code: Select all
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 600: array_merge() [function.array-merge]: Argument #2 is not an array
Code: Select all
$row = array_merge ($row, $db->sql_fetchrow ($result));
Make sure that you did this.Erik Frèrejean wrote:You have to run the sql query's in the mod.
You're right. I did receive the same error above and made the same changes. It works in and for the most part. Though problem comes, whenever I change the "AQ default settings" and press Submit, I am redirected to Admin CP front page. Please help.saaiberke wrote:I just reinstalled the last version but:
I get this error:
So I changed the language file acp_advanced_quoting to advanced_quoting.php and thhis seems to work. The ACP window opens but when I try to change some settings and click submit, I get redirected to the ACP main panel and not any setting is changed in the DB.Code: Select all
Language file advanced_quoting.php couldn't be opened.
Then I renamed the language file to the original name and changed in the includes/acp/acp_advanced_quoting.php from
toCode: Select all
if (!$submit) { $user->add_lang('acp/advanced_quoting');
This seems to work but I still can't change any DB settings. Even when I change the settings manually with phpMyadmin the quoting doesn't work.Code: Select all
if (!$submit) { $user->add_lang('acp/acp_advanced_quoting');
Nic
Code: Select all
$module_id = request_var('i', false);
Code: Select all
$module_id = request_var('i', 0);
Code: Select all
redirect (append_sid ('./index.php', 'i='.$this->module_id ));
Code: Select all
redirect (append_sid ('./index.php', 'i='.$module_id ));
Code: Select all
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 600: array_merge() [function.array-merge]: Argument #2 is not an array
Code: Select all
$row = array_merge ($row, $db->sql_fetchrow ($result));
Oke to fix this one:thomasfedb wrote:When i delete a post (from the middle of a topic) i get this error:This is the problem line (its in your code):Code: Select all
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 600: array_merge() [function.array-merge]: Argument #2 is not an array
Why is your code handling this? is it quote relatedCode: Select all
$row = array_merge ($row, $db->sql_fetchrow ($result));
And yes, i'v done the SQL (even changed the settings through the db becasue that admin panel wouldn't work...)
Plz help!
Code: Select all
$result = $db->sql_query_limit($sql, 1, 0);
$row = array_merge ($row, $db->sql_fetchrow ($result));
Code: Select all
$result = $db->sql_query_limit($sql, 1, 0);
if ($fetch_row = $db->sql_fetchrow ($result))
{
$row = array_merge ($row, $fetch_row);
}