- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 6
- Upvoting Members
- 6
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
85 Posted Topics
HI, I am using zend guard for encryption of my php code. I would like to ask that is there a way to automate the process through command prompt or gui that we can zip the files of the source code and encrypted code in seperate folders automatically. Thanks in … | |
HI, I am using tcpdf to generate to pdf files in my system. I am using iframe to display the pdf file to the users. I am able to copy paste the content of the pdf in all other browsers except Internet Explorer. Is there any way I can resolve … ![]() | |
Hi, I am using codeigniter for multiple file uploading and it is giving me serious problems. The data from the files are coming to my controller. But when I try to run the upload script it gives me error that the A PHP Error was encountered Severity: Warning Message: Illegal … | |
Hi, I am trying to load arabic forms in smarty. But whenever I copy data to a tpl file the arabic lanaguage changes to ?????. Is there any help where I can find how to load arabic forms.I have searched but could not find any help regarding loading the arabic … | |
Hi, I have three folders in my project named as apache, php and mysql. I want to update my php,apache and mysql to latest version but I do not want to reinstall all the system again. My system works in this way that we copy all the folders and install … | |
Hi, I have a query that has a condition that count persons whose blood pressure, weight and height are calculated whose age is greater than 3. I have made this query and this query is working fine but there is a condition that if the age is greater then 2 … | |
Hi, I have a very complex query that is using mysql functions and complex logic. I have done indexing of important fields that needs to be done but I am having issue that the records keep on duplicating and I am using group by to remove this issue but my … | |
Hi, I have a question regarding php defined function. I want to see the logic implemented for all the php defined functions. How can I see that. For example I want to see what is the logic behing strstr or how strtolower works.Where can I see in wamp these definitions. … | |
I have one certificate in the pfx format and I am trying to sign s/mime email with it using openssl but I am getting this error. Warning: openssl_pkcs7_sign(): error getting private key. Here is my code that I am trying to sign the file $privkey = 'file://'.realpath('email.pfx'); openssl_pkcs7_sign("msg.txt", "signed.txt", $signcert,array($privkey, … | |
Hi, I have a page in which I have to show number of columns on a page. When the data is populated in the page I get a vertical scroll bar because of the data populated in it. When I try to print the page in portrait format some of … | |
Hi, I have a page that shows data in column format and in some cases there is a vertical scroll bar. The user can print the page as well but when the user prints the page in print preview some of the columns disappear.My question is that is there any … | |
Hi, I have a question. I am trying to save some data in a text field in database and I want to convert whatever text data that is presend in the field to an audible wav file format. Is there any way in php we can achieve this or not. … ![]() | |
Hi, I am trying to run the a scheduler that executes a batch file.In this batch file I am trying to run synctoy application and the application runs successfully. The scheduler runs successfully. I want to add a script in batch file that exit the command prompt once synctoy synchronization … | |
Hi, Can anyone tell me that how can I check through openssl that the given certificate has a valid trust anchor or not. Thanks in advance. | |
Hi, I am trying to configure a windows scheduler. In this scheduler I want to run a command line. I have tried to put my command line in the run text field of windows task scheduler but it does not execute properly. I want to run this command in windows … | |
Hi, I am trying to encrypt a xml to smime format. I am having some problems while creating the encrypted file. This is my code for encrypting the file $signcert = 'file://'.realpath('cert.public.pem'); $privkey = 'file://'.realpath('cert.private.pem'); $pubkey = 'file://'.realpath('ttt.pem'); openssl_pkcs7_encrypt("Sample1.xml", "smime.xml",$pubkey,$headers,0,1); $headers =array(); openssl_pkcs7_sign("smime.xml", "smime.p7m", $signcert,array($privkey, "123456"),$headers ,PKCS7_DETACHED ); This is … | |
Hi, I am trying to make a smime pk7s file using openssl and send the attachment as an email. I am trying to encrypt a file with a public key and and sign that file. I am using makemime library for the enryption of my xml file.I want to create … | |
Hi, I am using ffmpeg to convert wav audio files to mp3 format but I am getting this error. "cannot execute binary file". I have given 777 rights to my ffmpeg folder and my operating system is ubuntu x86_64. I have uploaded the 64 bit version for ffmpeg but still … | |
Hi, I am using ffmpeg conversion from wav format to mp3 format. I want to convert the length of the audio file as well. The length of wav audio file 35 sec and I want to convert it to 15 seconds. Is there any way I can convert the length … | |
Hi, I am trying to recieve an encrypted email attachment and then decrypt the attachment using open ssl. I am successful in decrypting the file. The file that I recieve is in smime.p7m extension. When I decrypt that file the file is decrypted and the file that is decrypted displays … | |
Hi, I have a question regarding mobile websites seo. I have a website that has two different codes one is for mobiles and the other is for system browsers. I want to know that is it better to make my website name as mabc.com or abc.com/smartphone. The original website link … | |
Hi, I want to know that how can I get the timestampdiff return as zero instead of null. For example I have a query in which both dates are exactly same but the query returns me null instead of 0. My query is SELECT (TIMESTAMPDIFF(HOUR,'2012-12-01 11:15:00','2012-12-01 11:15:00')) And this code … | |
Hi, I am creating a function in mysql and I want to make the order by and limit section dynamic. What I want to do is to call the function and enter the limit and order by condition dynamic. How can I achieve this. Thanks in advance ![]() | |
Hi, I have a table named as appointment. In appointment there are two fields appointment_date and person_id. There can be multiple appointment for same person. What I want to achieve here is that the date difference of both appointments for the same person should be greater or equal to 90 … | |
Hi, I am using html Mime Mail5 class to send emails from my system and I want the attachment files to be send as encrypted in smime format. Is there any way I can send the email with attachment made in smime encrypted format through the htmlmimemail5 class. Thanks in … | |
Re: [CODE]//This is the code for video uploading you will make a folder of videos and save your videos there and if you want to save your videos in database you just have to save its name like i have done <?php if (isset($_REQUEST['upload'])) { $name=$_FILES['uploadvideo']['name']; $type=$_FILES['uploadvideo']['type']; //$size=$_FILES['uploadvideo']['size']; $cname=str_replace(" ","_",$name); $tmp_name=$_FILES['uploadvideo']['tmp_name']; … | |
Hi, I am using jquery tabs for displaying data.And while displaying the data in the tabs I have to use ajax again to display data. The data in the first tab is giving the desired result. But when I click on the second tab. The tab is loaded correctly. But … ![]() | |
HI, I am trying to convert an audio file that is in wav format to mp3 format. I have installed apache and I am using windows 8. I downloaded the files for ffmpeg and tried to run the php script and convert the file but no success. What I am … | |
Hi, I am working on a testing tool and the testing tool asks the user to insert the user certificate in cert format like test.cert format and sends an encrypted attached file to my email id. Once I have received the file I want to download that file and decrypt … | |
Hi, I have a table in which there are two columns. One column is id and the other is value. When I try to retrieve the data that is not empty it gives me unwanted error. I have to apply join to some tables as well. My query is something … | |
HI, I have a table with three columns id,history_nr,value. Now I want to make a query that should concat value with different nr. I have tried this syntax but it is not working. SELECT CONCAT((SELECT value FROM table WHERE history_nr=63 and id=1),'',(SELECT value FROM table WHERE history_nr=803 and id=1)) FROM … | |
Hi, I am using smtp for sending the email and attachments from my system. What I want to accomplish is that I should be able to send information in an encrypted form so that the message cannot be tempered. I am using https for sending the emails. But is there … | |
Hi, I am creating an internal messaging system.In the system users can communicate with each other and send messages internally. The functionality is working fine and I am using AES encryption for encrypting the message.I am also using SSL for sending the messages. Now I want to implement the message … | |
Hi, I have a table in database and I want to create a hash value string that will be based on the entries of that table. Is it possible in php that I can create sha1 value of the whole table and how can I compare the sha1 value that … | |
Hi, I have a development server installed on windows 2000 server and apache is installed on the server. I want to create a SSL certificate. I have tried everything the ssl is not confirguring on https. I am using following steps openssl genrsa -des3 -out server.key 1024 copy server.key server.key.org … | |
Hi, I am using jpgraph library for creating graph of patients and displaying their growth chart. The data is displaying correctly. But I want to add tool tip on each point that which point is pointing to which patient. When the user hovers on the point. The jgraph is creating … | |
Hi, I am habving problem with tcpdf library.I am using Version: 5.9.162.I have a table format structure and the user writes in the table format and add the data and creates the pdf but my pdf file is not creating as i wish to create them some of the data … ![]() | |
Hi, I have a problem in creating a pdf document. I am using tcpdf for displaying the pdf file. I want to display 10 records on a page and if the records exceeds than 10 then we will be adding another page and displaying it on the next page. The … | |
Hi, I wanted to know that can we use a php function on a column in mysql query. I want to make something like this SELECT html_entity_decode('field') from table. Thanks in advance. | |
Hi, I have a question that can we use a mysql query in Concat clause. I want to make a query like this SELECT CONCAT(AVG(value),'-',(select Count(UserId) as counts from user_details )) as `Average` from surveyuseranswer Now I want to count number of users and concat it with the average value. … | |
Hi, I have a select query. I want to make name of one column from database like this select columnA as (SELECT value from table2 WHERE nr=55) FROM table1 Is this possible in mysql. I have tried to run the query but it is saying that something is wrong with … | |
Hi, I have a problem in making a query to make virtual columns in my query. I want to make a query that makes virtual column. for example I have a table with columns a,b and c and I want to make a query something like this SELECT a as … | |
HI, I am have a string and I want to remove <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> from this string.I have tried str_replace but of no use can any one help that how would I remove this problem from my string. Thanks in advance. | |
Re: Use ob_start() at the top of your file from where the file starts | |
Re: > figure out how to put a message in the same window saying "Thanks for Submitting Form" without putting this on another page. > > I can't figure out how to make fields required. Hi, You can use php [mail](http://php.net/manual/en/function.mail.php) function for sending emails and for validation the fields you … | |
Hi, I am using tcpdf library to create pdf files and they are password protected.Now I have a condition where I want to merge different pdf files and create a single pdf file and dipslay the multiple pdf files to the user in a single pdf file.I am having problem … ![]() | |
Hi, I have a problem in making a query.I have two tables patient and encounter. Patient has one to many relation with the encounter table. The encounter table has a field encounter_date. I want to make a search query in which I enter the date ranges and the query fetches … ![]() | |
Hi, I want to test my website in IPAD but I dont have IPAD and I need to test the website on an emulator. Is there any authentic IPAD emulator on which I can test my website.Thanks in advance. | |
Hi, I have two tables and they have one to many relationship.The two tables are fares and fare preferences.Now in fares table there is a unique user id and username and the user id is related to multiple preferences.Now I want to make a query that displays the username once … | |
Hi, I am using jquery form validation and jquery multiple file upload script but I am having problem with it. My multiple upload script works like this <input type="file" name="userfile[]" size="20" class="multi MultiFile-applied" type="file" maxlength="5" accept="gif|jpg" /> and I dont want to apply jquery validation code on this field but … |
The End.