• I have search High and Low on how to solve this issue, I even feel like everywhere in between. I have been working locally on a WordPress website for a client. They got hosting so I uploaded all the files and the database to GoDaddy. Made the changes to the data base and changed the links so everything would function properly. Once I got all that up and running I noticed that every time I Published or Updated something I would get an error saying No Data (in chrome) and Connection was reset (in Firefox).

    I also noticed that the .htaccess file still had my local info on it so I changed the folder from what I have on my local machine to what was on the server. But the issue keep on showing up. I called GoDaddy and disabled plugins and did your typicall WordPress trouble shooting with the plugins. But the issue keep showing up.

    After that I proceed to look at other WordPress website I have done and notice that in the .htaccess I had this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>
    
    # END WordPress

    When other installs had this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    So i switched it and the issue seemed to slow disappear. But still shows up, it does not happen every time I update or publish but it still shows up. The other odd thing is that it still makes the update. I refresh and the page loads and than I check the page and the update is there.

    If anyone has any info on how to fix this or why this might be happening, it would be greatly appreciated. Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator t-p

    (@t-p)

    I called GoDaddy and disabled plugins

    Have you tried resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems (because the hooks remain unless plugins completely removed or some plugins stick around in cached files. So by renaming the folder, you break them and force them inactive).

    Thread Starter Jacob Roman

    (@jcbrmn06)

    Hey Tara,

    Thanks for the response.

    When I tried the plugins, I did reset them by FTP. I just tried it again just to be safe and I ended up getting the error again. I found in my database that its like there were 2 wordpress installs in one. It had the standard wp_ and than than tables with my name of each table. I figure that this could be the issue so I deleted all the wp_ tables as I am using tables that I named when I installed it. It seems to be working a lot better now, I still run into the issue but far less than I did.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress No Data Error’ is closed to new replies.