User Feedback Archive : February 2017

Posted by Michele
2017-02-28

It is possible to bypass the control users, directly pointing to the page addresses?
Posted by Tom
2017-02-28

Hi,

> bypass the control users

I'm not really sure what you meant by "bypass the control users" Would you clarify it, please?
Posted by Silvio
2017-02-27

Sure Tom, I can't run with browser your script "find-path.php" outside public_html so, how can I discover the path of "products" folder since the moment it is below the public_html but not the ... Read More
Posted by Tom
2017-02-28

Suppose you put "find-path.php" in the pulbic_html folder and it reports
/var/www/silvio/public_html/find-path.php
Then the physical path of public_html is
/var/www/silvio/public_html/
Posted by Silvio
2017-02-26

Thank you Tom for your script, however I only can run it from the public_html, not below.
Posted by Tom
2017-02-27

Hi,

>however I only can run it from the public_html, not below.

To make files(php, html) accessible to browsers, you have to put them on public_html or above. However, you can put data files below ... Read More
Posted by Silvio
2017-02-25

Hello Tom,

In order to protect the content of "products" folder, I've placed it on the server's root but unfortunately I can't find a working path configuration (config.products.inc.php) and the ... Read More
Posted by Tom
2017-02-26

Hi,

>unfortunately I can't find a working path configuration

You can find the path using this simple php script. Open a text editor and paste the following line:
<?php echo __FILE__; ?>
Save it ... Read More
Posted by murat
2017-02-20

thank you very much tom , it works , now i can make a call from asterisk when i click on search result
you really should add a donate button to your site.
you are saving alot of people s time ... Read More
Posted by Tom
2017-02-21

You are welcome!
Posted by murat
2017-02-19

Hello , thank you for the great utilities which you share with people

i installed your addressbook onto an asterisk system based on centos
freepbx also uses mysql so easily i installed on pbx
now ... Read More
Posted by Tom
2017-02-20

Hi,

>only what i couldnt do is i need to get current username too

If you mean the username of a user who is currently loggin in
then you can get it with the following code:
... Read More
Posted by Silvio
2017-02-18

Working perfectly, thank you again Tom!
I should add your PayPal "Donate" button :)
Posted by Tom
2017-02-19

You are welcome :)
Posted by Silvio
2017-02-17

Hi Tom,

I'm trying to customize the e-mail message with my logo but I don't know where it must be located. It's now inside the products folder, so I've added into the <body> of config.txt this line: ... Read More
Posted by Tom
2017-02-18

>src="/products/logo1.gif"

The url should start with "http://"
And the image doesn't have to be in the script folder. You can put it anywhere.
Posted by Silvio
2017-02-16

Thank you so much Tom, it was the reason!
Posted by Tom
2017-02-18

Great!
Posted by Silvio
2017-02-15

Hi Tom,

I've created a working version without accents, saved in ANSI.
Now, seeing your reply, I've saved it in UTF-8 but the simulator doesn't recognize it anymore.
Posted by Tom
2017-02-16

>I've saved it in UTF-8 but the simulator doesn't recognize it anymore.

Maybe, you saved it in UTF-8 with bom? ... Read More
Posted by Silvio
2017-02-14

Hi Tom,

The issue is fixed, I found a solution to include your full script into my page.
However I experienced again an issue with your simulator sending the e-mail message, the reason is french ... Read More
Posted by Tom
2017-02-15

>the reason is french accents that can't be used, except inside item_name (product title), what can I do?

Mails are encoded in UTF-8, so it should be able to email in any languages. You need to save ... Read More
Posted by Silvio
2017-02-09

Hi Tom,

All right, I found a little syntax error in my config, now it's working perfectly, wonderful scrypt, thank you so much Tom!
I was wondering to separate the button code from the rest of your ... Read More
Posted by Tom
2017-02-10

Hi,

>Any suggestion to run your scrypt from the button (shortest code) placed into a separate directory?

I don't understand what you meant by "placed into a separate directory." You can place it ... Read More
Posted by Silvio
2017-02-02

Hi Tom,

I'm not sure to understand your instructions (config.email.inc.php):

// If your email server requires SMTP Authentication,
// enable the following three lines, "Auth", "Username", and
// ... Read More
Posted by Tom
2017-02-03

>My smtp server requires auth. so is this syntax right?
>Auth=LOGIN
>Username=sender@xyz.com
>Password=12345

The syntax is correct. (but of course, the value may be wrong)

>Also, concerning ... Read More