1
areaten
Magazine 1.2 preferences will not save
  • 2006/8/3 1:17

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


I'm using 'Magazine 1.2' module and for some reason I now cannot update any changes I make in the preferences for it. This has started to happen in the past few weeks. I get a '403 Forbidden' page when trying to save changes: "You don't have permission to access /modules/system/admin.php on this server."

Other module preferences still work and update fine.

I have been doing quite a bit of work with this module lately but mostly just with the templates, not the code. The web hosting has turned off 'register globals' though I don't know what this means or if it is part of the problem.

Am I missing something obvious here or any ideas what I might have done to affect the ability to save preferences for just this one module?

Thanks for any help



2
areaten
Re: Manually Activate User?
  • 2006/7/4 23:45

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


I'm having similar problem as jon has described, but I have given myself all the group permissions and yet cannot select anny users to be able to edit them. The webmaster is the one active user and there are two inactive users I want to activate. No users appear on the 'List' link, not even the active webmaster.

I can see the usernames of the inactive users in 'Find Users' but when clicking on the name I get 'no user selected'



3
areaten
Re: Keep getting a full stop added to the end of URLs
  • 2006/4/24 22:37

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


Found solution in XOOPS forums here



4
areaten
Keep getting a full stop added to the end of URLs
  • 2006/4/21 13:53

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


Not sure where to post this question,
but for some reason XOOPS is adding a fullstop at the end of every URL and email address.

I'm using the Magazine module but I'm not sure it's actually that which is causing it, and maybe the theme?

See:
http://www.area10.info/modules/magazine/article.php?articleid=5

http://www.area10.info/modules/magazine/artindex.php?category=6

When editing the article there is definitely no full stop there, it seems to be added from the style. The admin@area10.info address in the first link for example. It even happens in the middle of a sentance (I thought it might have been as part of paragraph formating)

Anyone with a clue to what's going on with this?



5
areaten
Re: Stuck on changing style
  • 2006/4/20 15:51

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


Thanks c2uk2003, adding the !important bit really works.
Makes me laugh that!
Cheers



6
areaten
Stuck on changing <TH> style
  • 2006/4/20 0:53

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


Hi,
I'm stuck on changing the appearence of the 'th' tag in my site.

I've changed in the css (previous style is commented out):

th {padding2px;color#000000 /* #fff */;background: #FFFF33 /* #48b */;font-family: Verdana, Arial, Helvetica, sans-serif;vertical-align: middle;}


yet it is still showing the previous stlye!
I've made other changes in the css with no problem.

You can see the example in:
http://www.area10.info/modules/archcontact/
The top bar of the table is still blue, when I'm trying to change to yellow.

The template of that page is below:
<link href="../../../../xoops-2.2.3a-Final/html/themes/xmt/css/styleNN.css" rel="stylesheet" type="text/css"> <{$contactform.javascript}>
<
form name="<{$contactform.name}>" action="<{$contactform.action}>" method="<{$contactform.method}>" <{$contactform.extra}>>

<
br>
  <
table class="outer" cellspacing="1" align="center">
    <
tr>
    <
th style="text-align:center;" colspan="2"><{$ac_archcontact}></th>
    </
tr>
    <!-- 
start of form elements loop -->
    <{foreach 
item=element from=$contactform.elements}>
      <{if 
$element.hidden != true}>
      <
tr>
        <
td class="head"><{$element.caption}></td>
        <
td class="<{cycle values="even,odd"}>"><{$element.body}></td>
      </
tr>
      <{else}>
      <{
$element.body}>
      <{/if}>
    <{/foreach}>
    <!-- 
end of form elements loop -->
  </
table>
  </
form>


Any advice?



7
areaten
Re: Getting Magazine article template to fillwidth of site
  • 2006/3/12 22:16

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


True, but where do is that code?

<div style="text-align: center; padding: 3px;margin:3px;" class="tbl520">   </div>
  <
div class="tbl520">
  <!-- 
start comments loop --> 
    <!-- 
end comments loop --> 
</
div>

is actually just the 'view source' in firefox. I can't see where to remove it in the actual html templates. (the 2nd and 3rd boxes of code that I pasted in my first post)

The unedited template "mag_comment.html" is

<div style="text-align: center; padding: 3px;margin:3px;" class="tbl520"> <{$commentsnav}> <{$lang_notice}> </div>
  <
div class="tbl520">
  <!-- 
start comments loop --> 
  <{if 
$comment_mode == "flat"}>
    <{include 
file="db:system_comments_flat.html"}>
  <{elseif 
$comment_mode == "thread"}>
    <{include 
file="db:system_comments_thread.html"}>
  <{elseif 
$comment_mode == "nest"}>
    <{include 
file="db:system_comments_nest.html"}>
  <{/if}>
  <!-- 
end comments loop --> 
</
div>


and my edited one is

<div style="text-align: center; padding: 3px;margin:3px;"> <{$commentsnav}> <{$lang_notice}> </div>
  <
div>
  <!-- 
start comments loop --> 
  <{if 
$comment_mode == "flat"}>
    <{include 
file="db:system_comments_flat.html"}>
  <{elseif 
$comment_mode == "thread"}>
    <{include 
file="db:system_comments_thread.html"}>
  <{elseif 
$comment_mode == "nest"}>
    <{include 
file="db:system_comments_nest.html"}>
  <{/if}>
  <!-- 
end comments loop --> 
</
div>


removing the class="tbl520" bit, but it is still showing the page that width!

I'm not experienced at editing templates.. am I looking in the right place?

Thanks



8
areaten
Re: Getting Magazine article template to fillwidth of site
  • 2006/3/12 21:43

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


thanks ladon, but rather than changing or deleting the "tbl520" class, isn't there a way of just not calling it in the html templates?
as deleting or altering that class might affect another part of the site no?



9
areaten
Getting Magazine article template to fillwidth of site
  • 2006/3/12 20:34

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


Hi, I apologise if this is the wrong section to post this.

I'm using the Magazine module, and the article template is showing the articles in a 520pixel width.
see:
http://www.area10.info/modules/magazine/article.php?articleid=4

I have looked all over the templates and css for the Magazine module but can't figure it out.
Viewing the source of the above link it appears it is the comments table that is doing it?

<div style="text-align: center; padding: 3px;margin:3px;" class="tbl520">   </div>
  <
div class="tbl520">
  <!-- 
start comments loop --> 
    <!-- 
end comments loop --> 
</
div>


My edited mag_article.html template is
<{include file="db:mag_article_header.html"}>
<
br />
<
table border="0" cellpadding="0" cellspacing="0" width="100%">
  <
tr valign="top"
    <
td> <p><span class="titlemain"><{$article.titlemain}></span> <{$article.adminlink}> 
        <
br />
        <
br />
        <{if 
$article.subtitle !=''}> <span class="subtitle"><{$article.subtitle}></span
        <
br />
        <
br />
        <{/if}> <
span> <{if $article.is_include == 1}> <{include_php file="file:$my_template"}> 
        <{else}> <{
$article.maintext}> <{/if}> <br />
        <{
$pagenav}>
        </
span></p></td></tr>  
</
table>
<
br />
<
table border="0" cellpadding="0" cellspacing="0" width="100%">
  <
tr
    <
td class="info_text_02"><{$article.menu}></td>
    <
td class="info_text_02"><{$lang_copyright}></td>
  </
tr>
</
table>


and
my edited mag_comments.html template is
<div style="text-align: center; padding: 3px;margin:3px;"> <{$commentsnav}> <{$lang_notice}> </div>
  <
div>
  <!-- 
start comments loop --> 
  <{if 
$comment_mode == "flat"}>
    <{include 
file="db:system_comments_flat.html"}>
  <{elseif 
$comment_mode == "thread"}>
    <{include 
file="db:system_comments_thread.html"}>
  <{elseif 
$comment_mode == "nest"}>
    <{include 
file="db:system_comments_nest.html"}>
  <{/if}>
  <!-- 
end comments loop --> 
</
div>


I do not see where class="tbl520" is kicking in..



10
areaten
Re: No ability to change editors - Solution !
  • 2006/3/3 0:12

  • areaten

  • Just popping in

  • Posts: 30

  • Since: 2004/3/9 1


Seems to have worked, thanks drekka!




TopTop
(1) 2 3 »



Login

Who's Online

189 user(s) are online (124 user(s) are browsing Support Forums)


Members: 0


Guests: 189


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