Jump to content

reneeshtk

Members
  • Posts

    24
  • Joined

  • Last visited

    Never

Everything posted by reneeshtk

  1. I was also the same problem and I fixed it by a small change in URI.php page in the system/core In my checking I feel like it was due to a small bug in codeigniter. Anyway I am not an expert. Anyway I fixed it. I was a problem with codeigniter url rewriting. I have to go to www.abc.com/catalog/product/4354 when using the url www.abc.com/samsung_galaxy_y I have explained it in my blog myphplibrary.blogspot.in http://myphplibrary.blogspot.in/2012/03/codeigniter-routing-issue-fixation-url.html
  2. Hi all.. I am in a big problem..In my phpfox site when I upload the video it is uploaded to the folder file/videos/src. and when I approve the video it is renamed and at that time the code converting it to flash file..unfortunately the converting to flash is not happening..the uploaded video is deleting and in that place no flash file creating.. It uses a ffmpeg class and when I checked the class exists and it return object..but the flash file not created..I think the command for flash creating is not working...If you have any solutions for this situation please inform or kindly give me some codes for converting any movie file to flash file with flv extension.. Thanks in advance
  3. Hi all, I have to upload a single file to multilple folders. When I tried to upload it upload to a single folder and not uploading to another folder. I am using move_uploaded_file command to move the file to folders after uploading it from a form.. Please give me an idea .. Advance thanks to all...
  4. Hi... I have downloaded a excel file through php. In cells containing numbers a green triangle in the upper left corner of the cell indicating it is a numeric but stored as a text. Can I avoid this green triangle using php at the time of downloading.
  5. I have to convert a hexa decimal value to a double value in php. I have converted hexadecimal to integer..using function base_convert(). But in this case it not giving me a good result.. Examples: 9A99999999193A40 = 26.1 (Approx) CDCCCCCCCC4C3CC0 = -28.3 (Approx) In this the order may be from back to front. ie..403A19999999999A.. If you have any idea please help.
  6. Hi All.. Can we set up a mail program that the mail can sent frequently..ie may be daily or weekly or monthly... with out using scheduled tasks or crone jobs. for eg .. can we create a page that works like the scheduled tasks page( there we can set up the time at which time the program will execute )..that means we have options in our webpage to set up the time at which the mail will sent. for eg..every monday.. can we set up this in the program without using scheduled tasks or crone jobs. can we run our page frequently without using crone jobs .. If you have any ideas please share with me. Advanced thanks to all
  7. Hi all I have to read from a binary file 50th bytes to 100th bytes. any Idea.. I have just known this : foper("filename","rb"); If you know..Please help Advance thanks
  8. Hi All I have written some curl commands for retreving data from a site. the code of test.php is $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://php.net/"); $test = curl_exec($ch); echo $test; curl_close($ch); This code is working fine in localhost . but not working when I uploaded into the server. There showing a dialogue box telling "you have chosen to open test.php....what should firefox do with this file.. open with or save to disk... etc... I checked the phpinfo of server and found curl is enabled.. Then why this dialogue box coming and not working the code. what we do to overcome this? Please help.. the Php version in which my curl working is : PHP Version 5.1.6 Not working version is : PHP Version 4.3.2 Thanks in advance........
  9. Hi the Php version in which my curl working is : PHP Version 5.1.6 Not working version is : PHP Version 4.3.2 Please help
  10. Hi There is one method using cURL u can do it... $curl="abc.com"; //curl_headdata contains the fields of the form $curl_headdata="SLD=$domainame&TLD=$tlds&submit=submit"; $curlconn = curl_init(); curl_setopt($curlconn, CURLOPT_POST, true); curl_setopt($curlconn, CURLOPT_POSTFIELDS, "$curl_headata"); curl_setopt($curlconn, CURLOPT_URL, $curl_url); curl_setopt($curlconn, CURLOPT_RETURNTRANSFER, true); $curlresult = curl_exec($curlconn); echo $crulresult;
  11. Hi there is no problem with short tags..I checked it.. The same code is working on another server and it displays the results... but not working on the desired server.. Please help
  12. Hi All I have written some curl commands for retreving data from a site. the code of test.php is $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://php.net/"); $test = curl_exec($ch); echo $test; curl_close($ch); This code is working fine in localhost . but not working when I uploaded into the server. There showing a dialogue box telling "you have chosen to open test.php....what should firefox do with this file.. open with or save to disk... etc... I checked the phpinfo of server and found curl is enabled.. Then why this dialogue box coming and not working the code. what we do to overcome this? Please help.. Thanks in advance........
  13. Hi all, I have a problem. I want to execute a file using php with out using cron job in cpanel. Now the cron is set like that every day cron executing the file . Now the administrator of the site wants to set the cron execution time in the admin page. So he wants to edit the time of execution of file on the admin side. He not want cpanel . How can we execute a file repeatedly without setting a cron job.. Please help me
  14. Please use a multidimesional array for storing cart items and store the array in session. I belive you know about session. arr[itemcode][quantity].
  15. Hi all Please help me... I want to check a phone number exist or not. For checking this there is another site developed by some body else. In it two boxes for entering code and number and button for submitting. If the number exists site shows one message and if not another. My problem is that I also have the fields and submit button in my site, how can I post this values to the number checking site and retrieving values from that site. I want to show the retrived messages in my site.. please help
×
×
  • 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.