Jump to content

Gmunky

Members
  • Posts

    56
  • Joined

  • Last visited

    Never

Everything posted by Gmunky

  1. I am looking to build an e-commerce store that can handle many items (in the thousands) and many categories. I'm looking into Magento and X-cart but don't know which one will be easier to customize the template and the payment processing part. I'd prefer a solution that doesn't use smarty template bc I dont have experience with that. (I'm not sure if Magento/X-cart do). For the payment processing, I need to be able to disable the built in payment process and write my own code so that I can post the orders to different suppliers depending on the items purchased by the user. Thanks in advance for any of your input!
  2. I'm having issues trying to convert videos using exec('ffmpeg..'); without having to wait for the exec command to finish! I have tried using exec('ffmpeg... > /dev/null &') but that doesn't work. Can anyone help??! Thank you in advance!!
  3. Hi. Thanks in advance for all the input..Does anyone know if there are security issues emulating register globals by using the function extract($_REQUEST)? is there a security issue with using extract($_REQUEST) when global virables is turned off???
  4. Is it better to uninstall the older php and then install the latest or can I just install the latest without uninstalling the older php?
  5. I'm really new to installing php on a linux box. I've never done it before and I was wondering if anyone can point me to the right direction as to how to upgrade php (5.1.6) that is currently installed to the latest php. Thank you.
  6. $filespath="folder/*"; //path of files to be deleted $folder="folder"; //path of folder to be deleted foreach (glob($filepath) as $filename) { unlink($filename); } rmdir($folder);
  7. $string="SOME WORDS"; $newstring=ucwords(strtolower($string));
  8. Is there a simple way to embed a wav file that shows the stop and play button, and also the progress bar without the users being able to download the wav file when they right-click on the player?????
  9. I want to write a query to retrieve information about users that are not in the list of userids.the list will be around 50 ids; is there a much simpler way than this: select * from user where userid != 23 AND userid != 24 AND userid != 46 AND so on....
  10. I just installed WAMP on a windows 2000 and I'm having trouble viewing any of my scripts including just plain html files. when i try to view the page, I get an error saying: 'You are not authorized to view this page' HTTP Error 403 - Forbidden Does anyone know what is causing this?!?
  11. I installed WAMP on a Windows 2000 Server and when i try to view phpanything in the www directory, I get a 'You are not authorized to view this page' error. Does anyone have any idea what my problem is????
  12. How can I restrict users from accessing my excel files or pdf files? If they know the path of a file, they can simply type the url www.mysite.com/downloads/myfile.pdf
  13. i have a site where a user can type in a reference number and when it is a valid reference number, the user is taken to a page where he can click on a button to download a pdf file. when the user clicks on the button there is an open/save prompt and the name of the file is shown on the prompt window. How can I stop the user from typing the name of the file at the end of the current url and just view the file that way instead of having to type in a reference number? thanks for all the help!
  14. nothing in php..I have written something in php that searches for wav files in my local computer based on the user's input and the files found are then moved into my C://myfolder. after the files are moved, I want to be able to have a link on the browser that the user can click on that will open the myfolder instead of the user double clicking on My Computer, then on C: drive and then finally myfolder.
  15. is there a way to open a local folder using a hyperlink? this used to work but not anymore: <a href="C:\myfolder">view folder</a>
  16. Does anyone know if it's possible to open a folder in your local computer? I used to be able to open a folder in my c drive by <a href="file:///C:/myfolder/">view folder</a> but now ie and firefox won't allow that for security reasons. Is there something in php that can do this? Thanks.
  17. I guess I don't understand how you are distinguishing a wrestler's opponent. How do you determine which wrestler is competing with which other wrestler?
  18. Is there a difference between naming a file that is to be included in a script with a .php or .inc extension? For intance, if I want to include a script with my database connection info, does it matter if I use include ("db.php"); or include ("db.inc"); ? is one more secure than the other? Thanks for the info!
  19. www.afterclassjobs.com ok. This is really my first big website that I have done and still working on. A couple friends and I are trying to start a small company and basically it's a website for employers to post jobs and job seekers to search for jobs. I guess I'm curious about the security of the site and how easy it is for attackers to retrieve information or corrupt my database. Thanks for the help. here is a test login for the employer username :employertest password: 123456 for student username: studenttest password: 123456 ps there's still an issue with my dropdown menu if you're using an old version of IE.
  20. ok. This is really my first big website that I have done and still working on. A couple friends and I are trying to start a small company and basically it's a website for employers to post jobs and job seekers to search for jobs. here is a test login for the employer username :employertest password: 123456 for student username: studenttest password: 123456 ps there's still an issue with my dropdown menu if you're using an old version of IE. Thanks for anything!
  21. Are you wanting to display the first 40 characters? if so, you can try this echo substr($string,0,40);
  22. $year = substr($datetime,0,4); $month = substr($datetime,5,2); $day = substr($datetime,8,2); $datetime=mktime(0,0,0,$month,$day,$year); $datetime=date('M j, o',$datetime);
×
×
  • 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.