1
swisslyons
Re: One Large Pitfall of Smarty
  • 2004/1/8 19:14

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


Hi peeps



2
swisslyons
Re: Language selection
  • 2003/6/30 12:14

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


language selection is useless if the language of the content does not change in my opinion. I mean, what good does it really do if the menu and title change but you cant read the news?

osCommerce has an excellent solution to handle multiple languages. The content changes and the menus etc. This is accomplished by having additional language tables in the database. Admin can then choose which languases he wants to display on the site, and for each new article input, the admin is given input fields for each of the multiple languages he has selected to display on the site.

This would probably require some pretty heavy hacking to make it work in Xoops, but a worthwhile venture if anyone has the time and knowhow to tackle it. I dont




3
swisslyons
Re: WF-Sections V1 Released
  • 2003/6/30 12:07

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


Catzwolf, you are one crazy coding lad, you deserve(and I highly recommend) a break. Go enjoy life a bit while the weather is nice

Havent tried the new version yet but i am sure its great, you sure have quite a thread going here! I predict that your contributions to XOOPS will go a long way towards keeping this community from dying out...Xoops needs more modules and yours is top. congrats and see you m8.



4
swisslyons
Re: Xoops 2 module wish list

i want a super 'samrt' module, that i can type what I want in this forum and the code will be generated on the fly and emailed to me automagically

keep up the good work devs!

PS. --> in the image admin in xoops2, would be nice if there was an option (checkbox/submit?) next to each upload image to be able to delete them...



5
swisslyons
Re: table background is missing sometimes ..
  • 2003/2/27 14:49

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


i am having a similar issue with a new theme i am working on.

Also, on this site, the center block sometimes shows white BG and sometimes colored.

oh yeah, here is the site in question:

http://www.glycerinesport.ch/index.php

I wonder is it cookie related? nah...couldn't be, could it?reason I say is becuase at home, my IE cookie 'red eye' was showing that it blocked cookies form all sorts of graphic files from this site that are in my theme! weard!

[edited by swisslyons]
*nevermind*..its called css



6
swisslyons
Re: WF-Section V1 just about completed!
  • 2003/2/12 10:27

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


hi Catz....

I am sticking with the version of WF section that I have running already on the one site that I have a lot content in...no sense stopping a running horse ;)

I think you should finish the final version for the 1.3x series XOOPS as you planned, like someone else said it may be a while until people actually upgrade and use XOOPS 2 (when it is officialy released) on production sites.

At any rate, thanks for your continued work on this excellent module!

You da man!

Cheers,
swisslyons



7
swisslyons
Re: Xoops doesn't like ZoneAlarm Pro
  • 2003/2/10 7:37

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


I use Nortons Internet Security and firewall, and since this site has started using Xoops2, I no longer have to disable my firewall to login. I always have to disable it on my pre-Xoops2 sites though.

(edited)

Ok, i can login to site, but I cant post ;(

I had to turn it off to post this...




8
swisslyons
Re: new page to my site ??.
  • 2002/10/13 23:11

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


Sure! no problem Paul and if you have any questions /problems just ask!

Regards,
john



9
swisslyons
how to make a module
  • 2002/10/13 22:54

  • swisslyons

  • Just popping in

  • Posts: 43

  • Since: 2002/6/23


The way i usually do this is to make my own module for each page I want to display in the middle of Xoops. To make your own custom module, you only need to create 2 files: index.php and xoops_version.php in a new folder. Lets call this folder 'myModule' for example.

Then, in the index.php,

should copy/paste this code:
*****************************

<?php

include("../../mainfile.php");
include("../../header.php");
include("header.php");
OpenTable();

?>

your HTML content goes here, between these php tags ;) This also works for Flash content, just copy/paste from your flash.htnl file and place it here

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

**********************************
Here is a second possibility for creating your index.php, using an include(); instead of hardcoding the HTML in the php page. This helps make the code a bit more modular and easier to handle.
Create your html in Dreamweaver or whatever editor, then upload all files to this same module directory (myModule) for example)...and use this code to include it:

**********************************

<?php

include("../../mainfile.php");
include("../../header.php");
include("header.php");
OpenTable();

include("nameOfYourPage.html");


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

**********************************

OK, then in xoops_version.php

copy/paste this code:
**********************************

<?php
$modversion['name'] = "title that you want to display in main menu";
$modversion['version'] = "alpha testing only";
$modversion['description'] = "description here";
$modversion['credits'] = "The XOOPS Project <BR /> Thanks to blah blah blah....";
$modversion['author'] = "John Lyons (http://www.flashbuilder.ch/)";
$modversion['help'] = "";
$modversion['license'] = "GPL see LICENSE";
$modversion['official'] = 0;
$modversion['image'] = "logo.gif";
$modversion['dirname'] = "myModule";

// Menu
$modversion['hasMain'] = 1;



?>

Then upload this new folder to your modules directory. Log into your site as admin, go to Modules, and add this module. Don't forget to give group rights to access this module.

That should do it, I hope its all ok becuase its late here and I am tired.

P.S. --> if you are trying to include content that is on another URL and you cant copy/paste the code, try using the
framebrowser script




TopTop



Login

Who's Online

242 user(s) are online (180 user(s) are browsing Support Forums)


Members: 0


Guests: 242


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