help to better help you:
Please: add always Joomla / JEM version and details to your posts, so we can try to reproduce your issue!
Feature requests for JEM 2.0 - initial public release
Feature requests
Re: Feature requests
12 years 3 weeks ago
thanks
i hope i can get this fixed someday,
i like the event list, and it works great, only to bad i have to struggle with the capacity
someday, it all will work
someday
i hope i can get this fixed someday,
i like the event list, and it works great, only to bad i have to struggle with the capacity
someday, it all will work

Please Log in or Create an account to join the conversation.
Re: Feature requests
12 years 3 weeks ago
I think there used to be a plugin that uses integration with Tracks (would be nice to have a league component and eventmanager integrated with each other)
New JEM Event automatically creates a new Event on tracks
Users Registered for a event automatically are registered for the track event
Maybe show the results for track in the JEM Event
Just ideas
New JEM Event automatically creates a new Event on tracks
Users Registered for a event automatically are registered for the track event
Maybe show the results for track in the JEM Event
Just ideas

Please Log in or Create an account to join the conversation.
Re: Feature requests
12 years 2 weeks ago
Two more suggestions:
1) more important: create a functionality that postpones all repeating events that would appear within a certain time. That is, we have many repeating events, none of them take place within school holidays. So I would like to either type in all holidays, or have an option to postpone all events until the xth of something (which would be the first day of school)
2) just an idea: synchornise choosen events with ones own calender (ical/google...)
1) more important: create a functionality that postpones all repeating events that would appear within a certain time. That is, we have many repeating events, none of them take place within school holidays. So I would like to either type in all holidays, or have an option to postpone all events until the xth of something (which would be the first day of school)
2) just an idea: synchornise choosen events with ones own calender (ical/google...)
Please Log in or Create an account to join the conversation.
Re: Feature requests
12 years 2 weeks ago - 12 years 2 weeks ago
feature request: map with events,.
Perhaps by using gmaps.js (hpneo.github.com/gmaps) and an kml file.
Creating kml:
developers.google.com/kml/articles/phpmysqlkml?hl=nl
developers.google.com/maps/articles/phpsqlajax_v3?hl=nl
As latitude & logitude can be filled in the addressfield i guess it's not that difficult to create a kml file and load it. But the difficulty probably lies in selecting the adresses that the visitor can look at.
// just thinking loud
view -> gmap
model -> gmap
make selectors
perhaps link within eventlist to the map
Perhaps by using gmaps.js (hpneo.github.com/gmaps) and an kml file.
Creating kml:
developers.google.com/kml/articles/phpmysqlkml?hl=nl
developers.google.com/maps/articles/phpsqlajax_v3?hl=nl
As latitude & logitude can be filled in the addressfield i guess it's not that difficult to create a kml file and load it. But the difficulty probably lies in selecting the adresses that the visitor can look at.
// just thinking loud
view -> gmap
model -> gmap
make selectors
perhaps link within eventlist to the map
Last edit: 12 years 2 weeks ago by Bluefox.
Please Log in or Create an account to join the conversation.
Re: GECODE Script for LNG, LAT
12 years 2 weeks ago - 12 years 1 week ago
Here is an example of my GECODE script. I use it to populate my database with lat, lng.
It is WAY old and I think Google does not even issue GMAP Keys any more.
It is WAY old and I think Google does not even issue GMAP Keys any more.
Code:
<?php
$username="";
$password="";
$db="";
define("MAPS_HOST", "maps.google.com");
define("KEY", "abababababababababababababababababababababbababababababab"); //<--- change abcdefg to your GMAP API Key
/*
add lat and lng fields to your jos_eventlist_venues as numbers of size FLOAT(10,6)
*/
// Opens a connection to a MySQL server
$connection = mysql_connect("localhost", $username, $password);
if (!$connection) {
die("Not connected : " . mysql_error());
}
// Set the active MySQL database
$db_selected = mysql_select_db($db, $connection);
if (!$db_selected) {
die("Can\'t use db : " . mysql_error());
}
// Select all the rows in the markers table
//#############
/*
$query = "SELECT * FROM markers WHERE 1";
$result = mysql_query($query);
*/
//############# QUERY TO MAKE VENUES PUBLISHED IF THEY HAVE EVENTS
$query = "update `xxxx_eventlist_venues` t1 join `xxxx_eventlist_events` t2 on t1.ID=t2.locid set t1.published=1 where t1.published=0";
$result = mysql_query($query);
//#############
$query = "SELECT * FROM `xxxx_eventlist_venues` WHERE `street` != '' AND `latitude` is null and Published =1";
$result = mysql_query($query);
//#############
if (!$result) {
die("Invalid query: " . mysql_error());
}
// Initialize delay in geocode speed
$delay = 0;
$base_url = "http://" . MAPS_HOST . "/maps/geo?output=xml" . "&key=" . KEY;
// Iterate through the rows, geocoding each address
while ($row = @mysql_fetch_assoc($result)) {
$geocode_pending = true;
while ($geocode_pending) {
$address = $row["street"] .' '.$row["city"] .' '.$row["state"] .', '.$row["plz"] .' '.$row["country"];
$id = $row["id"];
$request_url = $base_url . "&q=" . urlencode($address);
$xml = simplexml_load_file($request_url) or die("url not loading");
$status = $xml->Response->Status->code;
if (strcmp($status, "200") == 0) {
// Successful geocode
$geocode_pending = false;
$coordinates = $xml->Response->Placemark->Point->coordinates;
$coordinatesSplit = split(",", $coordinates);
// Format: Longitude, Latitude, Altitude
$lat = $coordinatesSplit[1];
$lng = $coordinatesSplit[0];
$query = sprintf("UPDATE `pv3lm_eventlist_venues` " .
" SET latitude = '%s', longitude = '%s' " .
" WHERE id = '%s' LIMIT 1;",
mysql_real_escape_string($lat),
mysql_real_escape_string($lng),
mysql_real_escape_string($id));
$update_result = mysql_query($query);
if (!$update_result) {
die("Invalid query: " . mysql_error());
}
} else if (strcmp($status, "620") == 0) {
// sent geocodes too fast
$delay += 100000;
} else {
// failure to geocode
$geocode_pending = false;
echo "Address " . $address . " failed to geocoded. ";
echo "Received status " . $status . "
\n";
}
usleep($delay);
}
}
?>
JEM 2.0.1 - J3.3.3 PHP 5.4.4 NGINX!! |
www.usyw.org
Last edit: 12 years 1 week ago by Bluefox.
The following user(s) said Thank You: Bluefox
Please Log in or Create an account to join the conversation.
Re: Feature requests
12 years 1 week ago
Hi,
I think it needs a button for joomla content, which inserts a Link to the detail of an specific event.
I think it needs a button for joomla content, which inserts a Link to the detail of an specific event.
The following user(s) said Thank You: neyworg
Please Log in or Create an account to join the conversation.
Time to create page: 0.488 seconds