Search found 14 matches

by Catfish
Tue Feb 02, 2016 8:52 am
Forum: General
Topic: Offending extension using its own jquery library error
Replies: 2
Views: 2632

Re: Offending extension using its own jquery library error

I will try to explain for the "laymen" :) If you get this error from PageManager, you have probably loaded jQuery from an external source in (probably) your template. CMSimple (v1.4 onwards?) already includes jQuery for you, so you don't need to load it in the <head> section. Remove or comment the <...
by Catfish
Sun Jan 31, 2016 6:27 am
Forum: General
Topic: Offending extension using its own jquery library error
Replies: 2
Views: 2632

Offending extension using its own jquery library error

Today I tried to load my Page Manager on my website and I got this error: Offending extension using its own jQuery library detected (see manual, section "Limitations"). It is referenced here: http://www.cmsimpleforum.com/viewtopic.php?f=7&t=6351 but no fix is explained for us laymen. The site I have...
by Catfish
Tue Sep 22, 2015 4:57 am
Forum: General
Topic: How to handle form submissions?
Replies: 10
Views: 7242

Re: How to handle form submissions?

I used % for the iframe width, but couldn't get the height to auto adjust. I don't know much about styling webpages. Mainly just php.
by Catfish
Mon Sep 21, 2015 6:30 pm
Forum: General
Topic: How to handle form submissions?
Replies: 10
Views: 7242

Re: How to handle form submissions?

Thank you for your advice. I used an iframe and it seems to work well enough. Just for future reference I will document what I did here: Create a normal php file that handles the form data (and/or lack thereof) Use the iframe tag as shown above to load the php code into the cmsimple page The iframe ...
by Catfish
Sun Sep 20, 2015 12:00 pm
Forum: General
Topic: How to handle form submissions?
Replies: 10
Views: 7242

How to handle form submissions?

Hi there, I would like to handle a form submission so that tthe handling code is displayed inside my cmsimple template. I am using hd_pd_scripting plugin to let me exdcute my own php code in my pages. The first page has the form HTML in it, but I don't kmow what to set the <form action> to? If I act...
by Catfish
Mon Oct 11, 2010 11:34 am
Forum: Addons and Plugins
Topic: A multipage plugin?
Replies: 3
Views: 1894

Re: A multipage plugin?

I am not sure exactly how the plugin settings and all that work for now, but I have been playing around: function estimateGenerator() { if (empty($_GET['data1']) && $_GET['submit'] != 'Submit') // if <form> data is not existant { // load form $o = '<form method="GET" action="'.$_SERVER['SCRIPT_NAME'...
by Catfish
Mon Oct 11, 2010 11:05 am
Forum: Addons and Plugins
Topic: A multipage plugin?
Replies: 3
Views: 1894

A multipage plugin?

I want ot make a plugin for CMSimple that takes values from a form a user can fill out. Is there a tutorial on how to design a plugin like this? I saw a simple plugin howto here: http://cmsimple_addon.famnissen.dk/?Write_your_own but this is basically some PHP code executing in a page. Is there a wa...
by Catfish
Fri Apr 03, 2009 6:42 am
Forum: Addons and Plugins
Topic: Register plugin - sign in page only?
Replies: 3
Views: 2655

Re: Register plugin - sign in page only?

#CMSimple $output.=registerloginform();# ->loginform under the content. or: #CMSimple $output=preg_replace("/".chr(35)."CMSimple.*".chr(35)."/",registerloginform(),$c[$s]);# ->loginform within the content mvwd. thanks this one worked. i thought i tried this originally, and so i began editing the co...
by Catfish
Thu Apr 02, 2009 2:50 pm
Forum: Addons and Plugins
Topic: Register plugin - sign in page only?
Replies: 3
Views: 2655

Register plugin - sign in page only?

Hi I just installed the Register plugin for a registered user database on my site. The plugin provides the login forms via the registerloginform() function. The help file explains you can add this function to the template file to add the login form and the user control panel links to your pages. I d...
by Catfish
Sat Mar 14, 2009 2:53 pm
Forum: Addons and Plugins
Topic: Getting Plugin Loader 2 beta 11 to work
Replies: 4
Views: 2599

Re: Getting Plugin Loader 2 beta 11 to work

I have found my problem plugins/ folder on webhost was first: plugins/ -> pluginloader/ -> css/ (etc.) -> languages/ (etc.) -> index.php (index.php file from pluginloader ZIP package) then I moved all contents of plugins/pluginloader/ up one level to plugins/. The index.php script complained it coul...