简体   繁体   English

GoDaddy-Wordpress网站托管问题

[英]GoDaddy - Wordpress Site Hosting Issues

I am using GoDaddy Windows Shared Hosting Server to host my WordPress Website. 我正在使用GoDaddy Windows共享托管服务器托管我的WordPress网站。 I am NOT using GoDaddy Managed WordPress service (I just copied my files on server, created DB and site works). 我没有使用GoDaddy托管的WordPress服务(我只是在服务器上复制了文件,创建了DB和站点作品)。 However, I am facing some issues as follows : 但是,我面临一些问题,如下所示:

  1. Permalinks do not seem to work - Despite of the fix in .htaccess file for mod_rewrite module OR resetting the Permalink option via Admin Dashboard. 永久链接似乎不起作用-尽管.htaccess文件中有mod_rewrite模块的修复程序,或者通过管理仪表板重置了永久链接选项。

  2. Cannot upload media : I get an error "Cannot upload media to wp-content/uploads" - If I set the upload_path in DB from BLANK to the above path, still the error continues. 无法上传媒体:我收到错误消息“无法将媒体上传到wp-content / uploads”-如果将DB中的BLANK中的upload_path设置为上述路径,错误仍然继续。

To check if I have DB Connection issues: I tried to create a POST and I could do it well. 要检查是否存在数据库连接问题:我尝试创建POST,并且可以做得很好。 Just that I could not upload MEDIA. 只是我无法上传MEDIA。

GoDaddy tech support is NOT able to resolve these issues.Meaning their solutions do not seem to work for me. GoDaddy技术支持无法解决这些问题。意味着他们的解决方案似乎对我不起作用。 Can anyone help me with my issues ? 谁能帮我解决我的问题?

1- For the first issue I suggest to use the default wordpress htaccess file which is as following : 1-对于第一个问题,我建议使用默认的wordpress htaccess文件,如下所示:

# 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

after this go to Wordpress setting and save permalinks again. 之后,转到Wordpress设置并再次保存永久链接。

2- for second is a privilege issue, download FTP software , ex: "filezilla", connect to your host and browse to uploads folder, right click to 'permissions' and put the privilege as 777 2-第二个是特权问题,下载FTP软件,例如:“ filezilla”,连接到主机并浏览到uploads文件夹,右键单击“权限”,并将特权设置为777

  1. Please try to fix your issue with 请尝试解决您的问题

# BEGIN WordPress RewriteEngine On RewriteBase /stage/ RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /stage/index.php [L] # END WordPress

  1. It seems this is permission issue. 看来这是权限问题。 Please kindly ask your hosting provider to give full permission for you 请恳请您的托管服务提供商为您提供完全许可

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM