English 中文(简体)
如何在 root 上创建或编辑文件内容
原标题:How to create or edit file content on root

我有一个网站,而不是我想要我把这个网站上传到实时服务器上的时候,它应该要求数据库用户名、密码、网址url.etc。 类似网站安装器。 LOCAL 系统运行良好。

现在我的问题是: 我需要在.ht access 文件中更改 RewriteBase 。 但此文件位于网站的根部。 所以我正在获得权限, 以创建位于根部的新文件或编辑/ 复制文件 。

Warning: 重命名( generate.htaccess,.htaccess): 拒绝授权

<强度 > 警告: 复制(.htaccess): 无法打开流流: 权限被拒绝

我该怎么办,请帮帮忙

谢谢

最佳回答

要在根目录上创建/修改文件, 您必须给根目录 0777 权限 。 < strong> > 这不是一个好的做法 。

我建议先用 777 权限创建空.htaccess 或其他所需的文件 。 在从源文件( 在您试图复制的地方) 复制内容后, 在将内容写入该文件中的第一个检查写权限之前 。

希望这能帮上忙

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...