Jump to content

belick

Members
  • Posts

    60
  • Joined

  • Last visited

    Never

Everything posted by belick

  1. can you show example of bash script?
  2. Thanks, do I put it in a .pl file?
  3. anything to start with...
  4. Hi, I am not sure if this is the right place to ask for help but I will try... I am tring to make a file that can be run by a cronjob on my linux. The file suppose to make a tar file for a specific folder and protect it with a password, then to upload it into FTP server... Any help will be thanksful, Thanks.
  5. Hi, on the top right box, I am planing to have some news, and the banner on the bottom suppose to bring more power for the marketing we do... the pages is not done so the left side is still empty... I agree on the W3c and will consider to expand the menu.. Many thanks for this review...
  6. Any other suggestions will very appreciated...
  7. They need to create the codes... so they access to the original codes. I am trying to find out if there is anything like a contract that can protect me and to leave the copyright with me... maybe GBL license... Thanks
  8. jcombs_31, do you have anything in mind for the nav?
  9. This is not even the first version but I will be happy to hear what you have to say... http://www.cytnet.com/index.html This is what I have in mind: a. I am not sure if to go with a high-end flash design on the main page or keep it text and simple element of design b. is it to red c. is the navigator a good idea? is also match on the left side d. Not sure what to do the the left red box... maybe updates or news... e. What dose it miss? What was the first impression when you open the site? Thanks. It will really help!
  10. You need to do that through paypal...
  11. <?php $to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: webmaster@example.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); ?>
  12. I was wondering if someone can answer my question in this category... I want to outsource some codding and I want to know how can I secure the codes from my offshore guys? in a way, I can manage and fund the whole project and then find out that one of the programmers took and sale the codes out. is there is a way to copyright the code? so I can be sure that no one from my stuff can publish it or sale it? Thanks
  13. is it possible to generate the htaccess file through a php file? maybe by including the php file into the htaccess file? Thanks
  14. Thanks a lot!!! its working fine.
  15. I have simple code : RewriteRule ^(.*)\.html$ index.php?Level1=$1 [L] which is used for any html files. I am looking to change this code so when there is a real html file on the root folder it will load it first. for example I have a file named: something.html and it not loading it because of the code. Thanks
  16. I need any help to find out how to convert the first page of PDF to an image file like jpg or gif, I am using a simple form to upload PDF file to my website and I need to create a thumbnail of the PDF so I can show it on my site. Thanks
  17. I have a set of char that always stats with numbers and end with letters like:  23112Adfafdwafas, and I need to saperate it into two varibles like: $Set1 = the numbers $Set2 = the charecters Thanks ahead
  18. how can I redirect this link: http://tools.drmoveronline.com/job/AAADDsdsa to the index.php? I have: <Files .htaccess> order allow,deny deny from all </Files> RewriteEngine On # job RewriteRule ^job/([a-z_A-Z_0-9])$ index.php?Job=$1 [L] Thanks
  19. I am using mssql_query() and its very slow. I tested the connection with a remote software and I was able to get and update the information very fast, but when I use the PHP mssql_query function its very slow... any help to find the problem will be very helpful. Thanks
  20. Hi everyone, I am tring to log into a cpanel through another form and I need to perform the login action before the username & password popuped I was thinking to use header("Location username:password@domain.com); but its keep the information in the history bar. Then I tried to post keep the $_SERVER['PHP_AUTH_USER']  and $_SERVER['PHP_AUTH_PW'] into sesstion and redirect the page but it didn't work. Basicly I am try to pass the page authentication with out typing the user name & password. Please help
  21. U will need to install "FreeTDS" for Linux or "DBLIB" for windows. Take a look at this link: http://www.php.net/manual/en/ref.mssql.php
  22. I need to fetch part of a string that can be anyting. The roll is basic: starting with " dbo." ending with ".(.*) " I think botom line I need to fetch:  "dbo.AnyTableHere.AnyField" when "AnyTableHere" can be anything etc... (CASE WHEN dbo.AnyTableHere.AnyField = 1 THEN dbo.T_Trucks.TruckName END) thanks ahead!!!
  23. nevermind I got it: RewriteCond %{REQUEST_URI} !^/website/ RewriteCond %{REQUEST_URI} !^/folder2/
  24. I have this code and I am tring to prevent it from a folder on my root. How can I do that? RewriteEngine On RewriteCond %{REQUEST_URI} !^/website/ RewriteRule ^(.*)$ /website/$1 domainname.com/anyfile gos to domainname.com/websites/anyfile  but there is one folder under the root that I can't access...
×
×
  • 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.