0
votes
0answers
49 views

Restrict url access just from a specific site

I have an application hosted on distant server and it will be loaded by other site in an iframe, it there a way to restrict the access to it, I mean prevent the access to it by using its url, and ...
0
votes
1answer
39 views

CRON PHP access restrcitions

I have a PHP script that is run by a cron job once nightly. I would like to restrict users from accessing this script. Cron should be the only thing that should be able to run this. Any ideas on how ...
1
vote
0answers
38 views

Restrict functionality of open PHP project?

though I don't think it's really possible, I just wanted to ask other people: Imagine a PHP project, just some CMS or something. This PHP project should be avaliable for free in trial. The trial mode ...
1
vote
1answer
143 views

PHP upload images only error! how to fix this? [duplicate]

Possible Duplicate: Strict Standards php error Hi have a problem with a upload script in php. I am trying to make it accept only images but i get an error and i dont know how to fix it. It ...
1
vote
1answer
53 views

checking US-only website status using curl

[Problem] There is a website which works for US-citizens only (shows info "A" for US-citizens, info "B" for non-US citizens). I need to constantly monitor this webpage for changes ("A" info) - an ...
0
votes
1answer
114 views

Same htaccess login for subdomains [closed]

I'm looking for a way to secure a domain and his subdomains with an htaccess with only one login for all. I currently have a domain for each client like: client.domain.com. Every client's project ...
0
votes
2answers
67 views

PHP page load error

I'm trying to hide a content of a page using PHP but always get an error this is the code I'm using. Data from $pass comes from a form submited from the other page: <?php $pass = $_POST['pass']; ...
0
votes
2answers
121 views

Stop visitor from clicking on a link again until 24 hours expires

I'm having a problem. I have a page with about 1,200 buttons, the website will not be a membership website, I just want to be able to keep track of each visitor to ensure that a button that they ...
0
votes
2answers
53 views

How to allow only one method in an application made with CodeIgniter?

I made a contest where members could register to win prizes. Now, it's time to display results and winners of the contest. I want to allow only one controller and one method, to disable the ...
0
votes
1answer
410 views

Wordpress - Restrict users in backend to certain categories [closed]

I'm looking to modify Wordpress with a plugin hopefully that will restrict users edit only certain categories, posts and widgets. Does anyone know of anything that may help?
1
vote
1answer
164 views

Restrict access with htaccess but allow from web pages

How can I restrict access with a .htaccess file Deny from all but all $.post requests, $.get request, etc. How could I still access the file from a page but revoke direct access by just going to it in ...
0
votes
1answer
45 views

How to prevent a user from leaving comment to another user

Suppose I have a site where users can leave each other comments. we have user A, user B and user C. also, support user B has blocked user C. user A leaves user B a comment, code is as follows: ...
-2
votes
1answer
106 views

I want my online ordering website to be available at specific hours only [closed]

I'm working on an online ordering website for our takeaway restaurant. I have to prevent people from placing orders before 5pm and after 11.30 pm (server time). I'm using OpenCart, php. Could somebody ...
0
votes
1answer
54 views

Restrict inheritance depth

I'm looking for a solution to restrict inheritance depth to one level in PHP. Similar to the 'friend' keyword in C++ I want to make sure that functionality of a specific class A could be used in class ...
0
votes
0answers
962 views

include() warning - SAFE MODE Restriction in effect

I just switched from the development server to a new, live one. I've been having a slew of different problems but this is the latest. When a user creates an account, it creates a profile page for them ...
2
votes
1answer
459 views

Restrict File Type and size in PHP form upload

Hi all I have found some really good code over on http://apptools.com thats helped me create a form that allows users to enter there details upload a file and it then emails it to me automatically ...
1
vote
4answers
109 views

Is there a problem with this script?

I am building an ajax/php script and I have come up with something to protect the ajax file from external access, by that I mean to restrict the execution of the script from another server (and ...
1
vote
4answers
152 views

Restrict name of uploaded file

I am using the following code for user to upload an image. if ((($_FILES["companylogofile"]["type"] == "image/jpeg") || ($_FILES["companylogofile"]["type"] == "image/pjpeg")) && ...
1
vote
2answers
2k views

PHP Upload - Allow only jpg files

This is what I currently have: $file_name = $HTTP_POST_FILES['uid']['name']; $user= 'FILENAME'; $ext = pathinfo($file_name, PATHINFO_EXTENSION); $new_file_name=$user . '.' . $ext; $path= ...
0
votes
4answers
499 views

MySQL Big FK identifier

I'm trying to create a fk but MySQL doesn't allow it ... Identifier name 'foobarbaz_FK_CATALOG_PRODUCT_ENTITY_WEEE_DISCOUNT_PRODUCT_ENTITY' is too long [ CREATE TABLE `foobarbaz_weee_discount` ( ...
6
votes
5answers
262 views

Restrict what can create a PHP Class

I got two classes, "A" and "B". In the application logic no one is allowed to create an object of class "B", except for class "A". But, since I dont want to have the two classes in the same file I ...
2
votes
4answers
636 views

how to restrict user not to vote an article more than once?

in my application a user can post his/her article that other users can response upon ans vote up and down also like stackoverflow has for posted question ans answers. How can I restrict user so that ...
1
vote
2answers
398 views

PHP5: restrict access to function to certain classes

Is there a way in PHP5 to only allow a certain class or set of classes to call a particular function? For example, let's say I have three classes ("Foo", "Bar", and "Baz"), all with similarly-named ...
3
votes
6answers
497 views

Restrictions on PHP include()

Hey guys, I am separating some XHTML from PHP by putting the XHTML into a separate file and then using PHP's include() function within the PHP script. This works perfectly fine, however, users are ...
0
votes
2answers
344 views

crawler gets stuck on the mandatory agecheck page in Drupal

we have a big community website build in drupal, where the site has a mandatory agecheck before you can access the content of the website it checks for a cookie to be present, if not, you get ...