Are you getting any error message? Trying to upload a video or video ads? If you are facing problem with adding videos refer the steps discussed here https://ww.wp.xz.cn/support/topic/cannot-add-videos-2?replies=13
Hi,
To resolve the issue open your database and run the following query and check.
ALTER TABLE wp_hdflvvideoshare_vgads CHANGE file_path file_path VARCHAR(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL;
ALTER TABLE wp_hdflvvideoshare_vgads CHANGE title title VARCHAR(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL;
Note : WP in the table name ‘wp_hdflvvideoshare_vgads’ should be replaced with your table prefix.
Execute this query also
ALTER TABLE wp_hdflvvideoshare_vgads MODIFY impressionurl TEXT NULL;
ALTER TABLE wp_hdflvvideoshare_vgads MODIFY clickurl TEXT NULL;
hello,
I have the same problem, how will I run these queries? sorry I don’t know so much about database.
Thanx a lot
You need to access to your PHPMyAdmin section. If you are using cPanel, search ‘PHPMyAdmin‘ and click the icon. Refer http://support.hostgator.com/articles/cpanel/how-to-access-phpmyadmin-from-cpanel , https://features.cpanel.net/topic/access-phpmyadmin-without-cpanel-login. Now select the database which is used in your WordPress site. Click ‘SQL‘ tab (Refer https://goo.gl/9om2HS). Now paste the queries mentioned in this thread and click go button. Make sure your table prefix is wp_. Else replace with your own prefix in the mentioned query.
Eg : If your prefix is ngrp_commentmeta (It is one of the WordPress table), then you need to modify the queries like below.
ALTER TABLE ngrp_hdflvvideoshare_vgads CHANGE file_path file_path VARCHAR(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL;
ALTER TABLE ngrp_hdflvvideoshare_vgads CHANGE title title VARCHAR(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL;
ALTER TABLE ngrp_hdflvvideoshare_vgads MODIFY impressionurl TEXT NULL;
ALTER TABLE ngrp_hdflvvideoshare_vgads MODIFY clickurl TEXT NULL;
If you feel hard, contact the support team at [email protected]