helldog2018
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: GDPR Compliance Tools in WordPressHi @rien7,
This same page also says
The new privacy tools are scheduled for release at the end of April or beginning of May 2018.
So it is not aired yet.
I am sorry it did not work.
I read on other forums that for some it helped reverting back the prefix in database to _wp (not sure if you use a custom prefix though).
If you have multiple WordPress installations in one database, then there is a good chance all these installations are using the same prefix. Make sure the prefixed are differentiated from eachother, read HERE for more information.Also, just to make sure, is this a single or a multisite install?
Hi @junjieveer,
So you are not able to edit the URL in your back-end?
If not, then try adding
define('WP_SITEURL', 'https://veer.tv/blog/'); define('WP_HOME', 'https://veer.tv/blog/');
in your wp-config.php file.
By the way, I must say I haven’t seen your website as an IP address yet.
Forum: Fixing WordPress
In reply to: Html code not Working in the iOS app (Amazon affiliate links)Hi @therose15,
For security reasons iframe tags are removed from the code by WordPress.
To embed iframes use the plug-in iframe or advanced iframeForum: Fixing WordPress
In reply to: Wavesurfer.js: Cannot Read Property Canvas of UndefinedHi @emilykellymfr,
I am happy it is solved by changing the version number of your javascript file. Also, might this not be a caching problem? Did you clear your own cache before attempting this?
Forum: Fixing WordPress
In reply to: Image Thumbnails in Category ListingHi @ilovediecast,
I am happy it is solved, and to answer your last question on to making sure not to lose these edits after update.
You need to make a child theme, read information here.Forum: Fixing WordPress
In reply to: Change of the header@stephencottontail, I see now. My usual nickname is helldog2004 (which I linked to). But this account was what I used for my old company. I started a new company in 2017. and because I could not use my old account I changed it to 2018.
I think I totally forgot about the old account. Again, no harm ment.
Forum: Fixing WordPress
In reply to: Change of the headerOkidoki no problem, was just an offer.
And I have/had no idea I have two accounts?Forum: Fixing WordPress
In reply to: Change of the headerHi @majab44,
It’s probably easier to give me access to your FTP by sending me temporary login credentials.
[removed offer to login]
- This reply was modified 6 years, 11 months ago by stephencottontail. Reason: removed offer to login
Forum: Developing with WordPress
In reply to: sticky posts can rank first with normal posts in rest api ?Hi @jkhaoqi110,
I don’t think this is possible yet, take a look at THIS discussion (needs a core edit)
Forum: Fixing WordPress
In reply to: wp-admin “Sorry, you are not allowed to access this page.”Hi @orangeworx,
Let’s try this step by step:
1. Go to the wp_users table (the prefix wp_ is not always the same, depening on your settings in wp-config.php).
2. Click on the ‘insert’ button and fill in the following information
id: Pick a number, in this case try 1212
User_login: Insert the username you would like to use
User_pass: Add a password you would like to use, make sure that MD5 is selected under function
user_nicename: Put a nickname you would like to use.
user_email: Your e-mail.
user_url: Your website URL (optional)
user_registered: select a time when this user was registered.
user_status: set this to 0
display_name: put the name you would like to display.
3. Now click on ‘GO’.
4. Now go to wp_usermeta (the prefix wp_ is not always the same, depening on your settings in wp-config.php)
5. Click on the ‘insert’ button and fill in the following information
Unmeta_id: Leave this blank.
user_id: this should be the same as id in wp_users (in this case 1212)
meta_key: wp_capabilities
meta_value: a:1:{s:13:”administrator”;s:1:”1″;}
6. Click on ‘GO’
7. Insert another one in wp_usermeta and insert he following
Unmeta_id: Leave this blank.
user_id: this should be the same as id in wp_users (in this case 1212)
meta_key: wp_user_level
meta_value: 10Let me know if this helped.
Forum: Fixing WordPress
In reply to: How to implement an audio libraryHERE is a tutorial website on how to create audio libraries and more.
I checked your SQL, this ain’t going to work. You are missing all the (‘) in the SQL query.
Just copy the following SQL query and alter the text a bit to your liking.
INSERT INTO 'wp_users' ('user_login', 'user_pass', 'user_nicename', 'user_email', 'user_status') VALUES ('newadmin', MD5('pass123'), 'firstname lastname', '[email protected]', '0'); INSERT INTO 'wp_usermeta' ('umeta_id', 'user_id', 'meta_key', 'meta_value') VALUES (NULL, (Select max(id) FROM wp_users), 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'); INSERT INTO 'wp_usermeta' ('umeta_id', 'user_id', 'meta_key', 'meta_value') VALUES (NULL, (Select max(id) FROM wp_users), 'wp_user_level', '10');
I can’t realy add the usual quotes because it changes to code..
Check THIS website for the correct quoted code.- This reply was modified 6 years, 11 months ago by helldog2018.
- This reply was modified 6 years, 11 months ago by helldog2018.
- This reply was modified 6 years, 11 months ago by helldog2018.
1. Do you remember what you did as last action before not being able to enter the administration section? If so, did you try to revert this action?
2. If you have a single wordpress installation try to disable the old .htaccess file and create a new one with the following information:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
3. What version of PHP do you have, some older versions of PHP are having compatibility issues with WordPress.
4. Verify that all tables in your database have the correct prefix (i.e.: wp_)
5. Also check in database that the correct capabilities are added to your account in the wp_usermeta table (note: prefix might be different then wp_), under meta_key wp_capabilities it should say under meta_valuea:1:{s:13:"administrator";s:1:"1";}
and under meta_key wp_user_level it should state under meta_value10
That should fix the problem.
Good luck.Forum: Fixing WordPress
In reply to: Change of the headerHi,
well you showed us the header.php file which couldn’t be it, so I guess the file should be in includes folder?
It would be easier for us to take a look inside your FTP.
Also you can send images in this forum by using html, i.e.:
<img src="url">