Ok, I upgraded from .762 to .764 yesterday and now one of my custom modules is no longer working.
It appears that none of the variables are being passed to the script. The vars are passed via the URL. For example:
http://www.aquaria.info/modules.php?op=modload&file=fishspecies_query&name=database&txtstext=tetra&Submit.x=6&Submit.y=6
Should pass the var named txtstext with a value of "tetra".
The script has:
$varName = array("criteria","txtstext","op","file","name");
However nothing is getting put into var 'txtstext'.
So, what has changed in .764 and what do I need to do to fix things.
Thanks!
Sean
--
http://www.Aquaria.info --> 30k user postnuke site
http://www.EngineSubmittal.com -- Free search engine submission
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- mazdev responded to »Hide "Register new account" and change template to 3 col« 07:50 AM
- mesteele101 created topic »Zikula 1.3.3 - Site Search 1.5.2 - Unable to turn off plug-ins« 07:48 AM
- internetking created topic »password problem« 25. May
- mesteele101 responded to »ERR (3): E_USER_ERROR: Smarty error: [in pagesvar:pagesitem2en line XXX]…« 25. May
- mazdev responded to »Pages 2.5.0 and updating - Page not found« 25. May
- mesteele101 responded to »Zikula 1.3.3 - Selecting a category in Pages not working« 25. May
- mdee created topic »How to implement returnpage ?« 25. May
Zikula Blog
- Anatomy of Open Source Projects on Mar 07
- Continuous Review on Mar 01
- Not Invented Here on Feb 24
- How to Contribute Your Code at Github on Jan 13
- 10 Steps to Coding-Nirvana: Tips for Successful Module Writing on Nov 12
- Submitting Bug Report Tickets That Get Results on Aug 17
- Cozi Tricks #1: Syntax Highlighting on Aug 07
Login
Extracting variables
-
- Rank: Softmore
- Registered: Jul 17, 2002
- Last visit: Nov 09, 2009
- Posts: 144
-
**unknown user**
- Rank: Softmore
- Registered: Mar 16, 2002
- Last visit: Oct 21, 2009
- Posts: 418
You should use $_GET'[txtstext'] and not $txtstext.
Adding a few lines to your code should work:
$txtstext = $_GET['txtstext'];
Do that for each variable, and you'll be fine. I think -
- Rank: Legend
- Registered: Dec 11, 2002
- Last visit: Oct 21, 2009
- Posts: 11674
At least use the API intended for such tasks - $var = pnVarCleanFromInput('var');
It seems like your code depended on register_globals = On, which in .764 is disabled to improve security.
--
itbegins.co.uk - Zikula Consulting
birtwistle.me.uk - Personal Blog
Please read the Support Guide
- Moderated by:
- Support
