Welcome Guest ( Log In | Register )

 Forum Rules Extensions Support
16 Pages V  « < 10 11 12 13 14 > »   
Reply to this topicStart new topic
> Sports Predictions For Joomla, Sports Predictions Component for Joomla 3 / 2.5
Web Design Seo
post May 5 2014, 08:40 AM
Post #221


Web Design Seo
****

Group: Root Admin
Posts: 4,332
Joined: 29-April 09
From: Sofia
Member No.: 1



Hmm, this function must be working. Will be tested on our first working day - 7 May.


--------------------
Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
Go to the top of the page
 
+Quote Post
iasak
post May 5 2014, 01:13 PM
Post #222


Newbie
*

Group: Members
Posts: 16
Joined: 22-December 13
Member No.: 1,928



QUOTE (Web Design Seo @ May 5 2014, 08:40 AM) *
Hmm, this function must be working. Will be tested on our first working day - 7 May.


Ok i'll wait. I am tested it on localhost (xampp) and on my website. Always the same error
Go to the top of the page
 
+Quote Post
Web Design Seo
post May 5 2014, 05:25 PM
Post #223


Web Design Seo
****

Group: Root Admin
Posts: 4,332
Joined: 29-April 09
From: Sofia
Member No.: 1



Is there some error when you turn on error reporting at max?


--------------------
Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
Go to the top of the page
 
+Quote Post
iasak
post May 6 2014, 07:38 AM
Post #224


Newbie
*

Group: Members
Posts: 16
Joined: 22-December 13
Member No.: 1,928



QUOTE (Web Design Seo @ May 5 2014, 05:25 PM) *
Is there some error when you turn on error reporting at max?


I turn on error reporting at max, Yes, its some error :

In Sport Events are these:
Notice: Undefined offset: 0 in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/includes/filter_month_view.php on line 51

This error is repeated several times (14x):Notice: Undefined variable: active in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/views/matches1x2/view.html.php on line 123

Notice: Undefined variable: active in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/views/matches1x2/view.html.php on line 123

Notice: Undefined variable: active in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/views/matches1x2/view.html.php on line 123

In Best Experts are these:
Notice: Undefined variable: option in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/models/standings1x2.php on line 31

Notice: Undefined variable: option in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/models/standings1x2.php on line 34

Notice: Undefined variable: option in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/models/standings1x2.php on line 37

In Prediction history are this:
Notice: Undefined offset: 0 in /data/web/virtuals/58243/virtual/www/components/com_sportspredictions/includes/filter_month_view.php on line 51

This post has been edited by iasak: May 6 2014, 07:43 AM
Go to the top of the page
 
+Quote Post
pavelKukov
post May 7 2014, 08:03 AM
Post #225


Php programmer
****

Group: Administrators
Posts: 285
Joined: 26-November 12
From: Bulgaria
Member No.: 1,452



Fixed! I found where the problem was. It affects only 1x2 game. Fix is simple and can easily be made manually.

To apply changes:
1. Open "components\com_sportspredictions\sportspredictions.php" and find around line 14-17

Код
case 'standings':
case 'match':
    break;
case 'prhistory':


Replace it with

Код
case 'standings':
case 'standings1x2':
case 'match':
case 'match1x2':
    break;
case 'prhistory':
case 'prhistory1x2':


2. Save and upload file. That's it!

Component is updated to new version 1.4.7.0 This is only for joomla 2.5 users.


--------------------
Php programmer in 3D Web Design
Go to the top of the page
 
+Quote Post
iasak
post May 7 2014, 09:50 PM
Post #226


Newbie
*

Group: Members
Posts: 16
Joined: 22-December 13
Member No.: 1,928



Thanks a lot.
Go to the top of the page
 
+Quote Post
Web Design Seo
post May 12 2014, 08:20 AM
Post #227


Web Design Seo
****

Group: Root Admin
Posts: 4,332
Joined: 29-April 09
From: Sofia
Member No.: 1



We found one bug in Sports Predictions version for Joomla 3. To fix it, find lines about 38-60 in file:
Код
/components/com_sportspredictions/views/userstandings/view.html.php



Find this:
Код
$this -> model = $this -> getModel();

try{
$this -> state = $this -> get('State');
}catch(\Exception $e){
$this->errors[] = $e -> getMessage();
}

try{
$this -> items = $this -> get('Items');
}catch(\Exception $e){
$this->errors[] = $e -> getMessage();
}

try{
$this -> pagination = $this -> get('Pagination');
$this -> filter_data = $this -> get('FilterData');
$this -> charts_data = $this -> get('AllItems');
$this -> params = $app -> getParams('com_sportspredictions');
}catch(\Exception $e){
$this->errors[] = $e->getMessage();
}


And change to:
Код
$this -> model = $this -> getModel();
$this -> params = $app -> getParams('com_sportspredictions');

try{
$this -> state = $this -> get('State');
}catch(\Exception $e){
$this->errors[] = $e -> getMessage();
}

try{
$this -> items = $this -> get('Items');
}catch(\Exception $e){
$this->errors[] = $e -> getMessage();
}

try{
$this -> pagination = $this -> get('Pagination');
$this -> filter_data = $this -> get('FilterData');
$this -> charts_data = $this -> get('AllItems');
}catch(\Exception $e){
$this->errors[] = $e->getMessage();
}


--------------------
Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
Go to the top of the page
 
+Quote Post
kmanos7
post May 21 2014, 06:59 AM
Post #228


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



QUOTE (Web Design Seo @ Jun 6 2012, 01:21 PM) *
Now price of component is reduced to 39 usd and is added integration with seo links pro. This joomla component is great idea to organize soccer predictions game for Euro 2012 also.

hi i get the new component for joomla3 , four days ago but i have a problem , for some reason the users can change their predictions even after the game has started...how can i fix that??
please help the world cup is coming
thanx in advance
Go to the top of the page
 
+Quote Post
kmanos7
post May 21 2014, 07:17 AM
Post #229


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



[quote name='kmanos7' date='May 21 2014, 07:59 AM' post='7476']
hi i get the new component for joomla3 , four days ago but i have a problem , for some reason the users can change their predictions even after the game has started...how can i fix that??
please help the world cup is coming
thanx in advance
i have my hosting in justhost in the usa but the site is for greek time zone ..i don't know if that helps
Go to the top of the page
 
+Quote Post
Web Design Seo
post May 21 2014, 07:33 AM
Post #230


Web Design Seo
****

Group: Root Admin
Posts: 4,332
Joined: 29-April 09
From: Sofia
Member No.: 1



Please, check your timezone in Joomla global configuration and check your timezone in php.ini on your server (joomla admin - system info).


--------------------
Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
Go to the top of the page
 
+Quote Post
kmanos7
post May 21 2014, 08:12 AM
Post #231


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



QUOTE (Web Design Seo @ May 21 2014, 08:33 AM) *
Please, check your timezone in Joomla global configuration and check your timezone in php.ini on your server (joomla admin - system info).

my timezone is for athens-greece in joomla configuration ..do i have to change it ?
Go to the top of the page
 
+Quote Post
kmanos7
post May 21 2014, 08:22 AM
Post #232


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



QUOTE (kmanos7 @ May 21 2014, 09:12 AM) *
my timezone is for athens-greece in joomla configuration ..do i have to change it ?

is it possible to send you private my back end pass to cheek it when you have time ?
Go to the top of the page
 
+Quote Post
Web Design Seo
post May 21 2014, 08:27 AM
Post #233


Web Design Seo
****

Group: Root Admin
Posts: 4,332
Joined: 29-April 09
From: Sofia
Member No.: 1



Yes, please, send me PM with login data for admin account for your site.


--------------------
Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
Go to the top of the page
 
+Quote Post
kmanos7
post May 21 2014, 08:34 AM
Post #234


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



QUOTE (Web Design Seo @ May 21 2014, 08:27 AM) *
Yes, please, send me PM with login data for admin account for your site.

i just did .. thank you in advance
Go to the top of the page
 
+Quote Post
kmanos7
post May 21 2014, 06:20 PM
Post #235


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



QUOTE (Web Design Seo @ May 21 2014, 09:27 AM) *
Yes, please, send me PM with login data for admin account for your site.

did you find time by any chance to look in to my issue ?
thank you
Go to the top of the page
 
+Quote Post
kmanos7
post May 21 2014, 06:22 PM
Post #236


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



QUOTE (Web Design Seo @ May 21 2014, 09:27 AM) *
Yes, please, send me PM with login data for admin account for your site.

to help you , no matter what time zone i put in the global configuration i am always 2 hours back.. so if the match actually begins at 15:00 i mast set it to start 13:00
Go to the top of the page
 
+Quote Post
Web Design Seo
post May 22 2014, 06:06 AM
Post #237


Web Design Seo
****

Group: Root Admin
Posts: 4,332
Joined: 29-April 09
From: Sofia
Member No.: 1



As i say, this can be due only on one thing: wrong timezone on your server. Check it in php.ini and correct it - contact your server admin or host support.


--------------------
Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
Go to the top of the page
 
+Quote Post
kmanos7
post May 23 2014, 02:34 PM
Post #238


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



QUOTE (Web Design Seo @ May 22 2014, 06:06 AM) *
As i say, this can be due only on one thing: wrong timezone on your server. Check it in php.ini and correct it - contact your server admin or host support.

hi again . is it possible to have with the new version of the component the old method of standings ??
the new version is awsome and the abbility to have defferent championships is perfect , but the the standings method is not useblle for everyone , and let me explain .. i create leagues with teams ( greek league , premier league etc ) and i want the users to be able to understand the point they earn ... the more points the better, is it possible the mathimatic algorithm that you use to produce a final number ??
the curent method of standings is more accurate but is not usable for this kind of projects becouse the players wants to know their points ...
so please let me know if that is possible
i know that the 2.5 version has this option but you loose the most important option , the abbility to create many championships

thank you in advance
Go to the top of the page
 
+Quote Post
kmanos7
post May 25 2014, 06:07 PM
Post #239


Newbie
*

Group: Members
Posts: 18
Joined: 8-October 13
Member No.: 1,845



hi guys again . sorry for all the replays here ..
the last days i am testing the new version of sports prediction for joomla 3 and i must say that everything is very good EXCEPT the new standings system that makes the components totally unusable , and let me explain
first of all the standing system gives you the ability to prioritize the category that you want so always the first parameter is taking to consideration for the final standings ...
if for example you have the games played first, the user that have the most payed games is first in raking regardless if the second user have more wins ..
1 user1 10 games 4wins 6 losses
2 user2 9 games 8wins 1 loss

if you have the wins first the if a user plays only one game and its correct the he is always in the first places !!!!!!

lets say you have the PREF rating for the first criteria, then you have the same problem, when a user plays only on a game the prediction is correct, then this user is always in the first place ....with only one game !!!!!!!!!!
i am sorry to say that ,but that makes the new version unusable ... in a real competition the number of games is deferent for every user

so PLEASE reconsinter the old standing method with the new awesome features

thank you again guys
Go to the top of the page
 
+Quote Post
michalis
post Jun 8 2014, 03:49 AM
Post #240


Newbie
*

Group: Advanced Member
Posts: 46
Joined: 14-July 12
Member No.: 1,272



QUOTE (kmanos7 @ May 25 2014, 06:07 PM) *
hi guys again . sorry for all the replays here ..
the last days i am testing the new version of sports prediction for joomla 3 and i must say that everything is very good EXCEPT the new standings system that makes the components totally unusable , and let me explain
first of all the standing system gives you the ability to prioritize the category that you want so always the first parameter is taking to consideration for the final standings ...
if for example you have the games played first, the user that have the most payed games is first in raking regardless if the second user have more wins ..
1 user1 10 games 4wins 6 losses
2 user2 9 games 8wins 1 loss

if you have the wins first the if a user plays only one game and its correct the he is always in the first places !!!!!!

lets say you have the PREF rating for the first criteria, then you have the same problem, when a user plays only on a game the prediction is correct, then this user is always in the first place ....with only one game !!!!!!!!!!
i am sorry to say that ,but that makes the new version unusable ... in a real competition the number of games is deferent for every user

so PLEASE reconsinter the old standing method with the new awesome features

thank you again guys



manos, to fix your problem, go to your menu item, and sort by number of games played and choose descending order


the new standings are much more advanced and precise, I love them

This post has been edited by michalis: Jun 8 2014, 03:50 AM
Go to the top of the page
 
+Quote Post

16 Pages V  « < 10 11 12 13 14 > » 
Reply to this topicStart new topic
7 User(s) are reading this topic (7 Guests and 0 Anonymous Users)
0 Members:

Collapse

> Similar Topics

  Topic Replies Topic Starter Views Last Action
No new Pinned: Topic has attachmentsJoomla Scraper, Grabber For Joomla
Joomla Scraper Can Grab Any Content From Any Website
86 Web Design Seo 590,852 8th September 2021 - 07:02 AM
Last post by: Web Design Seo
No new Pinned: Topic has attachmentsJoomla Vulnerable Extensions List
list with new Joomla exploits
20 Web Design Seo 385,815 26th September 2018 - 05:07 AM
Last post by: Web Design Seo
No new Pinned: Joomla Pagination Seo Plugin
SEO plugin for Joomla Pagination that work in all Joomla
61 Web Design Seo 463,892 13th March 2018 - 10:05 AM
Last post by: mxcpz
No New Posts Pinned: Joomla Scraper Going Open Source
No licenses, use scraper on unlimited number of web sites
0 Web Design Seo 352,558 8th March 2017 - 07:40 AM
Last post by: Web Design Seo
No New Posts Joomla Ден 2016
Joomla Day 2016
1 Web Design Seo 310,694 31st October 2016 - 10:11 AM
Last post by: Web Design Seo
No New Posts Joomla Post By Email To K2 Extra Fields
1 uglykidjoe 236,947 11th February 2016 - 07:45 AM
Last post by: Web Design Seo
No new Pinned: Joomla Scraper Integration With K2
better integration of Joomla Scraper and K2
8 Web Design Seo 272,126 2nd January 2016 - 09:07 AM
Last post by: b_goranov
No New Posts Joomla Scraper Not Working
2 Jan Hädicke 255,991 11th November 2015 - 02:05 PM
Last post by: Web Design Seo
No New Posts Sports Predictions
Scoring method used?
3 Stef 40,268 15th June 2015 - 07:54 AM
Last post by: Web Design Seo
No New Posts Sports Prediction: Remove The Host And Guest
i need a little assistance
0 eric258 35,028 5th June 2015 - 05:16 PM
Last post by: eric258


 



RSS Lo-Fi Version Time is now: 1st June 2026 - 11:40 PM