-
Ford Code service ukbooks...
Forum: English
Last Post: williamjojo1
9 hours ago
» Replies: 10
» Views: 12 522 -
How to delete all logs in...
Forum: Other
Last Post: jrarthur
23.11.2024 08:07
» Replies: 6
» Views: 7 161 -
How to print business car...
Forum: Other
Last Post: nightlife4u
22.11.2024 03:10
» Replies: 38
» Views: 17 688 -
WiFi stops working after ...
Forum: Guides / Návody
Last Post: nightlife4u
22.11.2024 03:08
» Replies: 8
» Views: 9 115 -
Synchronization of config...
Forum: Guides / Návody
Last Post: Donnynienow
22.11.2024 11:23
» Replies: 6
» Views: 6 546 -
Find apps blocking APK in...
Forum: Guides / Návody
Last Post: Aaron12
22.11.2024 05:29
» Replies: 11
» Views: 15 648 -
Vyhledávače do Opery CZ
Forum: Other
Last Post: eastwoodjenny11
21.11.2024 02:42
» Replies: 26
» Views: 14 800 -
PSPad PHP definition file
Forum: Other
Last Post: ArianaHunt
21.11.2024 10:40
» Replies: 9
» Views: 10 064 -
Airlive 5460 - 21dB hack
Forum: Guides / Návody
Last Post: manishapandey
20.11.2024 02:36
» Replies: 2
» Views: 6 288 -
Návod na hru Runaway 2: T...
Forum: Guides / Návody
Last Post: manishapandey
19.11.2024 02:45
» Replies: 2
» Views: 6 439
- Forum posts:1 378
- Forum threads:184
- Members:2 999
- Latest member:kulitsehat
This script converts directory and file names' charset recursively in the structure ('iso-8859-2' => 'utf-8'). Make sure you don't have any open files before you run it.
Useful if you need to convert entire linux system to UTF8 and was held back by something.
To automatically delete older uploads, use this and add the script to your cron. +7 means files need to be older than 7 days, files beginning with a dot and a folder "up" is ignored.
#!/bin/sh
IFS=$'\n'
for s in $(find /var/www/files/upload/ -type f -mtime +7 -exec echo {} \; | egrep -v "/var/www/files/upload/(\.|up/)")
do
rm "$s"
done
A simple trailer downloader, I use it to download highest quality trailers and watch them later in my favourite Media Player Classic fullscreen.
How to use:
- Open http://trailers.apple.com/
- Choose a movie, copy a link to the page to clipboard.
- Run this script, paste URL.
- If asked, choose which trailer or clip to download.
- Play the 1080p movie fullscreen in your favourite media player.
If required, associate phpx to be run with php first.
Contents:
PHP icon - extract to your WINDOWS directory.
PHP cli-exec - contains registry settings to launch PHP script from context menu (.php) or by double-clicking (.phpx)
Of course in order to launch PHP script, you need to have PHP installed. The requirement is to have the system PATH variable pointing to PHP binary file (php.exe).
My updated PHP definition file (downloaded directly from documentation at php.net on 05/14/2013).
Contains functions and updated parameterers for PHP 5.4/6.
Put it in your Context folder.
Jde o jednoduchou aplikaci pro synchronizaci titulků. Máte jedny anglické a druhé české. Jedny sedí přesně a ty druhé vůbec. Touto aplikací je možno sloučit časy jedněch a texty druhých. Následná kontrola a úprava zahrnuje možnosti vkládání a posunu titulků, úprava textů atd.
https://subtitles.ashus.net/
I use the php rcon for my cod4 server and have been using it for years but today for some reason i keep getting this error and im not sure how to fix it:
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Los_Angeles' for 'PST/-8.0/no DST' instead in /home/thgamerz/public_html/rcon/action.php on line 173
OK
Systém pro objednání zážitků pod záštitou ostravské webhostingové společnosti Banan.cz.
Technologie: PHP, MySQL, JavaScript+jQuery, Cron
www.galeriezazitku.cz
v rámci Banan.cz
The purpose of this tool is to have a single MAC address same for LAN and WiFi interface, so you could connect to the same network as one computer from both interfaces. The LAN interface has higher priority - speeds could be much higher of course
OneMac is able to detect link change and if it detects LAN cable connected, it sets LAN as primary (and vice versa). When WiFi is not set as primary, it can be turned off completely to save battery.
No other tool on the net worked for me (automatic wifi disabling on cable connect). So this is my response 8-)
Compatible with WIndows XP/Vista/7 x32/x64 non-UAC/UAC
Načítání PhpMyAdminu při 20 000 databázích je docela problém, trvá to okolo 4 minut. Vymyslel jsem řešení, které načítání solidně zrychlí (nehledají se složky, ale selectuje se z databáze).
Nejprve je nutno vytvořit ControlUsera - pojmenoval jsem ho phpmyadmin_optimizer. Je nutné mu přidělit právo SELECT na mysql.db.Db a mysql.db.User..
CREATE USER 'phpmyadmin_optimizer'@'localhost' IDENTIFIED BY '';
GRANT SELECT (`Db` , `User`) ON `mysql`.`db` TO 'phpmyadmin_optimizer'@'localhost';
$cfg['DisplayDatabasesList'] = 'auto';
$cfg['Servers'][$i]['controluser'] = 'phpmyadmin_optimizer';
$cfg['Servers'][$i]['controlpass'] = '';
$cfg['Servers'][$i]['ShowDatabasesCommand'] = "SELECT Db FROM `mysql`.`db` WHERE User LIKE (SELECT IF(('#user#'='root'),'%','#user#'))";
Zajistíte zobrazení všech databází rootovi, ale ostatním uživatelům necháte zobrazit jen databáze, které jim patří.