http://digitalpbk.com/php/warning-cannot-modify-header-information-headers-already-sent
this warning by turning the error_reporting to OFF using error_reporting(
0);, which is pretty much the not way of doing things. In HTTP Headers are sent before the actual content so if you are going to use header function after outputting the contents, it is likely to not work.
How do I solve this Warning Cannot Modify Header Information ?
In order to solve this issue you have to make sure you dont echo or print any output before using header or setcookie function. Make sure the control passes through ...
Published 2 years, 2 months ago
http://digitalpbk.com/mini-computer/rasberry-pi-tech-specs
monitoring, play videos on TV screens, offload long running simple tasks on server, server monitoring, file sharing server on local network, a torrent box, etc!
Raspberry Pi Model B Technical Specifications
The heart of the Rasberry is a Broadcom BCM2835 (CPU, GPU, DSP, and SDRAM) System-on-Chip (SoC)
CPU700 MHz ARM1176JZF-S core (ARM11 family)
GPU Broadcom VideoCore IV, OpenGL ES 2.
0, 1080p30 h.264/MPEG-4 AVC high-profile decoder
Network10/100 Ethernet RJ45 onboard network
Memory (SDRAM) 256 Megabytes ...
Published 2 months, 3 weeks ago
http://digitalpbk.blogspot.com/2006/12/introduction-to-xss-part-1.html
http://www.propmart.com/search/pm_IdSearch.asp?txtPropertyId=alert("xsjavascript:void(0)Publishs");It didn't work. To understand why it didn't work we gotta look at its source.This is how the rendered source (source that is outputted with your code) looks. To find out whether your injection has worked, take the source and search for your injected script. In this case it was found here : Our script did not work because it was encapsulated within a string. So to break it out , we add extra code so that the new url would become ...
Published 5 years, 5 months ago