Page Time: 0.1474s

Memory: 5.6057 MB (Peak: 6.1999 MB)

Queries (31, time: 0.0245s, 16.6%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000455
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN ns_threadrating_rate AS rate ON (rate.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 4656
    Run Time: 0.000945
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 12
    Run Time: 0.000517
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 60 AND post.position < 80) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 4656
    Run Time: 0.003532
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22user_nextstagerussia.post.user_id,func1Using where
  5. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (344505, 345164, 372931)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.002306
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 5Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 4656
    Run Time: 0.001432
  7. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=4656&page=4, 1714851557,
    Run Time: 0.000345
  8. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 321953, a:4:{i:0;s:43:"не знаю было или нет :) ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:160:"Эмулятор Gameboy для Playstation 3. Эмулятор был сделан на BD-J. Инструкция: 1. Скачиваем эмулятор ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:53:"http://www.moreread.net/mario/Any/win/index.php?id=15";s:8:"original";a:2:{i:0;s:61:"[URL="http://www.moreread.net/mario/Any/win/index.php?id=15"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:10:"здесь";}}i:2;s:383:" 2. Поместить папку AVCHD на USB флешку (использовать FAT32) 3. Вставить USB флешку в PS3 4. На PS3 выбрать видео > флешка > и выбрать папку AVCHD 5. Выбрать игру. 6. Чтобы закачать больше игр поместите .gb ромы в папку ROM в папке AVCHD.";}}i:2;s:63:" Офф сайт разработчика эмулятора: ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:34:"http://www.moreread.net/mario/Any/";}}}, 1701116101, 1714851557
    Run Time: 0.000903
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 500, a:4:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"1";s:8:"original";a:2:{i:0;s:8:"[SIZE=1]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"font";s:6:"option";s:7:"Verdana";s:8:"original";a:2:{i:0;s:14:"[FONT=Verdana]";i:1;s:7:"[/FONT]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:5:"Black";s:8:"original";a:2:{i:0;s:13:"[COLOR=Black]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:24:"PLAYSTATION 3 CECH-2508A";}}}}}}}}}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:4:"font";s:6:"option";s:7:"Verdana";s:8:"original";a:2:{i:0;s:14:"[FONT=Verdana]";i:1;s:7:"[/FONT]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"1";s:8:"original";a:2:{i:0;s:8:"[SIZE=1]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:3:"red";s:8:"original";a:2:{i:0;s:11:"[COLOR=red]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:26:"PS Vita WI-FI РСН-1008 ";}}}}}}}}}}i:3;a:4:{s:3:"tag";s:4:"font";s:6:"option";s:7:"Verdana";s:8:"original";a:2:{i:0;s:14:"[FONT=Verdana]";i:1;s:7:"[/FONT]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:4:"blue";s:8:"original";a:2:{i:0;s:12:"[COLOR=blue]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"1";s:8:"original";a:2:{i:0;s:8:"[SIZE=1]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:27:"SEGA Dreamcast HKT-3030 PAL";}}}}}}}}}}}, 1701116101, 1714851557
    Run Time: 0.000624
  10. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 322740, a:11:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:50:"http://www.ps3hax.net/downloads.php?do=file&id=211";s:8:"original";a:2:{i:0;s:58:"[URL="http://www.ps3hax.net/downloads.php?do=file&id=211"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"HOME Beta 0.86";}}i:1;s:29:" fully unpacked & decrypted ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:736:"StreetskaterFU is at it again, this time he has managed to fully unpack & decrypted Home Beta 0.86. There are about 9000 unencrypted files, other devs now can take a look at those files which also include java binaries, shader files, lua scripts and more interesting in-game executables. These files can help us better understand PS3 games and the PS3 network structure. So where are the "exploits"? PS3 games run still in a sandbox and don't have direct access to kernel modules and other high level access but since the introduction of in-game XMB there may be holes which devs can search for and use in-game exploits to break the wall. Those could be in a appearance of RSX attacks or some new holes in the in-game XMB structure.";}}i:3;s:2:" ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:50:"http://www.ps3hax.net/downloads.php?do=file&id=212";s:8:"original";a:2:{i:0;s:58:"[URL="http://www.ps3hax.net/downloads.php?do=file&id=212"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"Home Renamer v0.1";}}i:5;s:2:" ";i:6;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:560:"H3R3T1C, has whipped up a quick application called Home Renamer v0.1. What this program does is that is basically renames the files in the decrypted home beta into the correct format. It saves a huge amount of time if you are going through the files, as you don't have to view the hex file for each file to determine what the correct extension is. The instructions are simple, to use it just place one of the EXE files in one of the extracted folders that contains the numbered home files (i.e. place the exe in USRDIR-NPBOOT folder for example and run it.)";}}i:7;s:56:" In addition to Home Renamer, FreePlayPSP has released ";i:8;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:50:"http://www.ps3hax.net/downloads.php?do=file&id=213";s:8:"original";a:2:{i:0;s:58:"[URL="http://www.ps3hax.net/downloads.php?do=file&id=213"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:10:"Unbar v0.1";}}i:9;s:2:" ";i:10;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:121:"Unpacks the .BAR files from both Beats (for PSP) and the Home beta (for PS3). To get the .BAR files for Home, go to [ ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:41:"http://freeplay.halfmoon.ws/HOME-0.86.XML";}}i:2;s:913:" ]. If you're in a web browser that doesn't suck (e.g. Firefox) you'll see a page with links to all the files included in the Home Beta 0.86 update, including all the .BAR files. To use this program, just drag/drop a .BAR file onto the .EXE, or run it from your command prompt/shell with the .BAR file as the argument. I can't guarantee it'll work ALL the time, but it seems to work OK with the Home Beta 0.86 files. It can correctly identify the following: * Various types of XML files used by Home * Unicode XML files * Java classes * MIG, PNG, and TGA images * MP3 and VAG audio * Lua scripts (almost all the time) * Autocad .DRW files * Havok physics files * Shaders * Scene packs * .DDS textures * Home model files It renames the following unknown types: * mr04 * fd05 * sk08 * agf * klBS * tsld * ÿÿÿÿ, ÿû, PRÿ (named after the first few characters in this type of file)";}}}, 1701116101, 1714851557
    Run Time: 0.003245
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 338818, a:5:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:19:"PS3ThemeCreator 2.0";}}i:1;s:133:" Редактор для создания собственных тем для XMB. Нововведения в версии 2.0: ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[quote]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:323:"- Support for FW2.5 icons. - Support for sounds. - Includes tool to convert audio file to vag format. - Drag and Drop images directly to the icons and backgrounds. - New preview mode. - Notification of missing icons on screen. - Double clicking on p3t files will launch them directly in PS3ThemeCreator. - Bug fixes.";}}i:3;s:17:" Качать ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:32:"http://ps3themecreator.webs.com/";s:8:"original";a:2:{i:0;s:38:"[url=http://ps3themecreator.webs.com/]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:11:"здесь.";}}}, 1701116101, 1714851557
    Run Time: 0.000454
  12. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 338823, a:8:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:17:"Java Media Server";}}i:1;s:173:" Отличный медиа-сервер. Поддерживает множество форматов. Прост в установке и настройке. Вот ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:170:"http://translate.google.nl/translate?hl=nl&u=http%3A%2F%2Fwww.ps3-sense.nl%2Fshowthread.php%2Fhet-gebruik-van-de-java-ps3-media-server-5199.html&sl=nl&tl=en&swap=1&swap=1";s:8:"original";a:2:{i:0;s:176:"[url=http://translate.google.nl/translate?hl=nl&u=http%3A%2F%2Fwww.ps3-sense.nl%2Fshowthread.php%2Fhet-gebruik-van-de-java-ps3-media-server-5199.html&sl=nl&tl=en&swap=1&swap=1]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:33:"оригинальный линк";}}i:3;s:1:" ";i:4;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:7:"VaaN'а";}}i:5;s:266:". Там есть инструкция на английском, но скачать его можно только предварительно зарегестрировавшись. Скачать приложение без регистрации можно ";i:6;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"http://code.google.com/p/ps3mediaserver/downloads/list";s:8:"original";a:2:{i:0;s:60:"[url=http://code.google.com/p/ps3mediaserver/downloads/list]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:10:"здесь";}}i:7;s:1:".";}, 1701116101, 1714851557
    Run Time: 0.000325
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 344356, a:5:{i:0;s:183:"У кого ссылочка на распаковщик или хотя бы просмоторщик .pkg файлов завалялась? Пару месяцев назад на ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"http://www.ps3news.com/PS3Dev/A-Peek-inside-a-PS3-PKG-file";s:8:"original";a:2:{i:0;s:64:"[url=http://www.ps3news.com/PS3Dev/A-Peek-inside-a-PS3-PKG-file]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:11:"ps3news.com";}}i:2;s:103:" данная тема поднималась, в их ленте новостей даже некий ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:78:"http://www.ps3news.com/modules/image_upload/plugins/thumb.php?img=img_2669.jpg";s:8:"original";a:2:{i:0;s:84:"[url=http://www.ps3news.com/modules/image_upload/plugins/thumb.php?img=img_2669.jpg]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:9:"PS3UNPKGR";}}i:4;s:81:" засветился. Правда, на том дело и заглохло. =\";}, 1701116101, 1714851557
    Run Time: 0.000652
  14. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 344505, a:7:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"http://www.ps3news.com/PS3Hacks/ps3-backup-tool-1-0-available/";s:8:"original";a:2:{i:0;s:70:"[URL="http://www.ps3news.com/PS3Hacks/ps3-backup-tool-1-0-available/"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"PS3 Backup Tool 1.2";}}}}i:1;s:2:" ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:952:"This automatically, Copies your system backup, copies and renames the .pkg file, and then copies the files in the correct order to get the Corrupt icon on your ps3..Much easier for some people. IT MAY ONLY WORK ON 64BIT WINDOWS, AS I COMPILED IT UNDER VISTA x64...NOT SURE, Try it;) Thanks... This program is CLEAN, no virus, Trojan etc... Check it, if you don't believe me... How to: 1. Run the Program... 2. Under step 1, Select the origional ps3 system backup. 3. Under step 2, Select the .pkg file to 'Install' on your ps3 4. Under step 3, Select the ps3's EXPORT folder, (on ur usb drive or external media) 5. Under step 3, Type the name of the backup, Make sure this is UNIQUE or it may crash.. 6. Press Automate! 7. WAIT Untill message box say COMPLETE! 8. Done... Limitations: Only works with up to, 10 archive2_XX.dat (where x stand for 00, 01, 02, 03, 04 ,05 ,06, 07, 08 ,09 ,10) Im off to bed now, Good luck! ;)";}}i:3;s:4:" ";i:4;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[media=youtube]";i:1;s:8:"[/media]";}s:8:"children";a:1:{i:0;s:11:"5zv-lfnbNj4";}}i:5;s:4:" ";i:6;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[media=youtube]";i:1;s:8:"[/media]";}s:8:"children";a:1:{i:0;s:11:"_206TIgIGcQ";}}}, 1701116101, 1714851557
    Run Time: 0.000359
  15. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 345164, a:3:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"http://www.ps3hax.net/showthread.php?t=8658";s:8:"original";a:2:{i:0;s:51:"[URL="http://www.ps3hax.net/showthread.php?t=8658"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:40:"Dualshock 3 Drivers for Windows + RUMBLE";}}}}i:1;s:4:" ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:1437:"The setup is not that complicated, but requires the installation of four drivers. The download link below contains 4 folders/drivers, below is the explanation of each: ds3drv_1.02 - Normal Driver ds3drv_dx_1.02 - DX Driver SDDriverSetting - Utility to tweak some settings ForceFeedbackDriver - Rumble Driver, you need to install the first or second driver first before doing this. Installation: Download either the normal or DX driver. Plug in your DS3 to your PC. Open device manager and search for the Dualshock 3 (it will be under HID services with the title then open the device manager and search for the dualshock/sixaxis under hid devices, it should be called "USB Human Interface Device"). Select the Normal/DX driver and install . Rumble Installation: To install rumble feature, right click on the .INF file and choose INSTALL when launching a game, this should start up a TRAY icon that is used to tweak the RUMBLE settings. The hardest part of this installation falls here, mainy because the application is written and Japeneese and no translated version is currently avaialble. A rough translation can be found below of the menus: Window title: Rumble settings First input box: Gain [input box] times (i.e., a multiplier) Widget box heading: Rumble start threshold Remaining input boxes, top-down, left-right: a. Small motor b. Large motor (weak) c. Large motor (medium) d. Large motor (strong)";}}}, 1701116101, 1714851557
    Run Time: 0.001012
  16. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 345384, a:1:{i:0;s:312:"Cуществует ли мультимедийные проги? Интересует в первую очередь проигрыватели что то типа winamp или windows media player.А то на стандартном проигрыватели не удобно слушать музыку";}, 1701116101, 1714851557
    Run Time: 0.000786
  17. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 3781, a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:4:"Blue";s:8:"original";a:2:{i:0;s:14:"[COLOR="Blue"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:4:"Blue";s:8:"original";a:2:{i:0;s:14:"[COLOR="Blue"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:134:"HITACHI SATURN MPP-11(JPN-NTSC),SEGA MEGA DRIVE 2 (JPN-NTSC),SEGA DREAMCAST(NTSC-JPN)NINTENDO 64(USA-JPN),SNES(EURO-PAL),ATARI LYNX...";}}}}}, 1701116101, 1714851557
    Run Time: 0.000465
  18. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 345420, a:1:{i:0;s:95:"хоумбрю софт как таковой на пс3 вообще отсутствует :)";}, 1701116101, 1714851557
    Run Time: 0.000310
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 345500, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"freeman, post: 345384";s:8:"original";a:2:{i:0;s:31:"[quote="freeman, post: 345384"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:109:"А то на стандартном проигрыватели не удобно слушать музыку ";}}i:1;s:233:" Неудобно, когда соседские дети на тебя похожи. Всё нормально слушается. Создаёшь альбом, кидаешь туда любимые песенки и вперёд.";}, 1701116101, 1714851557
    Run Time: 0.000488
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 345542, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Wendigo, post: 345500";s:8:"original";a:2:{i:0;s:31:"[quote="Wendigo, post: 345500"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:232:"Неудобно, когда соседские дети на тебя похожи. Всё нормально слушается. Создаёшь альбом, кидаешь туда любимые песенки и вперёд.";}}i:1;s:59:" Мда...Плохо,придётся привыкать:)";}, 1701116101, 1714851557
    Run Time: 0.000434
  21. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 355034, a:3:{i:0;s:58:"Кстати вышла английская версия ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:64:"http://www.geocities.jp/tamamy_ikesu/files/SDDriverSetting_e.zip";s:8:"original";a:2:{i:0;s:70:"[url=http://www.geocities.jp/tamamy_ikesu/files/SDDriverSetting_e.zip]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:13:"DriverSetting";}}i:2;s:649:" для SIXAXIS / DUALSHOCK3 Device Driver Сам драйвер меня порадовал, оч. большие возможности настроек, до этого постоянно пользовался GameSaike SixAxiS Driver, но в нём нет возможности настроить кнопки и т.д. без сторонних программ (Xpadder и т.п.) P.S. Тестил с несколькими играми, но вибрация так и не заработала... кто-нибудь уже пользовался этим драйвером??? Поделитесь пожалуйста опытом :)";}, 1701116101, 1714851557
    Run Time: 0.000593
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 2838, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"http://eu.playstation.com/psn/profile/sol_xx/";s:8:"original";a:2:{i:0;s:51:"[url=http://eu.playstation.com/psn/profile/sol_xx/]";i:1;s:6:"[/url]";}s:8:"children";a:3:{i:0;s:1:" ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:54:"http://mypsn.eu.playstation.com/psn/profile/sol_xx.png";}}i:2;s:1:" ";}}}, 1701116101, 1714851557
    Run Time: 0.000452
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 364402, a:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:46:"http://www.ps3news.com/category/PlayStation-3/";s:8:"original";a:2:{i:0;s:54:"[URL="http://www.ps3news.com/category/PlayStation-3/"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:60:"OtherOS pdaXrom-NG Bootloader v0.1.1 for PS3 Linux Available";}}i:1;s:140:" долго читал и так и не понял, может знает ктонибудь что это за лоадер и зачем.";}, 1701116101, 1714851557
    Run Time: 0.000498
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 2766, a:1:{i:0;s:146:"Если вы съели мой мозг, то не надо стучать по черепу ложкой и требовать добавки!!!";}, 1701116101, 1714851557
    Run Time: 0.000369
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 364406, a:1:{i:0;s:92:"Что то типа селектора между linux и PS3 OS, фигня короче.";}, 1701116101, 1714851557
    Run Time: 0.000251
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 370684, a:1:{i:0;s:153:"Подскажите пожалуйста, есть ли способ запустить Dualshock 3 Drivers for Windows + RUMBLE на Windows Vista x64?";}, 1701116101, 1714851557
    Run Time: 0.000543
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 371123, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"Moadip, post: 370684";s:8:"original";a:2:{i:0;s:30:"[quote="Moadip, post: 370684"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:153:"Подскажите пожалуйста, есть ли способ запустить Dualshock 3 Drivers for Windows + RUMBLE на Windows Vista x64?";}}i:1;s:62:" Пока только для 32-битных систем.";}, 1701116101, 1714851557
    Run Time: 0.000737
  28. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 371592, a:1:{i:0;s:282:"При установки драйвера для DualShock 3 пишет при выборе драйвера "В указанном месте отсутствуют сведения об оборудовании".В чем может быть проблема? P.S. Windows SP3";}, 1701116101, 1714851557
    Run Time: 0.000427
  29. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 372580, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Marader, post: 371592";s:8:"original";a:2:{i:0;s:31:"[quote="Marader, post: 371592"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:282:"При установки драйвера для DualShock 3 пишет при выборе драйвера "В указанном месте отсутствуют сведения об оборудовании".В чем может быть проблема? P.S. Windows SP3";}}i:1;s:147:" Ну например в том, что они там действительно отсутствуют (путь указан неверно).";}, 1701116101, 1714851557
    Run Time: 0.000368
  30. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 372931, a:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"http://foro.ifcaro.net/usb_loader_03_release_candidate_1-t30.0.html";s:8:"original";a:2:{i:0;s:75:"[URL="http://foro.ifcaro.net/usb_loader_03_release_candidate_1-t30.0.html"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:34:"USB LOADER 0.3 RELEASE CANDIDATE 1";}}i:1;s:241:" релиз кандидат новой версии USB загрузчика пс2 игр, улучшена совместимость и добавлена новая папка для драйверов и языкового файла";}, 1701116101, 1714851557
    Run Time: 0.000333
  31. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 373052, a:1:{i:0;s:160:"Ох придумали бы чтота которое не нуждается в СМ 3.6+ , а то не стоит деньги на нем тратить :(";}, 1701116101, 1714851557
    Run Time: 0.000386

Included Files (113, XenForo Classes: 63)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/NextStage/Feature/Listener/Feature.php
  29. library/XenForo/Router.php
  30. library/XenForo/Route/Filter.php
  31. library/XenForo/Route/Interface.php
  32. library/XenForo/Route/ResponseSuffix.php
  33. library/XenForo/Route/Prefix.php
  34. library/XenForo/Route/Prefix/Threads.php
  35. library/XenForo/RouteMatch.php
  36. library/XenForo/ControllerPublic/Thread.php
  37. library/XenForo/ControllerPublic/Abstract.php
  38. library/XenForo/Controller.php
  39. library/NextStage/ThreadRating/Listener/Class.php
  40. library/NextStage/TaigaChat/Listener.php
  41. library/NextStage/XenForo/Listener/XenForo.php
  42. library/Tapatalk/Listener/LoadClassModel.php
  43. library/NextStage/ThreadRating/ControllerPublic/Thread.php
  44. library/NextStage/XenForo/ControllerPublic/XenForo.php
  45. library/NextStage/XenForo/ControllerPublic/Thread.php
  46. library/XenForo/Input.php
  47. library/XenForo/Session.php
  48. library/Zend/Db.php
  49. library/Zend/Db/Adapter/Mysqli.php
  50. library/Zend/Db/Adapter/Abstract.php
  51. library/Zend/Db/Select.php
  52. library/Zend/Db/Expr.php
  53. library/Zend/Db/Profiler.php
  54. library/Zend/Db/Statement/Mysqli.php
  55. library/Zend/Db/Statement.php
  56. library/Zend/Db/Statement/Interface.php
  57. library/XenForo/Helper/Ip.php
  58. library/XenForo/Visitor.php
  59. library/XenForo/Model/User.php
  60. library/Dark/TaigaChat/EventListener/Listener.php
  61. library/Zend/Db/Profiler/Query.php
  62. library/XenForo/Permission.php
  63. library/XenForo/Helper/Php.php
  64. library/XenForo/Phrase.php
  65. library/XenForo/Locale.php
  66. library/XenForo/ControllerHelper/ForumThreadPost.php
  67. library/XenForo/ControllerHelper/Abstract.php
  68. library/XenForo/Model/Thread.php
  69. library/NextStage/ThreadRating/Model/Thread.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Helper/Discussion.php
  73. library/XenForo/Model/Post.php
  74. library/NextStage/Feature/Model/Post.php
  75. library/XenForo/Model/Attachment.php
  76. library/XenForo/Route/Prefix/Attachments.php
  77. library/NextStage/Feature/Model/Feature.php
  78. library/XenForo/Model/Node.php
  79. library/Tapatalk/Model/Node.php
  80. library/XenForo/Route/Prefix/Categories.php
  81. library/XenForo/Route/Prefix/Forums.php
  82. library/XenForo/ControllerResponse/View.php
  83. library/XenForo/ControllerResponse/Abstract.php
  84. library/XenForo/Helper/Cookie.php
  85. library/Tapatalk/Listener/ControllerPostDispatch.php
  86. library/XenForo/ViewRenderer/HtmlPublic.php
  87. library/XenForo/ViewRenderer/Abstract.php
  88. library/XenForo/Template/Public.php
  89. library/XenForo/Template/Abstract.php
  90. library/XenForo/ViewPublic/Thread/View.php
  91. library/XenForo/ViewPublic/Base.php
  92. library/XenForo/View.php
  93. library/XenForo/BbCode/Parser.php
  94. library/XenForo/BbCode/Formatter/Base.php
  95. library/XenForo/ViewPublic/Helper/Message.php
  96. library/XenForo/BbCode/TextWrapper.php
  97. library/XenForo/Route/Prefix/Members.php
  98. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  99. library/NextStage/ThreadRating/Listener/Template.php
  100. library/XenForo/Template/FileHandler.php
  101. library/XenForo/Helper/File.php
  102. internal_data/templates/S.1,L.1,thread_view.php
  103. library/Tapatalk/EventListener/Hook.php
  104. internal_data/templates/S.1,L.1,page_nav.php
  105. library/Tapatalk/Listener/TemplatePostRender.php
  106. library/XenForo/Route/Prefix/Posts.php
  107. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  108. library/XenForo/Model/Avatar.php
  109. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  110. library/XenForo/Debug.php
  111. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  112. mobiquo/smartbanner/head.inc.php
  113. library/XenForo/ViewRenderer/Json.php