291471
Samhayne
Re: Problems with MyAlbum-p
  • 2003/10/4 16:31

  • Samhayne

  • Just popping in

  • Posts: 5

  • Since: 2003/8/12


Here comes module check:

Environment Check
PHP directive 'file_uploads' (need on):   on
PHP directive 'register_globals' (both ok):   on
PHP directive 'upload_max_filesize':   2M byte
PHP directive 'post_max_size':   8M byte
PHP directive 'open_basedir':   nothing
PHP directive 'upload_tmp_dir':   ok
Table Check
Photos table: zde_myalbum_photos   ok
Number of Photos: 0
Descriptions table: zde_myalbum_text   ok
Number of description: 0
Categories table: zde_myalbum_cat   ok
Number of Categories: 10
Votedata table: zde_myalbum_votedata   ok
Number of votedata: 0
Comments table: zde_xoopscomments   ok
Number of comments: 0
Config Check
Use ImageMagick: no
Directory for Photos: /home/virtual/site29/fst/var/www/html/uploads/photos   ok  
Directory for Thumbnails: /home/virtual/site29/fst/var/www/html/uploads/thumbs   ok  
Photos & Thumbs Link Check
Now, checking .ok  

Well, now i´m even more lost....

Thank you, GIJOE, for your help.



291472
ralf57
"New notifications" smarty variable ?
  • 2003/10/4 10:45

  • ralf57

  • Quite a regular

  • Posts: 231

  • Since: 2003/2/3 1


Hi all,is there a smarty variable to use in a block that shows only the new notifications(as the one for new PM's)?
I imagine it would be like this:

<{$block.new_notifications}>

or something not so far.
I hope i was clear.
Regards,ralf.



291473
knight
Re: Any Malaysia Xoops there?
  • 2003/10/4 10:17

  • knight

  • Just popping in

  • Posts: 29

  • Since: 2002/12/29


hehe since i start the thread first, if you guys dun mind i can "temporary" be the web master first until there is a better choice ..



291474
Herko
Re: How Do You Upgrade Your Xoops
  • 2003/10/4 10:05

  • Herko

  • XOOPS is my life!

  • Posts: 4238

  • Since: 2002/2/4 1


Just overwrite the files with the new ones. Be sure to back up your 2/0/4 files first tho, and do not overwrite the mainfile.php.

Herko



291475
DFBH13
How Do You Upgrade Your Xoops
  • 2003/10/4 9:36

  • DFBH13

  • Just popping in

  • Posts: 61

  • Since: 2003/6/26


hi,

Im kinda new to XOOPS and im wondering how do u upgrade XOOPS 2.0.4 to 2.0.5.





291476
YourHelp
SITE LAUNCH
  • 2003/10/4 8:07

  • YourHelp

  • Friend of XOOPS

  • Posts: 479

  • Since: 2003/6/9 6


Good Afternoon Xoopers.

Just wanted to share with you my site.. it's taken me some months to get the ball rolling again. A Big thanks to xend who helped me with creating my site.

My site is the actual fan club for an old RPG GAME called ultima7 - The black gate. Im sure that you have all heard about the famous ultima series at some stage!! magic, spells , middle aged fighting and adventure. Basically an adventure game and a game that has allway's been a favourite of mine since my first computer the 486! gee it really bring's back memory's...

If you don't own ultima7 the game i suggest you get it!

Hooroo for now and enjoy my site should you decide to view it www.ultima7.com , installing XOOPS 2.0.5 was a pleasure and ive had no problems so far great work!! and i love the new administration look

Kindest Regards
YH

p.s all idea's welcome.



291477
rainplanet
Re: Fix for multiple blocks in Admin
  • 2003/10/4 7:35

  • rainplanet

  • Just popping in

  • Posts: 2

  • Since: 2002/12/9


Quote:
I use a patch adding "$admin_mids = array_unique( $admin_mids ) ;" into cp_functions.php.

Could you share here to which line you add that code?



291478
hsalazar
Re: Some pointers on how to build a theme
  • 2003/10/4 5:02

  • hsalazar

  • Just popping in

  • Posts: 78

  • Since: 2003/2/6 1


Beduc:

If you take a look at the top left corner of this page, you'll see, in the browser banner, a legend stating "XOOPS Official Site - Forum - Microsoft Internet Explorer" or something like this. The first part is the site name, the second is the present module name.

Where is this code in the template (theme.html)? Right where the TITLE tag is. It says:

<title><{$xoops_sitename}> - <{$xoops_pagetitle}></title>

So, there you have the variables you need, already defined. What you need to do is to enclose the first one in a link to your home. This is the way it's solved in Punto flotante:

<td id="breadcrumb" colspan="2">
    <
table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
        <
tr>
            <
td width="10">
            </
td>
            <
td>
                <
div class="breadText">
                    <
a href="<{$xoops_url}>"><{$xoops_sitename}></a> > <{$xoops_pagetitle}>
                </
div>
            </
td>
            <
td width="5">
            </
td>
        </
tr>
    </
table>
</
td>


You can use other styles, DIVs instead of tables or whatever HTML solution you want, but you need to define the path as:

<a href="<{$xoops_url}>"><{$xoops_sitename}></a> > <{$xoops_pagetitle}>

Perhaps you want to go further than just the home and the module name... What about the article name if you're in the news module? To do this you have to edit the file modules/news/article.php. Before the final two includes in the file (around line 116), add the following:

$xoopsTpl->assign('xoops_pagetitle', htmlentities($xoopsModule->name() . ' > ' . $article->title()));

This line will assign to the Smarty variable $xoops_pagetitle (remember it?) a long string that includes the module name, the character '>' and the name of the article. This is the way it's solved in Punto flotante.

Want to go even further? What about including the link in the module name? In this case, what you need to add to article.php es 2 lines instead of one. Add:

$linktomodule = "<a href=\"<{$xoops_url}>/modules/news/index.php\">".htmlentities($xoopsModule->name()."</a>";
$xoopsTpl->assign('xoops_pagetitle', $linktomodule . ' > ' . $article->title()));


This will assign to variable $linktomodule the link to the start page of news and then create a long string that includes this link and the article name, and assign that long variable to the same Smarty variable as above.

Hope this helps.

Cheers



291479
nixon
MRBS Prob
  • 2003/10/4 2:55

  • nixon

  • Just popping in

  • Posts: 35

  • Since: 2003/3/7 2


Have installed the MRBS (meeting room booking service). Everything seems fine, group permissions etc. Can not seem to add a room for booking. Anyone else suffered the same prob.



291480
Beduc
Re: Some pointers on how to build a theme
  • 2003/10/3 21:57

  • Beduc

  • Just popping in

  • Posts: 1

  • Since: 2002/5/27


I'm working on a theme downloaded called mambotaste..
U can find it on www.beduc.net

I'm trying to make it really look the same ashttp://leerling.beduc.net

but in the center i try to achieve the users can see where they are.

I just can't figure out how that works ....
like start > forum
or
start > home


how did u do that onhttp://www.puntoflotante.com/ ?

i'm working on this for hours now bit just don't seem to find it.







Login

Who's Online

181 user(s) are online (103 user(s) are browsing Support Forums)


Members: 0


Guests: 181


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