21
hydrO
Re: What about Virtual Private Servers?
  • 2005/12/24 20:40

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


I have been moving from one shared hosting to another shared hosting for over 2 years, and now I think its time for me to find another solution.

I have tried to minimize the load within XOOPS system, but so far managed to get this far. I guess shared hosting is not suitable for XOOPS sites with moderate to high traffic.

I am looking for VPS now and was thinking of asking you guys what range of RAM would suit me for a start. The UM2 plan linkprovided by jdseymour interests me a lot, but i am not sure if it would be alright for me.

Thanx in advance.
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



22
hydrO
Re: Xoops Wap Addon
  • 2005/11/1 11:41

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


Awesome addon. Thanx, I'm loving it!
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



23
hydrO
Re: Module for clubs
  • 2005/10/14 14:17

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


none of those links work, and I don't think thats what I am looking for either.

Have u had a look at Hi5? There are many other network websites available.. like sms.ac clubs etc..

Something similar to that, thought it doesn't have to have all those features.
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



24
hydrO
Re: Module for clubs
  • 2005/10/14 14:03

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


Thats one of way of setting up a group, but I don't think that gets me what I want. What i want is not a group with particular rights, but rather a way to form clubs or associations within the XOOPS site, where registered members themselves can set up their own friends network or something like that.. A club of their own perhaps, which may compete with another club within the members.

Quote:

1: I want to give the registered members on my site the ability to setup a club.
2: They will have the following admin rights over the club. Setting up a "Home page" for that club to inform other members about the club.
3: Aurothorising or declining members to join there club.
4: Have the ablity to send all the club members an email
5: With in the club you will have a diary system that will allow them to set dates for events for the members to attend an event and for the members to search the calander for forth comming events of interest.
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



25
hydrO
Re: Module for clubs
  • 2005/10/13 17:57

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


Did this module get developed? I am very keen on it. This is the kind of module I have been trying to find out for sometimes.
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



26
hydrO
Re: ChatMX question
  • 2005/10/9 13:25

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


I have tried all the chat modules available here, and all of them have problems. I am using XOOPS 2.0.13.1 and the only module that even worked was ChatMX.

With ChatMX the page loads very slowly and the blocks on the right side disappeared on the module page.So I finally gave up on using a XOOPS Chat module for the moment.
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



27
hydrO
Re: php code to grab most downloaded songs from debaser
  • 2005/10/6 12:46

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


I was able to get it working to some extent..
Basically the following code can get the top 10 songs sorted into 3 columns of title, artist and album.

I was also able to get the title to corresponding song file, but not for the artists (genre).

Thought I would share it here.

<?php
include "mainfile.php";

include 
"mainfile.php";




$query 'SELECT xfid, title, artist, album, year, addinfo, track, genre, length, bitrate, frequence FROM dhoodi_debaser_files  WHERE approved = 1 AND views > 0 ORDER BY views DESC LIMIT 10';

$result mysql_query($query);
$nrows mysql_num_rows($result);
if(
$nrows != 0)
    {
        
        print 
"<table border=1><tr><th>Song Name<th>Artist<th>Albumn";
        for(
$j=0;$j<$nrows;$j++)
        {
            
$row mysql_fetch_array($result);
        print 
"<tr><td><a href=(xoopsurl)/debaser/singlefile.php?id={$row['xfid']}>" $row["title"];
            print 
"<td>" $row["artist"];
            print 
"<td>" $row["album"];
                        print 
"n";
        }
        print 
"</table>n";
    }
    else    print 
"<p>Top Downlooads Not Available "
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



28
hydrO
php code to grab most downloaded songs from debaser
  • 2005/9/18 9:46

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


Can someone post the php code to grab the 10 top downloaded songs from Debaser module?

I know this shouldn't be that hard, but i am not a php coder. I just need to post those stuffs on a non-xoops website.
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



29
hydrO
Integrating Xoops site content with another website. Possible?
  • 2005/8/25 14:04

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


Basically what i am looking for is this.

I have debaser module running and what i want is get the latest songs published on another website.

The other website contents the lyrics. There is a block in debaser which can show the latest 10 songs on my website.

It shouldn't be that hard to show those 10 songs on another website which can run php?

Can anyone give an idea?
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]



30
hydrO
Re: Xoops Protector- No entiendo. I don´t understand
  • 2005/8/25 11:40

  • hydrO

  • Not too shy to talk

  • Posts: 105

  • Since: 2004/1/8 8


'mainfile.php' : missing precheck Not secure
You should edit your mainfile.php like written in README.

What does this mean? How do I edit manfile.php like written in README?
Download Dhivehi mp3s
[size=x-small]www.gnatoll.com[/size]




TopTop
« 1 2 (3) 4 5 6 ... 9 »



Login

Who's Online

127 user(s) are online (91 user(s) are browsing Support Forums)


Members: 0


Guests: 127


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