Title: MySQL issue
Last modified: August 22, 2016

---

# MySQL issue

 *  [rcramu](https://wordpress.org/support/users/rcramu/)
 * (@rcramu)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/mysql-issue-1/)
 * Hi ,
 * I am getting :
 * [error] 13148#0: *59843 FastCGI sent in stderr: “PHP message: PHP Warning: mysql_query():
   Access denied for user ”@’localhost’ (using password: NO) in /path/wp-content/
   plugins/contus-video-gallery/front/views/videoshortcode.php on line 587
 * But this happens only when retriving and loading video details.
 * I could able to see the videos for each category in admin page.
    I have checked
   the db details in wp-config, seems fine.
 * Thanks for any help in advance.
 * [https://wordpress.org/plugins/contus-video-gallery/](https://wordpress.org/plugins/contus-video-gallery/)

Viewing 1 replies (of 1 total)

 *  [karthikeyani](https://wordpress.org/support/users/karthikeyani/)
 * (@karthikeyani)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/mysql-issue-1/#post-5198615)
 * Hi,
 * Open \wp-content\plugins\contus-video-gallery\front\views\videoshortcode.php 
   and find the following code
 *     ```
       $related                     = mysql_query($select);
                   if (!empty($related))
                       $result                  = mysql_num_rows($related);
                   if ($result != '') {
       ```
   
 * and replace with the below code
 *     ```
       global $wpdb;
       				$related = $wpdb->get_results ( $select );
       				if (! empty ( $related )) {
       ```
   
 * Now find `while ($relFet = mysql_fetch_object($related))` and replace with `foreach(
   $related as $relFet )`

Viewing 1 replies (of 1 total)

The topic ‘MySQL issue’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/contus-video-gallery_ba544b.svg)
 * [WORDPRESS VIDEO GALLERY](https://wordpress.org/plugins/contus-video-gallery/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contus-video-gallery/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contus-video-gallery/)
 * [Active Topics](https://wordpress.org/support/plugin/contus-video-gallery/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contus-video-gallery/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contus-video-gallery/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [karthikeyani](https://wordpress.org/support/users/karthikeyani/)
 * Last activity: [11 years, 9 months ago](https://wordpress.org/support/topic/mysql-issue-1/#post-5198615)
 * Status: not resolved