MyBB Community Forums

Full Version: :( This Plugin Dont Work More
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
http://mods.mybboard.net/view/notepad-in-index-of-ucp

[Image: 16525-1230345047-ucp.JPG]


Please How Install Correctly This PluginSadSadSadSad
Maybe you could explain how exactly it isn't working...?? Is it just not showing?? Tried deactivating and reactivating it??
simply does not work

not working

i check the source.txt and is the same code as the original template
It looks like its working to me. I see a notepad in your screenshot.
It looks like its working to me. I see a notepad in your screenshot.


The PHP File contains nothing
 <?php
function plugin_info()
{
    return array(
        'name'        => 'Notepad in index of UCP',
        'description' => 'Places your personal notepad into the UCP index',
        'website'     => 'http://mods.mybboard.net/',
        'version'     => 'v1.0.1 Beta',
        'author'      => 'Web-Fox Creations',
        'authorsite'  => 'http://fox-hosting.co.cc/forum',
        'guid'        => 'e6341e9db4f0648cea769002c7a8559d'
        
    );
}
?> 


The Source.txt
<html>
<head>
<title>{$lang->user_cp}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="{$colspan}"><strong>{$lang->brief_summary}</strong></td>
</tr>
<tr>
{$avatar}
<td class="trow1" width="50%"><strong>{$lang->username}</strong></td>
<td class="trow1" width="50%">{$username}</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>{$lang->primary_usergroup}</strong></td>
<td class="trow2" width="50%">{$usergroup}</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>{$lang->registration_date}</strong></td>
<td class="trow1" width="50%">{$regdate}</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>{$lang->postnum}</strong></td>
<td class="trow2" width="50%"><a href="search.php?action=finduser&amp;uid={$mybb->user['uid']}">{$mybb->user['postnum']}</a> {$lang->posts_day}</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>{$lang->email}</strong></td>
<td class="trow1" width="50%">{$mybb->user['email']}</td>
</tr>
{$reputation}
</table>
{$latest_warnings}
</td>
</tr>
</table>
{$footer}
</body>
</html>

and the restore.txt
<html>
<head>
<title>{$lang->user_cp}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="{$colspan}"><strong>{$lang->brief_summary}</strong></td>
</tr>
<tr>
{$avatar}
<td class="trow1" width="50%"><strong>{$lang->username}</strong></td>
<td class="trow1" width="50%">{$username}</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>{$lang->primary_usergroup}</strong></td>
<td class="trow2" width="50%">{$usergroup}</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>{$lang->registration_date}</strong></td>
<td class="trow1" width="50%">{$regdate}</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>{$lang->postnum}</strong></td>
<td class="trow2" width="50%"><a href="search.php?action=finduser&amp;uid={$mybb->user['uid']}">{$mybb->user['postnum']}</a> {$lang->posts_day}</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>{$lang->email}</strong></td>
<td class="trow1" width="50%">{$mybb->user['email']}</td>
</tr>
{$reputation}
</table>
{$latest_warnings}
</td>
</tr>
</table>
{$footer}
</body>
</html>


They are the same
Walkman is correct. The plugin doesnt do anything.
And its quite dangerous having a restore.txt as template while not knowing what theme someone is using.
Instructions tell the user that if it does not work or to uninstall, restore your usercp template with the code supplied in .txt file
I use a custom theme and if I used the restore.txt template code, it would mess up my usercp
I see 209 downloads of this plugin
Submitted: 27th December 2008
Last Updated: 24th April 2009

How could this have lasted so long in the plugin area?
(2009-11-06, 05:17 PM)ralgith Wrote: [ -> ]It looks like its working to me. I see a notepad in your screenshot.

If you clicked the link, the screenshot was taken from the plugin page.

http://mods.mybboard.net/uploads/preview...47-ucp.JPG

is

[Image: 16525-1230345047-ucp.JPG]
but its author has not connected since made the plugin


any suggestions on how to perform this modification
Ok, did you perform all the modifications as per the install file?
It does not work - it cant possibly work with a simple function plugin_info()
The code that is instructed to use doesnt even contain a {$form}
If you download the plugin and look through the code, you will understand it doesnt do anything.
Walkman posted all the code involved in earlier thread.

Quote:1. Upload files and log into admin
2. Open source.txt and minimize it
3. Go to ACP > Templates & Style > Templates > Whichever theme you want this script to run on > User Control Panel Templates
4. Expand and then click "usercp: (without the quotes)
5 You will see a huge HTML editor, delete all code in it, but DO NOT SAVE
6 Unminimize source.txt and copy all contents.
7 Paste all contents into HTML editor and save
Pages: 1 2