TheBoss
Forum Replies Created
-
I’m getting this, because of I had to re:install and did get a new code?
Scan Engine Error: Wordfence could not start a scan because the cron key does not match the saved key.
What to do?
Did you install an under-construction plugin?
NoCan you access /wp-admin/admin-ajax.php without being logged in and do you see a ‘0’ when you access that?
Yes, but I’ll try againIt did stop to work, after I did Update WordPress to the newest version
Forum: Fixing WordPress
In reply to: Error 403 blocked.Thanks, but it don’t work for me. I still get a blank page at my wp-admin panel
Forum: Fixing WordPress
In reply to: Error 403 blocked.I’m hosted at One.com. And I have the same problem or a similar problem.
First I got this message…
Error 403 blocked.
blocked.
Guru Meditation:
XID: 1221130184
Varnish cache server
Then I did add this to my .htaccess file:
<FilesMatch “^(wp-login|wp-log)\.php$”>
Header set Set-Cookie wordpress_test_cookie=WP+Cookie+check
</FilesMatch>Then I did type https://www.my-domain.com/wp-login.php. And I got from wp-login.php to a blank page.
Just nothing…
Forum: Plugins
In reply to: NextGen plugin. No thumbs generatedSafe mode are OFF and open_basedir are ON. And I can’t change that
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size of 33554432 bytes exhaustedDone that… but many didn’t tell, where to put the define(‘WP_MEMORY_LIMIT’, ’64M’);
I did find a solution here…
Fatal Error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes)…
Solution 3. Add this line of code in your WordPress WP-CONFIG.PHP file. Add it before any other values. (My preferred choice)
Then my WP-CONFIG.PHP file looks like this…
<?php
define(‘WP_MEMORY_LIMIT’, ’64M’);
// ** MySQL settings ** //
define(‘DB_NAME’,And it rocks. Hooray!
Forum: Plugins
In reply to: Put Google Ajax Search button onto Second Line?Do anyone know, howto change/translate the button text from “Search” to something else?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Can Not Add Galleries!Save this as chmod.php, and put it at your ftp folder
<?
$filename = “gallery”;
chmod(“/customers/domain.com/domain.com/httpd.www/wordpress/wp-content/$filename”, 0777);
echo “chmod for $filename was changed”;
?>Run chmod.php in your browser. If you get this message, it works :O)
chmod for gallery was changed
Thomas
PS: /customers/domain.com/domain.com/httpd.www/wordpress/wp-content/ = your root to your folder
Forum: Plugins
In reply to: NextGEN Gallery problem – Internet ExplorerTrue. I have a lot scripts. And something don’t work. I can’t change or get the frontpage to work right. It’s like the CSS don’t work on the frontpage, but it does work on other pages…
Forum: Fixing WordPress
In reply to: Image/Media Uploader problems – WP 2.6.2What is my problem? I can upload pictures. Pictures goes to wp-content/picture.jpg and not wp-content/upload/picture.jpg = I only get a frame, no picture at the editor.
Forum: Installing WordPress
In reply to: Step 3 – Fatal errorOk, done. Got this from the forums:
“here is a quick fix (tested against php5.0.1)
change line 705 in wp-admin/upgrade-functions.php from
if ($res[0][‘Type’] != ‘varchar(32)’) {
to
if ($res[0]->Type != ‘varchar(32)’) {
hope it helps.”
Yes, it did and thanks :o)