outger
Forum Replies Created
-
Resolved
Wel, I have been looking everywhere for a solution for the problem. Since Xampp doesn’t automaticly activates CURL -and Google Analyticator uses it- you have to do it yourself.
First
Open the files below with Notepad and find this line:
;extension=php_curl.dll
Remove the “;” so you’ll get “extension=php_curl.dll”
C:\xampp\php\php.ini (development)
C:\xampp\php\php.ini (production)
C:\xampp\php\php.ini (configuration)Save the files.
Second
I got this part from Php.net Kudo’s for that!
Go to the PHP directory (in Xampp) and copy the following libraries to the windows/system32 dir.
C:Xampp/php/ssleay32.dll
C:Xampp/php/libeay32.dll
C:Xampp/php/ext/php_curl.dllThird
Reboot your computer and it should work!
~Outger~
Tnx for your reply Myatu. I figured out the solution.
1. I placed add_custom_background(); in the functions.php. (Background Mananger worked but didn’t show fullscreen mode)
2. I placed this code before the </head> in header.php
<?phpif ( is_singular() && get_option( ‘thread_comments’ ) )
wp_enqueue_script( ‘comment-reply’ );wp_head();
?>3. In the file footer.php before the </body> I placed this code.
<?php
wp_footer();
?>Background Manager is fully operational. 🙂