11
T-Tech
Re: Blank Page After Installation
  • 2004/9/8 0:55

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


Raymie I suggest you take a look @ your mainfile.php as well and also be sure you have uploaded to the correct place. You files are not being found due to the fact that they are not where the mainfile.php is saying to look



12
T-Tech
Re: Blank Page After Installation
  • 2004/9/8 0:53

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


I would assumehttp://0.0.0.0:80 style pending on the machines address and wether or not that have a dns



13
T-Tech
Re: newbb questions
  • 2004/9/8 0:22

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


Yes.

Well see I dont want to ban the users from the forum completely, I just want to limit where they may post.

Edit: Basically I want to be able to set restrictions on some users and only allow them to post in a certain forum rather than all forums.



14
T-Tech
Re: Blank Page After Installation
  • 2004/9/8 0:10

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


Are you sure that all of your themes have uploaded correctly?

Try going tohttp://yoursite.com/user.php and see if you can login

Also sometimes I've noticed with new sites if you installed under a temp domain likehttp://yourhost.com/~you
and you now want to access viahttp://YourSite.com you must edit the mainfile.php



15
T-Tech
Re: How do I create a simple static HTML only module?
  • 2004/9/8 0:05

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


My easy suggestion make a module, it is not that hard to do and I will prove it by posting a simple template to follow.

1. Make a folder named MyModule(You may name this whatever you'd like)

This will be your modules index.php
<?php
// Miss Danni of http://www.stcdesignz.com
include("../../mainfile.php");
include(
"../../header.php");
$xoopsOption['show_rblock'] = 1;
$xoopsOption['show_lblock'] = 1;
$module_name basename(dirname(__FILE__));
$index 1;
?>

<table>
<tr>
<td>
All you have to do is add you html content in this area.
</td>
<tr>
</table>

<?
include("../../footer.php");
?>


Ok now you need to make xoops_version.php if this is a simple html module you should only need the following modversions

<?php
// Module version 1.0

// Modules Name
$modversion['name'] = "My Module Name";

// Modules Version
$modversion['version'] = 1.00;

// Modules Description
$modversion['description'] = "My Module's Description";

// Modules Author
$modversion['author'] = "Me";

// Modules Credits - Include a site link if you wish
$modversion['credits'] = "This module was made by Me";

// 1 for yes and 0 for no
$modversion['official'] = 1;

//Note this must be the modules exact folder name
$modversion['dirname'] = "MyModule"

// Modules image
$modversion['image'] = "moduleimage.gif";

// Do we have an admin area 0 for no 1 for yes
$modversion['hasAdmin'] = 0;

// Do we want this in the main menu 0 for no 1 for yes
$modversion['hasMain'] = 1;
?>


Now you have made your very own module named "MyModule" within the MyModule folder you will have the two files you just created index.php and xoops_version.php If you like you can make a cute small image 92x52px for your module that will appear in your module manager.

FTP the folder MyModule to your sites modules folder and activate it in the system admin.

Simple as that :)



16
T-Tech
Re: Can't change theme
  • 2004/9/7 23:42

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


When you change the theme in admin, most times you will not see a change until you logout.



17
T-Tech
Re: no image and color
  • 2004/9/7 23:40

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


Goto the X where the pic should be and right click on it and view properties. This will tell you where it is looking for the image, be sure that your image is in THAT place.



18
T-Tech
Re: how to add a link into the main menu?
  • 2004/9/7 23:38

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


Go to your templates manager and select the main menu block and you will see an area at the top where you may add new links. Be sure not to mess with the main menu code.

Like so:
<table cellspacing="0">
  <
tr>
    <
td id="mainmenu">
      <
class="menuTop" href="<{$xoops_url}>/"><{$block.lang_home}></a>
      <
class="menuMain" href="http://yourlinkhere.com/">YourLinkText</a>
      <!-- 
start module menu loop -->
      <{foreach 
item=module from=$block.modules}>
      <
class="menuMain" href="<{$xoops_url}>/modules/<{$module.directory}>/"><{$module.name}></a>
        <{foreach 
item=sublink from=$module.sublinks}>
          <
class="menuSub" href="<{$sublink.url}>"><{$sublink.name}></a>
        <{/foreach}>
      <{/foreach}>
      <!-- 
end module menu loop -->
    </
td>
  </
tr>
</
table>



19
T-Tech
Re: [code] & [quote] xoopscodes acting weird
  • 2004/9/7 23:28

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


Check your forum settings to be sure you have allowed for the codes to work..

Just for the sake of saying it .... tell me you are not using the * in your posts as part of the code? lol

<? echo "blahblah"?>


Quote:
blah blah



20
T-Tech
Re: newbb questions
  • 2004/9/7 23:12

  • T-Tech

  • Just popping in

  • Posts: 62

  • Since: 2004/3/3 1


Ok I just installed the newbb beta 3 on my test site and things seem to be working pretty good thus far.

I have 2 questions...

First, in the forum index it shows that there are no new posts ect .... but I see no option to review the posts that i have already seen. Say I wanted to look over a past post or something. Is this an issue or have I made a mistake some place here.

Second ... ok you know when you set the privite forums up and you select whom has access and whom can post ect. What I am looking for is the oppisite. I want to be able to not allow certain users on certain forums. Basically all would have access untill a mod removes them from that forum.

Is this possible to work into beta 4?

Thanks in advance

Regards, Danni :)




TopTop
« 1 (2) 3 4 5 ... 7 »



Login

Who's Online

165 user(s) are online (113 user(s) are browsing Support Forums)


Members: 0


Guests: 165


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