Haha. ;)
This didn't seem to happen to me even if apparently I've posted when it happened.
My site seemed to work fine like I'm the lucky one or something. :p
Anyway, it's pretty interesting that such error would just suddenly jump out like that.
I think almost 2 weeks I've switched my site and domain back here AGAIN after some small issue.
After attaching the domain, I've been waiting for a few days and it's saying that the site doesn't exist.
I've looked into the site via FTP and I see the domain folder, the cfg folder within is empty...
I'm using the .htaccess code in one of the threads, which was suggested by you.
Rewrite /
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)$ /user/?user=$1 [L]
That is perfect for one thing.
I was thinking of a...
As I've said above, this is a profile page I'm talking about so using the URL to get to it is the main thing, POST is a different way of submitting and you can't modify this data in the URL unlike GET.
I do understand that a redirect is wrong, but at the moment, I don't really see another...
So, use POST, sanitize the data, echo the data in a meta redirect in a PHP echo (set to 0 seconds) and then it redirecting to http://example.com/user/USERNAME-WHICH-WAS-SUBMITTED-BY-POST ?
That seems close enough, I mean I just want it to not have a redirection but hey, can't always get what you...
I've updated my users page so that it hides '?user=' from the URL which is perfect, but I have this text box which helps searches for a user on that page.
The problem is that it adds itself as "?user=USERNAME" with or without something existing in the URL so for example...
You shouldn't be making universal variables identified with an other one, really bad.
Your code is vulnerable to SQL Injection.
Use error_reporting(1); or error_reporting(E_ALL); for PHP debugging.
For variables, use var_dump($NAME_OF_VAR_TO_DEBUG);
Try using var_dump() for the variables to look for anything odd such as "FALSE".
I would also recommend using a .htaccess trick and GET for the members page so it makes it look like a directory in the URL when it isn't, this means storing user data in the database.
I see that there is a mistake in your code.
$formcontent=" From: $name \n Priority: $priority \n
The code mark in red is incorrect.
The one below should do for that part:
$formcontent = " From: " . $name . "\n Priority: " . $priority . "\n";
You may want to apply the way I did it into your...
I've found this report regarding OpenSSL, will this be fixed soon on your end or is it already?
http://thehackernews.com/2014/06/openssl-vulnerable-to-man-in-middle.html