[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-07-02T17:34:36-07:00 https://integramod.com/forum/feed.php?f=17&t=1388 2006-07-02T17:34:36-07:00 2006-07-02T17:34:36-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10747#p10747 <![CDATA[MOD: Admin Note Pad]]>
more of an explanation here
http://www.integramod.com/forum/viewtopic.php?t=1434

Statistics: Posted Author: star — Sun Jul 02, 2006 5:34 pm


]]>
2006-07-02T13:19:38-07:00 2006-07-02T13:19:38-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10740#p10740 <![CDATA[Re: MOD: Admin Note Pad]]> Statistics: Posted Author: a_lunatic — Sun Jul 02, 2006 1:19 pm


]]>
2006-06-28T21:11:47-07:00 2006-06-28T21:11:47-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10472#p10472 <![CDATA[Re: MOD: Admin Note Pad]]>
"Threat009";p="10409" wrote:
what is the purpose of this mod <img>


Its handy for those late night when you realy need to go to bed but havent finished something lol

Just leave yourself another admin a message on the note pad.

Its pretty handy

Statistics: Posted Author: SLY LS1 — Wed Jun 28, 2006 9:11 pm


]]>
2006-06-28T09:05:22-07:00 2006-06-28T09:05:22-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10414#p10414 <![CDATA[MOD: Admin Note Pad]]>
for example, since my memory fails at times, i have a note with what to do when the "1 new message" gets stuck for a member, i just go to my notes and follow what i have their.

Statistics: Posted Author: ayasha — Wed Jun 28, 2006 9:05 am


]]>
2006-06-28T08:23:37-07:00 2006-06-28T08:23:37-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10409#p10409 <![CDATA[Re: MOD: Admin Note Pad]]> Statistics: Posted Author: Threat009 — Wed Jun 28, 2006 8:23 am


]]>
2006-06-28T04:45:04-07:00 2006-06-28T04:45:04-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10393#p10393 <![CDATA[MOD: Admin Note Pad]]>
"found it";p="10391" wrote:
sorry my bad it should be phpbb not phpBB so you need to change all the phpBB to phpbb <img>


Yep thats ok, i knew that much and the sql satement bit, just couldnt work out the other 2 changes, its all working again now with the correct table name.

Heres the correct complete mod if anyone wants to use it.

############################################################## ## MOD Title]http://www.phpbb.com/mods/[/url] for the ## latest version of this MOD. Downloading this MOD from other sites could cause malicious code ## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered ## in our MOD-Database, located at: [url=http://www.phpbb.com/mods/]http://www.phpbb.com/mods/[/url] ############################################################## ## Author Notes: You must have MySQL ############################################################## ## MOD History: Add on that add the stripslashes in the reading table ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ SQL ]------------------------------------------ #  CREATE TABLE phpbb_note ( id int(8) not null, text text);  INSERT INTO phpbb_note (id,text) VALUES ('1','Text');  # # #-----[ OPEN ]------------------------------------------ # templates/subSilver/admin/index_body.tpl # #-----[ FIND ]------------------------------------------ # </table> <br> # #-----[ BEFORE ADD ]------------------------------------------ # </table> <h1>NOTE IT!</h1> <table>   <tr>    <td>         <form>       <textarea>{U_NOTEIT}</textarea>       <input>    </form>      </td>   </tr> # #-----[ OPEN ]------------------------------------------ # admin/index.php  # #-----[ FIND ]------------------------------------------ # } elseif( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ) { # #-----[ AFTER ADD ]------------------------------------------ # // Begin of Note It         if(isset($_POST['post'])){            $tnote = addslashes($_POST['noteme']);       $query = mysql_query("UPDATE phpbb_note SET text = '" . addslashes($_POST['noteme']) . "' WHERE id = 1");    }           $sql = mysql_query("SELECT text FROM phpbb_note");         if(!$sql) { echo mysql_error(); };         $note = mysql_fetch_array($sql); // End of Note It # #-----[ FIND ]------------------------------------------ #       "L_GZIP_COMPRESSION" => $lang['Gzip_compression'], # #-----[ AFTER ADD ]------------------------------------------ #                 "U_NOTEIT" => $note['text'] # #-----[ SEARCH ]--------------------------------------------- # $template->pparse("body");      include('./page_footer_admin.'.$phpEx);  } else {    //    // Generate frameset  # #-----[ BEFORE ADD ]------------------------------------------ # // Thanks again for the developpers of this MOD // Begin Add On by Nellsy for the Notes           $template->assign_vars(array(                 "U_NOTEPAD" => stripslashes($note['text']))         );  // End Add On by Nellsy for the Notes # # # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM

Statistics: Posted Author: SLY LS1 — Wed Jun 28, 2006 4:45 am


]]>
2006-06-28T04:02:16-07:00 2006-06-28T04:02:16-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10391#p10391 <![CDATA[Re: Question: How do I change it from note to phpbb_note]]> <img>

Statistics: Posted Author: found it — Wed Jun 28, 2006 4:02 am


]]>
2006-06-28T03:29:16-07:00 2006-06-28T03:29:16-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10390#p10390 <![CDATA[Re: Question: How do I change it from note to phpbb_note]]>
any ideas

Statistics: Posted Author: SLY LS1 — Wed Jun 28, 2006 3:29 am


]]>
2006-06-28T02:47:22-07:00 2006-06-28T02:47:22-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10387#p10387 <![CDATA[Re: Question: How do I change it from note to phpbb_note]]>
Change in the install text the sql statement so it reads like this


CREATE TABLE phpBB_note (id int(8) not null,text text);  INSERT INTO phpBB_note (id,text) VALUES('1','Text');


And then you can drop the table note using phpmyadmin

Also you need to change this to this in admin/index.php

find

// Begin of Note It         if(isset($_POST['post'])){            $tnote = addslashes($_POST['noteme']);       $query = mysql_query("UPDATE note SET text = '" . addslashes($_POST['noteme']) . "' WHERE id = 1");    }           $sql = mysql_query("SELECT text FROM note");         if(!$sql) { echo mysql_error(); };         $note = mysql_fetch_array($sql);// End of Note It


to this

// Begin of Note It         if(isset($_POST['post'])){            $tnote = addslashes($_POST['noteme']);       $query = mysql_query("UPDATE note SET text = '" . addslashes($_POST['noteme']) . "' WHERE id = 1");    }           $sql = mysql_query("SELECT text FROM phpBB_note");         if(!$sql) { echo mysql_error(); };         $note = mysql_fetch_array($sql);// End of Note It


let me know

:mrgreen:

Statistics: Posted Author: found it — Wed Jun 28, 2006 2:47 am


]]>
2006-06-28T04:57:12-07:00 2006-06-28T00:15:48-07:00 https://integramod.com/forum/viewtopic.php?t=1388&p=10383#p10383 <![CDATA[MOD: Admin Note Pad]]>
Heres the mod in its original form

############################################################## ## MOD Title]http://www.phpbb.com/mods/[/url] for the ## latest version of this MOD. Downloading this MOD from other sites could cause malicious code ## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered ## in our MOD-Database, located at: [url=http://www.phpbb.com/mods/]http://www.phpbb.com/mods/[/url] ############################################################## ## Author Notes: You must have MySQL############################################################## ## MOD History: Add on that add the stripslashes in the reading table## ################################################################ Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################### #-----[ SQL ]------------------------------------------ #  CREATE TABLE note (id int(8) not null,text text);  INSERT INTO note (id,text) VALUES('1','Text');  # ##-----[ OPEN ]------------------------------------------#templates/subSilver/admin/index_body.tpl##-----[ FIND ]------------------------------------------#</table><br>##-----[ BEFORE ADD ]------------------------------------------#</table><h1>NOTE IT!</h1><table>   <tr>    <td>          <form>         <textarea>{U_NOTEIT}</textarea>         <input>     </form>      </td>   </tr>##-----[ OPEN ]------------------------------------------#admin/index.php  ##-----[ FIND ]------------------------------------------#}elseif( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ){##-----[ AFTER ADD ]------------------------------------------#// Begin of Note It          if(isset($_POST['post'])){               $tnote = addslashes($_POST['noteme']);         $query = mysql_query("UPDATE note SET text = '" . addslashes($_POST['noteme']) . "' WHERE id = 1");     }           $sql = mysql_query("SELECT text FROM note");         if(!$sql) { echo mysql_error(); };         $note = mysql_fetch_array($sql);// End of Note It##-----[ FIND ]------------------------------------------#         "L_GZIP_COMPRESSION" => $lang['Gzip_compression'],##-----[ AFTER ADD ]------------------------------------------#                 "U_NOTEIT" => $note['text']##-----[ SEARCH ]---------------------------------------------#$template->pparse("body");       include('./page_footer_admin.'.$phpEx);  }else{     //     // Generate frameset  ##-----[ BEFORE ADD ]------------------------------------------#// Thanks again for the developpers of this MOD// Begin Add On by Nellsy for the Notes           $template->assign_vars(array(                 "U_NOTEPAD" => stripslashes($note['text']))         );  // End Add On by Nellsy for the Notes####-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM


Thanks in advance

SLY

Statistics: Posted Author: SLY LS1 — Wed Jun 28, 2006 12:15 am


]]>