XF 1.4 Looping PC

  • Thread starter Thread starter Nelson T.
  • Start date Start date
N

Nelson T.

Guest
So I imported the pc's.

In one, I ask a few members to give me their correct date of birth.

The pc keeps being sent to the members, over and over.

It is ticking them off.

What happened, and how can I stop it? I tried leaving the conversation and setting it to no more replies permitted.
 
It's entirely possible that the file only partially uploaded or began but didn't complete, leaving you with a zero byte file.

Are you sure you were hacked i.e. someone gained unauthorised access and modified your file/s?

Pretty sure, yes.

Where do I put those .htaccess files?

In VB, I had them in admin, modadmin and includes directories, and it worked great.
 
That file states:


Using IP address based protection instead of passwd
You can also use IP address protection instead of a passwd file. In which case you would just have this in the .htaccess file for admin.php:
Code:
<Files admin.php>
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Files>
And this for the /install directory:
Code:
Order Deny,Allow
Deny from all
Allow from 127.0.0.1

Replace 127.0.0.1 with your actual IP address. You can find out your IP address here.
Additional allowed IP addresses can be added on a new line.


However, the admin.php file is in the main forum directory. If you restrict IP access to that directory, people cannot access the site.

So, I repeat my previous questions, which directory or directories do I place the .htaccess file with the IPs that are allowed in?
 
Protecting the directories or deleting them is completely unrelated to the blank index file which was present in the installation root.
 
Protecting the directories or deleting them is completely unrelated to the blank index file which was present in the installation root.

Hopefully, but I would still like to IP protect the Admincp. How can I do that if it is in the main directory?
 
The resource linked to earlier works for any XenForo installation.
The instructions are from my own site, which is similarly protected.

The protection is being applied to the admin.php file, not the directory.
 
The resource linked to earlier works for any XenForo installation.
The instructions are from my own site, which is similarly protected.

The protection is being applied to the admin.php file, not the directory.

So I put the .htaccess commands in the admin.php file?

I'm lost, Sorry.
 
Top Bottom