Jump to content

GinsBabu

Members
  • Posts

    17
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

GinsBabu's Achievements

Member

Member (2/5)

0

Reputation

  1. Hi all, How can i open new window always on a click using java script.ie if clicked twice two separate windows should be opened? The code used. function openwindow( url ) { window.open(url); } Thanks, Gins B
  2. Hi, Thanks for your reply. But it's not the script that timeouts..its the browser.
  3. Hi, This a php script.I need to download a file using php code. The zip file can be accessed via a http path.The size is around 400 mb+.Currently i use copy command to save the file(this file lies in another server which is accessed through eg- http://sample.com/myzip.zip) to local machine.But since its a large file the browser timeouts causing the page to output a blank page after 4-5 minutes. Can i over come this with jquery using async? Or can i do parallel processing using php.Please help? If so could you guide me with a demo please? Thanks in adv and waiting for the replyy.
  4. Hi, We know it's a Little odd to re upload library but we do re - upload only when a new library is available.because of this we are re uploading application also. I know you haven't got any clear picture but apart from that can i create a config.ini file through my application to the uploaded application and if so how.Also using zend code generate can i create a bootstrap file?
  5. Hi thorpe, Thanks for your response.....like i said we are uploading it to a folder structure..."version1_1/Applicaiton1_1.We are creating a new version of another site through my app. So when i click on the activate button the other application for which i have uploaded the new library and application ,it should read from here.I hope thats gives you a picture....
  6. Hi all, I do have a small application which uploads zend library and application folder.What i wanted to know is can i override the path set in bootstrap to the application and library that i have recently uploaded. Any help? Thanks....
  7. Hi all.. I am using zend-auth for authentication.It works fine.what i want to do is increase timeout.Since the default session is used i can't or i dont know how to increase the timeout..Any help would be great!! I tried to initalize a object of Zend_auth and set expiration seconds to custom didn't wrk. Also set gcmaxlife time...no way??please help me...
  8. Hi all... I am using zend-auth for authentication.It works fine.what i want to do is increase timeout.Since the default session is used i can't or i dont know how to increase the timeout..Any help would be great!! I tried to initalize a object of Zend_auth and set expiration seconds to custom didn't wrk. Also set gcmaxlife time...no way??please help me...
  9. Hi.. Thanks for the reply .... well i was working on that but had some problem..... my code have a div tag like this.. <div id="d" style="display:inline"> <?php echo $this->message;?> </div> and the js function sendStatusReport(){ document.listclientchoosen.action = "<?php echo $this->baseUrl;?>/admin/clientexports/report"; document.listclientchoosen.submit(); setTimeout("toggle()", 8000 ); } function toggle() { var ele = document.getElementById("d"); ele.style.display = "none"; } Wat am i doing wrong....??also the action performing inside the sendstatusreport() is mail sending.So it may took 8s or 10 s or 15 s.How can excatly point out the time.
  10. Hi, In my form i have a button which calls a js function to do some action.After the action a message shows.I want to know how can i hide the div if the message has been shown for 10 second.Any help?
  11. I am really sorry could show me way how you want to display it?.. These are the contents of that array Array ( [0] => Array ( [group_detail_id] => 2 [franchise_detail_id] => 7 [location_detail_id] => 13 [feed_location_stock_limit] => 10 [rule_parameter] => transmission_type_name [rule_type] => != [rule_match_value] => Automatic [rule_order] => 1 [export_feed_detail_id] => 1 [rule_set_stock_limit] => 44 ) ) Array ( [0] => Array ( [group_detail_id] => 1 [franchise_detail_id] => 1 [location_detail_id] => 1 [feed_location_stock_limit] => 10 [rule_parameter] => marque_name [rule_type] => = [rule_match_value] => Ford [rule_order] => 1 [export_feed_detail_id] => 1 [rule_set_stock_limit] => 5 ) [1] => Array ( [group_detail_id] => 1 [franchise_detail_id] => 1 [location_detail_id] => 1 [feed_location_stock_limit] => 10 [rule_parameter] => price [rule_type] => = [rule_match_value] => 10495 [rule_order] => 2 [export_feed_detail_id] => 1 [rule_set_stock_limit] => 5 ) )
  12. This is the array.. Array ( [0] => Array ( [group_detail_id] => 2 [franchise_detail_id] => 7 [location_detail_id] => 13 [feed_location_stock_limit] => 10 [rule_parameter] => transmission_type_name [rule_type] => != [rule_match_value] => Automatic [rule_order] => 1 [export_feed_detail_id] => 1 [rule_set_stock_limit] => 44 ) ) Array ( [0] => Array ( [group_detail_id] => 1 [franchise_detail_id] => 1 [location_detail_id] => 1 [feed_location_stock_limit] => 10 [rule_parameter] => marque_name [rule_type] => = [rule_match_value] => Ford [rule_order] => 1 [export_feed_detail_id] => 1 [rule_set_stock_limit] => 5 ) [1] => Array ( [group_detail_id] => 1 [franchise_detail_id] => 1 [location_detail_id] => 1 [feed_location_stock_limit] => 10 [rule_parameter] => price [rule_type] => = [rule_match_value] => 10495 [rule_order] => 2 [export_feed_detail_id] => 1 [rule_set_stock_limit] => 5 ) ) ... here the location id is same so i want the result as " marque_name=ford and price =10495"
  13. Hi.. i have an associative array with the n number of values of which one array name is location id.If location ID is having the same value in all the inner arrays i want to combine the results of the array ie having the same value.Any one knows solution for this.The purpose is like if the count is same and location id present are two 1's and one 2's then the corresponding values in 1's should be appended?how can i do this?
  14. Hi all, I have written some code in jquery.i am using jquery 1.3.2.Using jquery,i am creating a new div in my form on a button click.At the same time i need to get the respective id of a item which has to be displayed.For that,i am using onclick function in the same button.I am getting the results as needed , but issue is its working perfectly in IE 7.But in mozilla it needs two click.So is there any solution to overcome this.Any help would be gratefully appreciated. Regards, Gins.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.