Viewing 5 replies - 1 through 5 (of 5 total)
  • 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://www.ads-software.com/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;

    ggokhan3

    (@ggokhan3)

    hello,

    I have the same problem, how will I run these queries? sorry I don’t know so much about database.

    Thanx a lot

    karthikeyani

    (@karthikeyani)

    You need to access to your PHPMyAdmin section. If you are using cPanel, search ‘PHPMyAdmin‘ and click the icon. Refer https://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]

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘video ads’ is closed to new replies.