override
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Form Submission using post not workingDid you ever get this figured out im having the same problem.
Forum: Fixing WordPress
In reply to: php code works but not in wordpressinput any text into the box you will get a “you fail ” if the script is working.
with out header
https://securityoverride.com/Challenges/1/overidepoints.phpwith header <?php require_once(‘/wordpress/wp-blog-header.php’); ?>
https://securityoverride.com/Challenges/1/overidepointswithwpheader.php
no “you fail” script does not workForum: Fixing WordPress
In reply to: php code works but not in wordpressits almost as if whatever text is input into the form is not being passed to the php code
Forum: Fixing WordPress
In reply to: php code works but not in wordpresstryed
mysql_connect(localhost,$username,$password, new_link );
and same thing works outside wordpress
does not work inside wordpressForum: Fixing WordPress
In reply to: php code works but not in wordpressOk sorry i skimmed over it and didnt see anything ill take a closer look. Thank you
Forum: Fixing WordPress
In reply to: php code works but not in wordpressBut it works great outside of wordpress?
Forum: Fixing WordPress
In reply to: php code works but not in wordpresswith <?php require_once(‘/wordpress/wp-blog-header.php’); ?>
it does not make the mysql connection and it does not echo any of the results.
All that is displayed is the form and when click submit it just reffreshes the form.Forum: Fixing WordPress
In reply to: php code works but not in wordpressthanks esmi yeah i shold have mentioned that i tryed renaming all veriables to of the wall stuff like $username33333 and $password333333
and it still does not work.
That was my first thought as well thoughForum: Fixing WordPress
In reply to: php code works but not in wordpressLet me try and explain a little better im confusing my self.
Put the code above in a blank php page out side of wordpress and it works great.
Add
<?php require_once(‘/wordpress/wp-blog-header.php’); ?>
to the top of the page and the code will stop workingForum: Fixing WordPress
In reply to: php code works but not in wordpressi put the php code inside and actual page ie page.php
and the include statment i tryed in side just a regualr page outside of wordpress to see if wordpress was what was causing the error, and the code works great outside of wordpress as long as you leave out the include. But inside wordpress or ouside wordpress with the include header it does not work.