Home Register Search FAQ Memberlist Usergroups Log in  
Reply to topic WebLeague - original evo-league PHP script
Goto page 1, 2, 3  Next
WebLeague - original evo-league PHP script
Ike
Control Freak
Control Freak

Joined: 20 Nov 2004
Posts: 6448
Reply with quote
People keep asking me whether I can give them the code used to run this website, and while I've done so in the past, the code is currently in a state where it will not easily run on any other platform, there are no setup scripts or anything similar, I use server modules that are not available on other servers, and I have zero time to give support in any way.

However, after some searching I've found the original module by Peter Hendrix, which was always linked from the rules page but the original site went offline, so here it is:

http://www.evo-league.com/files/misc/WebLeaguev1.1.1.zip

You can probably get this running locally using WAMP (http://www.wampserver.com), to bring something online you'll need your own webspace supporting PHP and a MySQL database.

When you get it running, do not expect this to be like evo-league! This is only the barebone ladder system which you would have to suit to your needs. There may also be much better scripts out there, I have no idea.

Feel free to ask questions below, but please try not to ask me questions in the chat. Thanks!


Last edited by Ike on Sun May 03, 2009 7:32 pm; edited 1 time in total
View user's profileFind all posts by IkeSend private messageICQ Number
loks
Regular Poster
Regular Poster

Joined: 02 Apr 2009
Posts: 180
Reply with quote
So with this we can make our leagues here on evo league??
View user's profileFind all posts by loksSend private message
spincer
Moderator
Moderator

Joined: 25 Jun 2007
Posts: 1921
Location: Peterhead
Reply with quote
No. From what I understand this module gives you the ladder system, but im sure Ike would of had to edit the code to suit his needs more. It won't implement the leagues but if you meant Ladder, yeah it will, but I would have thought Ike would of had to edit it to fit his idea.

_________________
View user's profileFind all posts by spincerSend private messageSend e-mailVisit poster's websiteMSN Messenger
Glow
Forum Whore
Forum Whore

Joined: 10 Sep 2006
Posts: 1664
Reply with quote
you mean to say...evo-league didnt just turn up like this? That that....is what you started with? Shocked


Applause

_________________
------
the artist formally known as Dunc04
View user's profileFind all posts by GlowSend private message
Ike
Control Freak
Control Freak

Joined: 20 Nov 2004
Posts: 6448
Reply with quote
Well that's what I downloaded, we went online with this: http://web.archive.org/web/20041201215148/http://www.evo-league.com/
View user's profileFind all posts by IkeSend private messageICQ Number
gecko
Cup Moderator
Cup Moderator

Joined: 20 Jun 2005
Posts: 2265
Reply with quote
'site should look better in Internet Exploder now'

Lol.

_________________
(23:01:12) (ACMilan|Yogu) Liverpool has quit Champions League (Read error: Connection reset by AC Milan)

View user's profileFind all posts by geckoSend private message
Vytas
Rare Poster
Rare Poster

Joined: 15 Jun 2010
Posts: 18
Reply with quote
It's a cool system, bet I can't manage to install that WebLeague on my server. I'm trying to install WebLeauge 2.01, but when i have to create admin user, nothing happens. Is it possible, that installation doesn't create tables in database? I really need help with it.
View user's profileFind all posts by VytasSend private message
spincer
Moderator
Moderator

Joined: 25 Jun 2007
Posts: 1921
Location: Peterhead
Reply with quote
Vytas wrote:
It's a cool system, bet I can't manage to install that WebLeague on my server. I'm trying to install WebLeauge 2.01, but when i have to create admin user, nothing happens. Is it possible, that installation doesn't create tables in database? I really need help with it.


Did you look at the database and search for the tables to find out?

_________________
View user's profileFind all posts by spincerSend private messageSend e-mailVisit poster's websiteMSN Messenger
Vytas
Rare Poster
Rare Poster

Joined: 15 Jun 2010
Posts: 18
Reply with quote
spincer wrote:
Vytas wrote:
It's a cool system, bet I can't manage to install that WebLeague on my server. I'm trying to install WebLeauge 2.01, but when i have to create admin user, nothing happens. Is it possible, that installation doesn't create tables in database? I really need help with it.


Did you look at the database and search for the tables to find out?


Yes, there are no tables which should be created during installation...
Now it looks like this: http://www.peslt.lt/pesleague/
View user's profileFind all posts by VytasSend private message
spincer
Moderator
Moderator

Joined: 25 Jun 2007
Posts: 1921
Location: Peterhead
Reply with quote
Did you execute the install.php file when on your server? If so, did you change the Database settings to suit your MySQL server? And if you done this, did any error messages occur? Sorry if these seem like silly questions but I don't know anything about your expertise in PHP/MySQL programming!

_________________
View user's profileFind all posts by spincerSend private messageSend e-mailVisit poster's websiteMSN Messenger
Vytas
Rare Poster
Rare Poster

Joined: 15 Jun 2010
Posts: 18
Reply with quote
spincer wrote:
Did you execute the install.php file when on your server? If so, did you change the Database settings to suit your MySQL server? And if you done this, did any error messages occur? Sorry if these seem like silly questions but I don't know anything about your expertise in PHP/MySQL programming!

My database is used in forum: www.peslt.lt/forum and it is the same for main page: http://www.peslt.lt
When i try to install WebLeague 1.1. whick is mentioned in first post of this topic, installation wnet as "done", but there are no tables in my mysql database as wbl_players and etc, which are mentioned in readme.txt file
View user's profileFind all posts by VytasSend private message
spincer
Moderator
Moderator

Joined: 25 Jun 2007
Posts: 1921
Location: Peterhead
Reply with quote
Did you change the necessary variables in the variables.php file?

Code:
//configure database info
 $databaseserver = "localhost"; //usually localhost
 $databasename = "name"; //the name of your database
 $databaseuser = "username"; //the name of the database user
 $databasepass = "password"; // the password to your database
 $directory ="http://www.yoursite.com/WebLeague" ; //the location of your WebLeague directory (no trailing slash)

_________________
View user's profileFind all posts by spincerSend private messageSend e-mailVisit poster's websiteMSN Messenger
Vytas
Rare Poster
Rare Poster

Joined: 15 Jun 2010
Posts: 18
Reply with quote
spincer wrote:
Did you change the necessary variables in the variables.php file?

Code:
//configure database info
 $databaseserver = "localhost"; //usually localhost
 $databasename = "name"; //the name of your database
 $databaseuser = "username"; //the name of the database user
 $databasepass = "password"; // the password to your database
 $directory ="http://www.yoursite.com/WebLeague" ; //the location of your WebLeague directory (no trailing slash)

Yes, i've done all needed changes in variables.php
View user's profileFind all posts by VytasSend private message
spincer
Moderator
Moderator

Joined: 25 Jun 2007
Posts: 1921
Location: Peterhead
Reply with quote
Why don't you try just going in to the phpMyAdmin control panel and inserting the tables manually with the SQL statements? I know, it's not ideal but it should work nonetheless. I haven't personally worked with this yet so I don't really know what has went wrong.

_________________
View user's profileFind all posts by spincerSend private messageSend e-mailVisit poster's websiteMSN Messenger
Vytas
Rare Poster
Rare Poster

Joined: 15 Jun 2010
Posts: 18
Reply with quote
I was thinking about it, but i don't know what exactly to write in that sql field to add tables which are needed.
View user's profileFind all posts by VytasSend private message
WebLeague - original evo-league PHP script
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT + 2 Hours  
Page 1 of 3  

  
  
 Reply to topic  
Powered by phpBB © phpBB Group
Design by phpBBStyles.com | Styles Database.
Content © evo-league.com