hiboy
Forum Replies Created
-
closed
Forum: Fixing WordPress
In reply to: I need help urgently, installed a plugin and it broke my siteI think the error mean it is searching for buddypress, without it,the error is shown, how to solve it?
Forum: Fixing WordPress
In reply to: I need help urgently, installed a plugin and it broke my siteThanks both for your reply.
Hi DJDoubleXL189, my site is not live, currently on localhost, doing development
Hi Seacoast,
I uninstall this plugin and buddypress but the error is still shown at the top,any solution?Gosh, as the site is under development, i didnit backup as i have not finish building the site, spended weeks on it, panicking now.
Forum: Fixing WordPress
In reply to: How to rename wp-login.php to login.php and hide wp-adminHi youOn,
Thanks so much for your reply, I think I come across that thread before,
my priority is on wp-login.php as that where user go to register if they dont use the login widget on frontend.
“I wanted to rename wp-login.php to login.php so when they visit wp-login.php redirect to 404 not found or login.php, and when user visit wp-admin, they are redirect to login.php.”
Forum: Fixing WordPress
In reply to: What the correct way of backing and restoring wordpresshmm, hi jibbius , thanks for your reply,
i running on xampp ,so it should be localhost/story, hmm, i guess i try again,
the previous time i tried backing and restore was an horror too, after i backup ,restore and change the url in database, the whole site does not have a white screen,but just words and images, and the site was mess up,when i navigate to the backend ,it redirect to the old url frontend, unsure why toobrb
Forum: Fixing WordPress
In reply to: What the correct way of backing and restoring wordpressHi skapator, thanks for your reply
I was given this url http://codex.ww.wp.xz.cn/Moving_WordPress before hand and have given it a read thoroughlynot sure what step i might miss out that my backup and restoration is not complete.
Seem like it complicated to manually backup, any solution?Forum: Fixing WordPress
In reply to: What the correct way of backing and restoring wordpressHi jibbius, thanks for your reply , yes i understand there are many backup plugin available, but i wish to understand the basic of backup manually which i failed to,
your step seem to be what I have done, as such ,
– Install wordpress at new location.
– Drop all tables from the new database, replace them with the tables in your backup.
– Copy the wp-content folder to new site.( i copy the whole files except wp-config.php) didnt realise wp-content is enough
and manually change the url in siteurl and home in wp_options tableare these the steps ,did i miss out any??
I backup my blog.domain.com, and upload to localhost/story, when i navigate to it, a white screenForum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorHi again, thanks for your reply,
i replacefunction remove_cart66_meta() {
Cart66Common::removeCart66Meta();
}
add_action(‘wp_head’, ‘remove_cart66_meta’);with
remove_action(‘wp_head’, array(‘Cart66Common’,’displayVersionInfo’));
still couldnt work
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorHi benjaminprojas,thank you for your reply but
I tried the following code provided by you and placed in it themes function.php, it didnt work, meta generator still appear
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorhi sdefranc, sorry, any idea how do i modify the code?
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorHi , reality66, i switch to the default wordpress twenty eleven theme, by right i am using “bounce” wordpress theme
I added the following code to my function.php
function remove_cart66_meta() {
Cart66Common::removeCart66Meta();
}
add_action(‘init’, ‘remove_cart66_meta’);This code was provided by @sdefranc as above to remove the cart66lite meta generator . seem like “Cart66Common” class causing the error , did u all change something during the update?
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorTo the plugin author
another thing i aware, not sure if it was a bug, when people add to cart, the reach the shopping cart page, when they check out at the shopping cart page, they reach the check out page and the check out page wrote “Your Cart Is Empty” and a continue shopping button.It seem like something like it couldnt hook the shopping cart checkout sometime
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorHi guys ,after updating the plugin to latest version, i was faced with a white screen on both front and back end with an error
” Fatal error: Class ‘Cart66Common’ not found in /home/public_html/wp-content/themes/eleven/functions.php on line 494″on my line 494 was
function remove_cart66_meta() {
Cart66Common::removeCart66Meta();
}
add_action(‘init’, ‘remove_cart66_meta’);any solution?
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorThank you so much, sdefranc
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorhi sdefranc, sorry i may seem abit novice to coding, hmm ,how do i achieve it?
“calling Cart66Common::removeCart66Meta() from one of your init scripts. ”