-
Posts
233 -
Joined
-
Last visited
Everything posted by opalepatrick
-
Using php 8.1 and getting the usual errors for 8.1 PHP message: PHP Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /httpdocs/site/modules/MarkupTwitterFeed/tmhOAuth/tmhOAuth.php on line 545
-
Thanks @kongondo - in hindsight I should have resurrected the previous post.
-
Probably nothing but I have gone around the houses, changed a lot of stuff, got a better understanding of what I am doing and come back to the same place... added images as I thought it may help explain better @kongondo
-
I have a user template with a profield page table field for Businesses - this has a profield page table field for Addresses. The problem I have is that this does not populate the data in the addresses table. If I edit the empty row, the data is correct. The table column headers are correct. Any clues? Appreciated
-
Been trying to get to griips with using RockTabulator to create grids today inside a Process Module. public function ___executeContactsPage(){ $finder = wire('modules')->get('RockFinder3') ->find("template=user,sort=surname,id>40") ->addColumns(['firstname','surname', 'linkedin']); bd($finder); $grid->setData($finder); return $grid; } The data is coming across fine, but I cannot work out how to define $grid - Undefined variable: grid. Any help appreciated Got myself confused between RockGrid and RockTabulator Actually the reason I was getting all the problems is that my version of PW was not working with RockFinder3, but I did not get the error message until I dumped the sql. Undefined variable: grid
-
Resolved - MarkupAdminDataTable syntax issue
opalepatrick replied to opalepatrick's topic in General Support
Strange - still not attaching the cid to the row. It is in a loop and I know it works as it is also in the data? *I spotted that in the options code it should read plural attrs -
Resolved - MarkupAdminDataTable syntax issue
opalepatrick replied to opalepatrick's topic in General Support
Thank you @gebeer I stared at that for so long and just changed it to the shorthand version without thinking when looking at other code samples! Once again Thanks. -
Trying to get an id attribute to the row $table->row([$club->title, $club->id],['cid' => $club->id, $club->title, $club->club_status->title]); The attribute is cid in the options part of this row - the row is not getting tagged with the cid - Am I missing something? This is being used in a Process module. Everything else in both parts works fine.
-
This has happened again on a completely fresh install. I suspect it has something to do with LoginRegisterPro but cannot prove it. I have taken into account all the things you mentioned above as well @wbmnfktr - Cannot work out why it seems to work fine for a while then stops working. I am going to move this over to the LoginRegisterPro forumas it appears to be responsible.
-
Thanks a lot @wbmnfktr that is useful. I suspect a module but I cannot prove it :-)
-
Ignore - I nuked it. I want to document what I did and be a bit more careful so I can report properly if I have an issue.
-
I have seen many different responses for this problem, but none of the solutions work. This is a new install (the latest version) that has allowed me to log in as admin several times. But has stopped now. I have used the forgot password reset and I get exactly the same message - ProcessLogin: admin - Login failed I do not think I have installed new modules since the last successful login. Short of nuking it, I am fresh out of ideas. Very frustrated.
-
Trying to get dropdown value from user sub-table
opalepatrick replied to opalepatrick's topic in General Support
Sorted this myself. It was because I had the field set for multiple references as has been mentioned many times... doh! As well as getting it by page id. -
So, I can access the value of a field in a club that my user belongs to $user->club['title'] However, I can't get the title from a select? I tried $user->club['status']->title but it didn't work. 'status' being the select field name that I am trying to get the value of from the dropdown. Any help appreciated
-
NULL response when processing Stripe webhook
opalepatrick replied to opalepatrick's topic in General Support
OK, I have resolved this although I am not sure I fully understand but basically I was trying to use webhook code on a 'success' page. Moved it to something that could be polled asynchronously an it worked straightaway. -
Capturing post data to PW from an external application
opalepatrick replied to psy's topic in Tutorials
Do you mean the @ symbol @psy as opposed to & ? If so, then yes I have done that but with no difference to the outcome. Thanks for replying. I have started a new question so I don't mess with your thread ? -
NULL response when processing Stripe webhook
opalepatrick replied to opalepatrick's topic in General Support
I should point out that I have tried a few different solutions offered elsewhere in other posts including the trailing slash. I used reqbin and got a "worked" back as well. I am baffled -
NULL response when processing Stripe webhook
opalepatrick replied to opalepatrick's topic in General Support
Narrowed this right down to $payload = file_get_contents('php://input'); if ($payload) { // $payload = file_get_contents("php://input"); echo "worked"; } else { echo "not working"; } So, in the browser, I am getting "not working" - in the stripe dashboard response, I am getting "worked" - how is this possible? -
I am trying to process a Stripe POST response with a webhook endpoint script. $payload = json_decode(file_get_contents("php://input")); var_dump($payload); Problem is that I am getting NULL. However... the Stripe Dashboard that shows the request & response to the Stripe request is correct for the specific event, even to the extent of showing the dump and error messages afterwards. Any ideas would gratefully received as I have spent way too long on this... although having to pick apart stuff like this does end up with me learning a lot more!
-
Capturing post data to PW from an external application
opalepatrick replied to psy's topic in Tutorials
Just out of curiosity, have you ever had a situation where stripe post data is being sent correctly (in the sense that the required event json info is posted and shows as a response in the dashboard) but when I try to parse the post variable with file_get_contents etc, it turns up NULL? -
Capturing post data to PW from an external application
opalepatrick replied to psy's topic in Tutorials
Thanks for this. Very useful for debugging -
Repeaters in Custom Process Modules
opalepatrick replied to opalepatrick's topic in Module/Plugin Development
Thank you @MarkE - I spend too little time coding the se days. They are really useful tips, thank you very much -
Repeaters in Custom Process Modules
opalepatrick replied to opalepatrick's topic in Module/Plugin Development
I was attracted to the idea of pulling everything together in a process module as per @bernhard's excellent toots. I liked the idea that they were all in admin and not possible to accidentally publish to the web. But now I have thought about it and following your reply (Thank you) I realise that I should be looking at protecting the templates by user role and using all the tools available to me. I have just gone down the "over-complicating things" road. Wish I hadn't gone down that rabbit hole before the weekend! Thanks once again. -
I see old posts saying that repeaters are not the way to go in Custom Process Modules. If that is the case, when using forms (as I am trying to do) how would one tackle things like repeat contact fields where there can be multiple requirements for contact details with different parameters? (Like point of contact, director, etc) or even telephone numbers that have different uses? Just for background I am creating a process module that allows me to create types of financial applications in the admin area (no need to publish any of this, pure admin) that require a lot of personal or company information. Maybe I am thinking about this incorrectly?