Jump to content
Larry Ullman's Book Forums

abigail

Members
  • Posts

    184
  • Joined

  • Last visited

  • Days Won

    1

abigail last won the day on September 9 2011

abigail had the most liked content!

abigail's Achievements

Newbie

Newbie (1/14)

  • Dedicated Rare
  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

16

Reputation

  1. Probably your code is not finding the CSS files but I don't have time to look into it for you. Find out where the files are and where your code is looking for them.
  2. This is the way that affiliate site gave me the links. I have no choice about that. And I do need those links. The last thing I can think of is Malwarebytes, which I have submitted a ticket to them.
  3. One other thing I noticed with that site and it's 404 page, it appears they are forcing the entire site to https (before only the login pages and such were https). Apparently, when they change that script to https, that is when the page is not found. That they will probably fix once they become aware of this. But that link still does not show on my site.
  4. Thank you very much for pointing that out to me. However, when I go to my site, adviceofthequeen.com, the links do not even show. That is a separate problem, right? That I need to solve.
  5. I've had this code working for years. A few months ago the links (to affiliate site) stopped showing. I didn't do anything about it until a few weeks ago. I noticed that the links showed in Opera and not in Firefox. I added a line that advises people to use another browser other than Opera. I also posted at FF forum but no one there knows why this is happening to me. Today I went to Opera and the links do not show there either. These links are provided by the affiliate site and I have no control over them, but I don't notice anything unusual about them. Hopefully Larry or someone else will see the problem. Following is the code that is included. <?php if (!defined('ADVICE_ENV')) { die;} // this is for the new pages that I don't have a banner ?> <p class="noshowlink-box"><title="In case the link does not show.">In case the link does not show you should use a different browser such as Opera.</p> <div class="centered-banner"> <script type="text/javascript" src="http://www.the-tree-of-life.com/lib/jquery/jquery.js"></script> <script type="text/javascript" src="http://www.the-tree-of-life.com/js/core.js"></script> <script type="text/javascript"> //<![CDATA[ if (typeof(cart_banner) == "undefined") var cart_banner = new Array(); cart_banner[25] = { BoxWidth: '236', BoxHeight: '16', OutlineColor: '#296DC1', TitleTextColor: '#FDFDFD', TextColor: '#333333', TextBackgroundColor: '#F9F9FF', ShowURL: 'Y' /* Y - yes; N - no*/ } //]]> </script> <script id="id_script_banner_25" type="text/javascript" src="http://www.the-tree-of-life.com/index.php?dispatch=aff_banner.view&amp;bid=25&amp;type=js_content&amp;sl=EN&amp;product_ids=&amp;aff_id=55"></script> </div> <p class="na-box">This Banner Link is not yet available, meanwhile, click on banner above and search for this treatment.</p> And here is link to one place that file is included and the link should show. These links are all around my website. http://adviceofthequeen.com/unique/reactive-airways-disease-treatment#reactive-airways-disease-treatment This is running on Windows 7. I think I also tested at the library and the links did not show using FF. I just noticed the webhostinghub gives me the option to change my PHP version but I have no idea if I should do this. I can go up to 7.2 Current: PHP 5.4 System Default: PHP 7.0
  6. 'SHA1('mypass') You have an extra single quote at the start of this snippet.
  7. I thought your problem was an additional new line. Every HTML DIV and <P> will start a new line. So you will need a counter to print a <p> and </p>, every 3 items instead of every item. Otherwise post some code. The CSS won't matter.
  8. Just looking at the code, without trying to actually test it, it seems you already have a while loop. If your problem is an extra line between the image and the text, then that <p> would be the reason. Otherwise, try assigning the values to variables then printing it out on a separate line of code (after retrieving from the database). Maybe that will give you more information. It is the HTML that is giving lines, not the CSS.
  9. Your server provider should be able to help you with this, I would think.
  10. I found these typos: was to complicated was too complicated or even multiple business. or even multiple businesses. Your in a growing family You're in a growing family And the final part that make J5C And the final part that makes J5C it respects it users it respects its users as long as your an active member as long as you're an active member The site looks good as far as content and appearance. I did not take the time to register. It seems your site would compete with Craigslist which will be difficult to succeed at, I would think. Nice job, though.
  11. You do have a good point, Larry. What I will do is talk to them and see what they can say for themselves and maybe I will determine that they are alright. The thing that bothers me a little is there are no other good reviews out there. There doesn't seem to be any review for any of the eCheck companies which seems odd.
  12. I want to put eChecks on my website (beside Stripe). 1. Does anyone know if eCheckDirect is a good one? How do these eCheck companies implement PCI compliance? 2. Do you know any other eCheck company that is good? 3. Paystand looked really good but I found 2 really bad reviews online that said they did not transfer the money but kept it. I warn you.
  13. Never mind. I figured it out. The parameters are overwritten by the Select. Can you see what is wrong with this Select. I know the variables are set and I know there is no data, the $islocked and $addr are both blank. I only fetch address to see if I can get any data. I did this from phpmyadmin and it retrieved locked=1 function failed($dbc, $em, $ad, $TheTable) { $islock=0; $addr=""; $stmt = mysqli_prepare($dbc, 'SELECT locked, address FROM $TheTable WHERE (email=? OR address=?) LIMIT 1'); mysqli_stmt_bind_param($stmt, "ss", $em, $ad); mysqli_stmt_execute($stmt) or trigger_error("Query: $q\n<br />MySQL Error: " . mysqli_error($dbc)); mysqli_stmt_bind_result($stmt, $islocked, $addr); mysqli_stmt_fetch($stmt); if ($islocked > 0) { mysqli_stmt_close($stmt); return (true); } mysqli_stmt_close($stmt); return (false); } // End of function. And this is the table CREATE TABLE IF NOT EXISTS `B_Distributors` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'db increments', `email` varchar(80) COLLATE utf8_unicode_ci NOT NULL, `address` varchar(80) COLLATE utf8_unicode_ci DEFAULT NULL, `locked` tinyint(1) unsigned DEFAULT NULL COMMENT 'I forbid', `notes` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `orig_date` datetime DEFAULT NULL, `time_stamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `B_Distributors` -- INSERT INTO `B_Distributors` (`id`, `email`, `address`, `locked`, `notes`, `orig_date`, `time_stamp`) VALUES (1, 'bca@rr.com', '71st Street', 1, '', '2015-07-11 11:43:41', '2015-07-11 15:43:41');
  14. I found out from Stripe tech support said: Checkout doesn't collect address data, so you will need to use a custom Stripe.js integration in order to collect that information. Which they really should do to help us defend against scammers. But anyway, when I first started asking you both about this question, I was not using Checkout and the information you provide below is exactly what was not working for me. I did not try to do it with a form in the token, however. But I want to stick with Checkout so I will leave the manual version unsolved.
×
×
  • Create New...