Posts by RafaBR1 • 154 points
15 posts
-
1
votes1
answer1584
viewsA: Align table columns
You’re practically formatting the entire table to "left" (left) in your current CSS: .stats table tbody tr td This is because you are using text-align: left; for stats table tbody tr td try to…
-
2
votes1
answer1746
viewsA: smtp connection error with C#(authenticated)
Apparently you are trying to make a call with SSL/TLS using a non-secure port (587), try to disable the SSL/TLS function, so replace this value: smtpClient.EnableSsl = true; For that:…
-
2
votes1
answer3461
viewsA: SMTP ERROR: Failed to connect to server: (0)
"SMTP ERROR: Failed to connect to server: (0)" means there was no connection to the SMTP server, it means there is a connection lock, review the following issues: Make sure the host or ip address is…
-
1
votes1
answer124
viewsA: How to send SMTP commands and IP not be blocked?
Your ip is entering Blacklist because the target provider is detecting an unusual mass activity along with your local ip, try to set a much lower limit for queries and checks, something around 20 to…
-
0
votes2
answers153
viewsA: Problem when logging into the Gento backend
"Mysql server has Gone away" means that the SQL load time took longer than normal and was terminated, this error occurs when Pdo_mysql or mcrypt were not installed on your server that is running…
-
1
votes1
answer249
viewsA: Problem on Magento’s Dashboard
Apparently the access location of the Mac files is inaccessible, try using "localhost" instead of "127.0.0.1" and try working with the default port (80) instead of 8080, this may also be file…
-
0
votes2
answers132
viewsA: Problems with update in federated table
You have already checked if the servers accessing the database are with all the necessary permissions? Make sure you grant the necessary privileges over the ips accessing the Mysql server: GRANT ALL…
-
1
votes1
answer908
viewsA: Image alignment on the Carousel
You can enter the parameter text-align:center;in the class CSS or div you want to center, for example, if div you can use: div { text-align:center; } If a class should be used: .carousel-inner {…
-
0
votes3
answers124
viewsA: Update to CD_SETOR column values in all tables found with column
If you want to do an UPDATE you need to use "UPDATE" instead of "SELECT", you need to fetch the old values and update them together with WHERE, this might solve your problem: (MAKE A BACKUP OF YOUR…
-
1
votes1
answer683
views -
0
votes3
answers83
viewsA: Is SEO possible with site that contains only Images?
SEO is something delicate that requires time and dedication, it is unfair to say that only images will improve your SEO score since the better your score the better your SEO rating will be. Amid so…
-
1
votes1
answer610
viewsA: Aligning images within Bootstrap Panel
Try calling directly the "panel-body" class responsible for the images in your CSS, for example: .panel-body { text-align:center; background-color:red; } After improving your CSS code, don’t forget…
-
-1
votes2
answers854
viewsA: Phpmailer shows SMTP error
Hello, The SMTP function is not found in the patch of your php file: public_html/php/phpmailer/class.phpmailer.php I recommend analyzing line 1291 in the above file for more details about the code…
-
0
votes1
answer66
viewsA: Include smtp authentication
I don’t quite understand your question, but it seems to me that you usually send via localhost (local server) but when you try to send with an external server (from your client) returns SMTP…
-
1
votes2
answers634
viewsA: How to receive instant payment by credit card?
Instant payment will be a little difficult to achieve, as for security payment systems (also called gateway) adopt some security measures that help keep buying and selling secure, this may take a…