‏إظهار الرسائل ذات التسميات wordpress. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات wordpress. إظهار كافة الرسائل

2016/02/15

change wordpress domain name using phpmyadmin

To change the wordpress domain what we often need, may be to make the site live from localhost: This is a complete list of update queries:
PDATE wp_posts SET guid = replace(guid, 'http://olddomain.com','http://newdomain.com'); UPDATE wp_posts SET post_content = replace(post_content, 'http://olddomain.com', 'http://newdomain.com'); UPDATE wp_links SET link_url = replace(link_url, 'http://olddomain.com', 'http://newdomain.com'); UPDATE wp_links SET link_image = replace(link_image, 'http://olddomain.com', 'http://newdomain.com'); UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://olddomain.com', 'http://newdomain.com'); UPDATE wp_usermeta SET meta_value = replace(meta_value, 'http://olddomain.com', 'http://newdomain.com'); /*UPDATE wp_options SET option_value = replace(option_value, 'http://olddomain.com', 'http://newdomain.com') WHERE option_name = 'home' OR option_name = 'siteurl' OR option_name = 'widget_text' OR option_name = 'dashboard_widget_options';*/ UPDATE wp_options SET option_value = replace(option_value, 'http://olddomain.com', 'http://newdomain.com');

2016/02/08

wordpress Warning: POST Content-Length of bytes exceeds the limit of bytes in Unknown on line 0

wordpress Warning: POST Content-Length of bytes exceeds the limit of bytes in Unknown on line 0


you just setting at php.ini


then set :



upload_max_filesize = 1000M;
post_max_size
= 1000M;

then restart your xampp.. Check the image


or





Try pasting this to .htacces and it should work.


php_value post_max_size 2000M
php_value upload_max_filesize 2500M
php_value max_execution_time 6000000
php_value max_input_time 6000000
php_value memory_limit 2500M