shared-hosting

Issue on how to setup SMTP using PHPMailer in GoDaddy server

可紊 提交于 2019-12-20 06:29:39
问题 I've been researching for 3 weeks now on how to configure SMTP using PHPMailer for GoDaddy but none of it works. Tried contacting the GoDaddy support but they haven't replied yet. And I haven't seen any documentation on how to setup SMTP on their server. I've been changing the Host many times, tested them, but none of it were successful in sending the email. I surpassed the error (using PHPMailer debug) but when I checked the email, I couldn't see any messages being received. These are the

PHP + PhantomJS Rasterize

扶醉桌前 提交于 2019-12-20 03:34:22
问题 I'm using PhantomJS 64 bit in my PHP application to dynamically capture an HTML page to be emailed to the user. phantomjs rasterize.js "http://..." /path_to_images/image.png This method works fine when I run the above on the command line but when the PHP script runs the command using exec it fails with no output and returns exit code 11. If I switch it to use the 32 bit phantomJS binary, the command succeeds but fails to load the google JSAPI on the page since with error Reference Error: can

How to turn off php safe_mode off for a particular directory in a shared hosting environment?

一笑奈何 提交于 2019-12-20 03:09:37
问题 Hi I'm used shared hosting. I want to turn off php safe_mode off for my site. My provider gave me a php.ini file and asked me to put it with my settings in my public_html folder to override the settings, but it didn't work. 回答1: You can also try to create a file called php.ini in the root (public_html or other) folder, and putting the following in it: safe_mode = Off Depending on server settings, this may or may not work. 回答2: Your service provider might have forgot to tell you that you need

Host Multiple Domains with the same ASP.NET MVC app?

≯℡__Kan透↙ 提交于 2019-12-19 07:27:25
问题 I want to host multiple web sites (all with different domains - not sub domains) with the same ASP.NET MVC app. I need the app to act differently based off the domain, but I still want the same app to serve all domains. I don't want domain forwarding or redirection, I actully want all the domains to function on their own, but served out of the same MVC app. How do I do this? It is also worth noting that I am in shared hosting with GoDaddy. Thanks in advance! 回答1: This should be possible with

How to deploy a simple Angular2 app on a shared hosting? [closed]

送分小仙女□ 提交于 2019-12-18 05:06:25
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . I'd like to deploy my Angular2 app on my shared hosting. I tried transferring the files via ssh, but the app doesn't run. I guess there is something to do like the ng serve on local. What do are the steps to follow ? I couldn't find them on the internet :/ Thanks EDIT I have a

How to deploy a simple Angular2 app on a shared hosting? [closed]

我怕爱的太早我们不能终老 提交于 2019-12-18 05:06:12
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . I'd like to deploy my Angular2 app on my shared hosting. I tried transferring the files via ssh, but the app doesn't run. I guess there is something to do like the ng serve on local. What do are the steps to follow ? I couldn't find them on the internet :/ Thanks EDIT I have a

MySQL MAX_JOIN_SIZE errors

时间秒杀一切 提交于 2019-12-17 20:36:01
问题 I am asking this question on behalf of a small group of my users that have this problem. Once the script they are using gets to the 21st ID, it generates the following error: The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is okay I have researched this as much as possible and found something of an answer : http://dev.mysql.com/doc/refman/5.0/en/set-option.html The problem is that they are on shared

Deploy Laravel 5 using only FTP in a shared hosting

和自甴很熟 提交于 2019-12-17 18:35:21
问题 I need to deploy a laravel 5 project to a client host. The plan of my client is basic hosting: Linux + MySql without cpanel or similar (i.e. no admin panel). I have access only via ftp and only to a folder named www.mycustomerweb.com. It means I can not create a directory at the same level of www.mycustomerweb.com folder. Only inside it (I think it is called shared hosting). One year ago, I deployed a project made with Laravel 4 this way: got rid of public folder moving its content to root

How to deploy laravel 4.2 on shared hosting?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-17 18:29:41
问题 I developed an application with laravel 4.2.8 and now I am having trouble deploying it. I followed this answer https://stackoverflow.com/a/16683938/3153380 but its not working. I am getting a white screen and the headers are returning a 500 Internal Server Error status. I read around that laravel 4.2 is a bit tricky to set up on shared hosting is this true? I can seem to find a working solution so those that have deployed 4.2 before please help. My folder structure is like below root/ laravel

What is the equivalent to CRON jobs in ASP.NET? - C#

∥☆過路亽.° 提交于 2019-12-17 18:13:14
问题 In PHP we have CRON jobs, where the hosting server automatically picks up and executes a task as per the schedule given. What would be a good alternative to use for CRON jobs in ASP.NET ? I'd like to use a Web service, but that will not work in a shared hosting environment. Any help would be appreciated, and please advise a way to do this specifically in a shared hosting environment. 回答1: Try Quartz.NET. it's a decent .NET scheduler which supports CRON expressions, CRON triggers and various