Shadowdare
MVPShadowdare MVP
I'll be away on vacation next week and will be back by the end of the month.
Reactions
-
Re: Single signon with Moodle
Lines 18-21: is $USER declared? Add var_dump($USER); before the conditional to see if it is. Line 24: 4. Generate the jsConnect string. should be commented or removed. (View Post)1 -
Re: Single signon with Moodle
It's confirmed that $USER isn't declared. You need to retrieve the user session object as $USER from Moodle and require it in your script as @hgtonight said. (View Post)1 -
Re: **CSS** The footer of badge summary page doesn't reach the bottom of the page on larger displays
It most likely doesn't have to do with the badges. It would most likely appear to be like that in pages that don't have enough content to fill the space between the footer and the height of the viewp… (View Post)2 -
Re: Looking for experience with implementing cron functionality in Vanilla
I've used Drupal, which has its own implementation of cron. It's not required functionality, but it is handy for managing search indexes, aggregation, pings, and routine maintenance tasks. In Drupal … (View Post)2 -
Re: Issue with spammers
You can make the {signinout_link} only show up for signed in users by adding a conditional like this: {if $User.SignedIn}{signinout_link}{/if} (View Post)1