81
reWARder
Re:newbb2 installation
  • 2004/11/8 2:10

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


Thank you too Predator.

I found the thread where I could download the german language files: German Language Files for Newbb2



82
reWARder
Re:newbb2 installation
  • 2004/11/8 1:01

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


Thanks a lot for your detailed answer!

Quote:
I am constantly amazed at the amount of times we still see people making major changes to their site without taking 15~20 minutes first to make a full backup of their sites.


Exactly this is the point why I answered these three major questions.

In this case I'm going to try out installing newbb2.0.



83
reWARder
newbb2 installation
  • 2004/11/8 0:09

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


Hi alltogether

I really hope to some answers of you belonging to the installation of newbb2.

I'm using XOOPS version 2.0.7 and newbb1.0.

1. In the installation file you write that first I have to delete the newbb(1.0) folder on my installed version of xoops. When I delete the newbb(1.0) folder on my server don't I delete all the forum entries or are they stored in an "external" databese? I only want to update the newbb1.0 forum to the newbb2.0rc3 forum. It absolutely isn't in my intrest to delete the forum entries!

2. What happens when I upload newbb2.0rc3 in a specific folder located in modules and I'm going to try to install newbb2.0 via the admin panel?

3. Where can I get a German language package?

Thank a lot for the time you took to answer my questions!



84
reWARder
Re: Issue with xoopsgallery/thumbnails
  • 2004/7/15 1:51

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


I have exactly the same problem and I don't know what to do. Is there sombody who can help?



85
reWARder
how to take over news from a php script to the xoops news script
  • 2004/7/5 16:09

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


at this time i'm using Newsscript v1.4.1 © by usolved.net. meanwhile this news script contains 225 news items. now i want to take over all this news items to the XOOPS news system.
does anybody have an idea how i could do this in a nice an fast way (no copy/paste work)?



86
reWARder
Re: duplicating a module
  • 2004/5/31 22:15

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


yes, thanks, I've seen this too.



87
reWARder
Re: duplicating a module
  • 2004/5/31 21:44

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


now it's on

the error message:

Quote:
Fatal error: Call to a member function on a non-object in /home/ocaholic/public_html/xoops/html/modules/gamesreviews/admin/admin_header.php on line 7


the source code:

Quote:

<?php
include "../../../mainfile.php";
include XOOPS_ROOT_PATH."/include/cp_functions.php";
include_once XOOPS_ROOT_PATH."/class/xoopsmodule.php";
if($xoopsUser){
$xoopsModule = XoopsModule::getByDirname("gamereviews");
if ( !$xoopsUser->isAdmin($xoopsModule->mid()) ) {
redirect_header(XOOPS_URL."/",3,_NOPERM);
exit();
}
} else {
redirect_header(XOOPS_URL."/",3,_NOPERM);
exit();
}
if ( file_exists("../language/".$xoopsConfig['language']."/main.php") ) {
include "../language/".$xoopsConfig['language']."/main.php";
} else {
include "../language/english/main.php";
}

?>




88
reWARder
Re: duplicating a module
  • 2004/5/31 16:20

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


following, there will be the code copied from the xoops_version.php.
does anybody have a plan what could be wrong here?

Quote:

<?php
$modversion['name'] = _MI_GAMESREVIEWS_NAME;
$modversion['version'] = "2.1";
$modversion['description'] = _MI_GAMESREVIEWS_DESC;
$modversion['credits'] = "gamesreviews";
$modversion['author'] = "Thomas Wolf<br />(http://www.mytutorials.info/ )";
$modversion['help'] = "";
$modversion['license'] = "GPL see LICENSE";
$modversion['official'] = 1;
$modversion['image'] = "images/gamesreviews_slogo.png";
$modversion['dirname'] = "gamesreviews";

// Sql file (must contain sql generated by phpMyAdmin or phpPgAdmin)
// All tables should not have any prefix!
$modversion['sqlfile']['mysql'] = "sql/mysql.sql";
//$modversion['sqlfile']['postgresql'] = "sql/pgsql.sql";

// Tables created by sql file (without prefix!)
$modversion['tables'][0] = "gamesreviews";
$modversion['tables'][1] = "gamesreviews_categorys";
$modversion['tables'][2] = "gamesreviews_groups";
$modversion['tables'][3] = "gamesreviews_votedata";

// Admin things
$modversion['hasAdmin'] = 1;
$modversion['adminindex'] = "admin/index.php";
$modversion['adminmenu'] = "admin/menu.php";

// Blocks
$modversion['blocks'][1]['file'] = "gamesreviews_top.php";
$modversion['blocks'][1]['name'] = _MI_GAMESREVIEWS_BNAME1;
$modvertion['blocks'][1]['description'] = "Shows last gamesreviews";
$modversion['blocks'][1]['show_func'] = "b_gamesreviews_top_show";
$modversion['blocks'][1]['edit_func'] = "b_gamesreviews_top_edit";
$modversion['blocks'][1]['options'] = "date|10";
$modversion['blocks'][2]['file'] = "gamesreviews_top.php";
$modversion['blocks'][2]['name'] = _MI_GAMESREVIEWS_BNAME2;
$modvertion['blocks'][2]['description'] = "Shows most visited gamesreviews";
$modversion['blocks'][2]['show_func'] = "b_gamesreviews_top_show";
$modversion['blocks'][2]['edit_func'] = "b_gamesreviews_top_edit";
$modversion['blocks'][2]['options'] = "hits|10";
$modversion['blocks'][3]['file'] = "waiting.php";
$modversion['blocks'][3]['name'] = _MI_GAMESREVIEWS_BNAME3;
$modvertion['blocks'][3]['description'] = "Shows all waiting gamesreviews";
$modversion['blocks'][3]['show_func'] = "b_waiting_show";


// Menu
$modversion['hasMain'] = 1;
$modversion['sub'][1]['name'] = _MI_GAMESREVIEWS_SMNAME1;
$modversion['sub'][1]['url'] = "submit.php";

// ekke dazu 20020704
// Search
$modversion['hasSearch'] = 1;
$modversion['search']['file'] = "include/search.inc.php";
$modversion['search']['func'] = "gamesreviews_search";
//ekke ende
?>



89
reWARder
Re: duplicating a module
  • 2004/5/31 11:52

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


until now I duplicated the module, or in other words I replaced all the code I had to.
I also had no problem with installing the recoded module, but when I want to access the modules configuration I'm going to get a white/blank page.
does anybody have an idea what I could have made wrong, or where I could have made something wrong?



90
reWARder
Re: duplicating a module
  • 2004/5/28 17:27

  • reWARder

  • Not too shy to talk

  • Posts: 107

  • Since: 2004/5/28


tanks a lot, I'm going to try this out.




TopTop
« 1 ... 6 7 8 (9) 10 »



Login

Who's Online

151 user(s) are online (94 user(s) are browsing Support Forums)


Members: 0


Guests: 151


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits