290791
Freaky
Re: Send message in forum......
  • 2003/10/11 17:53

  • Freaky

  • Just popping in

  • Posts: 37

  • Since: 2003/9/14


Jee... anyone an idee what this al means please?

Notice [PHP]: Undefined index: xoops_lblocks in file class/smarty/Smarty.class.php line 626
Notice [PHP]: Constant _mi_storyhomedsc already defined in file modules/news/language/nederlands/modinfo.php line 38
Notice [PHP]: Constant _mi_notifysubmitdsc already defined in file modules/news/language/nederlands/modinfo.php line 39
Notice [PHP]: Constant _mi_displaynavdsc already defined in file modules/news/language/nederlands/modinfo.php line 40
Notice [PHP]: Undefined index: partners in file templates_c/db%3Axoopspartners_block_site.html line 40
Notice [PHP]: Undefined index: stories in file class/smarty/Smarty.class.php line 626
Notice [PHP]: Undefined index: lang_activenotifications in file templates_c/db%3Asystem_notification_select.html line 7

Seems that there is nothing in this debug notice that occures my problem?

Please any explanation on this if possible

Thanks a lot.



290792
tl
Re: preventing multiple simultaneous logins *URGENT*
  • 2003/10/11 17:30

  • tl

  • Friend of XOOPS

  • Posts: 999

  • Since: 2002/6/23


Just one glitch with this hack.

$online_handler->gc( 300 );

prevents you from logging in 5 minutes if you forgot to logout.

But, it also allows another person to log in using the same username five minutes after the initial user having logged in, so multiple logins are still possible. The hack only works in the initial 5 minutes.

tl




290793
gmong
Re: newbie question: xoops an evolved nuke?
  • 2003/10/11 17:21

  • gmong

  • Just popping in

  • Posts: 8

  • Since: 2003/10/11


I can't believe I typed that twice: yes, 'evolved' :)



290794
JackJ
Re: Problem with editing news
  • 2003/10/11 17:16

  • JackJ

  • Community Support Member

  • Posts: 747

  • Since: 2003/8/31


These are definitions in the language file of the News module.

the file the definitions should be in is:

modules/news/language/english/admin.php (assuming your site is english)

I would check the file exists ok, and these entries exist. If no language definitions exist, you get this kind of googbldygook

If they dont, then you need this:

<?php
// $Id: admin.php,v 1.8 2003/04/01 09:07:28 mvandam Exp $
//%%%%%% Admin Module Name Articles %%%%%
define("_AM_DBUPDATED","Database Updated Successfully!");
define("_AM_CONFIG","News Configuration");
define("_AM_AUTOARTICLES","Automated Articles");
define("_AM_STORYID","Story ID");
define("_AM_TITLE","Title");
define("_AM_TOPIC","Topic");
define("_AM_POSTER","Poster");
define("_AM_PROGRAMMED","Programmed Date/Time");
define("_AM_ACTION","Action");
define("_AM_EDIT","Edit");
define("_AM_DELETE","Delete");
define("_AM_LAST10ARTS","Last 10 Articles");
define("_AM_PUBLISHED","Published"); // Published Date
define("_AM_GO","Go!");
define("_AM_EDITARTICLE","Edit Article");
define("_AM_POSTNEWARTICLE","Post New Article");
define("_AM_ARTPUBLISHED","Your article has been published!");
define("_AM_HELLO","Hello %s,");
define("_AM_YOURARTPUB","Your article submitted to our site has been published.");
define("_AM_TITLEC","Title: ");
define("_AM_URLC","URL: ");
define("_AM_PUBLISHEDC","Published: ");
define("_AM_RUSUREDEL","Are you sure you want to delete this article and all its comments?");
define("_AM_YES","Yes");
define("_AM_NO","No");
define("_AM_INTROTEXT","Intro Text");
define("_AM_EXTEXT","Extended Text");
define("_AM_ALLOWEDHTML","Allowed HTML:");
define("_AM_DISAMILEY","Disable Smiley");
define("_AM_DISHTML","Disable HTML");
define("_AM_APPROVE","Approve");
define("_AM_MOVETOTOP","Move this story to top");
define("_AM_CHANGEDATETIME","Change the date/time of publication");
define("_AM_NOWSETTIME","It is now set at: %s"); // %s is datetime of publish
define("_AM_CURRENTTIME","Current time is: %s"); // %s is the current datetime
define("_AM_SETDATETIME","Set the date/time of publish");
define("_AM_MONTHC","Month:");
define("_AM_DAYC","Day:");
define("_AM_YEARC","Year:");
define("_AM_TIMEC","Time:");
define("_AM_PREVIEW","Preview");
define("_AM_SAVE","Save");
define("_AM_PUBINHOME","Publish in Home?");
define("_AM_ADD","Add");

//%%%%%% Admin Module Name Topics %%%%%

define("_AM_ADDMTOPIC","Add a MAIN Topic");
define("_AM_TOPICNAME","Topic Name");
define("_AM_MAX40CHAR","(max: 40 characters)");
define("_AM_TOPICIMG","Topic Image");
define("_AM_IMGNAEXLOC","image name + extension located in %s");
define("_AM_FEXAMPLE","for example: games.gif");
define("_AM_ADDSUBTOPIC","Add a SUB-Topic");
define("_AM_IN","in");
define("_AM_MODIFYTOPIC","Modify Topic");
define("_AM_MODIFY","Modify");
define("_AM_PARENTTOPIC","Parent Topic");
define("_AM_SAVECHANGE","Save Changes");
define("_AM_DEL","Delete");
define("_AM_CANCEL","Cancel");
define("_AM_WAYSYWTDTTAL","WARNING: Are you sure you want to delete this Topic and ALL its Stories and Comments?");


// Added in Beta6
define("_AM_TOPICSMNGR","Topics Manager");
define("_AM_PEARTICLES","Post/Edit Articles");
define("_AM_NEWSUB","New Submissions");
define("_AM_POSTED","Posted");
define("_AM_GENERALCONF","General Configuration");

// Added in RC2
define("_AM_TOPICDISPLAY","Display Topic Image?");
define("_AM_TOPICALIGN","Position");
define("_AM_RIGHT","Right");
define("_AM_LEFT","Left");

define("_AM_EXPARTS","Expired Articles");
define("_AM_EXPIRED","Expired");
define("_AM_CHANGEEXPDATETIME","Change the date/time of expiration");
define("_AM_SETEXPDATETIME","Set the date/time of expiration");
define("_AM_NOWSETEXPTIME","It is now set at: %s");

// Added in RC3
define("_AM_ERRORTOPICNAME", "You must enter a topic name!");
define("_AM_EMPTYNODELETE", "Nothing to delete!");
?>

call this admin.php and put it here:


modules/news/language/english/admin.php



290795
Shine
Re: preventing multiple simultaneous logins *URGENT*
  • 2003/10/11 17:11

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Ah, know I get the picture.
I thought the 2x login hack concerned also from the same pc.....That is why this hack kept me thinkin'

I am not that technical and always curious and eager to learn. As far as my logical thinking reached, this hack didn't (even cannot) prevend logging in twice from the same pc. That is why I kept asking about this hack.

If my asking sounded somewhat offensive, I am sorry, because that wasn't my intension!

Grtz., Shine



290796
PureLuXus
Re: Gallery's Albums - a question
  • 2003/10/11 17:01

  • PureLuXus

  • Not too shy to talk

  • Posts: 116

  • Since: 2002/1/3 2


requested added and coming soon in the next version
including ALL fixes from the forum and more..



290797
lewisteo
Re: Multilingo
  • 2003/10/11 16:56

  • lewisteo

  • Just popping in

  • Posts: 13

  • Since: 2003/9/26


yep mine also, what i did is remove the line to call the image and resolve it without image display...



290798
ackbarr
Re: How to make a backup of DataBase

please take a look at this thread, which discusses a couple solutions:

https://xoops.org/modules/newbb/viewtopic.php?topic_id=12582&forum=1#forumpost50403



290799
ackbarr
Re: 2.0.5 - Blocks disappears !!!

You can check to pieces of information. Make sure that all desired groups have block access rights to your new block in "System" -> "Groups". Then check that the block is set to be visible on the "Top Page" in "System" -> "Blocks"



290800
ackbarr
Re: 3 install problems, o.a. database and rights

can you describe the environment that you are installing XOOPS upon a little better. For example:

What type of server (Unix or Windows)?
What webserver software and version is being used?
What version of MySQL and php?

If you are unsure how to get these answers, create a new file called phpinfo.php in the root directory of your website. then in phpinfo.php add the following:
<?php
phpinfo
();
?>







Login

Who's Online

192 user(s) are online (133 user(s) are browsing Support Forums)


Members: 0


Guests: 192


more...

Donat-O-Meter

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

Latest GitHub Commits