Notice: Undefined index: in /home/mfiehazy/public_html/header.php(179) : eval()'d code on line 13
This is showing at the top with the latest version.
Also all the query info is showing in the bottom, how to remove these stuff.
You are not logged in. Please login or register.
PunBB Forums → Posts by SuperMAG
Notice: Undefined index: in /home/mfiehazy/public_html/header.php(179) : eval()'d code on line 13
This is showing at the top with the latest version.
Also all the query info is showing in the bottom, how to remove these stuff.
brillent, thats what i was asking for in that topic, but never got it, thanks.
sure, here, http://www.mediafire.com/?vb94paklmjackpp
i cant have screenshoots since its in mobile, the problem is that it doesnt show the bot question in the mobiles, which makes you unable to post.
this is showing me this error when i try to use it in 1.4.2.
Notice: Undefined index: Required in /home/mfiehazy/public_html/register.php(418) : eval()'d code on line 14
Anyone have a solution for this error, its showing that in the registration page.
This doesnt work on mobiles, can you fix this.
thank you,
Fatal error: Class 'App' not found in /home/*******/public_html/extensions/chat/index.php on line 6
got this error after installing the plugin and opening the chat page.
you have to create a new file in include/user folder, for example call it header.php
inside that file you put a code like this:
<div class="main-content main-frm">
<div style="padding:1em 1em 7px 1em;">
<center>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-8997487508131027";
/* MCC - 2 */
google_ad_slot = "7064139600";
google_ad_width = 120;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-8997487508131027";
/* MCC - 1 */
google_ad_slot = "5587406403";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
</div>
</div>
After that go to include/template/main.tpl and open it, and include this line <!-- forum_include "header.php" --> after the <div class="hr"><hr /></div>.
it will look like this:
<!-- forum_announcement -->
<div class="hr"><hr /></div>
<!-- forum_include "header.php" -->
<div id="brd-main">
<!-- forum_main_title -->
<!-- forum_crumbs_top -->
<!-- forum_main_menu -->
<!-- forum_main_pagepost_top -->
<!-- forum_main -->
<!-- forum_main_pagepost_end -->
<!-- forum_crumbs_end -->
</div>
what is this medal extension, what does it do, thanks for the extension as there aren't many these days.
Thanks alot, though its not working with my site, i dont think its this extension foult though.
Almost every one who post or registers in my site have the same ip as the website server/nameserver. I asked them about cloudflare, they said they are using it.
oh well.
Thanks alot Sium, Before i forget, here is one more suggestion to optimize the extension.
In punbb, there is a system used called (LABjs :: Loading And Blocking JavaScript), it combines all the js together or something like that, can you use that in this extension js code too instead of loading another js file to website.
Also make the popup size a bit bigger as i had to re-size the popup every time i upload the image. may be it looks on another screen resolution, but in mine its small.
Thanks again. Also where can i download the latest version.
Here is the file: http://www.mediafire.com/?h4hc4mbdnii24jn
What does these stuff mean.
Also just noticed that the the script is loading in every page, and showing up almost everywhere that is not needed like admin page, near any box etc.
punbb-english.js
mod.postimage.org/
This really need to be fixed.
means something wrong with your mailing system.
1- There is an option to add emails to the mailing list when ever new user registers in admin area:
/admin/settings.php?section=email
2- To approve new users, there is also an extension, you can find it here, check for pun approval or something like that:
http://punbb.informer.com/extensions/
Thanks, i was looking for this type of extension a month ago, i even found this one, but it was an old version of this extension created for punbb 1.3, it was all over the place.
I installed this one and the style has been sorted out.
I wanted to ask if there is a change to make change the text and style of the "add image to post".
Like if i want it to say "Upload image to post" and remove the dot before the line.
OR
I want add a separate bbcode button for this.
Thank you.
There is one, buts it not working, broken. if you have any php knowledge you can fix it.
http://punbb.informer.com/forums/topic/ … al-fields/
Do not install it, it will break down your website.
change the theme in you profile too.
i think someone told u already, if you are in a shared host, it means someone else is causing the load.
u r absolutely right, lol, thanks.
i would be interested in this too if this solves my correct ip problem.
- add forum title into topic link
how do i remove this part from the following code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE extension SYSTEM "ext-1.0.dtd">
<!--
/**
* Various SEO improvements
*
* quadric_seo_optimizer
* @copyright (C) 2011 quadric quadmachine@wp.pl
* @license [url]http://www.gnu.org/licenses/gpl.html[/url] GPL version 2 or higher
*
* Extension for PunBB (C) 2011 PunBB
* License [url]http://www.gnu.org/licenses/gpl.html[/url] GPL version 2 or higher
*/
-->
<extension engine="1.0">
<id>quadric_seo_optimizer</id>
<title>Quadric SEO Optimizer</title>
<version>1.1.2</version>
<description>Various SEO improvements</description>
<author>Quadric</author>
<minversion>1.4</minversion>
<maxtestedon>1.4.2</maxtestedon>
<hooks>
<!-- Check if url match the current scheme. If not redirect to current scheme -->
<hook id="vf_modify_forum_info"><![CDATA[
$current_url = forum_htmlencode(get_current_url());
$seo_url = forum_sublink($forum_url['forum'], $forum_url['page'], (isset($_GET['p']) ? $_GET['p'] : 1), array($id, sef_friendly($cur_forum['forum_name'])));
if ($seo_url !== $current_url) {
header("Location: $seo_url", true, 301);
exit();
}
]]></hook>
<!-- Check if url match the current scheme. If not redirect to current scheme -->
<hook id="vt_modify_topic_info"><![CDATA[
$current_url = forum_htmlencode(get_current_url());
if ($pid) {
$seo_url = forum_link($forum_url['post'], $pid);
if ($seo_url !== $current_url . '#p' . $pid) {
header("Location: $seo_url", true, 301);
exit();
}
} else if ($id) {
$seo_url = forum_sublink($forum_url['topic'], $forum_url['page'], (isset($_GET['p']) ? $_GET['p'] : 1), array($id, sef_friendly($cur_topic['forum_name'] . ' ' . $cur_topic['subject'])));
if ($seo_url !== $current_url) {
header("Location: $seo_url", true, 301);
exit();
}
}
]]></hook>
<!-- Add forum title parts into topic title in topic -->
<hook id="vf_topic_loop_normal_topic_pre_item_title_merge"><![CDATA[
$forum_page['item_title']['link'] = '<a href="'.forum_link($forum_url['topic'], array($cur_topic['id'], sef_friendly($cur_forum['forum_name'] . ' ' . $cur_topic['subject']))).'">'.forum_htmlencode($cur_topic['subject']).'</a>';
]]></hook>
<!-- Add forum title parts into topic title in breadcrumb -->
<hook id="vt_pre_header_load"><![CDATA[
// Generate paging and posting links
$forum_page['page_post']['paging'] = '<p class="paging"><span class="pages">'.$lang_common['Pages'].'</span> '.paginate($forum_page['num_pages'], $forum_page['page'], $forum_url['topic'], $lang_common['Paging separator'], array($id, sef_friendly($cur_topic['forum_name'] . ' ' . $cur_topic['subject']))).'</p>';
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array($cur_topic['forum_name'], forum_link($forum_url['forum'], array($cur_topic['forum_id'], sef_friendly($cur_topic['forum_name'])))),
array($cur_topic['subject'], forum_link($forum_url['topic'], array($id, sef_friendly($cur_topic['forum_name'] . ' ' . $cur_topic['subject']))))
);
]]></hook>
<!-- Add forum title parts into thread response -->
<hook id="po_pre_header_load"><![CDATA[
if ($tid)
$forum_page['crumbs'][count($forum_page['crumbs']) - 2] = array($cur_posting['subject'], forum_link($forum_url['topic'], array($tid, sef_friendly($cur_posting['forum_name'] . ' ' . $cur_posting['subject']))));
]]></hook>
<!-- Add forum title parts into thread pages in forum -->
<hook id="vf_topic_loop_normal_topic_pre_item_nav_merge"><![CDATA[
if ($forum_page['item_pages'] > 1)
$forum_page['item_nav']['pages'] = '<span>'.$lang_forum['Pages'].' </span>'.paginate($forum_page['item_pages'], -1, $forum_url['topic'], $lang_common['Page separator'], array($cur_topic['id'], sef_friendly($cur_forum['forum_name'] . ' ' . $cur_topic['subject'])));
// Does this topic contain posts we haven't read? If so, tag it accordingly.
if (!$forum_user['is_guest'] && $cur_topic['last_post'] > $forum_user['last_visit'] && (!isset($tracked_topics['topics'][$cur_topic['id']]) || $tracked_topics['topics'][$cur_topic['id']] < $cur_topic['last_post']) && (!isset($tracked_topics['forums'][$id]) || $tracked_topics['forums'][$id] < $cur_topic['last_post']))
{
$forum_page['item_nav']['new'] = '<em class="item-newposts"><a href="'.forum_link($forum_url['topic_new_posts'], array($cur_topic['id'], sef_friendly($cur_forum['forum_name'] . ' ' . $cur_topic['subject']))).'">'.$lang_forum['New posts'].'</a></em>';
$forum_page['item_status']['new'] = 'new';
}
]]></hook>
<hook id="fn_generate_crumbs_end"><![CDATA[
if ($reverse)
{
$crumbs = '';
for ($i = ($num_crumbs - 1); $i >= 0; --$i)
$crumbs .= (is_array($forum_page['crumbs'][$i]) ? forum_htmlencode($forum_page['crumbs'][$i][0]) : forum_htmlencode($forum_page['crumbs'][$i])).((isset($forum_page['page']) && $i == ($num_crumbs - 1) && $forum_page['page'] > 1) ? ' ('.$lang_common['Page'].' '.forum_number_format($forum_page['page']).')' : '').($i > 0 ? $lang_common['Title separator'] : '');
}
]]></hook>
</hooks>
</extension>
Can someone help?
i mean the forum search.
ah, lol, you should add a replay in that extension topic to add the feature to the pm's, but i doubt u get a respond anytime soon, though.
does the bbcodes work in pm?
PunBB Forums → Posts by SuperMAG
Powered by PunBB, supported by Informer Technologies, Inc.