reset wordpress password from ftp...

beside all other usual way to reset wordpress password, like from email lost password or from phpmyadmin, there’s another way, simple way to reset worpress password from ftp

Connect to your ftp server, enter your current in use wordpress theme directory, and open/edit functions.php

add this entry to the first line after <?php

(more…)

Incoming search terms:

Allow page access only from pre-listed r...

i used this trick normally for my rapidleech, it forbid a person to access my rapidleech from copy paste link on browser address,  my rapidleech can only be access by clcking the link on page that i use as referral.

for ex, if i use my web here, blindtext.info, someone would be able to access only by click the link i posted here.

how i do this? simple (more…)

Incoming search terms:

Force CGI-Proxy retrieve secure URLs thr...

this’s is for cgi script from jmarshall

on standard script, if u want to browse a secure page (https) u will get this eror message :

Retrieval of secure URLs through a non-secure proxy is forbidden.Retrieval of secure URLs through a non-secure proxy is forbidden.
This proxy is running on a non-secure server, which means that retrieval
of pages from secure servers is not permitted.  The danger is that the user
and the end server may believe they have a secure connection between them,
while in fact the link between the user and this proxy is insecure and
eavesdropping may occur.  That’s why we have secure servers, after all.
This proxy must run on a secure server before being allowed to retrieve
pages from other secure servers.

this’s the simple trick to make this script Fretrieve secure URLs through a non-secure server.

(more…)

Incoming search terms:

PHP Tips – How To Optimize PHP...

Here are tips for optimizing your php code so that your php code you can load more quickly and in the execution by the server and not a burden or using too many resources provided by the server.

1. Use of Variable

Use of Variable

* Operate a variable that is set at 376% faster than using a variable that has not been set.
* Using a constant 146% more slowly in the appeal using the variable.
* Using a local variable 9.9% faster in the appeal using the global variable.
(more…)

Incoming search terms:

Batch file to cleanup unnecessary files ...

simple tool for clean up n free your disk from temporary and unusable files, it’s made by kebo_gila the ccpb idol n distribute to me by kabayan, coz few minutes ago i have no idea about tools for clean up the rest of uninstallation data, so i ask him about this n then he told me to use cc cleaner and also he gave this tool to me, the code would be like this:

@echo off
echo cleaning unnecessary files and folder in windows


(more…)

Incoming search terms:

Force using www on website...

let say i want to force any people that visit this site to visit http://www.blindtext.info, not http://blindtext.info , there”s a very simple way.

use .htacces

copy this code on text editor, and save as .htacces

RewriteEngine on
RewriteCond %{HTTP_HOST} ^trevorfitzgerald.com [NC]
RewriteRule ^(.*)$ http://www.trevorfitzgerald.com/$1 [L,R=301]


will visit http://www.blindtext.info rather than http://blindtext.info

www seem much sweeter, isn’t see? icon biggrin Force using www on website

Redirect page silently with PHP script...

so simple icon biggrin Redirect page silently with PHP script

just copy this code in text editor like notepad and save as index.php

<?php
header( ‘Location: http://yourdestinationdomain.com’ ) ;
?>

place it on your webpages pages, delete index.html if exist, and your page will silently redirect to any url or page u want

Incoming search terms: