Search found 7894 matches
- Sun Apr 19, 2020 12:39 pm
- Forum: Modules/Add-Ons
- Topic: Can FEU module prevent deep linking of files?
- Replies: 8
- Views: 3368
Re: Can FEU module prevent deep linking of files?
If users get a direct link to the file it is no longer a CMSMS thing or an FEU thing. At that point the download is handled by the web server, not your CMS. What you need is to: a: Protect direct access to the file by either: - moving it out of your document root to a location where the webserver ca...
- Wed Feb 05, 2020 8:35 am
- Forum: Modules/Add-Ons
- Topic: CompanyDirectory - pretty URLs
- Replies: 3
- Views: 2167
Re: CompanyDirectory - pretty URLs
CD 1.9xx and further uses config entries (entries in the config.php) for various settings, it does not use module hints. So. If you have defined URL slugs for your articles and your URLs are in the form of <site.com>/<your-url-slug> then it will use the $config['cd_detailpage'] config entry as defin...
- Wed Feb 05, 2020 8:24 am
- Forum: CMSMS Core
- Topic: Customizing news module backend with Jquery
- Replies: 2
- Views: 1928
Re: Customizing news module backend with Jquery
if changing a category works fine to hide/show various fields... then when a page loads you should trigger the change event
Code: Select all
$(function(){
$('selector').trigger('change');
});
- Wed Dec 04, 2019 9:12 pm
- Forum: Modules/Add-Ons
- Topic: Cart2 Ajax calls
- Replies: 4
- Views: 2878
Re: Cart2 Ajax calls
The view cart template has the sku (if it exists) of every item in the cart.
You may be able to repurpose a call to the viewcart action with a different template to do what you want.
You may be able to repurpose a call to the viewcart action with a different template to do what you want.
- Wed Dec 04, 2019 9:47 am
- Forum: Modules/Add-Ons
- Topic: Cart2 Ajax calls
- Replies: 4
- Views: 2878
Re: Cart2 Ajax calls
the add to cart action is designed to redirect to a destination page after submission. Ajax won't be possible there till the action is rewritten.
- Wed Dec 04, 2019 9:18 am
- Forum: Announcements
- Topic: Announcing CMS Made Simple v2.2.13 - Moosomin
- Replies: 0
- Views: 9677
Announcing CMS Made Simple v2.2.13 - Moosomin
Hello everybody! Today we are announcing the release of CMS Made Simple v2.2.13 - Moosomin, an incremental bug fix and security release. This version fixes a minor security issue in the FileManager module, a couple of PHP Warnings related to PHP 7.3+, and adds a few more functions to those allowed t...
- Sat Nov 16, 2019 7:18 pm
- Forum: CMSMS Core
- Topic: Detailed Requirements list
- Replies: 1
- Views: 1562
Re: Detailed Requirements list
You can run the installer.
It checks for all of the dependencies that the CMSMS core requires to operate.
You don't actually have to do the installation, in the case of a server upgrade.. but just use it as a test for compatibility so you can tune your server environment.
It checks for all of the dependencies that the CMSMS core requires to operate.
You don't actually have to do the installation, in the case of a server upgrade.. but just use it as a test for compatibility so you can tune your server environment.
- Thu Oct 10, 2019 5:00 pm
- Forum: General Discussion
- Topic: FEU 3.1.4 forgets nocaptcha and logintemplate parameters.
- Replies: 3
- Views: 3734
Re: FEU 3.1.4 forgets nocaptcha and logintemplate parameters
For security purposes the login form does not by default pass the parameters supplied to the module into the submitted post request.
The best solution is to use {cms_module_hint} for parameters that should persist after submission.
The best solution is to use {cms_module_hint} for parameters that should persist after submission.
- Thu Oct 10, 2019 4:46 pm
- Forum: CMSMS Core
- Topic: Module Manager is showing stale packages
- Replies: 3
- Views: 1915
Re: Module Manager is showing stale packages
We are rebuilding the index
- Fri Oct 04, 2019 2:51 pm
- Forum: Modules/Add-Ons
- Topic: Some exemples how to use CGFEURegister
- Replies: 4
- Views: 2241
Re: Some exemples how to use CGFEURegister
There isn't much information in your post as to how you have configured FEU and CGFEURegister so I will go with some assumptions. Assuming a default installation where you are calling {CGFEURegister group='somegroup'} on your 'Frontend User Registration' page. And the user must verify his email addr...
- Thu Sep 26, 2019 7:00 am
- Forum: The Lounge
- Topic: Pretty URL .htaccess rewrite subdomain to directory
- Replies: 4
- Views: 9674
Re: Pretty URL .htaccess rewrite subdomain to directory
The ,.htaccess file ONLY handles incoming requests, it does not transform URLS the output HTML generated by the web application.
- Sat Sep 21, 2019 7:48 pm
- Forum: Modules/Add-Ons
- Topic: CompanyDirectory upgrade problem
- Replies: 3
- Views: 1918
Re: CompanyDirectory upgrade problem
CompanyDirectory now uses InnoDB.
Only recent versions of MySQL support full text indexes with InnoDB.
i.e: You may need to upgrade your Mysql
Only recent versions of MySQL support full text indexes with InnoDB.
i.e: You may need to upgrade your Mysql
- Sat Sep 14, 2019 8:18 pm
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 7604
Re: Display inline
Well, any link you generate will result in a page reload, and therefore a scroll. An inline link if you generated it properly using the create_url() method in the module API would generate the URL Properly, but would result in a page reload and a scroll. In a single-page-app such as this you probabl...
- Wed Sep 11, 2019 8:11 pm
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 7604
Re: Display inline
The {cms_action_url} plugin does not support creating inline URL's. You would have to use the create_url() method of the module API and pass in the inline flag and assign the output from that method to a smarty variable. That said.. I would recommend that you not use inline mode unless absolutely ne...
- Fri Sep 06, 2019 7:03 pm
- Forum: Modules/Add-Ons
- Topic: FEU 3.1.3 - various questions
- Replies: 3
- Views: 2706
Re: FEU 3.1.3 - various questions
A. The mentions of {redirect} in the module help were ambiguous. I meant to explicitly mention {redirect_page} and {redirect_url}... but other plugins for redirection may exist. B: The returnto parameter is GONE. it no longer exists or is even mentioned in the source code. C: The mechanism to redire...