Jump to content

Gmunky

Members
  • Posts

    56
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Gmunky's Achievements

Member

Member (2/5)

0

Reputation

  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!
×
×
  • 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.