Well I edit the bridge/smf10.inc.php file:
from:
require_once($BRIDGE['relative_path_to_config_file'] . 'SSI.php');
code]
into:
[code] $temp = $_GET;
require_once($BRIDGE['relative_path_to_config_file'] . 'SSI.php');
$_GET = $temp;and then when I click to download te zipfile: It returns with the page the file does not exist.
The difference in queries is:
Without bridge: at the begin n-o bridge.
Bridged: at the begin b-ridge
[b0] => SELECT extension, mime, content, player FROM cpg132_filetypes; (0.002s)
[n0] => SELECT extension, mime, content, player FROM cpg132_filetypes; (0.002s)
[b1] => select * from cpg132_plugins order by priority asc; (0.001s)
[n1] => select * from cpg132_plugins order by priority asc; (0.001s)
[b2] => SELECT * FROM cpg132_bridge (0.001s)
[b3] => SELECT MAX(group_quota) as disk_max, MIN(group_quota) as disk_min, MAX(can_rate_pictures) as can_rate_pictures, MAX(can_send_ecards) as can_send_ecards, MAX(upload_form_config) as ufc_max, MIN(upload_form_config) as ufc_min, MAX(custom_user_upload) as custom_user_upload, MAX(num_file_upload) as num_file_upload, MAX(num_URI_upload) as num_URI_upload, MAX(can_post_comments) as can_post_comments, MAX(can_upload_pictures) as can_upload_pictures, MAX(can_create_albums) as can_create_albums, MAX(has_admin_access) as has_admin_access, MIN(pub_upl_need_approval) as pub_upl_need_approval, MIN( priv_upl_need_approval) as priv_upl_need_approval FROM cpg132_usergroups WHERE group_id in (1) (0.002s)
[b4] => SELECT group_name FROM cpg132_usergroups WHERE group_id= 1 (0.001s)
[b5] => SELECT user_favpics FROM cpg132_favpics WHERE user_id = 1 (0.001s)
[n11] => SELECT user_favpics FROM cpg132_favpics WHERE user_id = 1 (0.001s)
[b6] => SHOW TABLES LIKE 'cpg132_cms_config' (0.002s)
[n12] => SHOW TABLES LIKE 'cpg132_cms_config' (0.002s)
[b7] => SELECT * FROM cpg132_cms_config (0.001s)
[n13] => SELECT * FROM cpg132_cms_config (0.001s)
[b8] => DELETE FROM cpg132_banned WHERE expiry < '2007-01-22 18:22:43' (0.001s)
[n14] => DELETE FROM cpg132_banned WHERE expiry < '2007-01-22 18:28:11' (0.001s)
[b9] => SELECT * FROM cpg132_banned WHERE (ip_addr='192.168.2.1' OR ip_addr='192.168.2.1' OR user_id=1) AND brute_force=0 (0.001s)
[n15] => SELECT * FROM cpg132_banned WHERE (ip_addr='192.168.2.1' OR ip_addr='192.168.2.1' OR user_id=1) AND brute_force=0 (0.001s)
[b10] => SELECT COUNT(*) FROM cpg132_pictures WHERE approved = 'NO' (0.002s)
[n16] => SELECT COUNT(*) FROM cpg132_pictures WHERE approved = 'NO' (0.002s)
[b11] => SELECT * FROM cpg132_cms WHERE conid='0' AND type='1' ORDER BY cpos (0.001s)
[n17] => SELECT * FROM cpg132_cms WHERE conid='0' AND type='1' ORDER BY cpos (0.001s)
[b12] => SELECT COUNT(*) from cpg132_pictures WHERE approved = 'YES' AND pid IN (36) (0.001s)
[n18] => SELECT COUNT(*) from cpg132_pictures WHERE approved = 'YES' AND pid IN (36) (0.001s)
[b13] => SELECT * FROM cpg132_pictures WHERE approved = 'YES'AND pid IN (36) LIMIT 0 ,12 (0.002s)
[n19] => SELECT * FROM cpg132_pictures WHERE approved = 'YES'AND pid IN (36) LIMIT 0 ,12 (0.002s)
[b14] => SELECT count(*) from cpg132_comments where pid=36 and msg_id!=0 (0.001s)
[n20] => SELECT count(*) from cpg132_comments where pid=36 and msg_id!=0 (0.001s)
[n2] => delete from `cpg132`.cpg132_sessions where time<1169486890 and remember=0; (0.001s)
[n3] => delete from `cpg132`.cpg132_sessions where time<1168280890; (0.001s)
[n4] => select user_id from `cpg132`.cpg132_sessions where session_id=md5("c3d782459a5d72610866033bad948c93ffae57611b28c385926c8d53bc848404"); (0.001s)
[n5] => select user_id as id, user_password as password from `cpg132`.cpg132_users where user_id=1 (0.001s)
[n6] => SELECT u.user_id AS id, u.user_name AS username, u.user_password AS password, u.user_group+100 AS group_id FROM `cpg132`.cpg132_users AS u INNER JOIN `cpg132`.cpg132_usergroups AS g ON u.user_group=g.group_id WHERE u.user_id='1' (0.001s)
[n7] => SELECT user_group_list FROM `cpg132`.cpg132_users AS u WHERE user_id='1' and user_group_list <> ''; (0.001s)I do not know where to search at this moment.[/code]