11
hardyvoje
How to change encooding?
  • 2006/4/5 7:01

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


Where can i find variable: $xoops_charset
to change encoding on my pages?

Help!
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



12
hardyvoje
Re: AMS Module Topic Page Doesn't Work
  • 2006/3/31 17:49

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


I have same problem too!!!!
HELP!!!
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



13
hardyvoje
Problem with AMS installation on Xoops 2.2
  • 2006/3/31 16:29

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


Hello, I have AMS installed on two XOOPS sites, and everything seems ok, but category listing page doesn't work (the one that opens when you click on category from AMS's menu block).

If you choose story from recent articles block, it is ok.
Admin pages are ok too.
Submit works.

But, index page of particular topic doesn't work, and module main page too.

I checked uploaded files on both servers, everything seems ok.

Please help!
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



14
hardyvoje
Re: Content of most blocks suddenly not shown!!!
  • 2006/1/10 22:50

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


Sorry for boring you, i found solution on forums.
After clikcing update on each module which blocks had problem, problem gone so now I can with smiled face to continue building my web site !!!!

Thanks for time!
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



15
hardyvoje
Re: Content of most blocks suddenly not shown!!!
  • 2006/1/10 22:31

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


Also i have to say that content from custom blocks is visible on admin side, when i open blocks and clic edit
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



16
hardyvoje
Re: Content of most blocks suddenly not shown!!!
  • 2006/1/10 19:36

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


ya, ya> phpbb forum module provided in Community Module Pack
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



17
hardyvoje
Re: Content of most blocks suddenly not shown!!!
  • 2006/1/10 19:10

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


Debug says:
Warning [Xoops]: Smarty errorunable to read resource"db:myalbum_block_topnews_p.html" in file class/smarty/Smarty.class.php line 1084
Warning 
[Xoops]: Smarty errorunable to read resource"db:weblinks_block_new.html" in file class/smarty/Smarty.class.php line 1084
Warning 
[Xoops]: Smarty errorunable to read resource"db:system_block_online.html" in file class/smarty/Smarty.class.php line 1084


Resized Image

Look at this, there is no even User Login block, i had to try access to restricted module to get log-in form.

Resized Image

Likely, there is User menu :)

Info from XOOPS Info Module:
Website URL:
http://www.omnetwork.net/cms

XOOPS Version:
XOOPS 2.2.3 Final

XOOPS Theme:
default

XOOPS Template Set:
default

PHP Version:
4.3.11

MySQL Version:
3.23.56-log

Server Software:
Apache/2.0.47 (Unix) DAV/2

User's Browser:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)

i hope you have some idea :)
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



18
hardyvoje
Content of most blocks suddenly not shown!!!
  • 2006/1/10 15:14

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


I have really big problem with my web site now...

I have installed XOOPS about 20 days ago, costumized it, i'm working on it every day and everything seemed ok, but today i have installed phpcc forum, and after permissions setup for forum i have lost content from almost all blocks. There is captions of blocks and layout but no text. Lost blocks: Who is online, Custom Blocks, Recent uploaded photos (MyAlbum module)... Blocks from RMSOFT Downloads Plus 1.5 module works ok, but Blocks from: MyAlbum and custom blocks doen't.

News block still works fine

Please help and visit: www.omnetwork.net/cms
to see it on-line...

:(

help!
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



19
hardyvoje
Re: wf-downloads module and others show BLANK PAGE.
  • 2006/1/8 1:52

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


Sure that you uploaded it without changeing lettercase of file names?

i had some problems because my ftp client has turned-on lowercase conversion...
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org



20
hardyvoje
Re: Category permisions per groups RMSOFT Downloads Plus 1.5
  • 2006/1/8 1:42

  • hardyvoje

  • Not too shy to talk

  • Posts: 123

  • Since: 2005/12/25


I've found solution on my own so i would like to share it with others:

in file rmdp_functions.php (subfolder > include)
i have added code found somewhere on forum:

function rmdp_in_group($group_name) {
global $xoopsUser;
if (!is_object($xoopsUser)) {
return false;
}
$member_handler =& xoops_gethandler('member');
$groups =& $member_handler->getGroupsByUser($xoopsUser->getVar('uid'), true);
$in_group = false;
foreach ($groups as $group) {
if ($group->getVar('name') == $group_name) {
$in_group = true;
break;
}
}
return $in_group;
}

then in file categos.php - which shows category content i have changed code like this from line 42:

include('include/rmdp_functions.php');

$xoopsTpl->assign('rss_catego',$id);

// Comprobamos el acceso a la categoría
include 'include/rmdp_access.php';

if (rmdp_check_access($id)){
// array of IDs of groups to which current user belongs
if (!rmdp_in_group("Approved members")) {
redirect_header(XOOPS_URL."/user.php?xoops_redirect=".parse_url($_SERVER['PHP_SELF']), 1, _RMDP_ERR_ACCESS);
die();}
}


later in code there is line with>
include('include/rmdp_functions.php'); should be removed.

I needed to use Approved members string to indentify user group with that name, probably others gonna use something else...

i hope that i helped someone!
FreeResources Design Portal:http://www.omnetwork.net | Open Source Gaming Portal:http://www.osgamer.org




TopTop
« 1 (2) 3 »



Login

Who's Online

249 user(s) are online (162 user(s) are browsing Support Forums)


Members: 0


Guests: 249


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