Search found 500 matches

Search found 500 matches

Re: Register at end or after checkout

@osworx You've never said to yourself at checkout, "I'm not wasting my time making another damn account at another store." And proceeded to enter all the information you would have anyway to buy what you're buying. And then at the end said to yourself, "Damn, I'm probably going to com...

Jump to post
  • Fri Apr 19, 2024 1:07 am
  • Replies 6
  • Views 210
Register at end or after checkout

The option to checkout as a guest or register at the beginning of the checkout, can I simply program a checkbox at the end of the checkout so the customer can click it and it will change guest to register and they will be registered upon completion? Or is there something more to it? ...or is there a...

Jump to post
  • Thu Apr 18, 2024 5:18 am
  • Replies 6
  • Views 210
Re: query help

OK, thanks.

Jump to post
  • Thu Apr 18, 2024 1:50 am
  • Replies 5
  • Views 189
Re: query help

Thanks, I'm not able to test it yet, but when you asked, exactly what was your phrasing? I couldn't get anywhere with using AI on this....I was using Bing's copilot though.

Jump to post
  • Tue Apr 16, 2024 10:29 pm
  • Replies 5
  • Views 189
[SOLVED] query help

I have a query for a feed: $sql = "SELECT DISTINCT p.sku as id, p.model, p.image AS image_link, i.image AS additional_image_link, p.status AS availability, p.date_available AS availability_date, p.weight AS shipping_weight, p.price, s.price as sale_price, d.name as title, d.description, m.name ...

Jump to post
  • Tue Apr 16, 2024 12:43 pm
  • Replies 5
  • Views 189
Re: how to deny access my website from china ip address?

@JNeuhoff I'm experiencing both. I've tried blocking at the firewall server level, but some seep through and my host said their country ip blocks aren't great and I should get a third party system running.

Jump to post
  • Tue Apr 16, 2024 12:32 pm
  • Replies 10
  • Views 416
Re: htaccess problem causing duplicate loads

Looks like I found the secondary...or primary...issue. It seems I inadvertently deleted "RewriteBase /" and that seems to be the issue...at least with my site. I didn't have that and it was causing the duplicate loading of the header and footer (probably others as well that I didn't notice...

Jump to post
  • Wed Apr 10, 2024 2:08 pm
  • Replies 5
  • Views 237
Re: htaccess problem causing duplicate loads

1/ So in order to have seo url there is this downside to loading controllers/models twice which doubles the task on the server and database? That seems odd that a problem like that exists with no solution...and that I didn't find anything about this on google. 2/ Changing the 3rd line prevents the b...

Jump to post
  • Tue Apr 09, 2024 1:37 pm
  • Replies 5
  • Views 237
[SOLVED] htaccess problem causing duplicate loads

The following is causing my few of my controllers to load twice...so far I've found it to be happening to my header and footer. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_...

Jump to post
  • Tue Apr 09, 2024 7:23 am
  • Replies 5
  • Views 237
Re: logout cache issue...I believe

Seems that was it. I forgot to delete that default and html cache control in the htaccess since put in that code. Thanks.

Jump to post
  • Tue Apr 02, 2024 11:28 pm
  • Replies 11
  • Views 603
Re: [SOLVED] logout cache issue...I believe

Looks like I celebrated too quickly. It isn't working consistently. Any other solution?

Jump to post
  • Tue Apr 02, 2024 1:11 pm
  • Replies 11
  • Views 603
Re: What PHP file executes only once per visitor?

I will look into this, might be a better idea I literally gave you exactly that...which I already stated in my first post and you then requested lol. Either way, I came back to tell you disregard the whole increment count thing I was thinking about. I probably wont work, at least the way I have the...

Jump to post
  • Mon Apr 01, 2024 3:07 am
  • Replies 17
  • Views 854
Re: What PHP file executes only once per visitor?

I had to part out a larger extension for this, and haven't tested it on its own (don't have time), but it should work as is, and easy enough to follow along. Note, I didn't implement the accessed/count code, it's just a thought that I didn't get to yet. But The column is setup in the table if you wa...

Jump to post
  • Sun Mar 31, 2024 12:22 pm
  • Replies 17
  • Views 854
Issue with SEO and cookies

I have SEO enabled, when I click onto a product from the home page I have no issue. When I go to a product by ways of category link I get an error/warning/notice on the cookie named "jrv" in the developer console saying "This cookie was blocked because its path was not an exact match ...

Jump to post
  • Sun Mar 31, 2024 1:31 am
  • Replies 1
  • Views 204
Re: What PHP file executes only once per visitor?

I'm currently doing something where I only want something to register once per visitor, so what I did was check the current ip against the users online in catalog/controller/common/footer.php. You may have to do something extra with it though depending on your needs and time span per visit which wou...

Jump to post
  • Sat Mar 30, 2024 10:57 pm
  • Replies 17
  • Views 854
Re: access admin module without token

@add creative, It stays on the admin login page and the function doesn't execute. I also removed the parameter and put an index function with a log write in the file just to make sure and that isn't being executed either. @paul, that's a genius idea, wish I thought of that...wait, I probably did sin...

Jump to post
  • Wed Mar 27, 2024 7:50 pm
  • Replies 8
  • Views 1569
Re: access admin module without token

I'm trying to accomplish the same thing here. I have a cron that I want to run on a controller in the admin and I don't want to bother with events or create a duplicate file in another directory. Is this method of putting the path in the ignore array of the login and permissions file still valid. Wh...

Jump to post
  • Wed Mar 27, 2024 10:45 am
  • Replies 8
  • Views 1569
nginx issue

I'm offloading a bunch of permanent things to nginx config instead of htaccess to improve performance and decrease the recursive lookups with every page. One issue I'm having is that nginx doesn't seem to be taking commands that involve denial of access or ip. Is this something that would have been ...

Jump to post
  • Sun Mar 24, 2024 6:09 am
  • Replies 1
  • Views 213
Re: Image problem in the admin

Make it a sub-domain instead for a start. I'm curious too. Either way I rectified the problem. Odd sequence of actions to cure it though, so I don't know the EXACT thing that rectified it. 1/ I backed up the shops default admin and systems directory (just in case I happened to hard code anything I ...

Jump to post
  • Fri Mar 22, 2024 1:01 am
  • Replies 3
  • Views 354
[SOLVED] Image problem in the admin

On my main site in the admin, the image add buttons (the buttons to get to the image manager) are no longer showing when clicking on an image...I don't know when this started. The tiny javascript/ajax window (whatever it is) shows up but with no buttons on it. This happens everywhere, but I'm focusi...

Jump to post
  • Thu Mar 21, 2024 11:41 am
  • Replies 3
  • Views 354

Search found 500 matches