I can't imagine why it wouldn't, but it would rely on The Wire not removing the call to the shortening service view.
Form is missing __token or __ts fields in elgg 1.7.7
adding a <?php echo elgg_view('input/securitytoken'); ?> still doesn't work for me
I can't imagine why it wouldn't, but it would rely on The Wire not removing the call to the shortening service view.
Form is missing __token or __ts fields in elgg 1.7.7
adding a <?php echo elgg_view('input/securitytoken'); ?> still doesn't work for me
1 year and ten months into development and this is still version 0.12 and still does not work
Can we just accept that this is never going to get delivered and hand the idea over to someone else please?
Hi SGr33n,
as I could really use your plugin in the upcoming month. Did you already have time to produce an installable package of your recent version?
Regards Felix
1 year and ten months into development and this is still version 0.12 and still does not work
Can we just accept that this is never going to get delivered and hand the idea over to someone else please?
Hi SGr33n,
as I could really use your plugin in the upcoming month. Did you already have time to produce an installable package of your recent version?
Regards Felix
1 year and ten months into development and this is still version 0.12 and still does not work
Can we just accept that this is never going to get delivered and hand the idea over to someone else please?
Hi SGr33n,
as I could really use your plugin in the upcoming month. Did you already have time to produce an installable package of your recent version?
Regards Felix
1 year and ten months into development and this is still version 0.12 and still does not work
Can we just accept that this is never going to get delivered and hand the idea over to someone else please?
Hi SGr33n,
as I could really use your plugin in the upcoming month. Did you already have time to produce an installable package of your recent version?
Regards Felix
Can we use the elgg framework existing theme for this vanilla forum? If we can use the existing dashboard theme structure, them this will be awesome.
venusaga,
This plugin provides single login and some profile and widget integration. Vanilla remains a separate application and has its own separate theme system.
So can we use the code to customize the feature and use it in Elgg using external pages?
Can we use the elgg framework existing theme for this vanilla forum? If we can use the existing dashboard theme structure, them this will be awesome.
venusaga,
This plugin provides single login and some profile and widget integration. Vanilla remains a separate application and has its own separate theme system.
So can we use the code to customize the feature and use it in Elgg using external pages?
Can we use the elgg framework existing theme for this vanilla forum? If we can use the existing dashboard theme structure, them this will be awesome.
venusaga,
This plugin provides single login and some profile and widget integration. Vanilla remains a separate application and has its own separate theme system.
So can we use the code to customize the feature and use it in Elgg using external pages?
Thanks Liri, actually, Status field can replace Report field. It can be a drop down field which will enable the Task Owner to update task when needed.
I also agree with Pilt. You can make number 2 (Assigned to) an option and hidden field that the task owner can use and you can enable members to Join the Task, just like Event Calender plugin, indicating their willingness to participate in the Task. This way, Assigned To field would only be used optionally.
Basically, the group owner should be able to assign the Task, but if it not too much for you, Pilt's suggestion of allowing the Administrator to optioanlly be able to assign Task would be fantastic too.
Finally, on the listing page the following fields would be good:
Progress should be a hidden field and needs not appear on the Listing Page
Thanks.
Hi..
I'm currently Using Elgg 1.8
Is there any Task plugin for Elgg 1.8 Version.
I'm searching Task plugin for 1.8
Please help me
Thanks Shouyik, I did that by typing the full url to my Elgg site followed by the upgrade.php, but afterward all I got was a blank empty white screen.
Can somebody please help me make this theme comptabiltiy with Elgg, if it's a compatibility issue?
@synergeticcorp Take a look at this article I had written some time ago.
http://ishouvik.com/upgrade-elgg-templates
If the problem persists, you would need to dump this plugin unless the plugin creator takes the initiative to fix the bugs.
Can't post anything to the river. I get "The requested action (riverdashboard/post) was not defined in the system."
Hi im new to elgg. I have a problem when i go to Dashboard. At the top of the screen the elgg image ajax_loader.gif is loading all the time and not closing . As a result i have a white space around 20 px at the top of the site.
If i press something this disappears. Is there something i m missing ??
I also noticed that this happened when i enable pack_of_roaming_cat mod
How can i fix that??
@johndavidj99 I guess u need to have the folder renamed to riverdashboard!!
Haha.Feel safe,the cat don't want to hurt people}:)
Put pack_of_roaming_cat in your elgg's mod folder.It's some functions,views etc that I used in more than one plugin writen by me.
And,the name means "A roaming cat's pack",not "a pack of a dozen roaming cats".
Thanks, sorry about the stupid question , i install your profile plugin so far so good
Are you planning to fix the plugin for the community for 1.6.1. I will be happy to help you, let me know as to how to make this plugin work with 1.6.1. I will fix the code and release itto the community.
Dear Anuradha, I am using this with v1.6.1, if you all want i can give it as a seperate module as a group extention. i didn't understand about the "fix" you mentioned
I was looking for a plugin like this ^^
Thanks a lot by me and my development group :)
1 year and ten months into development and this is still version 0.12 and still does not work
Can we just accept that this is never going to get delivered and hand the idea over to someone else please?
Hi SGr33n,
as I could really use your plugin in the upcoming month. Did you already have time to produce an installable package of your recent version?
Regards Felix
HI , Thanks a lot for this extension. Will it be possible to make this compatable with 1.8 Please???? I think it is really useful extension for the community and i am sure that it will be used for the new version as well.
A small site access hack, for those who wish to use generic whitelist filtering instead of exact URL only :
in mod/siteaccess/start.php :
// Facyla : allow generic URL filtering, like pg/blog/$
$cutat = null;
$cutat = strpos($acl, '$');
if ($cutat > 0) {
$acl = substr($acl, 0, $cutat);
$url = substr($url, 0, strlen($CONFIG->wwwroot . $acl));
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
//system_message('Matching generic filtering on : ' . $url);
break;
}
You should end up with (inserted => bold) :
foreach($accesslist as $acl) {
$acl = trim($acl);
// Facyla : allow generic URL, like pg/blog/$
$cutat = null;
$cutat = strpos($acl, '$');
if ($cutat > 0) {
$acl = substr($acl, 0, $cutat);
$url = substr($url, 0, strlen($CONFIG->wwwroot . $acl));
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
//system_message('Matching generic filtering on : ' . $url);
break;
}
}
if(strcmp($url, $CONFIG->wwwroot . $acl) == 0) {
$allowed = true;
break;
}
}
Finally add generic URL(s) in plugin settings : write request URI (eg. : pg/blog) followed by the dollar ($) symbol ; all URL beggining by this exact match will become accessible.
In extenso, il you add the line : pg/blog/$, URL like pg/blog/username/read/... will become publicly available..
Enjoy ;)
Hello,
When I try to use Site Acess, the captcha image doesn't appear, so I cant' use the form :
I'm using Elgg 1.7.8
Thank you
Could anyone help please - when I asked to 'Create a Category' then I do so in the box below but after pressing 'Save' a pop down menu tells me that I need to enter a category. I can't get past here.
Thanks
Steve
Okay my file arrived okay and installation will take place this weekend - thanks to Dr Sanu for fixing things..
Any one here do me a favour with a few italian translations for these sentences ? :-)
"Create Ad categories"
"Set here some predefined ad categories that will be used as categories for posting Classifieds, enter them below, separated with commas."
"Site adcategories were successfully saved."
"New Classified post"
"Classifieds Tag cloud"
"Would you like to change the existing image?"
Make the AJAX feature configurable via PlugIn / Widget Settings so that people who do not want it, they can turn it off ;-)
I'm new to this plug-in and relatively new to ELGG - trying at the 11th hour to get my homepage customized. Custom_index wasn't doing it for me and this plugin was recommended. BUT I'm having problems just after install. The Admin screen for Mainpage only shows the TinyMce editor and background image upload. There are no draggable widgets visible and my homepage appears blank when I visit it. What am I doing wrong? I hope this plug-in works with the new ELGG! 1.7.7
Thanks.
@spitfire72: I believe the free version of this plugin available here doesn't support Elgg 1.7.X as it has been already released 664 days ago (version 1.05). The commercial version ($19.99) does work with the latest Elgg releases though if that's an option for you.
Okay my file arrived okay and installation will take place this weekend - thanks to Dr Sanu for fixing things..
Any one here do me a favour with a few italian translations for these sentences ? :-)
"Create Ad categories"
"Set here some predefined ad categories that will be used as categories for posting Classifieds, enter them below, separated with commas."
"Site adcategories were successfully saved."
"New Classified post"
"Classifieds Tag cloud"
"Would you like to change the existing image?"
Sorry, there was a bug with previous versions (comment and details gone after elgg.org server crash..), please look at latest version.
The plugin works in slave mode (MW under Elgg).
Make the AJAX feature configurable via PlugIn / Widget Settings so that people who do not want it, they can turn it off ;-)
I'm new to this plug-in and relatively new to ELGG - trying at the 11th hour to get my homepage customized. Custom_index wasn't doing it for me and this plugin was recommended. BUT I'm having problems just after install. The Admin screen for Mainpage only shows the TinyMce editor and background image upload. There are no draggable widgets visible and my homepage appears blank when I visit it. What am I doing wrong? I hope this plug-in works with the new ELGG! 1.7.7
Thanks.
@spitfire72: I believe the free version of this plugin available here doesn't support Elgg 1.7.X as it has been already released 664 days ago (version 1.05). The commercial version ($19.99) does work with the latest Elgg releases though if that's an option for you.
I have managed to fix this issue (Elgg 1.7.4 here) by following this tutorial. In short: for each code looking like
<form ... method="post">
add immediately below it this correspond line of PHP code:
<?php echo elgg_view('input/securitytoken'); ?>
Files changed:
views/default/forms/groups/membersadmin.php views/default/forms/groups/invitegroups.php views/default/forms/groups/invitefriends.php views/default/forms/groups/edit.php
Another change (using groupextended v2.5, elgg 1.7.4):
views/default/groups/grouplisting.php
From:
$url = $vars['url'] . "action/groups/featured?group_guid=" . $vars['entity']->guid . "&action=unfeature";
To:
$url = elgg_add_action_tokens_to_url($vars['url'] . "action/groups/featured?group_guid=" . $vars['entity']->guid . "&action=unfeature");
And from:
$url = $vars['url'] . "action/groups/featured?group_guid=" . $vars['entity']->guid . "&action=feature";
To:
$url = elgg_add_action_tokens_to_url($vars['url'] . "action/groups/featured?group_guid=" . $vars['entity']->guid . "&action=feature");
Worthy to say that plugin groupextended must be set above plugin groups.
I guess it should, as it uses relative URL based on the local filesystem paths.
btw, i've discovered a small bug which should be fixed before using this extension in production...
I didn't have much time to rewrite the thing : the current version (as of 2009.04.27) integrates mediawiki into elgg, and doesn't seem buggy at all, but it doesn't allow to login directly into mediawiki.
Tested with mediawiki 1.14 and Elgg 1.5.
