1
vote
1answer
22 views

How do I check if a URL is exists in PHP, without following redirects?

I have a PHP script call notfound.php that get executed when my web site hits a 404, and it will try to create a valid URL based on some logic that I have written. After I create a new URL I check if ...
0
votes
3answers
63 views

Magento custom admin module 404 not found

I have tried to create a new module for the magento admin section. I have seen many topics on this problem but none of them solved my issue. I have created a file in app/etc/modules/ named ...
0
votes
0answers
23 views

Googlebot attempting to submit every select option in form creating 118,000 404's in webmaster tools

I have a form on every page of my site that you need to select 4 options from dropdowns before it can be submitted (validated by jquery). However it appears a googlebot is successfully being able to ...
0
votes
1answer
30 views

How to handle automatic/coded redirection?

hope all active user on this community are fine.. I m facing a problem and for that I was looking for help..:) I have a software website and I update those software frequently. so, for example.. a ...
0
votes
1answer
29 views

404 Error handling with $_SERVER['REQUEST_URI']

I use different languages for my site. So the structure is quiet simple: root / => 404.php => template_404.php root/subdir/ =>(language_xy)404.php In my htaccess files I use a ...
0
votes
1answer
45 views

new controller is not working in Codeigniter

I'm using CodeIgniter. I set my default controller is 'cart'. And i add one more file in Controller folder that name is admin.php. admin.php having following code, <?php class Admin extends ...
0
votes
4answers
79 views

Getting error404 on Ajax in Codeigniter

I have problem with my ajax code. I`m trying to increase number inside span on click with ajax, but keep getting error in console - POST localhost/slots/game/lines 404 (Not Found) . Btw, I use ...
-3
votes
0answers
52 views

PHP Regex Routing and 404 [closed]

This is my function: function route($route=null, $function){ $uri = uri(); // Regex Replace $replace = array( ":a"=>"[^/]+", ":n"=>"[0-9]+" ); $matches = ...
0
votes
3answers
33 views

Whats the best way to capture 404s in Magento

I'm writing a custom Magento module to handle 404 URLs of the web site to fulfill some marketing requirements. I'm wondering what would be the best way to capture the 404s and pass those through my ...
-1
votes
2answers
20 views

How to tell the browser, that a page is not found Send 404 error [closed]

I have a problem: I have a website, that detects unknown sites and than changes the resources to the error page. But even when the user types in an address which is not found like /foo the browser ...
0
votes
2answers
37 views

redirect to my custom404 error page php

I have a custom 404 error page in my root. I have edited my .httaccess file also. Now I want to redirect to my custom 404 page,if certain condition fails in my page. For example $_SESSION[log]==1 ...
0
votes
0answers
25 views

webpage as 404 in google webmaster and link checker, but content is present in webpage

I am having search option in my webpage. When user enters search key, I will check whether search key exists in DB or not, if exists I display the results. In case if there is no result, then I will ...
0
votes
0answers
15 views

Trying to catch a 404error response from the twitter api?

I am trying to catch a 404status from the twitter api with php. I was trying to use curl but actually I would prefer to just use a conditional statement with a file_get_contents() as i don't want to ...
0
votes
2answers
99 views

htaccess 404 redirect works for .html extension but not .php extension

I have made a custom 404 page and inserted in my htaccess file: ErrorDocument 404 /404.php And the error direct works properly whenever I test a url with no extension or an .html extension. ...
-1
votes
3answers
81 views

Object not Found 404 Error [duplicate]

This code returns me a 404 Object Not Found error that I could not solve by modifying the code. And I don't know whether it's a code problem or a localhost problem. I need this to be running for my ...
0
votes
3answers
59 views

Object Not Found error for simple php script

Every time I hit the submit button to process this code in my webpage it goes to the Object Not Found (404 error) page. It has happened in a few of my scripts and i don't know the source of the ...
0
votes
0answers
31 views

My feed is randomly producing a 404

I've been using my feed for a while now, and for some reason it decided to stop working. http://www.gamerun.co.uk/feed I'm url encoding the urls as they have multiple Get variables in them and it ...
0
votes
1answer
65 views

Wordpress Plugin template_redirect throws 404

I'm trying to load a specific file of a plugin via a URL in Wordpress using template_redirect. The file gets shown correctly, however the header sent is 404, not 200. The code in the plugin is: ...
1
vote
3answers
121 views

.htaccess not redirecting to 404.php instead shows page name [closed]

Am trying to make a custom 404 page for my website and am having .htaccess file in the root directory where am using this rule ErrorDocument 404 404.php //I want to redirect to 404 So when I change ...
2
votes
1answer
110 views

Opening remote pdf file with valid path returns 404

I'm trying to display the respective PDF file associated with an article in drupal so that if the browser is equipped of rendering the pdf it should open directly, if not show a conventional dialog ...
3
votes
1answer
46 views

PHP in a 404 script to 301?

I want to 301 a large amount of old URLs. Can I do this via PHP in a 404 script, or would this mess up search engine results (them thinking the pages are not found)? My current .htaccess: ...
0
votes
3answers
220 views

Nginx rewrite 404

I've spent ages looking on google for any information, and asked around some people (before anyone suggests I go and do so). The bits of my nginx.conf that aren't working properly are below. What's ...
0
votes
1answer
31 views

404 customisation

I want to make a custom 404 page. I created a .htaccess containing only this line : ErrorDocument 404 /errors/404.html And the structure of my website is like this : errors 404.html index.php ...
0
votes
0answers
23 views

Send All NON existent get request to a default page

please be aware that I am very new to php. okay I have a script. that send variable pages to certain pages but only if the variable matches with an already preexisting page, For example ...
0
votes
0answers
60 views

Trying to $_POST to MySQL database using PHP and Apigee

I'm trying to write a PHP function that will take data that's posted from Apigee and insert it into a specific column. The context of this project is a simple booking system where the user is able ...
0
votes
3answers
67 views

How to connect 404 page with php page loading script

My Hompeage is loading the sites with this script: <?php if(!isset($_GET['id'])) $id = 'home'; else $id = $_GET['id']; include($id.'.php'); ?> ...
-2
votes
3answers
114 views

Send Email Automatically On Page Load

Is it possible using PHP/HTML/JS that when a user loads a 404 web page it automatically triggers an email to be sent to the web admin notifying them that the page was loaded and how the user got there ...
0
votes
1answer
48 views

what http status codes to accept

I'm using Curl to find out the status code of a website. This is in response to a user typing in a url in a form, basically I just want to check the url is valid, so I thought the best way would be to ...
0
votes
0answers
13 views

function.include error showing when checking website through xenu software

for example http://www.example.com/function.include http://www.example.com/function.mysql-query These two 404 Not Found Url showing when checking webite through xenu software What is this i'm not ...
0
votes
2answers
50 views

MySQL error code needed

MySQL always sends a "default response" even when the data doesn't match the query! How can I design my query to get an error code from MySQL if no data is matching the query? I need an error code ...
0
votes
1answer
50 views

Why can't my custom 404 handler see my static content?

I decided to use SEO friendly urls in my project. That's why I send all requests through my 404 custom handler (index.php) ErrorDocument 404 /index.php this is the place where I check for the path ...
-3
votes
2answers
38 views

Dynamic URL Loads a Page [closed]

Recently I have been developing a website with a system similar to the one of oc.tc. I was wondering how every user's page can be accessed like this: oc.tc/username. I'm almost positive they're not ...
-1
votes
3answers
260 views

404 page not found CodeIgniter Login

This is my first time using CodeIgniter and I am trying to create a Log In form. Whenever I click on the submit button that I have created, it brings me to a 404 Page Not Found Error. I have made a ...
0
votes
1answer
32 views

php: inconsistent behaviour with HTTP headers

am testing lots of links on the same domain to see whether they exist or not. I am using the following code: function get_http_response_code($url) { $headers = get_headers($url); return ...
0
votes
2answers
144 views

PHP - Header 404 not triggering htaccess ErrorDocument

This isn't my exact PHP as it's rather complicated, but it's the same general idea. if($_GET['page'] == ".htaccess"){ header("HTTP/1.0 404 Not Found"); } When this happens, Apache doesn't load ...
0
votes
3answers
291 views

Object not found! The requested URL was not found on this server. localhost

Good day to everyone. I have a typical set up A,M,P and i am just doing some testing on my localhost server for setting up a webpage. I'm a bit new to php and dynamic sites so I'm muddling my way ...
1
vote
0answers
112 views

wordpress returns a 404 when i call php file with jquery ajax

I have php file for adding email addresses to a newslist the file is in my wp-content/plugins directory my file is called add_subscriber.php i think my htaccess block this file for some reason my ...
-2
votes
4answers
60 views

How to show Error 404 in static pages? [closed]

I have a website say mywebsite.com. I have created 3 static pages: 1. mywebsite.com/index.php 2. mywebsite.com/about.php 3. mywebsite.com/main.php I am using PHP to include different files. Now I ...
-2
votes
1answer
40 views

Preserve URL on 404 Error in .htaccess

Currently my 404 page looks like this: example.com/404.php . Is it possible that I could rewrite it to example.com/filethatdoesnotexist.php in .htaccess. I think you could do in php but I would rather ...
2
votes
4answers
125 views

Protocol Host showing in our Error Log / 404 Errors

I'm getting an error showing up in my error logs over and over. I see it in an error log in cpanel as well as in an AW stats report. The errors look like this: ...
0
votes
1answer
81 views

CodeIgniter Login System not working 404 error bad request [duplicate]

Using CodeIgniter to build a simple log in system. I am getting this error when I try to submit my form data 404 Page Not Found The page you requested was not found. I've no idea why! This is my ...
1
vote
2answers
542 views

Simple Login System using CodeIgniter returning 404 on login

I am trying to get my head around PHP and using the CodeIgniter Framework. I have recently been following this tutorial: http://www.codefactorycr.com/login-with-codeigniter-php.html I went through ...
0
votes
1answer
159 views

Zend Framework 404 error issue in new controller

I am very new to ZF and I am working on an already built application. My task is to create web service in the application. I have setup the application locally and its working fine. So I have added a ...
0
votes
1answer
110 views

CakePHP Redirect 404s

I'm trying to learn CakePHP for the first time (I usually just straight code PHP), and I'm starting with the 'official' Blog Tutorial they host: ...
0
votes
1answer
97 views

CodeIgniter 404 Bad request error

I'm working with codeIgniter. I am making a login form which checks the members details with the database. However when I click to login I get this error message: The requested URL ...
0
votes
0answers
76 views

How to dynamically populate header via redirected input form?

I have a basic redirect input form: <form method="post" action="/forwardpin.php"><input type="text" name="id" value="Enter Keyword Here" onclick="this.value='';"><input type="submit" ...
1
vote
1answer
78 views

How to read webpages sending fake 404 header

Is there any way by which a crawler can read html from pages sending fake 404 header. I tried to get the page using implode and curl and file_get_contents still getting header 404 error.similar SO ...
0
votes
3answers
104 views

codeigniter moving from localhost to server

getting 404 error 404 Page Not Found The page you requested was not found. config.php <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $config['base_url'] ...
1
vote
1answer
56 views

Custom 404 page - does it need a 404 header?

In my project, I'm routing all requests to index.php. Then I check $_SERVER['REQUEST_URI'] against a whitelist and display the relevent content. Now, if the $_SERVER['REQUEST_URI'] does not match ...
0
votes
2answers
116 views

How do get the URL of a Not Found page, in order to display it in a custom 404 page?

Ok, I have a issue with my Webserver, when I try using <?php echo "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]" ?> It turns up the file it's self: Eg. blah.com/404.php Also how would I ...

1 2 3 4 5 7