XOOPS 
News
News World of XOOPS Developers Hacks Themes Archive Submit News
  • HOME
  • XOOPS
    • About XOOPS
    • Why XOOPS?
    • XOOPS Features
    • Terms Of Use
    • Privacy Statement
    • License
  • FORUM
    • Board Index
    • Recent Topics
  • NEWS
  • THEMES
  • MODULES
    • Module @ GitHub
    • Old Repository
  • XOOPS FAQ
  • ACCOUNT
    • Login
    • Register
  • DOWNLOAD XOOPS 2.5.11

Developer News: xoopswap v1.0b - first beta

Posted by: SocietyOn 2003/8/20 16:12:19 4805 reads
The Xoopswap Addon is ready for take off.

Projectpage at: http://www.myxoopsforge.net/xf/project/?xoopswap

For now you can download as Betatester the new v1.0b at the download area of http://www.myxoopsforge.net

Demo at http://wap.djnews24.net
Viewable with Browser (thanks to his own wap emulator) and MobilePhone

xoopswap v1.0b - first beta

xoopswap v1.0b - first beta
Previous article
Next article
The comments are owned by the author. We aren't responsible for their content.
user

 Re: xoopswap v1.0b - first beta

 Chado   Published 08/20/2003 16:58   Not too shy to talk   Joined 06/06/2003   Comments 113    

Hey Society, This looks really promising!
Just one problem: I uploaded it and when I try to install the module, I get an error: "Module File for Not Found!" It looks like the admin files got left out of your download. Or maybe I am missing something.....?

Thanks!
Chad

 
user

 Re: xoopswap v1.0b - first beta

 Society   Published 08/20/2003 17:03   Not too shy to talk   Joined 01/10/2002   Comments 178    

its not a module its a standalone addon :)

just upload it to a dir you want like wap
add a subdomain to that dir
like wap.yourdomain.net

edit the config.inc.php file at dir config
(same db settings as xoops)
chmod 777 the file counter.dat in dir config

then start your browser or handy to that subdomain

 
user

 Re: xoopswap v1.0b - first beta

 josecruz   Published 08/20/2003 18:54   Just popping in   Joined 03/28/2003   Comments 68    

does it have to be a subdomain, can it be a folder in the existing domain?

Jose

 
user

 Re: xoopswap v1.0b - first beta

 Society   Published 08/20/2003 20:11   Not too shy to talk   Joined 01/10/2002   Comments 178    

can be on a folder :)
maybe http://www.yoursite.net/wap

 
user

 Re: xoopswap v1.0b - first beta

 Alt   Published 08/20/2003 21:16   Just popping in   Joined 11/26/2002   Comments 15    

It's for version XOOPS ver. 1.3 or 2.0?

Thanx

 
user

 Re: xoopswap v1.0b - first beta

 josecruz   Published 08/21/2003 5:00   Just popping in   Joined 03/28/2003   Comments 68    

It runs on my 2.0.3

jose

 
user

 Re: xoopswap v1.0b - first beta

 Society   Published 08/21/2003 6:16   Not too shy to talk   Joined 01/10/2002   Comments 178    

its for 2.0x

 
user

 Re: xoopswap v1.0b - first beta

 Society   Published 08/21/2003 7:22   Not too shy to talk   Joined 01/10/2002   Comments 178    

now added wspoject :) thx gronice for your help

 
user

 Re: xoopswap v1.0b - first beta

 ronhab   Published 08/22/2003 0:59   Friend of XOOPS   Joined 04/27/2003   Comments 160    

I am having trouble getting this to work properly on my test box. It hits index.php and then refreshes to index2.php, then I click on news...all OK so far. But then it throws the following error warnings and does not produce the article:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /var/www/html/wap/nachricht.php on line 43

Warning
: Cannot add header information - headers already sent by (output started at /var/www/html/wap/nachricht.php:43) in /var/www/html/wap/includes/hawhaw.inc on line 1415


Any ideas what went wrong or what I missed?

Thank you.

 
user

 Re: xoopswap v1.0b - first beta

 Society   Published 08/22/2003 6:48   Not too shy to talk   Joined 01/10/2002   Comments 178    

the second error is ok :) from cannot add header information. thats will be printed every time when a error exists.
the first is possible that u user another table structure of XOOPS :)
what version u use? 2.0.3?
or the old xoops1?
just dump plz just the structure not the entries of your xoops_stories here

 
user

 Re: xoopswap v1.0b - first beta

 ronhab   Published 08/22/2003 7:35   Friend of XOOPS   Joined 04/27/2003   Comments 160    

Thanks Society.

It is a 2.03 install running on a Red Hat 8 box. here is the table structure which means nothing to me.

# Table structure for table `xoops_stories`
#

CREATE TABLE `xoops_stories` (
  `
storyid` int(8) unsigned NOT NULL auto_increment,
  `
uid` int(5) unsigned NOT NULL default '0',
  `
title` varchar(255) NOT NULL default '',
  `
created` int(10) unsigned NOT NULL default '0',
  `
published` int(10) unsigned NOT NULL default '0',
  `
expired` int(10) unsigned NOT NULL default '0',
  `
hostname` varchar(20) NOT NULL default '',
  `
nohtml` tinyint(1) NOT NULL default '0',
  `
nosmiley` tinyint(1) NOT NULL default '0',
  `
hometext` text NOT NULL,
  `
bodytext` text NOT NULL,
  `
counter` int(8) unsigned NOT NULL default '0',
  `
topicid` smallint(4) unsigned NOT NULL default '1',
  `
ihome` tinyint(1) NOT NULL default '0',
  `
notifypub` tinyint(1) NOT NULL default '0',
  `
story_type` varchar(5) NOT NULL default '',
  `
topicdisplay` tinyint(1) NOT NULL default '0',
  `
topicalign` char(1) NOT NULL default 'R',
  `
comments` smallint(5) unsigned NOT NULL default '0',
  
PRIMARY KEY  (`storyid`),
  
KEY `idxstoriestopic` (`topicid`),
  
KEY `ihome` (`ihome`),
  
KEY `uid` (`uid`),
  
KEY `published_ihome` (`published`,`ihome`),
  
KEY `title` (`title`(40)),
  
KEY `created` (`created`),
  
FULLTEXT KEY `search` (`title`,`hometext`,`bodytext`)
) 
TYPE=MyISAM AUTO_INCREMENT=3 ;

 
user

 Re: xoopswap v1.0b - first beta

 Society   Published 08/22/2003 12:23   Not too shy to talk   Joined 01/10/2002   Comments 178    

can u gimme the url of which u install it?
the dbase is correct and should not print an error because the script calls it right

maybe try the version located on http://www.blitzengineers.de
on downloads

 


Login

Register now!  |  Lost Password?

Search

Advanced Search

Recent Comments

  • Re: Richard Griffith (Geekwright) inducted into XOOPS Hal...
    Publisher black_beard 04/09/2025 21:52
  • Re: Richard Griffith (Geekwright) inducted into XOOPS Hal...
    Publisher Cesagonchu 04/09/2025 12:36
  • Re: XOOPS 2.5.12 Beta-5 available for Testing
    Publisher Cesagonchu 04/03/2025 12:39
  • Re: XOOPS 2.5.12 Beta-5 available for Testing
    Publisher cadch 04/02/2025 9:47
  • Re: Richard leaving, Nicolas takes over Core Team
    Publisher liomj 04/02/2025 9:18

Who's Online

161 user(s) are online (3 user(s) are browsing XOOPS News)


Members: 0


Guests: 161


more...

Donat-O-Meter

Stats
Goal: AU$15.00
Due Date: Jul 31
Gross Amount: AU$0.00
Net Balance: AU$0.00
Left to go: AU$15.00
Make donations with PayPal!

Latest GitHub Commits

  • {{ record.sha.slice(0, 7) }} - {{ record.commit.message | truncate }}
    {{ record.commit.author.name }} {{ record.commit.author.date | formatDate }}

Archives

News archives

  • January 2017
  • November 2016
  • October 2016
  • September 2016
  • August 2016
  • July 2016
  • June 2016
  • May 2016
  • April 2016
  • March 2016
  • February 2016
  • January 2016
  • December 2015
  • November 2015
  • October 2015
  • September 2015
  • July 2015
  • May 2015
  • April 2015
  • March 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • June 2014
  • May 2014
  • April 2014
  • March 2014
  • February 2014
  • January 2014
  • December 2013
  • November 2013
  • October 2013
  • September 2013
  • August 2013
  • July 2013
  • June 2013
  • May 2013
  • April 2013
  • March 2013
  • February 2013
  • January 2013
  • December 2012
  • November 2012
  • October 2012
  • September 2012
  • August 2012
  • July 2012
  • June 2012
  • May 2012
  • April 2012
  • March 2012
  • February 2012
  • January 2012
  • December 2011
  • November 2011
  • October 2011
  • September 2011
  • August 2011
  • July 2011
  • June 2011
  • May 2011
  • April 2011
  • March 2011
  • February 2011
  • January 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • July 2010
  • June 2010
  • May 2010
  • April 2010
  • March 2010
  • February 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • September 2009
  • August 2009
  • July 2009
  • June 2009
  • May 2009
  • April 2009
  • March 2009
  • February 2009
  • January 2009
  • December 2008
  • November 2008
  • October 2008
  • September 2008
  • August 2008
  • July 2008
  • June 2008
  • May 2008
  • April 2008
  • March 2008
  • February 2008
  • January 2008
  • December 2007
  • November 2007
  • October 2007
  • September 2007
  • August 2007
  • July 2007
  • June 2007
  • May 2007
  • April 2007
  • March 2007
  • February 2007
  • January 2007
  • December 2006
  • November 2006
  • October 2006
  • September 2006
  • August 2006
  • July 2006
  • June 2006
  • May 2006
  • April 2006
  • March 2006
  • February 2006
  • January 2006
  • December 2005
  • November 2005
  • October 2005
  • September 2005
  • August 2005
  • July 2005
  • June 2005
  • May 2005
  • April 2005
  • March 2005
  • February 2005
  • January 2005
  • December 2004
  • November 2004
  • October 2004
  • September 2004
  • August 2004
  • July 2004
  • June 2004
  • May 2004
  • April 2004
  • March 2004
  • February 2004
  • January 2004
  • December 2003
  • November 2003
  • October 2003
  • September 2003
  • August 2003
  • July 2003
  • June 2003
  • May 2003
  • April 2003
  • March 2003
  • February 2003
  • January 2003
  • December 2002
  • November 2002
  • October 2002
  • September 2002
  • August 2002
  • July 2002
  • June 2002
  • May 2002
  • April 2002
  • March 2002
  • February 2002
  • January 2002
  • December 2001
  • December 1969
About us
  • About Xoops
  • Why XOOPS?
  • Board of Advisors
  • Xoops Innovators
  • XOOPSers
  • XOOPS Etiquette
Learn
  • Books
  • FAQ
  • Core Guides
  • Module Guides
Use
  • Download Xoops
  • Module @ GitHub
  • Themes@ GitHub
  • Languages @ GitHub
  • Support Forums
  • International Support
Develop GitHub
  • Core @ GitHub
  • Module @ GitHub
  • Themes@ GitHub
  • Languages @ GitHub
  • Legacy XOOPS @ SourceForge
  • Coding Standards PSR-2
Contribute
  • $$$ Donations
  • Join Team
  • Core @ GitHub
  • Module @ GitHub
  • Themes@ GitHub
  • Languages @ GitHub
  • Report Core Bug
Connect
  • Facebook
  • LinkedIn
  • Flickr
  • YouTube
  • Ohloh
  • Twitter

Terms of Use | Privacy Policy | Hosted by Arvixe Hosting | RSS 2.0 Button

Design: B.Heyula