Luuk Faasse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error with permissions in dashboard with multisiteIt’s with all users (except network super admin). The problem is also happening with users with full administration rights on it’s sub-site. It’s happening on each site for users in the network except me (Super Admin).
Hello @necafasu,
For me, it can establish the connection to the database fine. But, it shows up the installation page.
Forum: Fixing WordPress
In reply to: Can’t log inHello,
You can login to the MySQL Database again, then go to “wp_users” and search in the “user_login” column. And you can login with your username, instead of your mail. I hope there’s a “user_login” column.
Forum: Fixing WordPress
In reply to: Can’t log inHello,
If you have the credentials of the MySQL database, you can login to phpMyAdmin. Check the “wp_users” table. Then in the column “user_email” you can see the email of all users, including your email. I hope this answer helps.
Regards,
Luuk FaasseForum: Developing with WordPress
In reply to: Insert a PHP head code to a WP websiteMy code is detecting an affiliate string. This is my code:
<?php //DETECT AFFILIATE ID if(empty($_SESSION["aid"])) { $aid = $_GET["aid"]; if(empty($aid)) $aid = $_COOKIE["aid"]; if(empty($aid)) $aid = 1; setcookie("aid", $aid, strtotime("+10 years"), "/"); $_SESSION["aid"] = $aid; } ?>It’s setting a cookie when an “aid” query string is entered.