Roland Häder [Fri, 16 Sep 2022 13:49:42 +0000 (15:49 +0200)]
Continued:
- updated a lot old `array()` to "new" `[]` way (yes, this project is slow)
- updated .gitattributes and therefore some files have "changed"
Roland Häder [Sun, 6 Dec 2020 06:30:02 +0000 (07:30 +0100)]
Continued, finally:
- primera API is no longer available on their servers
- better support for JS inclusion and also (maybe?) possible as "compiled" asset
Roland Häder [Thu, 1 Jun 2017 21:10:48 +0000 (23:10 +0200)]
Structural change + jQuery upgrade:
- upgraded jQuery to latest stable version
- added jQuery Migrade plugin
- moved all jQuery-related JavaScripts into own sub folder
- still need to upgrade sql_patches, too. this may become no more needed
when rewrite of expression function is done.
Roland Häder [Tue, 6 Sep 2016 09:44:42 +0000 (11:44 +0200)]
Continued a bit:
- CSS fixes as it needs to be /* Bla bla */ and not // Bla bla
- fixed CSS stuff, there is no "align"
- ignored more files (from NetBeans)
Roland Häder [Tue, 19 Jul 2016 13:59:31 +0000 (15:59 +0200)]
also prevent it in .htacces. You may want to add this to one of your files in /etc/apache2/ (e.g. create a file called /etc/apache2/conf.d/httpoxy), too to protect all other apps as well.
Roland Haeder [Sat, 4 Jun 2016 16:20:03 +0000 (18:20 +0200)]
Rewrote init-phase stuff:
- now inc/init.php is being loaded as first include file
- renamed some libs (old names from my previous project "MyAutoInstaller
Community") to have them conform with naming convention (easier loading, too)
- moved code to new functions to have it encapsulated
- inc/mysql-connect.php is now deprecated
- updated TODOs.txt
Roland Häder [Wed, 1 Jun 2016 13:58:45 +0000 (15:58 +0200)]
Continued a bit:
- deactivated more no longer existing networks (be careful, more may turned into something else)
- added support for inactive networks (showing no referal link, etc.)
Roland Häder [Tue, 31 May 2016 08:20:18 +0000 (10:20 +0200)]
Continued a bit:
- added test for required ext-country (needed by user)
- fixed mask from previous rewrite
- try to set max_execution_time to zero. If this fails and you have it set to e.g. 30 seconds, it is likely that the PHP process aborts with a "time exceeded" message and installation failed
Roland Häder [Tue, 31 May 2016 07:36:23 +0000 (09:36 +0200)]
Continued a bit:
- better check on mysql/mysqli (later is the newer one, first one is obsolete)
- rewrote code to no use 'recode' anymore as it is not available under Windows
- cleaned up some variables: don't modify parameters (more is needed)
- updated TODOs.txt
Roland Haeder [Fri, 3 Apr 2015 17:50:19 +0000 (19:50 +0200)]
dl() is not always available in all supported PHP versions (SAPIs from 5.3+ may
not contain it, why?). Maybe it is not contained due to security reasons?
Roland Haeder [Thu, 11 Sep 2014 18:59:44 +0000 (20:59 +0200)]
A lot fixes:
- $_SESSION must be used, not $GLOBALS['_SESSION']
- "Cache" 'isAdmin' must be unset, not set to FALSE
- initSession() must be called before user name (including admin data) has been read from session (so? ;-) )
- Various other improvements
- TODOs.txt updated
Roland Haeder [Wed, 16 Apr 2014 19:27:16 +0000 (21:27 +0200)]
Some more improvements:
- 'provider' renamed to 'registration_provider' (GET parameter)
- Added developer-only code (do only use if you are developing on the
registration and don't want to have registrations, e.g. because you are
implementing a new registration provider.
Roland Haeder [Wed, 16 Apr 2014 18:07:34 +0000 (20:07 +0200)]
Some improvements:
- No need for 'status' in $content because it is always '1' at this point
- Fixed form name and submit button to allow isFormSent() call catch it
Roland Haeder [Tue, 8 Apr 2014 21:14:50 +0000 (23:14 +0200)]
The maximum file size needs to be increased a little. Still you may not need
to worry about your small files as @DEPRECATED must be included to be found by
this script.
Roland Haeder [Tue, 8 Apr 2014 21:03:17 +0000 (23:03 +0200)]
- Introduced generateDateMonthYearSelectionBox() which is suitable for e.g.
birthday input fields.
- Introduced doTemplateDisplayReferralIdContent() template helper to get rid
of an unneccessary if() block and $content[foo] in template
- Content of template register_header.tpl has now been moved to
inc/language/register_de.php and has marked as deprecated
- Added new template (unfinished) for ext-wernis registration provider
Roland Haeder [Tue, 8 Apr 2014 19:19:12 +0000 (21:19 +0200)]
- remove triplle extension (.tpl.cache.php)
- ignored only new cache files
- missed to use getPath() to generate FQFN (full-qualified file name) for template cache file
Roland Haeder [Tue, 8 Apr 2014 19:11:57 +0000 (21:11 +0200)]
Introduced some wrapper functions, the extension for cache files is now .cache.php to make them executed on servers like Lighttpd. This will make the data "invisible" to the client as the script only contains an array.
Roland Haeder [Sun, 6 Apr 2014 21:25:19 +0000 (23:25 +0200)]
Continued with ext-wernis:
- Added wernis_refid column which will hold the referral id from WDS66. This
can be used to link a registered (through ext-wernis, not ext-register)
account with this.
- Added registration provider to mappedData array
- Some rewrites
- Added convertEmptyToNull() (generic)