Jump to content
Larry Ullman's Book Forums

saif

Members
  • Posts

    16
  • Joined

  • Last visited

saif's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I am trying to create a website for a indian takeaway. In here in UK people give order online so they don't have to call restaurant to give address, name, phone number etc. But they pay cash to delivery man once food is delivered. And also doing this they can easily get order from mainly young generation like students. I like to start with cash only and in future I am gonna add card payment as well.Thanks
  2. Hi, I am trying to implement payment as cash only. so I don't need credit card verification. In this case what can you advise? thanks Saif
  3. Hi Larry, so far everything is working fine apart from checkout. Basically in my .htaccess file if I add following code as you provided then it is giving following error and even I can't see the html folder where the index file is. But if I remove this code then everything is working fine.Can you give me some hints that what could be the reason is? Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. # For HTTPS pages: RewriteCond %{HTTPS} off RewriteRule ^/(checkout\.php|billing\.php|final\.php|admin/(.*))$ https://%{HTTP_HOST}/$1 [R=301,L] %{HTTP_HOST} thanks Saif
  4. Hi Larry, Thank you for your help. Finally i find out. I enabled module_rewrite on and also I removed / from rewriterule and now it is working. <IfModule mod_rewrite.c> RewriteEngine on # For sales: RewriteRule ^shop/sales/?$ sales.php # For the primary categories: RewriteRule ^shop/([A-Za-z\+]+)/?$ shop.php?type=$1 # For specific products: RewriteRule ^browse/([A-Za-z\+\-]+)/([A-Za-z\+\-]+)/([0-9]+)$ browse.php?type=$1&category=$2&id=$3 </IfModule>
  5. you can see my mod_rewrite- <IfModule mod_rewrite.c> RewriteEngine on # For sales: RewriteRule ^/ex2/html/shop/sales/?$ sales.php # For the primary categories: RewriteRule ^/ex2/html/shop/([A-Za-z\+]+)/?$ shop.php?type=$1 # For specific products: RewriteRule ^/ex2/html/browse/([A-Za-z\+\-]+)/([A-Za-z\+\-]+)/([0-9]+)$ browse.php?type=$1&category=$2&id=$3 # For HTTPS pages: RewriteCond %{HTTPS} off RewriteRule ^/ex2/html/(checkout\.php|billing\.php|final\.php|admin/(.*))$ https://%{HTTP_HOST}/$1 [R=301,L] %{HTTP_HOST} </IfModule>
  6. yes already i did this, but still not working. It is giving same error- Not Found The requested URL /ex2/html/shop/coffee/ was not found on this server.
  7. Hi Larry, Thanks for your reply.Anyway I made good progress. wishlist and cart links are working fine. But I am facing issue with coffee, goodies and sales button. I tried different way but it didn't work. it is giving me following error- Not Found The requested URL /ex2/shop/coffee/ was not found on this server. same thing happening for other two buttons. <IfModule mod_rewrite.c> RewriteEngine on # For sales: RewriteRule ^/shop/sales/?$ sales.php # For the primary categories: RewriteRule ^/shop/([A-Za-z\+]+)/?$ shop.php?type=$1 # For specific products: RewriteRule ^/browse/([A-Za-z\+\-]+)/([A-Za-z\+\-]+)/([0-9]+)$ browse.php?type=$1&category=$2&id=$3 # For HTTPS pages: RewriteCond %{HTTPS} off RewriteRule ^/(checkout\.php|billing\.php|final\.php|admin/(.*))$ https://%{HTTP_HOST}/$1 [R=301,L] %{HTTP_HOST} </IfModule> currently ex2 folder is placed in c:/wamp/www/ex2 all php files are in c:/wamp/www/ex2/html/ all html files are in c:/wamp/www/ex2/html/view I am really sorry but right now I don't know what to do. I checked forum and online but can't get proper solution for this thanks
  8. <IfModule mod_rewrite.c> RewriteEngine on # For sales: RewriteRule ^/ex2/shop/sales/?$ sales.php # For the primary categories: RewriteRule ^/ex2/shop/([A-Za-z\+]+)/?$ shop.php?type=$1 # For specific products: RewriteRule ^/ex2/browse/([A-Za-z\+\-]+)/([A-Za-z\+\-]+)/([0-9]+)$ browse.php?type=$1&category=$2&id=$3 # For HTTPS pages: RewriteCond %{HTTPS} off RewriteRule ^/ex2/(checkout\.php|billing\.php|final\.php|admin/(.*))$ https://%{HTTP_HOST}/$1 [R=301,L] %{HTTP_HOST} </IfModule>
  9. Thank you for your reply. Could you please tell me where from can I get help for this?
  10. hi ameliehub, please can you explain how did you make those link working /shop/sales/ ? because I am facing same issue. because there are no folder call shop. please let me know .thanks
  11. Thanks margaux. I am gonna try tonight. Anyway since yesterday i progress a lot. Hopefully I'll figure out the actual problem.
  12. now home page is showing but when i click on wish list or cart it is giving following error message An error occurred in script 'C:\wamp\www\ex2\html\wishlist.php' on line 80: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given Array please help me with this. thanks
  13. how can I find out mod rewrite problem? when I click on goodies then it is showing following error- Not Found The requested URL /ex2/shop/goodies/ was not found on this server. thanks
  14. Hi margaux, Thanks for asking. I have changed config.inc to below, mainly none of links are working.when I click it is giving following error (Not Found The requested URL /shop/sales/ was not found on this server.) // Determine location of files and the URL of the site: define ('BASE_URI', 'c:/wamp/www/ex2/'); define ('BASE_URL', 'http://localhost/'); define ('MYSQL', BASE_URI . 'mysql.inc.php');
×
×
  • Create New...