0

Okay, we have a subscription site up on our dedicated server. We feed content to paying members who access the site via our login page. Subscriptions are handled by a third-party biller who writes new member info to a database on our server. Member authentication is done using a MySQL database and not .htaccess/.htpassword. The reason for this was that much research showed that the .htaccess/.htpassword approach was insecure (transmission of user info via plain text) and that it offers no way for a user to log out. Thus the database authentication via MySQL. It all works great.

Except we have a problem in that the folders that contain members-only content need to be secured against anyone typing in the complete file path and file name to access the downloads content, thus bypassing our website.

So we went to the host and had a custom .htaccess file written. We had to do this in the interest of time, and they claimed to know about this sort of thing so we hired them to write the .htaccess file.

First iteration: It redirected every user login back to the index.php page instead of allowing access to the members area. Direct file access was blocked, however.

Second iteration: Member access to the member's area was restored and once again the content was vulnerable to direct download.

Third iteration: Successful access to member's area. Content access blocked to direct browser access. HOWEVER, ALL of the .jpg files that used to display with each of the download files in the member's area are now broken links. All of the thumbnails in the associated download file photo galleries are now broken links, preventing the viewing of the larger images they represent.

CONCLUSION: The host is backing out of the deal saying that what we want can not be done. To recap, what we want is:

  1. Allow our registered members access to our member's area using our login page.

  2. Preventing direct access to our content via browsers.

  3. Allowing all of the .jpg images to display with the download files and in the thumbnail galleries.

They claim this can't be done, my suspicion is that they do not know how to do it. Certainly there are many subscription sites on the internet that use .htaccess files to secure their content.

ADDITIONAL INFO: We have an SSL certificate for this domain. Could that cause a problem? Shouldn't the .htaccess to protect our member's area content be in the member's area folder and not in the root (as it is now, and wouldn't that make the coding of the .htaccess file less complex?)?

I'm having a hard time believing that what we are asking to be done is not do-able.

Please advise. Any and all help will be severely appreciated.

4

1 に答える 1

0

.htaccessルートをスキップします。「メンバー コンテンツ」のファイル名を MySQL に保存します。次に、.php を使用して「メンバーのみ」にリンクします。PHP は識別情報のみを認識し、実際のファイル名は認識しません。EG MySQL インデックス番号、保存日、メンバー ID - これらすべてを使用して、決して公開しない一意のファイル名を生成 (および取得) できます。

img タグの「src=」部分でサーブレットを使用して Java でこれを行ったことがあります。私は、PHP が同等のものを提供することを期待しています。

于 2013-02-28T02:39:09.413 に答える