crylike
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP pages – A way not to make the actual page openIndeed.
Thank you very much. I totally missed that.
Forum: Installing WordPress
In reply to: Blank page after auto upgrade to 2.9.2Hi,
how can I activate the plugin is I can’t access even my admin panel?
Forum: Plugins
In reply to: NextGen Gallery – Slideshow problemI got the same problem and here how I fixed it:
1. Download imagerotator package from the link provided in Gallery/Options/Slideshow in the Dashboard.
2. Upload the content of the downloaded folder imagerotator into wp-content/uploads. Remember all the files should be in wp-content/uploads, NOT in wp-content/uploads/imagerotator. I know they said you can upload it to wp-content/uploads or a subfolder, but I tried with the subfolder option and it didn’t work.
3. Go back to Gallery/Options/Slideshow in the Dashboard, and click on the button Search Now, it should provide you the Path to the Imagerotator (URL): http://yourdomainname/blog/wp-content/uploads/imagerotator.swf
4. The slideshow should be working now.
this one works for me…thank you gnocchi
Forum: Fixing WordPress
In reply to: Why is Plugin Upgrades failing?i have the same problem. it doesn’t do that with my other blogs though…
Forum: Installing WordPress
In reply to: 2.8 fatal errors in wp-admin and wp-includeshi everyone,
I had problem with the class translation so I re installed the l10n.php in the wp-includes folder, but then it gave me another error in default-widgets.php. I read some more in this thread and someone re-installed their wp-settings.php which I did but gave me a blank page without errors..
I didn’t know what else to do, so I deleted everything again like I would install wp manually. I deleted wp-admin and wp-includes and replaced it with the new files from wp version 2.8.4 and IT WORKED!
I hope this help!
Forum: Fixing WordPress
In reply to: Dashboard mess-up interfaceanyone?
Forum: Fixing WordPress
In reply to: Dashboard mess-up interfacewhat did you do then to fix this? did you re-install wordpress?
Forum: Fixing WordPress
In reply to: Dashboard mess-up interfaceI recently added a new plug-in…
it was the security scan or something…or wp-security..
but I deleted it already. I didn’t edit anything in my wp-config..Forum: Fixing WordPress
In reply to: Fatal error : formatting.php and file.phpI forgot to do to the whole process of updating wordpress. I forgot to upload some files…
Forum: Fixing WordPress
In reply to: Fatal error : formatting.php and file.phpSorry, I did not write down what’s on those line.
Here’s what in line 100 formatting.php$pee = preg_replace(‘/<p>\s*?(‘ . get_shortcode_regex() . ‘)\s*<\/p>/s’, ‘$1’, $pee);
and this is from line 59 to 73 of file.php
function validate_file( $file, $allowed_files = ” ) {
if ( false !== strpos( $file, ‘..’ ))
return 1;if ( false !== strpos( $file, ‘./’ ))
return 1;if (‘:’ == substr( $file, 1, 1 ))
return 2;if (!empty ( $allowed_files ) && (!in_array( $file, $allowed_files ) ) )
return 3;return 0;
}