Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have a php site .Im using iframe to load some contents from other site.A bulk list of errors showing in my console.Is it possible to restrict this errors in htaccess or using jquery?
You cannot suppress errors in frames from other sites. It is for security reasons.
What you can do is catch the errors - and then do some action if an error occurs. Or I would recommend to contact the site which you are including as a frame. They are the ones who can fix the errors.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
I am unable to load my website due to this error : ERR_TOO_MUCH_REDIRECT
WHAT CAN I DO?
I tried disabling my plug-ins, expecting the page to load but the problem still persists.
You must be re-directing to itself - this error is to prevent the browser from going into infinite loop. Use some kind of condition before you re-direct and use a re-direct with a query string.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Is it possible to hide the 404 Error in the console if the url contains a specific word?
I'm assuming that you're basically hijacking the 404 page so you can have dynamic URLS, which means you'll need to invoke the following before you start sending the actual content.
header("HTTP/1.1 200 OK")
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I have a page 'Error 404' and the address is like http://myurl.com/error404
the php file of error404 require's the index.php to properly show it.
I need a php code that will load or show the content in the url above without redirecting/changing the url. thanks
echo file_get_contents("http://myurl.com/error404");
Works also for URLs.
DOCS
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have a lot of .php and/or .php files on my site. Is there a way to go through each site/page and work out which ones(if any) have errors in the console in the broswer?
More generally, I am looking at making a change to many pages on my site and I am just wondering what is the best way to automate the test process to see that I did not break anything with the changes I made.
Note: the errors in the console in the broswer, will give me errors, but it would not show errors that only the human eye could detect.
Have you considered an automated testing framework?
http://matthewdaly.co.uk/blog/2012/11/03/testing-php-web-applications-with-cucumber/
Repetitively manually testing ur site is not fun.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want my client to be able to log into their website, fill out a form and then have that webpage permanently have whatever they put into that form. Is there a way to use php to take whatever is submitted in that form and replace the html content with it? Im new to php, which functions could I use? And is it possible for php to permanently change anything on a site? Im not terribly concerned with security
Start with wordpress and if you don't like it, then there are other content management systems out there. Google can help you find one too.
Wordpress site