Jump to content

jorley

Members
  • Posts

    21
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jorley's Achievements

Member

Member (2/5)

0

Reputation

  1. Hi Guys, I am working with images and I am trying to get the metadata from the, specifically the gps from a smartphone image, but for some reason I cannot extract it. I get all other info except that. I have a brand new droid and took a picture with GPS on and sent it to myself then using ftp put it in a directory then used exif_read_data to pull the info and it wasnt on there. Any ideas why I cannot get the gps info?
  2. Hi guys, I installed ffmpeg and all the other software thats needed to convert any video to flv. I cannot get it to work. I went through ssh and created a temp directory, got a video that was uploaded onto my site, put it i the directory, used mplayer and ffmpeg to convert the file to flv and used ffmpeg to create a jpeg and it all worked fine. Why doesnt this work on my site. I have had library errors but put the path to the correct library in the ld.so.conf file and reset cache. I am lost, any advice.
  3. Hey guys, Can you give me some ideas about what uploaders/converters to use to allow someone to upload video to a website and convert it, most likely to FLV format. I know there are softwares that do this but cannot find much info on them. What so you guys recommend?
  4. Hi guys, so I wrote and haccess file to redirect users to https: once they enter the site. Come to find out that my friend has a widget on there to direct users to a website to create a registry.So every time someone goes to the product page and clicks the add to registry button a window comes up saying there is a security issue with this. I am trying to figure out how to user mod_rewrite in the htaccess file to change the url to http when they are on the ind_products,php?queryhere page and https: when they are on the cart page. Any help would be appreciated.
  5. Hi Guys, I have been coming across some things that I have just not seen before and need to find out what they mean. I came across the symbols ? and :: today. They were used something like this... if(isset($_GET['g']) ? something :: something2) { ... It was something along those lines. What do the symbols mean. Trying to google then is like trying to find the needle in the haystack. Any help would be appreciated.
  6. Hi guys, Weird question but I have to ask. So i have been programming with PHP on a Linux server for a long time now and recently took a position at a company that is using a windows server. I have never used windows at all as far as servers go. I am going to be developing a software for a customer service call center. A couple questions come to mind. 1. what are the biggest differences between the two servers. 2. is it the same as using linux as far as FTPin the files and testing 3. where this is a white labeled product I am creating for call centers should I assume that the servers are going to be in house and not reachable by a domain name These questions are mainly because I am going from developing large scale social networks and ecommerce systems to developing in a different environment that is not even technically on the internet.
  7. I am running into an issue here that I have never had before. I am using paypal website pro for a clients site. The client wants to collect more information then Paypal will give you when using paypal to pay for it so what I did was before the user is directed to paypal they enter in their info (billing, shipping, phone, email) and I enter it into a db table called pending. Then I grab the last inserted id and store it into a cookie. They are directed to Paypal, pay for the itema an end up back on the site at a thankyou page. The problem I am having is that mainly in IE it only works sporadically on some computers. Last night she was able to make it break in firefox as well and it doesnt always happen so there is no way for me to test it. What would make a cookie not set here and there? Any thoughts?
  8. Thats what I was thinking of doing. I could list the title of each page and then when they click it to go to the page maybe create a function that highlights the background in yellow everytime that word or phrase exists.
  9. Hey guys, I am trying to create a search function to search all the copy on a site. The copy consists of FAQs, about us, terms, ect.. All the copy is stored in a database table called copy. I did this so the owner can edit it through an editor to make changes. I am trying to find a way to search through the newest version of each page for whatever the user puts in for a search term. This could be 1 work or a couple word phrase. The challenge I face is how do I display it. Say they search for 'privacy' how do I take the return from each page and display it on one page? Is this the best way to do it or should I have a separate search for each page? Thoughts?
  10. Just to rule some stuff out. I noticed that you don't have any 'name' in the category drop down. Presumably this should be called 'category' based on the process of elimination from your posts. This is triggering the redirect at the beginning of the php page which is also separating the solution08 and .php. Make sure they are put together. Lastly, and this might now be anything but lets rule it out, can you change the html page to .php just to see what happens?
  11. I think I need a little more info from you. Are there separate tables for each clan? separate member tables for each clan? Are the member ids grouped in a comma list or are they in separate rows?
  12. Are you trying to stop them from joining a clan if they are already a member of 3 clans and if they are a current member of the one show?
  13. What about putting another column in the database called 'full' with an int value. When the info is put in there run a check to see if there is a first, last and username. If there is put the value 1 in there if not put 0. Then when echoing it out check that value and if its 0 the echo out that row like a form. Something like the following.. <table> <tr> <td> <form name="myform" action="scriptpage.php" method="post"> <input type="hidden" name="id" id="id" value="<?=$gotRow['id']?>"> <input <?php if(trim($gotRow['first'])=="") { echo "type='text'"; } else { "type='hidden'"; } name="first" id="first" value="<?=$gotRow['first']?>"><?=$gotRow['first']?></td></tr> Thats off the top of my head. I have not tried it but I hop you get the point. If not let me know I will try and elaborate a little.
  14. I am only going by what you had attached. There is CSS throughout the page that I opened. Everywhere you have style= thats CSS. Floats are very temperamental. Are you using firefox? Download firebug and use that to view and play with the css through the browser, it will help you figure it out.
  15. I took a look at the code, your right theres a lot there. My guess is that you need to clear the floats. When you have divs floating left against eachother if you don't clear them then it can cause it to stack. Add <div style="clear: both"></div> after the last floating div in each if sections. In other words <div style="float: left;"> //first div first div </div> <div style="float: left;"> //second div first div </div> <div style="float: left;"> //third div first div </div> <div style="clear: both;"></div> Another possibility is that if there is no data in the div then you might want to put a min-height on it so it doesn't get lost. Last thing I can think of is if the third div makes it too big going across for the container so it forces it down. I would look into those. Bare in mind these are all CSS issues not php but still I think one of them might work.
×
×
  • 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.